/* ===================================
   RAJ FRAGRANCES - STYLES
   Premium Luxury Theme
   =================================== */

:root {
    --bg-dark: #FAFAFA;
    --bg-card: rgba(255, 255, 255, 0.85);
    --gold: #8B1538;
    --gold-light: #A52A5A;
    --burgundy: #8B1538;
    --text-primary: #1a1a1a;
    --text-secondary: rgba(30, 30, 30, 0.6);
    --border-gold: rgba(139, 21, 56, 0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(139, 21, 56, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 21, 56, 0.02) 0%, transparent 50%);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 8px rgba(139, 21, 56, 0.4));
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    transition: var(--transition);
}

.logo:hover .logo-text {
    text-shadow: 0 0 20px rgba(139, 21, 56, 0.3);
}

.nav {
    display: flex;
    gap: 40px;
    flex-grow: 1;
    justify-content: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf2f4 0%, #fce4ec 50%, #f8e8ee 100%);
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    color: var(--text-secondary);
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 300;
}

.hero-tagline {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--gold);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-image {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.8s both;
    filter: drop-shadow(0 10px 30px rgba(139, 21, 56, 0.15));
}

.cta-btn {
    display: inline-block;
    padding: 16px 48px;
    background: var(--gold);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    border-radius: 50px;
    transition: var(--transition);
    font-size: 14px;
}

.cta-btn:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 20px rgba(139, 21, 56, 0.3);
    transform: translateY(-2px);
}

/* ===================================
   MARQUEE BANNER
   =================================== */

.marquee-banner {
    background: linear-gradient(135deg, #fdf2f4 0%, #fce4ec 100%);
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.marquee-content {
    display: flex;
    gap: 30px;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-content span.separator {
    opacity: 0.5;
}

/* ===================================
   SECTIONS
   =================================== */

.section {
    padding: 80px 0;
    position: relative;
    background: var(--bg-dark);
}

.featured-section {
    background: var(--bg-dark);
}

.collection-section {
    background: #f5f0ed;
}

.about-section {
    background: var(--bg-dark);
}

.why-choose-section {
    background: var(--bg-dark);
}

.contact-section {
    background: #f5f0ed;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 0.8s ease;
    position: relative;
    display: inline-block;
    width: 100%;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.about-image {
    text-align: center;
}

.about-image img {
    height: 320px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(139, 21, 56, 0.1));
    animation: fadeInLeft 1s ease;
}

.about-text {
    animation: fadeInRight 1s ease;
}

.about-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

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

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.highlight {
    background: rgba(139, 21, 56, 0.08);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    transition: var(--transition);
}

.highlight:hover {
    background: rgba(139, 21, 56, 0.12);
    transform: translateY(-4px);
}

.highlight strong {
    display: block;
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.highlight p {
    font-size: 13px;
    margin: 0;
}

.decorative-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   FILTER BUTTONS
   =================================== */

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeIn 0.8s ease 0.2s both;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 25px;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(139, 21, 56, 0.2);
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    animation: fadeIn 0.8s ease 0.3s both;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.1) 0%, rgba(139, 21, 56, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.2) 0%, rgba(139, 21, 56, 0.1) 100%);
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    animation: fadeIn 0.8s ease 0.3s both;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.1) 0%, rgba(139, 21, 56, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.2) 0%, rgba(139, 21, 56, 0.1) 100%);
    transform: scale(1.1);
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.contact-card .location-note {
    font-size: 13px;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 12px;
}

.contact-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 24px;
    background: var(--gold);
    color: #ffffff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.contact-link:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 21, 56, 0.3);
}

/* ===================================
   PRODUCTS GRID
   =================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    animation: fadeIn 0.8s ease 0.3s both;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(139, 21, 56, 0.12), 0 0 30px rgba(139, 21, 56, 0.06);
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: linear-gradient(135deg, #f8f0f2 0%, #fdf2f4 100%);
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.03);
    filter: brightness(0.75);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    /* Ensure notes overlay is clipped to image area */
    isolation: isolate;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Notes toggle button — hidden on desktop, shown on mobile */
.notes-toggle {
    display: none;
}

.product-notes {
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    line-height: 1.5;
    margin: 4px 0 6px;
    font-style: italic;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .notes-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: none;
        border: 1px solid rgba(139, 21, 56, 0.15);
        border-radius: 20px;
        padding: 5px 12px;
        margin: 6px 0 4px;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 500;
        color: var(--gold);
        letter-spacing: 0.4px;
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .notes-toggle:hover,
    .notes-toggle.active {
        background: rgba(139, 21, 56, 0.05);
        border-color: rgba(139, 21, 56, 0.3);
    }

    .notes-arrow {
        font-size: 12px;
        transition: transform 0.25s ease;
        display: inline-block;
    }

    .notes-toggle.active .notes-arrow {
        transform: rotate(180deg);
    }

    /* Hide notes by default on mobile */
    .product-notes {
        display: none;
        margin: 0 0 6px;
        padding: 6px 4px 2px;
        border-top: 1px dashed rgba(139, 21, 56, 0.12);
        animation: notesSlideDown 0.25s ease;
    }

    .product-notes.expanded {
        display: block;
    }

    @keyframes notesSlideDown {
        from { opacity: 0; transform: translateY(-6px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}

.product-size {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gold);
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: var(--transition);
    margin-top: auto;
}

.buy-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 0 20px rgba(139, 21, 56, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 16px;
    height: 16px;
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: slideUp 0.6s ease 0.5s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1520 100%);
    color: #ffffff;
    border-top: 1px solid var(--border-gold);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #D4AF37;
    letter-spacing: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section a {
    color: #D4AF37;
    transition: var(--transition);
}

.footer-section a:hover {
    color: #E5C158;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #D4AF37;
    transition: var(--transition);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.social-links a:hover {
    color: #E5C158;
    transform: scale(1.15) translateY(-3px);
}

.footer-tagline {
    font-size: 13px;
    color: rgba(212, 175, 55, 0.7);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* ===================================
   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);
}

/* ===================================
   FRAGRANCE NOTES HOVER OVERLAY
   =================================== */

.notes-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(20, 5, 10, 0.97) 0%, rgba(20, 5, 10, 0.88) 100%);
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 18px 16px;
    backdrop-filter: blur(4px);
}

.product-card:hover .notes-overlay {
    transform: translateY(0);
}

.notes-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notes-title {
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 4px;
    text-align: center;
}

.notes-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.notes-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #D4AF37;
    text-transform: uppercase;
    min-width: 42px;
    padding-top: 1px;
    flex-shrink: 0;
}

.notes-value {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

/* ===================================
   MOBILE RESPONSIVENESS
   =================================== */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .logo {
        gap: 8px;
    }

    .logo-img {
        height: 32px;
    }

    .logo-text {
        font-size: 16px;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        border-bottom: 1px solid var(--border-gold);
    }

    .nav.active {
        max-height: 300px;
        padding: 20px 0;
    }

    .nav-link {
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid var(--border-gold);
    }

    .nav-link::after {
        display: none;
    }

    .hero-image {
        height: 80px;
        margin-bottom: 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image img {
        height: 240px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    /* 2-column grid on tablets */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 14px;
    }

    .product-name {
        font-size: 15px;
    }

    .product-price {
        font-size: 16px;
    }

    .buy-btn {
        padding: 10px 14px;
        font-size: 12px;
        letter-spacing: 0.6px;
        gap: 6px;
        white-space: nowrap;
    }

    .buy-btn .whatsapp-icon {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: clamp(28px, 6vw, 42px);
        margin-bottom: 40px;
    }

    .filter-container {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 56px);
    }

    .hero-subtitle {
        font-size: clamp(16px, 3vw, 22px);
    }

    .hero-tagline {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn svg {
        width: 20px;
        height: 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .marquee-content {
        font-size: 12px;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        gap: 6px;
    }

    .logo-img {
        height: 28px;
    }

    .logo-text {
        font-size: 13px;
        letter-spacing: 1px;
    }

    /* Single column on phones — cleaner, more premium */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Horizontal card layout on single column */
    .product-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        border-radius: 10px;
    }

    .product-image-wrap {
        width: 130px;
        min-width: 130px;
        flex-shrink: 0;
        border-radius: 10px 0 0 10px;
        overflow: hidden;
    }

    .product-image {
        height: 100%;
        min-height: 160px;
        object-fit: cover;
        border-radius: 0;
    }

    .product-badge {
        top: 8px;
        left: 8px;
        font-size: 9px;
        padding: 3px 7px;
    }

    /* Hide the hover notes overlay on mobile card */
    .notes-overlay {
        display: none;
    }

    .product-info {
        padding: 12px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 4px;
    }

    .product-name {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 2px;
    }

    .product-size {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .product-notes {
        font-size: 10px;
        margin: 2px 0 4px;
    }

    .notes-toggle {
        padding: 4px 10px;
        font-size: 10px;
        margin: 2px 0 4px;
    }

    .product-price {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .buy-btn {
        padding: 8px 12px;
        font-size: 11px;
        letter-spacing: 0.5px;
        gap: 5px;
        white-space: nowrap;
        border-radius: 5px;
    }

    .buy-btn .whatsapp-icon {
        width: 13px;
        height: 13px;
        flex-shrink: 0;
    }

    .filter-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .hero {
        height: 70vh;
    }

    .hero-image {
        height: 60px;
        margin-bottom: 20px;
    }

    .cta-btn {
        padding: 12px 32px;
        font-size: 12px;
    }

    .about-tagline {
        font-size: 18px;
    }

    .about-highlights {
        gap: 12px;
    }

    .highlight {
        padding: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .marquee-content {
        font-size: 11px;
        gap: 10px;
    }

    .section-title {
        font-size: clamp(24px, 7vw, 36px);
    }

    .footer-bottom {
        font-size: 12px;
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}

/* ===================================
   LOADING ANIMATION
   =================================== */

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* ===================================
   SMOOTH SCROLL
   =================================== */

@supports (scroll-behavior: smooth) {
    html {
        scroll-behavior: smooth;
    }
}
