:root {
    --primary-maroon: #a22022;
    --dark-maroon: #400b0c;
    --accent-gold: #e6e6e6;
    --dark-grey: #1a1a1a;
    --medium-grey: #455A64;
    --light-grey: #F9F9F9;
    --white: #FFFFFF;
    --black: #000000;
    --section-padding: 120px 0;
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    --shadow-premium: 0 20px 50px rgba(162, 32, 34, 0.12);
    --shadow-deep: 0 30px 60px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--dark-grey);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.subtitle {
    font-family: 'Cormorant Garamond', serif;
    color: var(--black);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

/* --- Placeholders --- */
.placeholder-img {
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.placeholder-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cat-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.product-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* --- Buttons --- */
.btn-primary {
    background: linear-gradient(180deg, var(--primary-maroon) 0%, var(--dark-maroon) 100%);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 0;
    border: 1px solid var(--primary-maroon);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-maroon);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(128, 0, 0, 0.15);
}

.btn-outline {
    border: 1px solid var(--primary-maroon);
    color: var(--primary-maroon);
    padding: 14px 32px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-maroon);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(128, 0, 0, 0.15);
}

.btn-text {
    font-weight: 600;
    color: var(--dark-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 1.5px;
    background: var(--primary-maroon);
    transition: var(--transition);
}

.btn-text:hover::after {
    width: 100%;
}

/* --- Header Design --- */
.header-top-bar {
    background: var(--dark-maroon);
    color: var(--accent-gold);
    padding: 10px 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-socials {
    display: flex;
    gap: 20px;
}

.top-socials a {
    color: var(--white);
    opacity: 0.8;
}

.top-socials a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 75px;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-left: 50px;
}

.desktop-inquiry {
    margin-left: auto;
    font-size: 0.9rem;
    padding: 12px 25px;
}

.nav-item {
    position: relative;
    padding: 5px 0;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-maroon);
    transition: var(--transition);
}

.drawer-btn {
    background: transparent;
    border: none;
    color: var(--dark-grey);
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 20px;
    transition: var(--transition);
    display: none;
    /* Hidden on desktop by default as requested */
}

.drawer-btn:hover {
    color: var(--primary-maroon);
}

/* --- Hero --- */
.hero {
    min-height: calc(100vh - 120px);
    /* Responsive flexibility */
    display: flex;
    align-items: center;
    padding: 80px 10%;
    background: #ffffff;
    gap: 8%;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-content h1 span {
    color: var(--primary-maroon);
    font-style: italic;
    font-weight: 400;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: var(--primary-maroon);
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-image {
    flex: 1;
    height: 100%;
    max-height: 500px;
    display: flex;
    align-items: center;
}

.hero-main-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.bg-light-grey {
    background-color: var(--light-grey);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.display-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.story-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--medium-grey);
}

@media (max-width: 768px) {
    .display-title {
        font-size: 2.5rem;
    }
}

/* --- Section Styling --- */
.section-padding {
    padding: 100px 0;
    min-height: 100vh;
    /* Responsive flexibility */
    display: block;
    /* Removed flex centering to prevent overlaps */
    box-sizing: border-box;
    position: relative;
}

.categories {
    background: linear-gradient(180deg, var(--primary-maroon) 0%, var(--dark-maroon) 100%);
    /* Primary color background */
}

.categories .section-header h2 {
    color: var(--white);
    /* Light color title */
}

.categories .subtitle {
    color: #cccccc;
    /* Grey color subtitle */
}

.products {
    background-color: #f4f4f4;
    /* Sophisticated Light Grey */
}

.locations {
    background: linear-gradient(180deg, var(--primary-maroon) 0%, var(--dark-maroon) 100%);
    /* Primary color background as requested */
}

.locations .section-header h2 {
    color: var(--white);
}

.locations .subtitle {
    color: #cccccc;
}

.subtitle {
    display: block;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

/* --- Category Grid --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 40px;
    width: 100%;
}

.category-card {
    min-width: 0;
    /* Prevents grid items from overflowing */
}

.cat-img {
    width: 100%;
    height: 300px;
    /* Reduced for 100vh fit */
    object-fit: cover;
    transition: var(--transition);
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle light border for maroon bg */
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-deep);
}

.category-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    /* Reduced */
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Reduced */
    transition: var(--transition);
}

.category-card:hover .card-overlay {
    background: rgba(162, 32, 34, 0.9);
}

.category-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    /* Reduced from 1.8rem */
}

.category-card a {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-card:hover .cat-img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

/* --- Product Grid & Slider --- */
.product-slider-wrapper {
    position: relative;
    margin-top: 50px;
}

.product-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.product-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-deep);
    color: var(--primary-maroon);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-maroon);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: -30px;
}

.slider-btn.next {
    right: -30px;
}

@media (max-width: 1200px) {
    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }
}

.product-card {
    flex: 0 0 320px;
    /* Fixed width for horizontal scroll */
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.scroll-hint {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--primary-maroon);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-deep);
}

.product-img-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Eliminates white space */
    transition: var(--transition);
}

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

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

.item_title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.3;
    min-height: 2.6em;
    /* Ensure consistency for multi-line titles */
}

.item_price {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sale_price {
    color: var(--primary-maroon);
}

del {
    color: var(--medium-grey);
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.6;
}

/* --- Locations --- */
.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.location-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Light border */
    align-items: center;
}

.location-item:hover {
    background: var(--dark-maroon);
    border-color: var(--accent-gold);
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(128, 0, 0, 0.2);
}

.location-item:hover .loc-details h4,
.location-item:hover .loc-details p,
.location-item:hover .loc-details a {
    color: var(--white);
}

.location-item i {
    font-size: 1.8rem;
    color: var(--primary-maroon);
    margin-top: 5px;
}

.location-item:hover i {
    color: var(--white);
}

.loc-details h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

/* --- Our Collections (Expanded) --- */
.our-collections {
    background: linear-gradient(180deg, var(--primary-maroon) 0%, var(--dark-maroon) 100%);
    color: var(--white);
}

.collection-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.collection-item-box {
    text-align: center;
    transition: var(--transition);
}

.coll-img-wrap {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-deep);
}

.coll-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.coll-title {
    font-size: 1.1rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.collection-item-box:hover {
    transform: translateY(-10px);
}

.collection-item-box:hover .coll-img-wrap img {
    transform: scale(1.1);
}

.collection-item-box:hover .coll-img-wrap {
    border-color: var(--accent-gold);
}

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

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

    .product-card {
        flex: 0 0 280px;
    }
}

/* --- Creative Footer Overhaul --- */
.creative-footer {
    background: #430606;
    color: #e0e0e0;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--primary-maroon);
}

.footer-decorative-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/black-linen.png');
    opacity: 0.1;
    pointer-events: none;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 80px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.brand-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--accent-gold);
    line-height: 1.4;
    margin-top: 10px;
    border-left: 2px solid var(--primary-maroon);
    padding-left: 20px;
}

.footer-main-grid h4 {
    color: var(--white);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 35px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.footer-main-grid h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-contact-info .address {
    line-height: 2;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--accent-gold);
    margin-right: 15px;
    font-size: 1.1rem;
}

.contact-links a {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: #ccc;
    transition: var(--transition);
}

.contact-links a:hover {
    color: var(--accent-gold);
    transform: translateX(10px);
}

.footer-explore ul li {
    margin-bottom: 18px;
}

.footer-explore ul li a {
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: #ccc;
    transition: var(--transition);
}

.footer-explore ul li a:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

.social-glass {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-glass a {
    width: 50px;
    height: 50px;
    background: rgba(162, 32, 34, 0.15);
    border: 1px solid rgba(162, 32, 34, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--white);
    transition: var(--transition);
}

.social-glass a:hover {
    background: var(--primary-maroon);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(162, 32, 34, 0.4);
}

.footer-bottom-creative {
    text-align: center;
    position: relative;
    z-index: 1;
}

.bottom-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 40px;
}

.footer-bottom-creative p {
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.5;
    text-transform: uppercase;
}

/* --- Animations (Fallback and Base) --- */
.reveal,
.reveal-text,
.fade-in,
.reveal-right {
    /* Visible by default so content shows if JS fails */
    opacity: 1;
}

/* We will let GSAP handle the hidden state at the start of animation */

/* --- Responsive --- */
@media (max-width: 1200px) {
    .category-grid {
        gap: 15px;
        /* Tighter gap for smaller desktops */
    }
}

@media (min-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(6, 1fr);
        /* Rock-solid 6 columns on desktop */
    }

    .desktop-inquiry {
        margin-left: auto;
        /* Push to the far right */
    }
}

@media (max-width: 991px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 60px;
        min-height: auto;
        gap: 50px;
        overflow: visible;
    }

    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        width: 100%;
        max-height: none;
        margin-top: 0;
        display: block;
    }

    .hero-main-img {
        height: auto;
        object-fit: contain;
    }

    .navbar .container {
        justify-content: space-between;
    }

    .nav-links,
    .desktop-inquiry {
        display: none;
    }

    .drawer-btn {
        display: block;
        margin-left: auto;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .product-slider,
    .location-grid,
    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-slider,
    .location-grid,
    .footer-main-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        display: block;
    }

    .side-drawer {
        width: 100%;
        right: -100%;
    }
}

/* --- Side Drawer --- */
.side-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    padding: 50px;
}

.side-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.drawer-logo {
    height: 50px;
}

.close-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-grey);
    transition: var(--transition);
}

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

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.drawer-link {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark-grey);
    transition: var(--transition);
}

.drawer-link:hover {
    color: var(--primary-maroon);
    padding-left: 10px;
}

.drawer-link.secondary {
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: var(--medium-grey);
}

.drawer-separator {
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}

.drawer-footer {
    margin-top: auto;
    font-size: 0.8rem;
    color: var(--medium-grey);
    opacity: 0.7;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .side-drawer {
        width: 100%;
        right: -100%;
    }
}

/* --- Video Showcase Section --- */
.video-showcase {
    background-color: var(--white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
    background: #000;
}

.video-wrapper {
    position: relative;
    padding-top: 177.77%;
    /* 9:16 Aspect Ratio */
    width: 100%;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
}

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

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