* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #1a0f0a;
    --secondary-bg: #2d1810;
    --accent-gold: #d4af37;
    --gold-hover: #f0c75e;
    --text-primary: #f5f5f5;
    --text-secondary: #c9b8a8;
    --maroon: #4a1c1c;
    --shadow: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* SECTION 1: Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, var(--maroon), var(--accent-gold), var(--maroon));
    padding: 12px 20px;
    text-align: center;
    border-bottom: 1px solid var(--accent-gold);
}

@media (max-width: 768px) {
    .announcement-bar {
        display: none;
    }
}

.announcement-text {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* SECTION 2: Header */
.header {
    background-color: var(--secondary-bg);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px var(--shadow);
    border-bottom: 1px solid var(--accent-gold);
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.header-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.icon-btn:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-gold);
    color: var(--primary-bg);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 50%;
}

/* SECTION 3: Hero Banner */
.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--secondary-bg) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-overlay {
    max-width: 800px;
    padding: 60px 40px;
    background: rgba(26, 15, 10, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    box-shadow: 0 8px 32px var(--shadow);
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.cta-btn {
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.primary-cta {
    background: var(--accent-gold);
    color: var(--primary-bg);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.primary-cta:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.secondary-cta {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.secondary-cta:hover {
    background: var(--accent-gold);
    color: var(--primary-bg);
}

/* SECTION 4: Trust Strip */
.trust-strip {
    background-color: var(--secondary-bg);
    padding: 40px 20px;
    border-top: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    color: var(--accent-gold);
}

.trust-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* SECTION 5: Category Section */
.category-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 42px;
    text-align: center;
    color: var(--accent-gold);
    margin-bottom: 60px;
    letter-spacing: 1.5px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--secondary-bg);
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px var(--shadow);
    border-color: var(--gold-hover);
}

.category-image-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--maroon), var(--secondary-bg));
}

.category-name {
    padding: 24px;
    text-align: center;
    font-size: 20px;
    color: var(--text-primary);
    letter-spacing: 1px;
}

/* SECTION 6: Featured Section */
.featured-section {
    padding: 100px 40px;
    background: var(--secondary-bg);
}

.product-slider {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.product-slider-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.product-slider-track::-webkit-scrollbar {
    height: 8px;
}

.product-slider-track::-webkit-scrollbar-track {
    background: var(--primary-bg);
    border-radius: 4px;
}

.product-slider-track::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

.product-card {
    min-width: 300px;
    background: var(--primary-bg);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.product-image-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--maroon), var(--secondary-bg));
    border-radius: 4px;
    margin-bottom: 20px;
}

.product-title {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.product-price {
    font-size: 20px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-gold);
    color: var(--primary-bg);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -24px;
}

.next-btn {
    right: -24px;
}

/* SECTION 7: Social Proof */
.social-proof-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.media-scroll-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.media-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.media-scroll-container::-webkit-scrollbar-track {
    background: var(--secondary-bg);
    border-radius: 4px;
}

.media-scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

.media-card {
    min-width: 280px;
    height: 380px;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    overflow: hidden;
}

.media-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--maroon), var(--secondary-bg));
}

/* SECTION 8: Promo Banner */
.promo-banner-section {
    padding: 100px 40px;
    background: var(--secondary-bg);
}

.promo-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.promo-banner {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
}

.promo-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--maroon), var(--secondary-bg));
}

.promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px;
    background: linear-gradient(to top, rgba(26, 15, 10, 0.95), transparent);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.promo-heading {
    font-size: 36px;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

/* SECTION 9: Combo Section */
.combo-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.combo-slider {
    position: relative;
}

.combo-slider-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.combo-card {
    min-width: 400px;
    background: var(--secondary-bg);
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.combo-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px var(--shadow);
}

.combo-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--maroon), var(--secondary-bg));
}

.combo-title {
    padding: 28px;
    text-align: center;
    font-size: 24px;
    color: var(--text-primary);
    letter-spacing: 1px;
}

/* SECTION 10: Brand Story */
.brand-story-section {
    padding: 100px 40px;
    background: var(--secondary-bg);
}

.brand-story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brand-story-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-title {
    font-size: 48px;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
}

.story-paragraph {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.story-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--maroon), var(--secondary-bg));
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
}

/* SECTION 11: Trust Section */
.trust-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.trust-feature {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    color: var(--accent-gold);
}

.feature-title {
    font-size: 20px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.feature-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* SECTION 12: Press Section */
.press-section {
    padding: 100px 40px;
    background: var(--secondary-bg);
}

.press-logos {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.press-logo-placeholder {
    width: 160px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 184, 168, 0.2), rgba(212, 175, 55, 0.1));
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.press-logo-placeholder:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* SECTION 13: Footer */
.footer {
    background: #0f0805;
    border-top: 2px solid var(--accent-gold);
    padding: 80px 40px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-gold);
    color: var(--primary-bg);
    transform: translateY(-4px);
}

.footer-heading {
    font-size: 18px;
    color: var(--accent-gold);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.newsletter-text {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    padding: 12px 16px;
    background: var(--secondary-bg);
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
}

.newsletter-btn {
    padding: 12px 24px;
    background: var(--accent-gold);
    color: var(--primary-bg);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--gold-hover);
}

.footer-bottom {
    border-top: 1px solid var(--accent-gold);
    padding: 32px 0;
    text-align: center;
}

.copyright {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(74, 28, 28, 0.3) 0%,
        rgba(212, 175, 55, 0.2) 50%,
        rgba(74, 28, 28, 0.3) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    pointer-events: none;
}

.skeleton-image {
    width: 100%;
    height: 280px;
    margin-bottom: 0;
}

.skeleton-text {
    width: 60%;
    height: 24px;
    margin: 20px auto;
}

.skeleton-product-image {
    width: 100%;
    height: 320px;
    margin-bottom: 20px;
}

.skeleton-title {
    width: 80%;
    height: 20px;
    margin-bottom: 12px;
}

.skeleton-price {
    width: 40%;
    height: 24px;
    margin-bottom: 20px;
}

.skeleton-button {
    width: 100%;
    height: 40px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--secondary-bg);
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px var(--shadow);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--accent-gold);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--accent-gold);
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--accent-gold);
}

.mobile-nav-divider {
    height: 2px;
    background: var(--accent-gold);
    margin: 16px 0;
}

.mobile-nav-action {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.mobile-nav-action svg {
    color: var(--accent-gold);
}

.mobile-nav-store {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-gold);
    color: var(--primary-bg);
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-weight: 600;
    border: none;
}

.mobile-nav-store svg {
    color: var(--primary-bg);
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 15, 10, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--accent-gold);
    cursor: pointer;
}

.search-box {
    display: flex;
    gap: 12px;
}

.search-input {
    flex: 1;
    padding: 16px 24px;
    background: var(--secondary-bg);
    border: 2px solid var(--accent-gold);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 18px;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-btn {
    padding: 16px 32px;
    background: var(--accent-gold);
    border: none;
    border-radius: 4px;
    color: var(--primary-bg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--gold-hover);
}

/* Countdown Timer */
.countdown {
    color: var(--accent-gold);
    font-weight: 600;
    margin-left: 12px;
}

/* Quick View Button */
.product-card {
    position: relative;
}

.quick-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-gold);
    color: var(--primary-bg);
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.product-card:hover .quick-view-btn {
    opacity: 1;
}

.add-to-cart {
    width: 100%;
    background: var(--accent-gold);
    color: var(--primary-bg);
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--secondary-bg);
    padding: 40px;
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px var(--shadow);
}

.stars {
    color: var(--accent-gold);
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    fill: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.8);
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border: none;
    border-radius: 50%;
    color: var(--primary-bg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Welcome Toast */
.welcome-toast {
    position: fixed;
    top: 100px;
    right: -400px;
    background: var(--secondary-bg);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 8px 32px var(--shadow);
    z-index: 2000;
    transition: right 0.4s ease;
    max-width: 350px;
}

.welcome-toast.show {
    right: 30px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.toast-content svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.toast-content span {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Effect */
.hero-section {
    background-attachment: fixed;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.category-image-placeholder,
.product-image-placeholder,
.media-placeholder,
.promo-image-placeholder,
.combo-image-placeholder,
.story-image-placeholder {
    background: linear-gradient(
        90deg,
        var(--maroon) 0%,
        var(--secondary-bg) 50%,
        var(--maroon) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .brand-story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-center {
        display: none;
    }
    
    .header-container {
        padding: 0 16px;
    }
    
    .logo-text {
        font-size: 20px!important;
    }
    
    .header-right {
        gap: 20px;
    }
    
    .header-right .icon-btn {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.1);
        transition: all 0.3s ease;
    }
    
    .header-right .mobile-login-btn {
        width: 44px;
        height: 44px;
    }
    
    .header-right .icon-btn:hover {
        background: rgba(212, 175, 55, 0.2);
        transform: scale(1.05);
    }
    
    .header-right .icon-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .mobile-menu-toggle svg {
        width: 24px;
        height: 24px;
    }
    
    .icon-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .announcement-bar {
        padding: 10px 16px;
    }
    
    .announcement-text {
        font-size: 12px;
    }
    
    .hero-section {
        height: 70vh;
    }
    
    .hero-overlay {
        padding: 40px 24px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .cta-btn {
        padding: 14px 32px;
        font-size: 14px;
    }
    
    .trust-strip {
        padding: 32px 16px;
    }
    
    .trust-container {
        gap: 24px;
    }
    
    .trust-item {
        gap: 8px;
    }
    
    .trust-icon {
        width: 24px;
        height: 24px;
    }
    
    .trust-label {
        font-size: 12px;
    }
    
    .category-section,
    .featured-section,
    .social-proof-section,
    .combo-section,
    .trust-section,
    .testimonials-section {
        padding: 60px 16px;
    }
    
    .promo-banner-section,
    .brand-story-section,
    .press-section {
        padding: 60px 16px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .category-image-placeholder {
        height: 200px;
    }
    
    .category-name {
        padding: 16px;
        font-size: 16px;
    }
    
    .product-card {
        min-width: 260px;
        padding: 16px;
    }
    
    .product-image-placeholder {
        height: 260px;
    }
    
    .product-title {
        font-size: 16px;
    }
    
    .product-price {
        font-size: 18px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: -20px;
    }
    
    .next-btn {
        right: -20px;
    }
    
    .media-card {
        min-width: 220px;
        height: 300px;
    }
    
    .promo-banner {
        height: 400px;
    }
    
    .promo-overlay {
        padding: 40px 24px;
    }
    
    .promo-heading {
        font-size: 28px;
    }
    
    .combo-card {
        min-width: 320px;
    }
    
    .combo-image-placeholder {
        height: 320px;
    }
    
    .combo-title {
        padding: 20px;
        font-size: 20px;
    }
    
    .story-title {
        font-size: 36px;
    }
    
    .story-paragraph {
        font-size: 15px;
    }
    
    .story-image-placeholder {
        height: 400px;
    }
    
    .trust-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .press-logos {
        gap: 40px;
    }
    
    .press-logo-placeholder {
        width: 120px;
        height: 60px;
    }
    
    .footer {
        padding: 60px 16px 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        font-size: 24px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 20px;
    }
    
    .welcome-toast {
        max-width: 300px;
        padding: 16px 20px;
    }
    
    .welcome-toast.show {
        right: 16px;
    }
    
    .toast-content {
        gap: 12px;
    }
    
    .toast-content span {
        font-size: 14px;
    }
    
    .search-modal-content {
        width: 95%;
    }
    
    .search-input {
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .search-btn {
        padding: 14px 24px;
    }
    
    .loader-brand {
        flex-direction: column;
        gap: 16px;
    }
    
    .loader-icon {
        width: 50px;
        height: 50px;
    }
    
    .loader-title {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .loader-bar {
        width: 220px;
    }
    
    .loader-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .header-right {
        gap: 8px;
    }
    
    .icon-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .cart-count {
        font-size: 10px;
        padding: 2px 5px;
    }
    
    .announcement-text {
        font-size: 11px;
    }
    
    .countdown {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
    
    .hero-section {
        height: 60vh;
    }
    
    .hero-overlay {
        padding: 32px 20px;
    }
    
    .hero-title {
        font-size: 26px;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 12px 28px;
        font-size: 13px;
    }
    
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trust-label {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .category-image-placeholder {
        height: 180px;
    }
    
    .category-name {
        padding: 14px;
        font-size: 15px;
    }
    
    .product-card {
        min-width: 240px;
        padding: 14px;
    }
    
    .product-image-placeholder {
        height: 240px;
    }
    
    .product-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .product-price {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .add-to-cart {
        padding: 10px;
        font-size: 13px;
    }
    
    .quick-view-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
    }
    
    .prev-btn {
        left: -18px;
    }
    
    .next-btn {
        right: -18px;
    }
    
    .media-card {
        min-width: 200px;
        height: 280px;
    }
    
    .promo-banner {
        height: 350px;
    }
    
    .promo-overlay {
        padding: 32px 20px;
    }
    
    .promo-heading {
        font-size: 24px;
    }
    
    .combo-card {
        min-width: 280px;
    }
    
    .combo-image-placeholder {
        height: 280px;
    }
    
    .combo-title {
        padding: 16px;
        font-size: 18px;
    }
    
    .story-title {
        font-size: 28px;
    }
    
    .story-paragraph {
        font-size: 14px;
    }
    
    .story-image-placeholder {
        height: 320px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-text {
        font-size: 13px;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .stars {
        font-size: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-author {
        font-size: 13px;
    }
    
    .press-logos {
        gap: 32px;
    }
    
    .press-logo-placeholder {
        width: 100px;
        height: 50px;
    }
    
    .footer-brand {
        font-size: 22px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .footer-heading {
        font-size: 16px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .newsletter-text {
        font-size: 13px;
    }
    
    .newsletter-input,
    .newsletter-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .copyright {
        font-size: 12px;
    }
    
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }
    
    .scroll-top {
        width: 42px;
        height: 42px;
        bottom: 72px;
        right: 16px;
    }
    
    .welcome-toast {
        max-width: 280px;
        padding: 14px 16px;
    }
    
    .welcome-toast.show {
        right: 12px;
    }
    
    .toast-content svg {
        width: 20px;
        height: 20px;
    }
    
    .toast-content span {
        font-size: 13px;
    }
    
    .search-close {
        top: -36px;
    }
    
    .search-box {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-input {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .search-btn {
        padding: 12px;
        width: 100%;
    }
    
    .mobile-menu {
        width: 280px;
    }
    
    .loader-title {
        font-size: 28px;
        letter-spacing: 3px;
    }
    
    .loader-bar {
        width: 200px;
    }
    
    .loader-subtitle {
        font-size: 10px;
    }
}

.page-loader{position:fixed;top:0;left:0;width:100%;height:100%;background:radial-gradient(circle at center,#2a1515 0%,#1a0f0a 100%);display:flex;align-items:center;justify-content:center;z-index:9999;transition:opacity .4s cubic-bezier(.4,0,.2,1),visibility .4s}.page-loader.hidden{opacity:0;visibility:hidden;pointer-events:none}.loader-content{text-align:center;animation:fadeInUp .6s ease-out}.loader-brand{display:flex;align-items:center;justify-content:center;gap:20px;margin-bottom:40px}.loader-icon{width:60px;height:60px;animation:iconPulse 2s ease-in-out infinite}.loader-circle{fill:none;stroke:#d4af37;stroke-width:3;stroke-dasharray:283;stroke-dashoffset:283;animation:drawCircle 2s ease-in-out infinite}.loader-check{fill:none;stroke:#d4af37;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:50;stroke-dashoffset:50;animation:drawCheck 2s ease-in-out infinite .5s}.loader-title{font-family:'Playfair Display',serif;font-size:42px;font-weight:700;color:#d4af37;letter-spacing:6px;margin:0;text-shadow:0 0 30px rgba(212,175,55,.4);animation:titleGlow 2s ease-in-out infinite}.loader-bar{width:280px;height:3px;background:rgba(212,175,55,.2);border-radius:10px;overflow:hidden;margin:0 auto 20px;box-shadow:0 0 20px rgba(212,175,55,.1)}.loader-progress{height:100%;background:linear-gradient(90deg,#d4af37,#f5f5f5,#d4af37);background-size:200% 100%;animation:progressSlide 1.5s ease-in-out infinite;box-shadow:0 0 15px rgba(212,175,55,.6)}.loader-subtitle{color:#c9b8a8;font-size:13px;letter-spacing:3px;text-transform:uppercase;margin:0;opacity:.8;animation:subtitleFade 2s ease-in-out infinite}@keyframes fadeInUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@keyframes iconPulse{0%,100%{transform:scale(1)}50%{transform:scale(1.08)}}@keyframes drawCircle{0%{stroke-dashoffset:283}50%{stroke-dashoffset:0}100%{stroke-dashoffset:283}}@keyframes drawCheck{0%,40%{stroke-dashoffset:50}60%{stroke-dashoffset:0}100%{stroke-dashoffset:0}}@keyframes titleGlow{0%,100%{text-shadow:0 0 30px rgba(212,175,55,.4),0 0 10px rgba(212,175,55,.2)}50%{text-shadow:0 0 40px rgba(212,175,55,.8),0 0 20px rgba(212,175,55,.4)}}@keyframes progressSlide{0%{background-position:200% 0}100%{background-position:-200% 0}}@keyframes subtitleFade{0%,100%{opacity:.6}50%{opacity:1}}

.logo-link{display:inline-block;line-height:0}.logo-img{height:40px;width:auto;object-fit:contain}.mobile-logo{height:32px;width:auto;object-fit:contain}.hero-section{background-size:cover;background-position:center;background-repeat:no-repeat}@media(max-width:768px){.hero-section{background-image:url('images/hero-banner-mobile.jpg')!important}.logo-img{height:32px}}@media(min-width:769px)and (max-width:1024px){.hero-section{background-image:url('images/hero-banner-tablet.jpg')!important}}

.category-card img{width:100%;height:280px;object-fit:cover;display:block;border-radius:8px 8px 0 0}.promo-banner{background-size:cover;background-position:center}.promo-banner:nth-child(1){background-image:url('images/promp-banner-1.jpg')}.promo-banner:nth-child(2){background-image:url('images/promo-banner-2.jpg')}

.logo-link{background:none!important}.logo-img{background:none!important;mix-blend-mode:normal}.loader-icon{display:block;margin:0 auto}

.section-subtitle{text-align:center;color:var(--text-secondary);font-size:16px;margin-top:-40px;margin-bottom:40px;font-weight:400}.testimonial-location{color:var(--text-secondary);font-size:13px;margin-top:4px}
