:root {
    --bg-color: #FFFDF5; /* Premium Light Cream from Home Page */
    --accent-gold: #b38e42; /* Slightly more focused gold for light theme */
    --text-primary: #1a1a1b; /* Deep Obsidian Charcoal */
    --text-secondary: #5a5a5a; /* Muted Slate Gray */
    --glass-bg: rgba(255, 255, 255, 0.75); /* Frosted White Glass */
    --glass-border: rgba(0, 0, 0, 0.08); /* Soft Dark Border */
    --nav-height: 80px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: transparent;
    overflow: hidden;
}

/* Subtle noise texture */
.bg-animation::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    z-index: 10;
    
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px); /* Less blur so shapes are distinct */
    opacity: 0.6; /* Drastically increased so they are highly visible */
    pointer-events: none;
    z-index: 0; /* Ensures they sit above the base background but behind content */
    will-change: transform;
}

/* Rich Gold Orb */
.orb-1 {
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, #D4AF37 0%, transparent 70%); /* Metallic Gold */
    top: -20%;
    left: -20%;
    animation: liquid-flow-1 6s linear infinite alternate; /* Fast continuous movement */
}

/* Warm Bronze Orb */
.orb-2 {
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, #CD7F32 0%, transparent 70%); /* Bronze */
    bottom: -10%;
    right: -10%;
    opacity: 0.5; /* Overriding base opacity slightly */
    animation: liquid-flow-2 8s linear infinite alternate; /* Fast continuous movement */
}

/* Soft Cream/Light Gold Orb */
.orb-3 {
    width: 90vw;
    height: 90vw;
    background: radial-gradient(circle, #FFE5B4 0%, transparent 70%); /* Peach/Cream */
    top: 20%;
    left: 10%;
    opacity: 0.6;
    animation: liquid-flow-3 7s linear infinite alternate; /* Fast continuous movement */
}

@keyframes liquid-flow-1 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(20vw, 15vh) scale(1.1) rotate(45deg); }
}

@keyframes liquid-flow-2 {
    0% { transform: translate(0, 0) scale(1.1) rotate(0deg); }
    100% { transform: translate(-25vw, -20vh) scale(1) rotate(-45deg); }
}

@keyframes liquid-flow-3 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(10vw, 30vh) scale(1.2) rotate(180deg); }
}

.navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 2.1cm;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    background: rgba(74, 38, 19, 0.95); /* Rich Dark Brown with slight transparency */
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3); /* Subtle gold border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Slightly stronger shadow */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px; /* Slightly refined height */
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08)); /* Clean, professional drop shadow instead of a glowing box */
    transition: all 0.4s ease;
}

.logo img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 6px 15px rgba(0,0,0,0.12));
}

.navbar-name {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem; 
    font-weight: 900; 
    color: #FFFBF0; /* Very light cream */
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 auto 0 40px; /* Pushes it next to the logo but leaves space, or just margin: 0 40px */
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Subtle dark shadow for depth */
}

.nav-links {
    display: flex;
    gap: 35px;
    padding: 10px 15px; /* Clean, floating links without heavy borders */
}

.nav-btn {
    color: #FFFBF0; /* Very light cream */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 800; 
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

.dropdown > .nav-btn {
    cursor: pointer;
}

.hero {
    position: relative;
    width: 100vw;
    min-height: calc(100vh - 2.1cm);
    display: flex;
    flex-direction: row; 
    justify-content: flex-start; 
    align-items: stretch; /* Stretch to align photo with button */
    margin-top: calc(2.1cm + 40px); 
    background-color: transparent; 
    padding: 0 5% 100px; /* Added bottom padding for the contact bar */
    overflow: hidden;
    gap: 50px; 
}

.hero-image-container {
    position: relative;
    flex: 0 0 72%; 
    display: flex;
    justify-content: flex-start; 
    align-items: stretch; /* Match hero height stretch */
    overflow: hidden; 
}

.hero-image {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center;
    border-radius: 4px; 
    animation: fadeInUp 1.5s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.cta-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    flex: 0 0 24%; /* Fits nicely under the remaining right-side links */
    padding: 0;
    background: transparent; 
    animation: reveal3D 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    perspective: 1000px;
}

.hero-brand-year {
    font-family: 'Cinzel', serif; 
    font-size: 1.8rem; 
    background: linear-gradient(90deg, #4A2613, #D4AF37, #4A2613);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 35px;
    font-weight: 700; 
    position: relative;
    display: inline-block;
    animation: shine 4s linear infinite, reveal3D 1s ease-out forwards;
    opacity: 0;
}

.hero-brand-year::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #D4AF37;
    border-radius: 2px;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; 
    font-weight: 600; 
    line-height: 1.6;
    margin-bottom: 30px; 
    letter-spacing: 6px; /* Slightly reduced spacing */
    text-transform: uppercase; /* All caps as requested */
    color: #8C5A24; 
    text-shadow: 0 4px 15px rgba(0,0,0,0.04); 
    animation: reveal3D 1.2s ease-out 0.2s forwards;
    opacity: 0;
    width: 100%;
}

@keyframes reveal3D {
    0% {
        opacity: 0;
        transform: translateZ(-100px) rotateX(-20deg) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateZ(0) rotateX(0) translateY(0);
    }
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px; 
    margin-top: 0; /* Reduced to move button up */
    background: #4A2613; /* Rich Dark Brown */
    color: #FDFBF7; /* Pearl white text */
    text-decoration: none;
    font-size: 0.95rem; 
    font-weight: 600; 
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap; 
    border-radius: 2px; /* Sharp architectural corners */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #4A2613;
}

.explore-btn:hover {
    background: transparent;
    color: #4A2613; /* Text turns dark */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(58, 30, 13, 0.15);
}

.hero-contact-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #4A2613; /* Rich Dark Brown */
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.contact-link {
    color: #FFFBF0; /* Light Cream */
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-gold);
    letter-spacing: 5px;
}

.contact-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.contact-phone-btn {
    color: #FFFBF0;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.contact-phone-btn:hover {
    color: var(--accent-gold);
}

.contact-email {
    color: #FFFBF0;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.contact-email:hover {
    opacity: 1;
}



@media (max-width: 1024px) {
    .navbar-name {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 768px) {
    .navbar-name {
        display: none; 
    }
    .hero {
        flex-direction: column;
        padding: 5% 5% 10%;
        gap: 30px;
        min-height: 100vh;
        justify-content: center;
        margin-top: 100px;
    }
    .hero-image-container {
        width: 100%;
        justify-content: center;
    }
    .hero-image {
        height: auto;
        max-height: 50vh;
    }
    .cta-container {
        flex: 1 1 100%;
        align-items: center;
        text-align: center;
        padding: 25px 15px;
        width: 100%;
    }
    .hero-brand-year {
        font-size: 1.3rem; 
        letter-spacing: 4px;
        margin-bottom: 12px;
    }
    .hero-subtitle {
        font-size: 0.9rem; 
        letter-spacing: 4px; /* Slightly reduced spacing for mobile */
        text-transform: uppercase;
        margin-bottom: 35px;
        color: #2c1e14;
        text-shadow: 0 2px 4px rgba(255,255,255,0.9), 0 0 15px rgba(255,255,255,0.7);
    }
    .hero-contact-bar {
        position: relative;
        bottom: 0;
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 30px 20px;
        margin-top: 40px;
    }
    .contact-group {
        align-items: center;
    }
    .contact-link {
        font-size: 1rem;
    }
    .contact-phone-btn {
        font-size: 1rem;
    }
    .contact-email {
        font-size: 0.8rem;
    }
    /* ... existing mobile styles ... */
    .nav-links {
        gap: 15px;
        padding: 10px 20px;
    }
    
    .nav-btn {
        font-size: 0.75rem;
    }
    
    .explore-btn {
        padding: 15px 35px;
        font-size: 0.8rem;
    }

    .contact-title {
        font-size: 1rem;
    }
    .contact-detail {
        font-size: 0.85rem;
    }
    .contact-detail.mail-link {
        font-size: 0.75rem;
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: block;
    position: absolute;
    top: 40px;
    right: 0;
    min-width: 450px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    z-index: 2000;
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--text-secondary);
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.dropdown-content a:hover {
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.03);
    padding-left: 18px;
    border-left: 2px solid var(--accent-gold);
}

@media (max-width: 480px) {
    .dropdown-content {
        min-width: 250px;
        grid-template-columns: 1fr;
    }
}

/* Home Page Styles */
body.home-page {
    background: var(--bg-color);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

/* Disable background animations on main pages for a cleaner look */
body.home-page .bg-animation,
body.collection-page .bg-animation,
body.about-page .bg-animation {
    display: none;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Collections Page Styles */
body.collection-page {
    background: var(--bg-color);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    margin: 0;
    .collections-container{
        background: transparent;
    }
}

.collections-container {
    background: transparent;
    

    margin: 0;
    padding: 120px 5% 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.collections-header {
    text-align: center;
    margin-bottom: 60px;
}

.collections-banner {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}


.category-section {
    margin-bottom: 100px;
    text-align: center; /* Center the boxed title */
}

.category-title {
    font-size: 1.6rem;
    color: #4A2613; /* Solid Dark Brown matching Navbar */
    background: #FFFFFF; /* Pure White Box */
    display: inline-block;
    padding: 15px 45px;
    margin-bottom: 45px;
    letter-spacing: 5px;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 5px solid var(--accent-gold); /* Gold accent */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    aspect-ratio: 1/1;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.product-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #4A2613; /* Rich Dark Brown backdrop for products */
}

.product-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-info {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(10px);
    z-index: 10;
}

.product-card:hover .product-info {
    opacity: 1;
    transform: translateY(0);
}

.product-name {
    background: #FFFDF5; /* Light Cream background for the name box */
    color: #4A2613 !important; /* Rich Dark Brown font as requested */
    padding: 10px 25px;
    border-radius: 2px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--accent-gold);
    text-align: center;
    display: inline-block;
    white-space: nowrap;
}


.not-available-section {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    text-align: center;
    padding: 40px;
}

.not-available-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 60px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    max-width: 600px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.not-available-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.not-available-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Mobile Responsiveness God-Level Optimization */

@media (max-width: 1024px) {
    .product-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .navbar {
        justify-content: center;
        padding: 0 10px;
    }

    .nav-links {
        gap: 10px;
        padding: 8px 15px;
    }

    .nav-btn {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .explore-btn {
        padding: 15px 35px;
        font-size: 0.8rem;
    }

    .collections-container {
        padding-top: 100px;
    }

    .category-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .product-grid {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding-top: 10px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        border-radius: 15px;
    }

    .dropdown-content {
        position: fixed;
        left: 5vw;
        right: 5vw;
        top: 80px;
        width: 90vw;
        min-width: unset;
        grid-template-columns: 1fr;
        max-height: 70vh;
        overflow-y: auto;
        padding: 20px;
    }

    .category-section {
        margin-bottom: 60px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* Maintaining the 2-2 line request */
        gap: 10px;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-info {
        padding: 10px;
    }

    .product-name {
        font-size: 0.8rem;
    }

    .not-available-content {
        padding: 30px;
        margin: 0 15px;
    }

    .not-available-content h2 {
        font-size: 1.8rem;
    }
}


/* About Page Styles */
.about-container {
    padding: 140px 5% 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero {
    text-align: center;
    margin-bottom: 80px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #4A2613;
    background: #FFFFFF;
    display: inline-block;
    padding: 15px 50px;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 5px solid var(--accent-gold);
    animation: fadeInUp 1s ease-out;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 1.2s ease-out;
}

/* Owner Section Styles */
.owner-section {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin: 40px 0 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(179, 142, 66, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    animation: fadeInUp 1.3s ease-out;
}

.owner-image-container {
    flex: 0 0 280px;
}

.owner-photo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 1px solid var(--accent-gold);
    transition: transform 0.5s ease;
}

.owner-section:hover .owner-photo {
    transform: scale(1.02);
}

.owner-info {
    flex: 1;
}

.owner-name-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #4A2613;
    background: #FFFFFF;
    display: inline-block;
    padding: 10px 30px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--accent-gold);
}

.owner-bio {
    font-size: 0.8rem; /* Very small font as requested */
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: justify;
}

.owner-bio p {
    margin-bottom: 15px;
}

.owner-contact {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(179, 142, 66, 0.2);
    font-size: 0.85rem;
    font-weight: 600;
}

.owner-phone-link {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-left: 5px;
}

.owner-phone-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.owner-section + .owner-section {
    margin-top: 40px;
}

.contact-section {
    margin-top: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 1.4s ease-out;
}

.contact-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon-wrapper {
    background: var(--accent-gold);
    transform: rotateY(360deg);
}

.contact-icon {
    width: 35px;
    height: 35px;
    color: var(--accent-gold);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    color: #000;
}

.contact-card:hover .contact-icon.instagram-brand-icon {
    color: #E1306C; /* Instagram Pink */
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
    flex-grow: 1;
}

.contact-button {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: var(--accent-gold);
    color: #000;
}

.contact-buttons-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

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

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-container {
        padding-top: 120px;
    }
    .about-title {
        font-size: 2.5rem;
    }
    .owner-section {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .owner-image-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

.particle {
    position: absolute;
    background: var(--accent-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: move-particle linear infinite;
}

@keyframes move-particle {
    from { transform: translateY(0); }
    to { transform: translateY(-110vh); }
}
/* --- Collections Page Final Fix --- */

/* 1. Body par image lagana aur variable color hatana */
body.collection-page {
    background-image:url('product/satin background.png') !important;
    background-attachment: fixed !important;
    background-size: 100% auto !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important; /* Ye var(--bg-color) ko cancel karega */
}

/* 2. bg-animation div jo '--bg-color' use kar raha hai, use transparent karein */
.collection-page .bg-animation {
    background: transparent !important;
    background-color: transparent !important;
}

/* --- Image Zoom Modal / Lightbox --- */
.image-zoom-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.zoom-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-gold);
    animation: zoomIn 0.3s ease;
}


.close-zoom {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
}

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

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

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .zoom-content {
        max-width: 100%;
    }
    .close-zoom {
        top: 20px;
        right: 20px;
        font-size: 35px;
    }
    #zoomCaption {
        font-size: 1.2rem;
    }
}


/* 3. Dhundhle golay (orbs) hatayein jo image block kar rahe hain */
.collection-page .orb {
    display: none !important;
}

/* 4. Poore container ko transparent rakhein */
.collections-container {
    background: transparent !important;
}


.collections-header {
    margin-top: 60px; /* Navbar se thoda niche */
    margin-bottom: 60px; /* Title se thoda gap */
}
.collections-banner {
    border: 4px solid #b38e42 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02), 0 5px 15px rgba(0, 0, 0, 0.01) !important;
    border-radius: 15px;
    z-index: -1;
     /* 2. Moti Golden Frame (Outer Border) */
    border: 8px solid #b38e42 !important; 
    border-image: linear-gradient(to bottom right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c) 1 !important;
    
    /* 3. Double Border Effect (Inner Line) */
    outline: 2px solid rgba(255, 255, 255, 0.5); /* Sone ke andar ek chandi/safed chamak wali line */
    outline-offset: -12px; /* Ye line ko frame ke andar le jayegi */

    /* 4. 3D Shadow & Glow */
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3), /* Geheri shadow niche ke liye */
        0 0 20px rgba(179, 142, 66, 0.2); /* Halka golden glow side mein */

    /* 5. Finishing */
    margin: 40px auto !important;
    max-width: 100% !important; /* Full width */
    max-height: none !important; /* Remove max height limitation */
    height: auto !important; /* Allow image to grow to full original ratio */
    position: relative;
    object-fit: contain !important; /* Prevent cropping */
}



    /* 1. Grid ko ekdum saaf karein */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px;
    background: transparent !important; /* Blue color hatane ke liye */
}

@media (max-width: 1024px) {
    .product-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-grid {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        gap: 10px;
    }
}

/* 2. Minimalist Card Look */
.product-card {
    background: white !important; /* White background necklaces ko pop karega */
    border-radius: 0px; /* Sharp corners zyada luxury lagte hain */
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); /* Bahut halki shadow */
    border: 1px solid #f0e6d2 !important; /* Halka cream border */
    transition: all 0.4s ease;
    text-align: center;
}

/* 3. Image ko poora dikhayein bina background ke */


/* 4. Product ka naam sundar likhein */
.product-card h3 {
    font-family: 'Playfair Display', serif; /* Agar ye font hai toh */
    font-size: 1.1rem;
    color: #333;
    margin: 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 5. Hover Effect */
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(179, 142, 66, 0.15); /* Golden tint shadow */
    border-color: #b38e42 !important;
}
.product-card {
    background: white !important;
    padding: 5px;
    /* Bahar wali moti border */
    border: 8px solid #b38e42 !important;
    border-image: linear-gradient(to bottom right, #bf953f, #fcf6ba, #aa771c) 1 !important;
    outline: 1px solid #aa771c; /* Ek extra patli outer line */
    outline-offset: -12px; /* Ise card ke andar le jayenge stylish dikhne ke liye */
}

/* --- GOD-LEVEL MOBILE APP OPTIMIZATIONS --- */
@media (max-width: 768px) {
    /* Better scrolling */
    html {
        scroll-behavior: smooth;
    }
    
    /* Make Navbar a Bottom App Bar for easy thumb access */
    .navbar {
        top: auto !important;
        bottom: 0 !important;
        height: 75px !important;
        border-bottom: none !important;
        border-top: 1px solid rgba(179, 142, 66, 0.4) !important;
        flex-direction: row !important;
        justify-content: space-evenly !important;
        padding: 0 5px !important;
        background: rgba(15, 15, 15, 0.95) !important;
        border-radius: 20px 20px 0 0 !important;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.5) !important;
    }

    /* Hide standard logo from bottom nav */
    .logo {
        display: none !important;
    }

    .nav-links {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        width: 100% !important;
        justify-content: space-evenly !important;
        display: flex !important;
    }

    .nav-btn {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        font-size: 0.65rem !important;
        font-weight: 600 !important;
        color: rgba(255,255,255,0.7) !important;
        padding: 10px 5px !important;
        justify-content: center !important;
    }

    .nav-btn:active {
        transform: scale(0.9);
        color: var(--accent-gold) !important;
    }
    
    .dropdown {
        position: static !important; /* Let content position absolutely relative to screen */
    }

    /* Dropdown pops UP from the bottom nav instead of dropping down */
    .dropdown-content {
        top: auto !important;
        bottom: 85px !important;
        left: 5vw !important;
        right: 5vw !important;
        width: 90vw !important;
        max-height: 60vh !important;
        border-radius: 15px !important;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.6) !important;
        background: rgba(20, 20, 20, 0.98) !important;
        border: 1px solid rgba(179, 142, 66, 0.5) !important;
    }

    .dropdown-content a {
        color: white !important;
        padding: 12px 15px !important;
        font-size: 0.95rem !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }

    /* Push Hero Content up */
    .hero {
        height: 100dvh !important;
        margin-top: 0 !important;
    }
    
    .cta-container {
        bottom: 120px !important; /* Make sure it doesn't overlap bottom nav */
    }

    /* Fix Page padding so bottom nav doesn't hide content */
    .collections-container, .about-container {
        padding-top: 60px !important;
        padding-bottom: 110px !important;
    }

    /* Top Floating Title to replace missing top Navbar Logo */
    body::before {
        content: 'HOUSE OF DARSHAN';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: #b38e42;
        background: linear-gradient(to bottom, rgba(10,10,10,0.9) 0%, transparent 100%);
        z-index: 999;
        pointer-events: none;
        letter-spacing: 2px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    
    /* Optimize Grid for small thumbs */
    .product-grid {
        gap: 12px !important;
        padding: 5px !important;
    }
    
    .product-card {
        border-width: 4px !important; /* Thinner border for small screens */
        outline-offset: -6px !important;
        border-radius: 8px !important;
    }
}
.coming-soon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.4) 100%);
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 20px 0;
}

.coming-soon p {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.coming-soon .nav-btn {
    display: inline-block;
    background: var(--accent-gold);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(179, 142, 66, 0.3);
}

.coming-soon .nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(179, 142, 66, 0.5);
}

/* Featured Products on Home Page */
.featured-products {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #4A2613;
    background: #FFFFFF;
    display: inline-block;
    padding: 15px 50px;
    margin-bottom: 15px;
    letter-spacing: 5px;
    text-transform: uppercase;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 5px solid var(--accent-gold);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Footer Credit */
.footer-credit {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 11px;
    color: rgba(179, 142, 66, 0.7); /* Muted gold tone */
    text-decoration: none;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-credit:hover {
    color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* About Page Specific Adjustments */
.about-page .contact-card {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-gold);
}
