@import url('https://cdn.jsdelivr.net/npm/@n8n/chat/dist/style.css');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    /* MODERN WHITE PALETTE (Based on mg.html) */
    --bg-color: #FFFFFF;
    --bg-off-white: #FAFAFA;
    --text-black: #1A1A1A;
    --text-grey: #666666;
    --border-light: #E5E5E5;

    /* ACCENTS */
    --accent-gold: #C5A059;
    /* Champagne Gold */
    --white: #ffffff;

    /* MAPPING OLD VARIABLES TO NEW THEME */
    --primary-maroon: #FAFAFA;
    /* Off-white background */
    --primary-maroon-light: #F4F4F4;
    /* Slightly darker white */
    --primary-maroon-dark: #FFFFFF;
    /* White */
    --primary-maroon-darker: #111111;
    /* Dark details */

    --primary-gold: #C5A059;
    --primary-gold-dark: #A68E65;
    --primary-gold-accessible: #8A6E3E;

    --off-white: #FAFAFA;
    --light: #FFFFFF;
    --light-gray: #E5E5E5;
    --dark-text: #1A1A1A;
    --medium-text: #666666;
    --light-text: #888888;

    --body-bg: var(--bg-color);
    --card-bg: var(--white);

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;

    --container-width: 1400px;
    --header-height: 70px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Keyboard Focus Styles */
:focus-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 4px;
    border-radius: 4px;
}

body {
    font-family: var(--font-body);
    color: var(--text-black);
    line-height: 1.6;
    background-color: var(--body-bg);
    overflow-x: hidden;
    padding-top: var(--header-height);
    /* Dynamic spacer for fixed header */
}

/* Skeleton Screens */
.skeleton {
    background: linear-gradient(90deg,
            var(--light-gray) 25%,
            rgba(200, 173, 127, 0.1) 50%,
            var(--light-gray) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-gold);
}

/* Accessible gold for accents and secondary headings */
/* Breadcrumbs */
.breadcrumb-nav {
    padding: 20px 0;
    background-color: var(--bg-off-white);
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 8px;
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: var(--text-grey);
    white-space: nowrap;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--border-light);
}

.breadcrumb-list a {
    color: var(--primary-gold-accessible);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-list a:hover {
    color: var(--primary-gold);
}

.breadcrumb-list li:last-child {
    color: var(--text-black);
    font-weight: 500;
}

.luxury-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c8ad7f' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* Cinematic Effects */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}



/* N8N Chat Override Alignment - Hidden by default for scroll-triggered appearance */
.n8n-chat-widget {
    position: fixed !important;
    bottom: 25px !important;
    right: 20px !important;
    left: auto !important;
    top: auto !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(20px) !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* Shown when scrolling and NOT in a modal */
body.chat-visible .n8n-chat-widget {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

/* NUCLEAR HIDING: Ensure NO n8n elements are visible when ANY modal is open */
body.modal-open .n8n-chat-widget,
body.modal-open [id*="n8n-chat"],
body.modal-open [class*="n8n-chat"],
body.modal-open n8n-chat-widget,
body.modal-open .n8n-chat-launcher,
body.modal-open #n8n-chat-widget-launcher {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: scale(0) !important;
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- CENTERED HEADER --- */
header {
    background-color: var(--white);
    /* White header */
    border-top: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    padding: 0;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Lighter shadow */
}

header.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 100%;
    width: 100%;
}

.header-top {
    display: contents;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
    margin: 0;
    z-index: 2;
}

.logo img {
    width: 60px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 9px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-black);
    text-transform: uppercase;
    margin-top: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
    position: static;
}

.social-icons a {
    color: var(--text-black);
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-gold);
}

.mobile-menu-btn {
    display: none;
    position: absolute;
    right: 20px;
    top: 25px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-black);
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    background: transparent;
    flex: 1;
    margin-top: 4px;
}

.nav-left {
    justify-content: flex-end;
    padding-right: 40px;
}

.nav-right {
    justify-content: flex-start;
    padding-left: 40px;
}

.nav-menu li {
    margin: 0 18px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.2px;
    transition: color 0.3s;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: 'Cinzel', serif;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
}

/* --- HERO SLIDESHOW --- */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 10%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: right;
    color: var(--white);
    max-width: 600px;
    padding: 0 40px 60px 0;
    margin-right: 5%;
}

.hero-content h1 {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: var(--white);
    line-height: 1.4;
    font-weight: 300;
    text-transform: none;
    letter-spacing: normal;
}

.hero-content p {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.btn-container {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.hero-cta {
    padding: 12px 35px;
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-cta:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.hero-cta-outline {
    padding: 12px 35px;
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-cta-outline:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

/* --- COMPACT SECTIONS --- */
.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.section-title h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    margin: 10px auto;
}

.section-title p {
    font-size: 1rem;
    color: var(--light-text);
}

/* --- COLLECTIONS GRID --- */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.collection-bottom-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.collection-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover .collection-img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 25px 20px 20px;
    color: var(--white);
}

.collection-overlay h3 {
    color: var(--white);
    /* White text on dark overlay */
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.collection-link {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--white);
}

/* --- SCROLL SECTIONS --- */
.scroll-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.scroll-title {
    font-size: 2rem;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

.scroll-nav {
    display: flex;
    gap: 10px;
}

.scroll-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-maroon-light);
    border: 1px solid var(--primary-gold-dark);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.scroll-btn:hover {
    background: var(--primary-maroon);
    color: var(--white);
}

.products-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 5px 5px 20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.products-scroll::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 calc(22% - 15px);
    min-width: 220px;
    background: var(--card-bg);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid var(--border-light);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74, 14, 22, 0.15);
}

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--white);
    color: var(--text-black);
    padding: 4px 10px;
    border-radius: 0;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    border: 1px solid var(--text-black);
}

.product-img-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 280px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-img-container:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-black);
    letter-spacing: 1px;
}

.product-desc {
    font-size: 0.8rem;
    color: var(--light-text);
}

/* --- GALLERY SECTION --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.journey-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.journey-text {
    flex: 1;
}

.journey-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--medium-text);
    text-align: left;
    /* Changed from justify for modern feel */
    line-height: 1.8;
}

.journey-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.journey-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.founder-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 10px 0;
    background: transparent;
    border-left: 2px solid var(--primary-gold);
    padding-left: 20px;
    width: fit-content;
}

.founder-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}

.store-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.footer-col .logo {
    position: static;
    transform: none;
    left: auto;
    justify-content: flex-start;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-col .logo img {
    width: 50px;

    height: 50px;
}

/* --- GALLERY NAVIGATION --- */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gold);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px 15px;
    z-index: 2005;
    transition: background 0.3s;
    border-radius: 50%;
    display: none;
    /* Hidden by default, shown via JS */
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.gallery-nav:hover {
    background: var(--primary-gold-dark);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

@media (max-width: 768px) {
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        background: var(--primary-gold);
        opacity: 0.8;
        /* Darker on mobile for visibility */
    }
}

.footer-col .logo-title {
    color: var(--white);
}

.footer-col .logo-text {
    align-items: flex-start;
    text-align: left;
}

.store-layout {
    display: flex;
    gap: 0;
    align-items: stretch;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.store-layout::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-gold) 10%, transparent 10.5%);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}

.store-info {
    flex: 1;
    color: var(--text-black);
    padding: 40px;
}

.store-info::before {
    display: none;
}

.store-info h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-block {
    margin-bottom: 25px;
}

.info-block h4 {
    color: var(--primary-gold);
    font-size: 1.15rem;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--primary-gold-dark);
    padding-bottom: 5px;
    display: inline-block;
}

.info-block p {
    color: var(--medium-text);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.store-map {
    flex: 1;
    height: auto;
    min-height: 450px;
}

/* --- CONTACT PAGE --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-info h3 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-right: 20px;
    margin-top: 5px;
}

.info-content h4 {
    color: var(--text-black);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-content p {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.6;
}

.appointment-wrapper {
    background: var(--bg-off-white);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.appointment-wrapper h3 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    text-align: center;
}

.appointment-wrapper p {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 30px;
}

.appointment-form .form-group {
    margin-bottom: 20px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 15px;
    color: var(--text-black);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(200, 173, 127, 0.1);
}

.appointment-form select {
    cursor: pointer;
}

.appointment-form select option {
    background: var(--white);
    color: var(--text-black);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--dark-text);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
}

.map-container {
    max-width: 1200px;
    margin: 50px auto 80px;
    padding: 0 20px;
}

.map-frame {
    width: 100%;
    height: 450px;
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info,
    .appointment-wrapper {
        padding: 30px 20px;
    }
}

/* --- FOOTER --- */
footer {
    background-color: #111;
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid #333;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-col h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

footer .logo-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-gold-dark);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #888;
    font-size: 0.8rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 16px;
}

.footer-socials a:hover {
    background: var(--primary-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

html.modal-open,
body.modal-open {
    overflow: hidden !important;
}

/* --- MODAL --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white);
    border-radius: 8px;
    max-width: 1000px;
    width: 95%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.modal.full-screen .modal-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
    padding: 0;
    background-color: #000;
}

.modal.full-screen .modal-details {
    display: none;
}

.modal.full-screen .modal-image-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    cursor: grab;
    user-select: none;
}

.modal.full-screen .modal-image-container:active {
    cursor: grabbing;
}

.modal.full-screen .modal-image {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    transition: transform 0.1s linear;
    transform-origin: center center;
}

.modal.full-screen .modal-image.transitioning {
    transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .modal-content {
        flex-direction: row;
    }
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: var(--primary-gold-accessible);
    background: none;
    border: none;
    z-index: 2002;
}

.fullscreen-close {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    z-index: 3000;
    line-height: 1;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal.full-screen .fullscreen-close {
    display: flex;
}

.fullscreen-close:hover {
    background: rgba(212, 175, 55, 0.8);
    color: var(--primary-maroon);
}

.expand-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal.full-screen .expand-btn {
    display: none;
}

.expand-btn:hover {
    transform: scale(1.1);
    background: var(--primary-gold-dark);
    color: white;
}

.modal-header-info {
    margin-bottom: 20px;
}

.product-badge {
    display: inline-block;
    background: var(--dark-text);
    color: var(--primary-gold);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.modal-meta {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal[data-is-gallery="true"] .modal-details {
    display: none !important;
}

.modal[data-is-gallery="true"] .modal-content {
    max-width: 95vw;
    width: fit-content;
    padding: 0;
    background: black;
    border: none;
}

.modal-image-container {
    flex: 1;
    cursor: zoom-in;
    position: relative;
}

.modal-image-container::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 8px;
    border-radius: 50%;
    font-size: 14px;
    pointer-events: none;
    opacity: 0.7;
}

.modal-image {
    width: 100%;
    border-radius: 4px;
}

.modal-details {
    flex: 1;
    padding: 10px;
}

.modal-details h2 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.modal-details p {
    color: var(--light-text);
    margin-bottom: 20px;
}

/* --- FLEX ORDERING FROM NEWGE.HTML --- */
.nav-container {
    display: contents;
}

.nav-left {
    order: 1;
}

.logo {
    order: 2;
}

.nav-right {
    order: 3;
}

.header-right {
    order: 4;
    display: flex;
    align-items: center;
    gap: 20px;
}

.close-menu-btn {
    display: none;
}

.modal-image-container {
    flex: 1;
    cursor: zoom-in;
    position: relative;
}

.modal-image-container::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 8px;
    border-radius: 50%;
    font-size: 14px;
    pointer-events: none;
    opacity: 0.7;
}

.modal-image {
    width: 100%;
    border-radius: 4px;
}

.modal-details {
    flex: 1;
    padding: 10px;
}

.modal-details h2 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.modal-details p {
    color: var(--light-text);
    margin-bottom: 20px;
}

/* --- RESPONSIVE (FROM NEWGE.HTML) --- */
@media (max-width: 900px) {
    .header-top {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 20px;
    }

    .logo {
        margin-bottom: 0;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
    }

    .logo-title {
        font-size: 1.2rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }

    /* Hide text on mobile to save space or adjust */
    .logo img {
        width: 50px;
        height: 50px;
    }

    .nav-container {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: auto;
        right: 0;
        background: var(--white);
        padding: 20px;
        z-index: 1000;
        box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.5);
        gap: 0;
        width: 100%;
        min-width: 250px;
        border-top: 1px solid var(--border-light);
    }

    .nav-container.active {
        display: flex;
        animation: slideIn 0.3s ease-out;
    }

    .nav-left,
    .nav-right {
        display: contents !important;
    }

    .nav-menu {
        display: contents !important;
    }

    .nav-menu li {
        margin: 0 !important;
        width: 100%;
        list-style: none;
        text-align: left;
    }

    .nav-menu li a {
        font-size: 1rem;
        color: var(--text-black);
        text-decoration: none;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        font-family: var(--font-heading);
    }

    .nav-menu:last-child a:last-child {
        border-bottom: none;
    }

    .body-no-scroll {
        overflow: hidden;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    /* Horizontal Scroll Improvements on Mobile */
    .products-scroll {
        padding-right: 20px;
        gap: 10px;
        scroll-snap-type: none;
    }

    .product-card {
        flex: 0 0 82%;
        /* Show partial next card */
        min-width: unset;
        scroll-snap-align: start;
    }

    .scroll-btn {
        width: 40px;
        height: 40px;
    }

    .swipe-hint {
        display: flex;
        align-items: center;
        gap: 5px;
        color: var(--primary-gold);
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        margin-left: auto;
        margin-right: 15px;
        animation: swipeHint 2s infinite;
    }

    @keyframes swipeHint {

        0%,
        100% {
            opacity: 0.4;
            transform: translateX(0);
        }

        50% {
            opacity: 1;
            transform: translateX(5px);
        }
    }

    .scroll-header h2 {
        font-size: 1.6rem;
    }

    .social-icons {
        display: flex;
        gap: 12px;
        margin-right: 5px;
    }

    .social-icons a {
        color: var(--text-black);
        font-size: 16px;
        text-decoration: none;
    }

    .mobile-menu-btn {
        display: block;
        position: static;
        color: var(--text-black);
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .collections-grid,
    .collection-bottom-row {
        grid-template-columns: 1fr;
    }

    .store-layout {
        flex-direction: column;
    }

    .journey-content {
        flex-direction: column;
    }

    .hero-content {
        margin-right: 0;
        padding: 0 20px 40px 20px;
        text-align: center;
        width: 100%;
        background: none;
        /* Removed gradient as requested */
    }

    .hero-collection {
        height: 50vh !important;
        min-height: 400px;
    }

    /* Collection Page Overrides (Compact View) */
    .hero.hero-collection {
        padding-top: 0;
        display: flex;
        align-items: flex-end;
        padding-bottom: 40px;
    }

    .hero-collection .hero-content {
        background: none;
    }

    .hero-collection .hero-content h1 {
        font-size: 1rem !important;
        line-height: 1.4;
    }

    .hero-collection .hero-content p {
        font-size: 2.2rem !important;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .hero {
        justify-content: center;
        align-items: flex-end;
        /* Push to bottom */
        padding-top: 20px;
        padding-bottom: 40px;
        /* Space from bottom edge */
    }

    .btn-container {
        justify-content: center;
    }

    .store-layout {
        flex-direction: column;
    }

    .store-map {
        height: 300px;
        min-height: unset;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .section-padding {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}


/* Prevent iOS Zoom on inputs */
input,
select,
textarea {
    font-size: 16px !important;
}

/* Improve Touch Targets */
a,
button,
.nav-menu a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

/* Prevent Horizontal Overflow */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* --- INSTAGRAM FEED --- */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.insta-item img,
.insta-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1.5rem;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .insta-overlay {
        font-size: 1rem;
    }
}