:root {
    --primary-color: #B8860B;
    /* Dark Gold */
    --primary-hover: #966d09;
    --text-color: #000000;
    --text-muted: #555;
    --bg-white: #ffffff;
    --bg-light: #fdfdfd;
    --bg-section: #fafafa;
    --bg-dark: #1a1a1a;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    animation: fadeIn 1s ease-in;
}

/* Prevent accidental horizontal scrolling on small devices */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Ensure images and media never exceed their container or viewport */
img,
picture,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

h1,
h2,
.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 8%;
    background: #ffffff;
    z-index: 1000;
    transition: var(--transition);
    gap: 40px;
    box-shadow: var(--shadow);
}

.navbar.scrolled {
    padding: 10px 8%;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
    /* Logo in the middle on desktop */
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    flex: 1;
}

.left-links {
    justify-content: flex-end;
    order: 1;
    /* Links on the left */
}

.right-links {
    justify-content: flex-start;
    order: 3;
    /* Links on the right */
}

.nav-container {
    display: contents;
    /* Allows children to participate directly in navbar flex */
}

.nav-links li {
    margin: 0 20px;
}



.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    width: 100%;
}

/* Mobile Toggle - Hidden by default */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

@media (max-width: 768px) {
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
            url('https://res.cloudinary.com/dhk1i9yys/image/upload/v1772523252/hero1.welp_r6snlr.webp');
        background-size: cover;
        background-position: center top;
    }
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: var(--transition);
    border: 1px solid var(--primary-color);
}

.cta-button:hover {
    background-color: transparent;
    color: white;
}

/* About Section */
.about-section {
    padding: 150px 10%;
    background-color: var(--bg-light);
}

/* creative about layout */
.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-highlights {
    list-style: none;
    margin-top: 40px;
    padding-left: 0;
}

.about-highlights li {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.about-highlights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    /* nothing special needed, list stacks naturally */
}

.about-headline {
    font-size: 3.5rem;
    margin-bottom: 60px;
    border-left: 5px solid var(--primary-color);
    padding-left: 35px;
    line-height: 1.2;
}

.about-headline span {
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 800px;
    color: var(--text-muted);
}

/* About page grid for subsections (People, Details, Mission) */
.about-grid {
    max-width: 1800px;
    margin: 60px auto;
    display: grid;
    gap: 40px;
    padding: 0 5%;
}

.about-card {
    display: flex;
    gap: 250px;
    align-items: center;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: none;
}

/* when image should sit above text */
.about-card.top-image {
    flex-direction: column;
    text-align: center;
    gap: 0;
    /* Remove the 250px gap for this specific section */
    margin-top: 60px;
    /* Adjust this to push it further down */
    margin-bottom: 40px;
    /* Adds space between this and the text below */
}

.about-card.top-image .about-copy {
    padding: 0;
    margin-top: 30px;
    /* Adjusted to prevent overlap */
}

.about-card.top-image .about-figure {
    margin: 80px 0 0 0;
    /* Add margin top to the logo/svg */
    padding: 0;
    line-height: 0;
}

.about-card.top-image .about-figure img {
    margin: 0;
    padding: 0;
}

.about-card.top-image .section-subtitle {
    margin-top: 0;
}

.about-figure {
    flex: 1 1 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-figure img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

.about-copy {
    flex: 1 1 35%;
}

.about-copy .about-figure {
    margin-bottom: 30px;
    justify-content: flex-start;
}

.about-copy .about-figure img {
    max-width: 350px;
    height: auto;
}

.about-copy .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-copy p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* multiple figures side-by-side container */
.about-figure-group {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1 1 35%;
}

.about-figure-group.left {
    justify-content: flex-start;
}

.about-figure-group.right {
    justify-content: flex-end;
}

.about-figure-group .about-figure {
    flex: 1 1 50%;
    max-width: 48%;
}

/* larger carpent photo settings */
.about-figure-group .about-figure.carpent {
    flex: 1 1 100%;
    max-width: 100%;
}

.about-figure-group .about-figure.carpent img {
    max-width: none;
    /* allow larger than 420px */
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* allow alternating image position */
.about-figure.right {
    order: 2;
}

@media (max-width: 900px) {
    .about-grid {
        margin: 20px auto;
        gap: 20px;
    }

    .about-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        /* Reduced from 250px */
        padding: 20px;
    }

    .about-card.top-image .about-figure {
        margin-top: 40px;
        /* Reduced from 80px */
    }

    .about-card.top-image .about-copy {
        margin-top: 15px;
        /* Reduced from 30px */
    }

    .about-copy .about-figure {
        margin-bottom: 20px;
        /* Reduced from 30px */
    }

    .about-copy .about-figure img {
        max-width: 150px;
        /* Make icons slightly more manageable on mobile */
    }

    .about-figure.right {
        order: 0;
    }

    .about-figure-group {
        flex-direction: column;
        gap: 15px;
    }

    .about-copy .section-title {
        margin-bottom: 10px;
        font-size: 1.6rem;
    }

    /* Flip the second section (Details) to show image above text on mobile */
    .about-card:nth-child(3) {
        flex-direction: column-reverse;
    }
}


/* Grayscale effect styles */
.grayscale-img {
    filter: grayscale(100%);
    transition: filter 0.8s ease, transform 0.8s ease;
}

.grayscale-img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Collection Section */
.collection-section {
    padding: 120px 8%;
    background-color: var(--bg-white);
    max-width: 1800px;
    margin: 0 auto;
}

.collection-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

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

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

@media (max-width: 600px) {
    .collection-grid {
        grid-template-columns: 1fr;
    }
}

.collection-item {
    position: relative;
    width: 100%;
    background-color: #f9f9f9;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-radius: 15px;
    overflow: hidden;
}

.collection-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-name {
    padding: 15px 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--text-color);
    text-align: left;
    letter-spacing: 1px;
}

/* remove underline from collection links */
.collection-item {
    text-decoration: none;
    color: inherit;
}

.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.collection-item:hover img {
    transform: scale(1.03);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* generic back arrow used in nav backlink */
.back-arrow {
    font-size: 1.4rem;
}

.product-page {
    padding-top: 80px;
    /* space for fixed nav */
    background: var(--bg-white);
    height: 100vh;
    overflow: hidden;
}

.product-page-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 40px 6%;
    display: grid;
    grid-template-columns: 4fr 2fr;
    gap: 60px;
    height: calc(100vh - 80px);
    align-items: start;
}

/* Left gallery stays in place — no scroll */
.product-gallery {
    position: static;
}

/* Right side scrolls independently */
.product-info {
    height: calc(100vh - 160px);
    overflow-y: auto;
    padding-right: 10px;
}

/* Hide scrollbar but keep functionality */
.product-info::-webkit-scrollbar {
    width: 0px;
}

.product-gallery-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery-main img {
    /* make the image as tall as possible while preserving aspect ratio */
    height: 80vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
}

.product-gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-gallery-thumbs img.active,
.product-gallery-thumbs img:hover {
    opacity: 1;
    border-color: var(--primary-color);
}

.product-info h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

/* Scrollable image column below product details on right side */
.product-scroll-gallery {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-scroll-gallery img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-scroll-gallery .gallery-title-svg {
    max-width: 300px;
    margin: 20px 0;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .product-page {
        height: auto;
        overflow: auto;
    }

    .product-page-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px 4%;
        height: auto;
    }

    .product-gallery-main {
        padding: 0;
    }

    .product-gallery-main img {
        height: auto;
        max-height: 50vh;
        width: 100%;
        object-fit: contain;
    }

    .product-info {
        height: auto;
        overflow-y: visible;
    }
}

/* Product Detail Modal */
.product-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.product-modal-close {
    position: fixed;
    top: 25px;
    right: 35px;
    color: #999;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2100;
}

.product-modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.product-modal-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0;
    width: 95vw;
    max-width: 1500px;
    height: 90vh;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.product-modal-image {
    background: #f0f0ef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Gallery Navigation Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    color: #333;
    font-size: 2.2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    line-height: 1;
    padding-bottom: 3px;
}

.gallery-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 0.8rem;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 2px;
}

.product-modal-details {
    padding: 50px 45px;
    overflow-y: auto;
    max-height: 90vh;
}

.product-modal-details h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.product-type {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.product-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.product-specs {
    margin-bottom: 25px;
}

.product-specs .spec-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.product-specs .spec-label {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.product-specs .spec-value {
    color: var(--text-color);
    font-weight: 500;
}

.product-colors {
    margin-bottom: 25px;
}

.product-colors h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 12px;
}

.color-swatches {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.15);
    border-color: var(--primary-color);
}

.color-swatch-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.color-swatch-label span {
    font-size: 0.7rem;
    color: #999;
    text-align: center;
    max-width: 60px;
}

.product-dimensions {
    padding: 15px 0;
    border-top: 1px solid #eee;
    margin-bottom: 15px;
}

.product-dimensions h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 8px;
}

.product-dimensions p {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.product-note {
    font-size: 0.85rem;
    color: #aaa;
    font-style: italic;
    line-height: 1.6;
}

.product-note a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.product-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .product-modal {
        padding: 10px;
    }

    .product-modal-container {
        grid-template-columns: 1fr;
        width: 100%;
        height: 95vh;
        overflow-y: auto;
    }

    .product-modal-image {
        height: auto;
    }

    .product-modal-image img {
        min-height: 250px;
        max-height: 300px;
    }

    .product-modal-details {
        padding: 30px 25px;
        max-height: none;
        overflow-y: visible;
    }

    .product-modal-details h2 {
        font-size: 2rem;
    }
}


/* Why Us Section */
.why-us-section {
    padding: 150px 10%;
    background-color: var(--bg-section);
}

.why-header {
    text-align: center;
    margin-bottom: 100px;
}

.gold-text {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

.features-grid {
    display: grid;
    /* default: 3 columns on wide screens */
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 60px 40px;
}

/* Medium screens: 2 columns */
@media (max-width: 1220px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
    }
}

/* Small screens / mobile: 1 column */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px 20px;
    }
}

.feature-card {
    padding: 40px;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-bottom: 3px solid var(--primary-color);
}

.icon-wrap {
    margin-bottom: 30px;
}

.icon-wrap span {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.icon-wrap span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* Ensure the reveal animation works here too */
.feature-card.reveal {
    transition-delay: 0.1s;
    /* Staggered effect starts to happen naturally as you scroll */
}

/* Contact Section */
.contact-section {
    padding: 150px 8%;
    background-color: var(--bg-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: start;
}

.contact-info h2,
.contact-form-wrap h2 {
    /* use same styles as general .section-title */
    font-size: 3rem;
    margin-bottom: 20px;
    /* match .section-title margin */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.showroom-invite {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3,
.social-block h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #aaa;
    margin-bottom: 15px;
}

.info-block p {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 400;
}

/* Social Icons Styling */
.social-icons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.social-icons a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    border: 1px solid #eee;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.social-icons a img {
    width: 28px;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.25s ease, transform 0.2s ease;
}

.social-icons a:hover img {
    filter: none;
    transform: scale(1.06);
}

/* Form Styling */
.divine-form {
    margin-top: 40px;
    background: var(--bg-light);
    padding: 50px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.divine-form input,
.divine-form textarea {
    width: 100%;
    padding: 18px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.divine-form input:focus,
.divine-form textarea:focus {
    border-bottom: 1px solid var(--primary-color);
}

.form-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-note {
    margin-top: 50px;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.mini-footer {
    text-align: center;
    padding: 60px;
    background: var(--bg-dark);
    color: #888;
    font-size: 0.9rem;
}

.mini-footer p {
    letter-spacing: 1px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    /* apply same sizing to contact section headers */
    .section-title,
    .contact-info h2,
    .contact-form-wrap h2 {
        font-size: 2.4rem;
        /* slightly smaller for mid‑size screens */
    }

    .contact-container {
        gap: 60px;
    }
}

.nav-container {
    display: contents;
}

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

.navbar.scrolled .nav-logo img {
    height: 55px;
    width: auto;
}

@media (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 5%;
        height: 80px;
    }

    .mobile-toggle {
        display: flex;
        order: 1;
        /* Left-ish */
        flex: 1;
    }

    .nav-logo {
        order: 2;
        /* Center */
        flex: 2;
        margin: 0;
        display: flex;
        justify-content: center;
    }

    .nav-logo img {
        height: 55px;
        width: auto;
    }

    .nav-container {
        display: flex !important;
        /* Override contents for mobile sidebar */
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1001;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        gap: 25px;
        order: 3;
        /* Flow placement doesn't matter for fixed */
    }

    .nav-container.open {
        right: 0;
    }

    /* Dummy space to balance the navbar if needed, or just let logo center naturally */
    .navbar::after {
        content: '';
        flex: 1;
        order: 3;
    }

    /* Merge the 2 link blocks visually into one list */
    .nav-links {
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        padding: 0;
        margin: 0;
        flex: none;
        visibility: visible !important;
        opacity: 1 !important;
        gap: 25px;
        /* Perfect spacing between individual links */
    }

    .nav-links li {
        margin: 0;
        /* Clear old margins */
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 10px 0;
        width: 100%;
    }

    /* Page Content Adjustments */
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .about-headline {
        font-size: 2.2rem;
        padding-left: 20px;
    }

    .about-section {
        padding: 50px 6%;
    }

    .collection-section {
        padding: 50px 6%;
    }

    .collection-grid {
        gap: 30px;
    }

    .collection-item {
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
    }

    .collection-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

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

    .divine-form {
        padding: 30px;
    }

    .product-page-container {
        padding: 40px 6%;
        gap: 40px;
    }

    .product-gallery-thumbs img {
        width: 60px;
        height: 60px;
    }

    .product-info h1 {
        font-size: 2.4rem;
    }

    .back-arrow {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    /* center collection items on very small screens */
    .collection-grid {
        gap: 25px;
    }

    .collection-item {
        width: 100%;
        margin: 0;
        aspect-ratio: 4 / 3;
    }

    .collection-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}