:root {
    --primary-color: #5c4b3f; /* Dark Brown */
    --secondary-color: #000000; /* Black */
    --background-color: #fdfaf6; /* Light Cream */
    --header-bg: #f0e9e1; /* Light Beige */
    --text-color: #5c4b3f; /* Dark Brown */
    --footer-bg: #1a1a1a;
    --admin-dark-bg: #1e1e2d;
    --admin-dark-surface: #2c2c3e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--header-bg);
    color: var(--text-color);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.nav {
    display: none; 
}

.header-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header-actions a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
}

.cart-count, .wishlist-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--text-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.mobile-menu {
    display: block;
    cursor: pointer;
}

.hamburger-icon {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    background: var(--header-bg);
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav.active { 
    display: flex; 
    transform: translateX(0);
}

.mobile-nav a { 
    color: var(--text-color); 
    text-decoration: none; 
    padding: 1rem; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
    font-size: 1.2rem;
}

/* Pages */
.page { display: none; min-height: calc(100vh - 80px); }
.page.active { display: block; }

.page-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 2rem 0;
    color: var(--primary-color);
}

/* --- HERO/BANNER STYLES --- */
.hero { padding: 0; width: 100%; }
.swiper { width: 100%; height: 85vh; }
.swiper-slide { text-align: center; font-size: 18px; background: #fff; display: flex; justify-content: center; align-items: center; }
.swiper-slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
.banner-container { position: relative; width: 100%; height: 100%; }
.banner-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background: linear-gradient(to top, rgba(0,0,0,0.3), transparent, rgba(0,0,0,0.3)); padding: 20px; color: white; }
#banner-title { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 700; text-shadow: 1px 1px 6px rgba(0,0,0,0.4); margin: 0; }
#banner-subtitle { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 300; text-shadow: 1px 1px 4px rgba(0,0,0,0.4); margin: 15px 0 35px 0; max-width: 500px; }
.banner-button { background-color: transparent; color: #fff; padding: 12px 35px; text-decoration: none; font-weight: 500; border-radius: 0; transition: background-color 0.3s, color 0.3s; border: 1px solid white; font-family: 'Poppins', sans-serif; }
.banner-button:hover { background-color: white; color: black; }
.swiper-button-next, .swiper-button-prev { color: #fff; }
.swiper-pagination-bullet-active { background: #fff; }

/* --- Ticker Section --- */
.ticker-section {
    background-color: var(--header-bg);
    padding: 0.8rem 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-content {
    display: inline-block;
    animation: ticker-scroll 20s linear infinite;
}
.ticker-content p {
    display: inline-block;
    padding-right: 50px;
    font-weight: 500;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* --- Search & Filter --- */
.product-search-container { background: transparent; padding: 0; border-radius: 0; box-shadow: none; margin: 2rem 0; }
.product-search-box { display: flex; gap: 1rem; align-items: stretch; }
.product-search-box input { flex: 1; padding: 0.8rem 1rem; border: 1px solid #ddd; border-radius: 0; font-size: 1rem; font-family: inherit; }
.product-search-box input:focus { outline: 1px solid var(--primary-color); }
.search-btn { display: flex; align-items: center; gap: 0.5rem; background: var(--secondary-color); color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 0; cursor: pointer; transition: all 0.3s ease; }
.search-btn:hover { background: #333; }
.clear-search-btn { display: flex; align-items: center; gap: 0.5rem; background: #f1f1f1; color: #555; border: 1px solid #ddd; padding: 0.8rem 1.5rem; border-radius: 0; cursor: pointer; }
.category-filter { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; flex-wrap: wrap; }
.filter-btn { background: white; color: var(--primary-color); border: 1px solid #ddd; padding: 0.6rem 1.5rem; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; font-weight: 500; }
.filter-btn.active, .filter-btn:hover { background: var(--primary-color); color: white; border-color: var(--primary-color); }

/* --- Profile Page --- */
.profile-page-links { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.profile-link { display: flex; align-items: center; background: #fff; padding: 1.5rem; text-decoration: none; color: var(--text-color); border-radius: 5px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: transform 0.2s; }
.profile-link:hover { transform: translateY(-3px); }
.profile-link i:first-child { font-size: 1.5rem; margin-right: 1.5rem; width: 30px; text-align: center; }
.profile-link span { flex-grow: 1; font-weight: 500; font-size: 1.1rem; }
.profile-link i:last-child { color: #ccc; }

.featured-products { padding: 4rem 0; background: var(--background-color); margin: 0; border-radius: 0; box-shadow: none; }
.featured-products h2 { text-align: center; color: var(--primary-color); font-size: 2.5rem; font-weight: 700; margin-bottom: 3rem; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.cta-btn, .order-form button { background: var(--secondary-color); color: white; border: 1px solid var(--secondary-color); padding: 0.8rem 1.5rem; border-radius: 2px; cursor: pointer; transition: all 0.3s ease; font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 1px; animation: pulse 2.5s infinite; }
.cta-btn:hover, .order-form button:hover { background: white; color: var(--secondary-color); animation-play-state: paused; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.04); } 100% { transform: scale(1); } }

/* --- Direct Message Links --- */
.direct-message-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}
.direct-message-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}
.whatsapp-link {
    background-color: #eaf8f0;
    color: #25D366;
    border: 1px solid #d4f0e0;
}
.whatsapp-link:hover { background-color: #d4f0e0; }
.messenger-link {
    background-color: #e7f3ff;
    color: #0084ff;
    border: 1px solid #d2e7ff;
}
.messenger-link:hover { background-color: #d2e7ff; }

.product-card { background: white; border-radius: 4px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: all 0.3s ease; display: flex; flex-direction: column; position: relative; border: 1px solid #f0f0f0; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.product-card a { text-decoration: none; color: inherit; display: flex; flex-direction: column; flex-grow: 1; }
.product-card img { width: 100%; height: 300px; object-fit: cover; }
.product-info { padding: 1.5rem; text-align: center; }
.product-info h3 { color: var(--text-color); margin-bottom: 0.5rem; font-size: 1.2rem; }
.product-info .price { font-size: 1.2rem; font-weight: 500; color: var(--text-color); margin-bottom: 1rem; }
.product-info .price .original-price { text-decoration: line-through; color: #999; margin-right: 0.5rem; }
.product-info p { display: none; }
.order-btn {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
}
.order-btn:hover {
    background: var(--secondary-color);
    color: white;
}
.bottom-nav { background-color: #ffffff; box-shadow: 0 -2px 10px rgba(0,0,0,0.08); }
.bottom-nav a.active, .bottom-nav a:hover { color: var(--primary-color); }
.bottom-nav a i { font-size: 1.5rem; }
.bottom-nav a span { font-size: 0.7rem; }
h1 { color: var(--primary-color); }
.product-detail-info h1 { color: var(--text-color); }

/* --- CTA Contact Section --- */
.cta-contact {
    background-color: var(--header-bg);
    padding: 3rem 0;
    text-align: center;
}
.cta-contact h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.cta-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cta-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid;
}
.cta-link.whatsapp {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
}
.cta-link.whatsapp:hover {
    background-color: white;
    color: #25D366;
}
.cta-link.messenger {
    background-color: #0084ff;
    color: white;
    border-color: #0084ff;
}
.cta-link.messenger:hover {
    background-color: white;
    color: #0084ff;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--footer-bg);
    color: #a7a7a7;
    padding: 4rem 0 0;
    font-size: 0.9rem;
}
.site-footer .container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(5, 1fr);
}
.footer-col h4 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 0.8rem;
}
.footer-col ul a {
    color: #a7a7a7;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col ul a:hover {
    color: white;
}
.footer-logo {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.footer-social-links a {
    color: var(--footer-bg);
    background-color: #a7a7a7;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}
.footer-social-links a:hover {
    background-color: white;
}
.footer-contact p {
    margin: 0.5rem 0;
}
#footer-addresses p {
    margin-bottom: 1rem;
    line-height: 1.8;
}
.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid #333;
}
.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.footer-payment-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-payment-logos img {
    height: 25px;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.footer-payment-logos img:hover {
    opacity: 1;
}

.models-section, .related-products { padding: 4rem 0; background: white; margin: 2rem 0; border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.models-section h2, .related-products h2, #models-gallery-page h1 { text-align: center; color: var(--primary-color); font-size: 2.5rem; font-weight: 700; margin-bottom: 3rem; }
.models-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.model-card { background: white; border-radius: 1rem; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: all 0.3s ease; display: flex; flex-direction: column; position: relative; }
.model-card:hover { transform: translateY(-10px) scale(1.03); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.model-card img { width: 100%; height: 350px; object-fit: cover; }
.model-card .model-info { padding: 1rem; text-align: center; }
.model-card .model-info h3 { color: var(--primary-color); }
.model-card .model-info p { color: #555; font-size: 0.9rem; }
.product-info p { flex-grow: 1; }
.product-id { font-size: 0.9rem; color: #999; margin-bottom: 0.5rem; }
.product-actions { display: flex; gap: 0.5rem; margin-top: auto; padding-top: 1rem; }
.add-to-cart-btn { background: #27ae60; color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; flex: 1; }
.add-to-cart-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4); }
.wishlist-btn-card { position: absolute; top: 15px; right: 15px; background: rgba(255, 255, 255, 0.8); border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; color: #ccc; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.wishlist-btn-card:hover { background: white; transform: scale(1.1); }
.wishlist-btn-card.active { color: #e74c3c; }
.out-of-stock-label { background: #e74c3c; color: white; padding: 0.8rem 1.5rem; border-radius: 50px; text-align: center; font-weight: bold; }
button:disabled { background: #95a5a6 !important; cursor: not-allowed !important; box-shadow: none !important; transform: none !important; }
#cart-modal { display: block; visibility: hidden; opacity: 0; transition: visibility 0.3s, opacity 0.3s ease; background: rgba(0,0,0,0.5); }
#cart-modal.active { visibility: visible; opacity: 1; }
#cart-modal .cart-content { position: fixed; top: 0; right: 0; width: 100%; max-width: 450px; height: 100%; background: #fff; box-shadow: -5px 0 25px rgba(0,0,0,0.15); transform: translateX(100%); transition: transform 0.3s ease; display: flex; flex-direction: column; padding: 0; margin: 0; }
#cart-modal.active .cart-content { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 1px solid #eee; }
.cart-header h2 { margin: 0; font-size: 1.5rem; }
.cart-header .close-btn { font-size: 1.8rem; cursor: pointer; background: none; border: none; color: #888; }
.cart-body { padding: 1.5rem; overflow-y: auto; flex-grow: 1; }
.cart-item-row { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid #f0f0f0; }
.cart-item-row img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.cart-item-details h4 { margin: 0 0 0.25rem; font-size: 1rem; }
.cart-item-details p { margin: 0; color: #666; font-size: 0.9rem; }
.cart-quantity-selector { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 5px; overflow: hidden; margin-top: 0.5rem; }
.cart-quantity-selector button { background: #f5f5f5; border: none; padding: 0.5rem 0.8rem; cursor: pointer; }
.cart-quantity-selector span { padding: 0 1rem; font-weight: 500; }
.cart-item-total { text-align: right; font-weight: bold; }
.cart-footer { padding: 1.5rem; border-top: 1px solid #eee; background: #f8f9fa; }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 1.1rem; margin-bottom: 1rem; }
.cart-subtotal span:first-child { color: #555; }
.cart-subtotal span:last-child { font-weight: bold; }
.cart-checkout-btn { width: 100%; padding: 1.2rem; border-radius: 8px; font-size: 1.1rem; text-transform: none; letter-spacing: 0; }
.cart-empty-message { text-align: center; padding: 4rem 1rem; color: #777; }
.coupon-section { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.coupon-section input { flex-grow: 1; padding: 1rem; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; font-family: inherit; transition: all 0.3s ease; }
.coupon-section input:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 8px rgba(92, 75, 63, 0.3); }
.coupon-section button { background: var(--primary-color); color: white; border: none; padding: 0 2rem; border-radius: 8px; cursor: pointer; font-weight: bold; transition: all 0.3s ease; }
.coupon-section button:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.product-detail-actions { display: flex; gap: 1rem; margin-top: 2rem; }
.product-detail-actions .cta-btn { flex: 2; }
.product-detail-actions .add-to-cart-btn { flex: 1; }
.product-controls { display: flex; justify-content: space-between; align-items: center; margin: 2rem 0; padding: 1rem; background: white; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.product-controls label { font-weight: 500; color: #2c3e50; }
.product-controls select { padding: 0.8rem; border: 2px solid #dee2e6; border-radius: 8px; font-family: inherit; font-size: 1rem; }
.contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin: 3rem 0; }
.contact-card { background: white; padding: 2rem; border-radius: 15px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: all 0.3s ease; cursor: pointer; }
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.contact-card i { font-size: 3rem; color: var(--primary-color); margin-bottom: 1rem; }
.contact-card h3 { color: var(--primary-color); margin-bottom: 1rem; }
.contact-card a { color: var(--text-color); text-decoration: none; font-weight: 500; }
.order-form { background: white; padding: 2rem; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); margin-top: 3rem; }
.order-form h2 { color: var(--primary-color); text-align: center; margin-bottom: 2rem; }
.order-form form { display: grid; gap: 1rem; }
.order-form input, .order-form textarea { padding: 1rem; border: 2px solid #dee2e6; border-radius: 8px; font-family: inherit; }
.order-form input:focus, .order-form textarea:focus { outline: none; border-color: var(--primary-color); }
.search-results-info { background: #e8f5e8; color: #155724; padding: 1rem; border-radius: 8px; margin: 1rem 0; text-align: center; }
.no-results { background: #f8d7da; color: #721c24; padding: 2rem; border-radius: 8px; text-align: center; margin: 2rem 0; }
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow-y: auto; }
.modal-content { background: white; margin: 5% auto; padding: 2rem; border-radius: 15px; width: 90%; max-width: 500px; position: relative; }
.close { position: absolute; right: 1rem; top: 1rem; font-size: 2rem; cursor: pointer; color: var(--primary-color); }
#customer-order-form .input-group { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 1rem; transition: all 0.3s ease; overflow: hidden; }
#customer-order-form .input-group i { padding: 0 15px; color: #888; background-color: #f8f9fa; align-self: stretch; display: flex; align-items: center; border-right: 1px solid #ddd; transition: all 0.3s ease; }
#customer-order-form .input-group input { border: none; outline: none; padding: 15px; flex-grow: 1; font-size: 1rem; font-family: inherit; background: transparent; }
#customer-order-form .input-group:focus-within { border-color: var(--primary-color); box-shadow: 0 0 8px rgba(92, 75, 63, 0.3); }
#customer-order-form .input-group:focus-within i { color: var(--primary-color); background-color: #fdfaf6; }
.admin-panel { background: var(--admin-dark-bg); color: #fff; }
.admin-header { background: var(--admin-dark-surface); color: white; padding: 2rem; margin-bottom: 2rem; border-radius: 15px; display: flex; justify-content: space-between; align-items: center; }
.admin-header button { background: rgba(255,255,255,0.2); color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 50px; cursor: pointer; }
.admin-notification-btn { font-size: 1.5rem; background: none; border: none; color: white; cursor: pointer; padding: 0.5rem; }
.admin-notification-count { position: absolute; top: -5px; right: -5px; background: #e74c3c; color: white; font-size: 12px; border-radius: 50%; padding: 2px 6px; display: none; }
#admin-notification-list ul { list-style: none; padding: 0; }
#admin-notification-list li { background: var(--admin-dark-bg); padding: 1rem; border-radius: 5px; margin-bottom: 0.5rem; }
.admin-tabs { display: flex; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.tab-btn { background: none; border: none; padding: 1rem 2rem; cursor: pointer; color: #ccc; border-bottom: 3px solid transparent; transition: all 0.3s ease; }
.tab-btn.active, .tab-btn:hover { color: #f0e9e1; border-bottom-color: #f0e9e1; }
.admin-tab { display: none; padding: 2rem 0; }
.admin-tab.active { display: block; }
.admin-section { background: var(--admin-dark-surface); padding: 2rem; margin-bottom: 2rem; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.admin-section h2 { color: #f0e9e1; border-bottom: 1px solid #444; padding-bottom: 1rem; margin-bottom: 1rem;}
.admin-form { display: grid; gap: 1rem; }
.admin-form label { font-weight: bold; color: #ccc; margin-top: 0.5rem; }
.admin-form input, .admin-form select, .admin-form textarea { padding: 0.8rem; border: 2px solid #444; border-radius: 8px; font-family: inherit; transition: border-color 0.3s ease; background: var(--admin-dark-bg); color: #fff; }
.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus { outline: none; border-color: #f0e9e1; }
.admin-form button { background: var(--primary-color); color: white; border: none; padding: 1rem; border-radius: 8px; cursor: pointer; font-size: 1rem; transition: all 0.3s ease; }
.admin-form button:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(92, 75, 63, 0.4); }
.admin-product-item, .admin-customer-image-item { background: var(--admin-dark-surface); padding: 1rem; margin-bottom: 1rem; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; }
.admin-product-info h4, .admin-customer-image-info h4 { color: #f0e9e1; margin-bottom: 0.5rem; }
.admin-product-actions, .admin-customer-image-actions { display: flex; gap: 0.5rem; }
.admin-product-actions button, .admin-customer-image-actions button { padding: 0.5rem 1rem; border: none; border-radius: 5px; cursor: pointer; transition: all 0.3s ease; }
.edit-btn { background: #007bff; color: white; }
.delete-btn { background: #dc3545; color: white; }
.edit-btn:hover, .delete-btn:hover { transform: translateY(-2px); }
.admin-customer-image-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 5px; margin-right: 1rem; }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin: 2rem 0; }
.product-detail-image-gallery { display: flex; flex-direction: column; gap: 1rem; }
.main-product-image { width: 100%; height: 500px; object-fit: cover; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); cursor: zoom-in; }
.product-image-thumbnails { display: flex; gap: 1rem; justify-content: center; }
.thumbnail-img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; cursor: pointer; border: 2px solid transparent; transition: border-color 0.3s ease; }
.thumbnail-img:hover, .thumbnail-img.active { border-color: var(--primary-color); }
.product-detail-info { padding: 2rem; }
.product-detail-info .price { font-size: 2rem; color: var(--text-color); font-weight: bold; margin-bottom: 2rem; }
.product-detail-info .price .original-price { font-size: 1.5rem; text-decoration: line-through; color: #95a5a6; margin-right: 1rem; }
.product-detail-info .description { font-size: 1.1rem; line-height: 1.8; margin-bottom: 2rem; color: #34495e; }
.product-features { margin-bottom: 2rem; }
.product-features h3 { color: var(--primary-color); margin-bottom: 1rem; }
.product-features ul { list-style: none; padding-left: 0; }
.product-features li { padding: 0.5rem 0; border-bottom: 1px solid #eee; color: #34495e; }
.product-delivery-info { margin-bottom: 2rem; background: #f8f9fa; padding: 1.5rem; border-radius: 10px; border-left: 4px solid var(--primary-color); }
.product-delivery-info h3 { color: var(--primary-color); margin-bottom: 1rem; font-size: 1.2rem; }
.delivery-item { padding: 0.8rem 0; border-bottom: 1px solid #e9ecef; color: #34495e; line-height: 1.6; }
.delivery-item:last-child { border-bottom: none; }
.delivery-item strong { color: #495057; display: inline-block; min-width: 150px; }
textarea { width: 100%; padding: 12px; border: 2px solid #e9ecef; border-radius: 8px; font-family: inherit; font-size: 14px; line-height: 1.5; resize: vertical; transition: border-color 0.3s ease; }
textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(92, 75, 63, 0.1); }
.delivery-item:last-child { white-space: pre-line; }
.back-btn { background: #6c757d; color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 50px; cursor: pointer; margin-bottom: 2rem; text-decoration: none; display: inline-block; }
.search-box { display: flex; gap: 1rem; margin-bottom: 2rem; }
.search-box input { flex: 1; padding: 0.8rem; border: 2px solid #dee2e6; border-radius: 8px; font-family: inherit; }
.search-box button { background: var(--primary-color); color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 8px; cursor: pointer; }
.category-management, .coupon-management { display: grid; gap: 1rem; margin-bottom: 2rem; }
.category-item, .coupon-item { display: flex; justify-content: space-between; align-items: center; background: var(--admin-dark-surface); padding: 1rem; border-radius: 8px; }
.category-item button, .coupon-item button { background: #dc3545; color: white; border: none; padding: 0.5rem 1rem; border-radius: 5px; cursor: pointer; }
.success-message, .error-message { position: fixed; top: 20px; right: 20px; z-index: 9999; padding: 1rem 1.5rem; border-radius: 10px; color: white; font-weight: 500; animation: slideInRight 0.3s ease; }
.success-message { background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%); box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3); }
.error-message { background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3); }
.option-group { margin: 1.5rem 0; }
.option-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: #333; }
.size-selector { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.size-btn { padding: 0.5rem 1rem; border: 1px solid #ccc; background: white; cursor: pointer; border-radius: 5px; transition: all 0.2s ease; }
.size-btn.active, .size-btn:hover { background: var(--primary-color); color: white; border-color: var(--primary-color); }
.quantity-selector { display: flex; align-items: center; border: 1px solid #ccc; width: fit-content; border-radius: 5px; overflow: hidden; }
.quantity-selector button { background: #f1f1f1; border: none; padding: 0.5rem 1rem; cursor: pointer; font-size: 1.2rem; }
.quantity-selector span { padding: 0.5rem 1.5rem; font-weight: bold; }
.size-guide { margin-top: 2rem; background: #f9f9f9; padding: 1.5rem; border-radius: 8px; border-left: 4px solid var(--text-color); }
.size-guide h3 { margin-bottom: 0.5rem; }
.size-guide p { white-space: pre-line; line-height: 1.8; }
.shipping-method { display: flex; align-items: center; padding: 1rem; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 0.5rem; cursor: pointer; transition: all 0.2s ease; }
.shipping-method:has(input:checked) { border-color: var(--primary-color); background: #fff8fa; }
.shipping-method input { margin-right: 1rem; width: 18px; height: 18px; }
.shipping-method label { flex-grow: 1; font-weight: 500; }
#order-summary .summary-item { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid #eee; }
#order-summary .summary-item:last-child { border-bottom: none; }
#order-summary .summary-item.total { font-weight: bold; font-size: 1.2rem; color: var(--primary-color); }
#order-summary .product-summary { gap: 1rem; }
#order-summary .product-summary img { border-radius: 5px; }
#order-summary .product-summary div { display: flex; flex-direction: column; flex-grow: 1; }
#order-summary .product-summary span { font-size: 0.9rem; }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOutRight { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } }
.fade-in { animation: fadeIn 0.5s ease-in; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
.reviews-section { margin-top: 3rem; padding: 2rem; background: #fff; border-radius: 10px; }
.reviews-section h2 { color: var(--text-color); font-size: 2rem; margin-bottom: 2rem; text-align: center; }
.review-form { background: #fdfaf6; padding: 2rem; border-radius: 15px; margin-bottom: 2rem; border: 1px solid #f0e9e1; }
.review-form h3 { color: var(--text-color); margin-bottom: 1.5rem; font-size: 1.3rem; }
.review-form input, .review-form textarea { width: 100%; padding: 1rem; margin-bottom: 1rem; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; transition: all 0.3s ease; }
.review-form input:focus, .review-form textarea:focus { outline: none; border-color: var(--primary-color); }
.review-form textarea { min-height: 120px; resize: vertical; }
.rating-input { margin-bottom: 1rem; }
.rating-input label { display: block; margin-bottom: 0.5rem; color: var(--text-color); font-weight: 500; }
.stars { display: flex; gap: 0.5rem; }
.stars i { font-size: 1.5rem; color: #ddd; cursor: pointer; transition: all 0.3s ease; }
.stars i:hover, .stars i.active { color: #ffd700; transform: scale(1.1); }
.review-form button { background: var(--secondary-color); color: white; padding: 1rem 2rem; border: none; border-radius: 5px; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; font-weight: 600; }
.review-form button:hover { background: #333; }
.reviews-list { max-height: 500px; overflow-y: auto; }
.review-item { background: #fff; padding: 1.5rem; border-radius: 15px; margin-bottom: 1rem; border-left: 4px solid var(--primary-color); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.reviewer-info { display: flex; align-items: center; gap: 1rem; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-color); display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; font-size: 1.2rem; }
.reviewer-name { font-weight: 600; color: var(--text-color); }
.review-date { color: #666; font-size: 0.9rem; }
.review-rating { display: flex; gap: 0.2rem; }
.review-rating i { color: #ffd700; font-size: 1rem; }
.product-card-rating { display: flex; gap: 0.2rem; margin-bottom: 0.5rem; color: #ffd700; justify-content: center; }
.review-comment { color: #333; line-height: 1.6; margin-top: 1rem; }
.delete-review-btn { background: #e74c3c; color: white; border: none; padding: 0.5rem 1rem; border-radius: 20px; cursor: pointer; font-size: 0.9rem; transition: all 0.3s ease; }
.delete-review-btn:hover { background: #c0392b; transform: scale(1.05); }
.no-reviews { text-align: center; color: #666; padding: 2rem; font-style: italic; }
.admin-reviews-tab { display: none; }
.admin-reviews-tab.active { display: block; }
.review-admin-item { background: #fff; padding: 1.5rem; border-radius: 15px; margin-bottom: 1rem; border-left: 4px solid var(--primary-color); }
.review-admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.review-product-info { font-size: 0.9rem; color: #666; margin-bottom: 0.5rem; }
.about-us-page h1 { color: var(--primary-color); }
.video-section { margin: 2rem 0; background: #fff; padding: 2rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.video-responsive { position: relative; overflow: hidden; padding-top: 56.25%; border-radius: 10px; }
.video-responsive iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.about-text-section { background: #fff; padding: 2rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); line-height: 1.8; color: #34495e; font-size: 1.1rem; }
.order-list-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 1.5rem; }
.order-card { background: var(--admin-dark-surface); padding: 1.5rem; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); color: #fff; border-left: 5px solid; }
.order-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; border-bottom: 1px solid #444; padding-bottom: 1rem; flex-wrap: wrap; gap: 0.5rem;}
.order-card-id { font-weight: bold; color: var(--header-bg); }
.order-card-date { font-size: 0.9rem; color: #aaa; }
.order-card-customer p, .order-card-products p, .order-card-payment p { margin: 0.5rem 0; color: #ddd; }
.order-card-customer strong, .order-card-products strong, .order-card-payment strong { color: #ccc; }
.order-card-products ul { list-style: none; padding-left: 0; margin-top: 0.5rem; }
.order-card-products li { background: var(--admin-dark-bg); padding: 0.5rem; border-radius: 5px; margin-bottom: 0.3rem; }
.order-card-total { text-align: right; font-size: 1.2rem; font-weight: bold; color: var(--header-bg); margin-top: 1rem; }
.order-card-actions { margin-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.order-status-selector { padding: 0.5rem; border-radius: 5px; border: 1px solid #444; background: var(--admin-dark-bg); color: #fff; }
.invoice-btn { background: #007bff; color: white; border: none; padding: 0.5rem 1rem; border-radius: 5px; cursor: pointer; text-decoration: none; }
.status-badge { padding: 0.3rem 0.8rem; border-radius: 15px; font-size: 0.8rem; font-weight: bold; color: #fff; text-transform: capitalize; }
.status-badge.pending { background-color: #f1c40f; }
.status-badge.processing { background-color: #3498db; }
.status-badge.shipped { background-color: #e67e22; }
.status-badge.delivered { background-color: #2ecc71; }
.status-badge.cancelled { background-color: #e74c3c; }
.order-card.status-pending { border-color: #f1c40f; }
.order-card.status-processing { border-color: #3498db; }
.order-card.status-shipped { border-color: #e67e22; }
.order-card.status-delivered { border-color: #2ecc71; }
.order-card.status-cancelled { border-color: #e74c3c; }
.my-orders-list { display: flex; flex-direction: column; gap: 1rem; }
.my-order-item { background: #fff; padding: 1.5rem; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); border-left: 5px solid; }
.my-order-item.status-pending { border-color: #f1c40f; }
.my-order-item.status-processing { border-color: #3498db; }
.my-order-item.status-shipped { border-color: #e67e22; }
.my-order-item.status-delivered { border-color: #2ecc71; }
.my-order-item.status-cancelled { border-color: #e74c3c; }
.my-order-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; border-bottom: 1px solid #eee; padding-bottom: 1rem; flex-wrap: wrap; gap: 1rem; }
.my-order-id { font-weight: bold; color: var(--primary-color); }
.my-order-status { text-transform: capitalize; }
.admin-btn { display: none !important; }
.bottom-nav { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background-color: #ffffff; box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08); z-index: 1000; justify-content: space-around; padding: 5px 0; }
.bottom-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; flex-grow: 1; text-decoration: none; color: #6c757d; padding: 5px 0; transition: color 0.3s ease; }
.bottom-nav a i { font-size: 1.5rem; margin-bottom: 4px; }
.bottom-nav a span { font-size: 0.7rem; font-weight: 500; }
.report-controls { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.report-table-container { overflow-x: auto; }
.report-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.report-table th, .report-table td { padding: 0.8rem; border: 1px solid #444; text-align: left; }
.report-table th { background-color: #3c3c4e; }
.invoice-modal-content { max-width: 800px; }
.invoice-box { padding: 2rem; border: 1px solid #eee; font-size: 1rem; color: #555; }
.invoice-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #eee; padding-bottom: 1rem; margin-bottom: 2rem; }
.invoice-header .logo-title h1 { color: var(--primary-color); margin: 0; }
.invoice-header .logo-title p { margin: 0; }
.invoice-details { text-align: right; }
.invoice-customer-details { margin-bottom: 2rem; }
.invoice-table { width: 100%; border-collapse: collapse; }
.invoice-table th, .invoice-table td { padding: 0.8rem; border-bottom: 1px solid #eee; }
.invoice-table th { background: #f9f9f9; text-align: left; }
.invoice-total { margin-top: 2rem; text-align: right; }
.invoice-actions { text-align: center; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #eee; }
@media print { body * { visibility: hidden; } .invoice-box, .invoice-box * { visibility: visible; } .invoice-box { position: absolute; left: 0; top: 0; width: 100%; margin: 0; padding: 10px; border: none; } .invoice-actions { display: none; } .report-to-print, .report-to-print * { visibility: visible; } .report-to-print { position: absolute; left: 0; top: 0; width: 100%; } }
.video-gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.video-card { background: white; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); overflow: hidden; display: flex; flex-direction: column; }
.video-card-info { padding: 1.5rem; }
.video-card-info h3 { color: var(--primary-color); margin-bottom: 0.5rem; }
.video-card-info p { color: #34495e; font-size: 1rem; }
.admin-video-item { background: var(--admin-dark-surface); padding: 1rem; margin-bottom: 1rem; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; }
.settings-form-container, .settings-info-container { background: white; padding: 2rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); margin-top: 2rem; }
.settings-form-container h2, .settings-info-container h2 { text-align: center; color: var(--primary-color); margin-bottom: 1.5rem; }
.settings-form { display: grid; gap: 1rem; }
.settings-form input, .settings-form textarea { padding: 1rem; border: 2px solid #dee2e6; border-radius: 8px; font-family: inherit; }
.settings-form button { background: var(--primary-color); color: white; border: none; padding: 1rem; border-radius: 8px; cursor: pointer; font-size: 1.1rem; }
.stat-card { background: #f8f9fa; padding: 1.5rem; border-radius: 10px; text-align: center; border-left: 5px solid var(--primary-color); }
.stat-card h3 { font-size: 2.5rem; color: var(--text-color); }
.stat-card p { color: #6c757d; }
.purchased-products-list li { padding: 0.8rem; background: #f8f9fa; margin-bottom: 0.5rem; border-radius: 5px; }
.order-card-payment { background: var(--admin-dark-bg); padding: 1rem; border-radius: 5px; margin-top: 1rem; }
.order-card-payment-field { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.order-card-payment-field input { width: 80px; padding: 0.3rem; background: #444; color: white; border: 1px solid #666; border-radius: 4px; }
.payment-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; background: #f1f3f5; padding: 1rem; border-radius: 8px; margin-top: 1rem; }
.payment-info-item { text-align: center; }
.payment-info-item strong { display: block; color: #2c3e50; }
.payment-info-item span { font-size: 1.2rem; font-weight: bold; }
.due-amount { color: #e74c3c; }
.report-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.report-stat-card { background: var(--admin-dark-surface); padding: 1.5rem; border-radius: 10px; text-align: center; }
.report-stat-card h3 { font-size: 2.5rem; color: #f0e9e1; margin: 0; }
.report-stat-card p { color: #ccc; margin-top: 0.5rem; }
.report-controls input[type="date"] { padding: 0.8rem; border: 2px solid #444; border-radius: 8px; background: var(--admin-dark-bg); color: #fff; color-scheme: dark; }

/* Desktop Styles */
@media (min-width: 769px) {
    .nav {
        display: flex;
        gap: 2rem;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
    }
    .nav a {
        color: var(--text-color);
        text-decoration: none;
        padding: 0.5rem 0;
        transition: all 0.3s ease;
        position: relative;
    }
    .nav a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--text-color);
        transition: width 0.3s ease;
    }
    .nav a:hover::after {
        width: 100%;
    }
    .mobile-menu {
        display: none;
    }
}

/* Mobile & Tablet Styles */
@media (max-width: 768px) {
    body { padding-bottom: 70px; }
    .bottom-nav { display: flex; }

    .banner-container { height: 60vh; }
    #banner-title { font-size: 2.5rem; }
    #banner-subtitle { font-size: 1rem; }
    .banner-button { padding: 10px 20px; font-size: 0.9rem; }
    
    .featured-products { padding: 2rem 0; }
    .featured-products h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
    .products-grid, .models-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 0 5px; }
    .product-card { box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
    .product-card img { height: 220px; }
    .product-info { padding: 1rem; }
    .product-info h3 { font-size: 1rem; line-height: 1.4; min-height: 40px; }
    .product-info .price { font-size: 1.2rem; margin-bottom: 0.5rem; }
    .product-detail { grid-template-columns: 1fr; }
    .admin-tabs { flex-direction: column; }
    .product-search-box { flex-direction: column; }
    .reviews-section { padding: 1rem; }
    .review-form { padding: 1.5rem; }
    .review-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .stars i { font-size: 1.2rem; }
    .site-footer .container { grid-template-columns: repeat(2, 1fr); }
    .footer-col:first-child, .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
    .banner-container { height: 55vh; }
    #banner-title { font-size: 1.8rem; }
    #banner-subtitle { font-size: 0.9rem; max-width: 90%; }
    .product-card img { height: 180px; }
    .product-info h3 { font-size: 0.9rem; }
    .product-info .price { font-size: 1.1rem; }
    .site-footer .container { grid-template-columns: 1fr; }
}