/*
Theme Name: GMC Theme
Author: Akhil
Version: 1.0
*/
@font-face {
    font-family: 'Optima';
    src: url('assets/fonts/Optima-ExtraBlack.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

:root {
    --primary-gold: #C38F26;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --font-heading: 'Quattrocento', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
    font-family: var(--font-body);
    color: var(--text-white);
    background-color: #000;
}

html.menu-open,
body.menu-open,
html.filter-open,
body.filter-open,
html.search-open,
body.search-open {
    overflow: hidden !important;
    height: 100% !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 43px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.header-container {
    display: flex;
    align-items: center;
    padding: 0 43px;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.site-logo {
    max-height: 50px;
    width: auto;
}

.header-search {
    flex: 0 1 360px;
    margin: auto;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-field {
    width: 100% !important;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 10px 15px;
    color: #fff;
    font-family: var(--font-body);
    outline: none;
    height: 40px;
    transition: all 0.3s ease;
}

.search-field:focus,
.search-form.search-active .search-field {
    background: #fff;
    color: #333;
    border-color: #fff;
}

.search-field::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-field:focus::placeholder,
.search-form.search-active .search-field::placeholder {
    color: #999;
}

.search-submit {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: opacity 0.3s;
}

.search-field:focus~.search-submit,
.search-form.search-active .search-submit {
    color: #333;
}

/* Navigation */
.main-navigation {
    margin-left: auto;
    margin-right: 40px;
}

.main-navigation .menu {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-heading);
}

.main-navigation a:hover,
.main-navigation .current-menu-item>a,
.main-navigation .current-menu-ancestor>a,
.main-navigation .current-menu-parent>a {
    color: var(--primary-gold);
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children>a i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.main-navigation .menu>.menu-item-has-children:hover>a i {
    transform: rotate(180deg);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: #fff;
    border-radius: 8px;
    padding: 15px 0;
    min-width: 250px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.sub-menu::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: #fff;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.sub-menu li {
    display: block;
    margin: 0;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333 !important;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.sub-menu li a:hover,
.sub-menu li.current-menu-item>a,
.sub-menu li.current-menu-ancestor>a,
.sub-menu li.current-menu-parent>a {
    background-color: rgba(198, 156, 58, 0.1);
    color: var(--primary-gold) !important;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon img {
    width: 24px;
    height: auto;
    display: block;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--primary-gold);
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.desktop-only {
    display: flex !important;
}

.mobile-only {
    display: none;
}

.mobile-navigation {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    visibility: hidden;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-item video,
.hero-bg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.5), transparent 80%), linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-content-container {
    position: relative;
    z-index: 2;
    padding: 80px 43px 0;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.hero-text-content {
    max-width: 600px;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 300;
    color: #eee;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #CCCCCC;
    margin-bottom: 40px;
    max-width: 450px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.btn {
    display: inline-block;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    padding: 12px 30px;
    text-transform: capitalize;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #a8822d;
}

.hero-slider-nav {
    position: absolute;
    bottom: 50px;
    right: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 320px;
    width: 320px;
    height: 110px;
    z-index: 10;
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.next-slide-preview {
    display: flex;
    gap: 12px;
    align-items: center;
}

.next-slide-preview img {
    width: 86px;
    height: 86px;
    border-radius: 7px;
    object-fit: cover;
}

.next-slide-info {
    display: flex;
    flex-direction: column;
    width: 198px;
    justify-content: center !important;
}

.next-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #CCCCCC;
    margin-bottom: 0;
}

.next-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 19ch;
}

.slider-indicators span {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin-right: 5px;
    margin-bottom: 0;
}

.slider-indicators span.active {
    background: var(--primary-gold);
}

/* Mobile Responsive */
/* --- Crafting Elegance Section --- */
.craft-elegance-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 0px;
    background-image: url("assets/images/craft-elegance-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #333;
}

.craft-header-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 50px;
    align-items: flex-start;
}

.craft-title-area {
    flex: 0 0 45%;
}

.craft-desc-area {
    flex: 0 0 50%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
}

.craft-description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #808080;
    margin-bottom: 30px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
}

.craft-btn {
    padding: 12px 30px;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
}

/* Grids Area */
.craft-content-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.craft-visuals-area {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-strip {
    position: relative;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
    background-color: #000;
}

.strip-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.5s ease;
}

.visual-strip:hover .strip-bg {
    transform: scale(1.05);
}

.strip-label {
    position: relative;
    z-index: 2;
    font-family: "Bebas Neue", sans-serif;
    font-size: 34px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.unified-video-area {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 0 12px 12px 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    display: flex;
    flex-direction: column;
    margin-top: -100px;
}

/* Desktop Bleed Calculation */
.unified-video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300%;
    height: 120%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

.unified-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.transparent-strip {
    height: 120px;
    background: transparent !important;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(270deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 79.26%);
    }
}

.video-gap,
.video-gap::before,
.video-gap::after {
    background-color: #f9f9f9;
    background-image: url("assets/images/craft-elegance-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 10;
}

.video-gap {
    position: relative;
    height: 20px;
    width: 100%;
    margin-right: -1px;
}

.video-gap::before,
.video-gap::after {
    content: "";
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
}

.video-gap::before {
    top: -20px;
    -webkit-mask-image: radial-gradient(circle at top left, transparent 70%, black 71%);
    mask-image: radial-gradient(circle at top left, transparent 70%, black 71%);
}

.video-gap::after {
    bottom: -20px;
    -webkit-mask-image: radial-gradient(circle at bottom left, transparent 70%, black 71%);
    mask-image: radial-gradient(circle at bottom left, transparent 70%, black 71%);
}

.craft-stats-area {
    flex: 0 0 50%;
    align-self: flex-end;
    padding-bottom: 0px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 90px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.stat-icon-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 40px;
    color: #000;
}

.gold-plus {
    color: var(--primary-gold);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: #666666;
    font-weight: 600;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Mobile Responsive for New Section */
/* --- Featured Stone Collection Section --- */
.featured-collection-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.featured-header-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 50px;
}

.featured-title-box {
    flex: 0 0 45%;
}

.featured-info-box {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.featured-description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #808080;
    margin-bottom: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.featured-btn {
    padding: 12px 30px;
}

/* Infinity Slider Styles */
.featured-slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

.featured-track {
    display: flex;
    /* width: max-content; */
}

/* Swiper specific adjustments to maintain smooth continuous flow */
.featured-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.featured-track:hover {
    animation-play-state: paused;
}

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

    100% {
        transform: translateX(-50%);
    }
}

.featured-card {
    /* width: 25vw; */
    height: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-10px);
}

.card-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .card-image img {
    transform: scale(1.05);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
}

.card-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #808080;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* --- Premium Selection Section --- */
.premium-selection-section {
    padding: 100px 0;
    color: #fff;
    background-image: url("assets/images/premium-selection/premium-selection-bg.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Optional Overlay */
.premium-selection-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.premium-selection-section .container {
    position: relative;
    z-index: 2;
}

.premium-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    .section-title {
        margin-bottom: 20px;
    }
}

.premium-content-col {
    flex: 0 0 40%;
}

.premium-image-col {
    flex: 0 0 55%;
}

.section-title.text-white {
    color: #fff;
}

.premium-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    color: #ccc;
    margin-bottom: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

/* Tabs Navigation */
.premium-tabs {
    display: flex;
    flex-direction: column;
    /* Vertical list on Desktop */
    gap: 23px;
}

.premium-tab-link {
    background: none;
    border: none;
    text-align: left;
    color: #fff;
    font-family: var(--font-body);
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 0;
}

.premium-tab-link .tab-arrow {
    opacity: 0;
    width: 0;
    overflow: hidden;
    transform: translateX(-20px);
    transition: all 0.3s;
    font-size: 24px;
    color: var(--primary-gold);
    display: inline-block;
    margin-right: 0;
}

.premium-tab-link.active,
.premium-tab-link:hover {
    color: var(--primary-gold);
    padding-left: 0;
}

.premium-tab-link.active {
    font-size: 40px;
}

.premium-tab-link.active .tab-arrow {
    opacity: 1;
    width: 40px;
    transform: translateX(0);
    margin-right: 15px;
}

/* Image Display Area - 3D Card Roll */
.premium-image-display {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.premium-img-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    /* Cards are not full width to show stack behind */
    height: 350px;
    transform-origin: center center;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.premium-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Active Card (Center) */
.premium-img-item.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    width: 90%;
    height: 400px;
}

/* Previous Card (Top Peek) */
.premium-img-item.prev {
    opacity: 0.4;
    visibility: visible;
    transform: translate(-50%, -85%) scale(0.85);
    z-index: 5;
    filter: brightness(0.5);
}

/* Next Card (Bottom Peek) */
.premium-img-item.next {
    opacity: 0.4;
    visibility: visible;
    transform: translate(-50%, -15%) scale(0.85);
    z-index: 5;
    filter: brightness(0.5);
}

/* Responsive Styles */
/* --- Luxury Stone Experience Section --- */
.luxury-experience-section {
    padding: 100px 0;
    position: relative;
    background-image: url("assets/images/craft-elegance-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.luxury-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    color: #808080;
    max-width: 600px;
    margin: 20px auto 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.luxury-scroll-wrapper {
    width: 100%;
    height: 490px;
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .luxury-scroll-wrapper {
        height: 185px;
    }
}

.luxury-track {
    display: flex;
    gap: 0;
    padding: 0;
    /* width: max-content; */
}

.luxury-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.luxury-track:hover {
    animation-play-state: paused;
}

/* Keyframes for Track Sliding */
@keyframes luxury-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.luxury-item {
    flex: 0 0 auto;
    height: 100% !important;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

@media (max-width: 767px) {
    .luxury-item {
        border-radius: 10px;
    }
}

.luxury-item:hover {
    transform: translateY(-5px);
}

.luxury-item img,
.luxury-item video,
.luxury-item iframe {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

/* Progress Bar (Animated for Loop) */
.luxury-progress-container {
    width: 100%;
    max-width: 300px;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.luxury-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--primary-gold);
    border-radius: 2px;
    /* animation: progress-loop 30s linear infinite; */
}

@keyframes progress-loop {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Responsive */
/* --- Explore GMC Section --- */
.explore-gmc-section {
    position: relative;
    padding: 150px 0;
    background-image: url("assets/images/explore-gmc.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1280 / 746;
}

.explore-gmc-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.explore-gmc-section .container {
    position: relative;
    z-index: 2;
}

.explore-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.explore-description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin: 20px 0 40px;
    color: #fff;
}

/* --- Discover Collection Section (Video BG) --- */
.discover-collection-section {
    position: relative;
    padding: 150px 0;
    background-color: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.discover-collection-section .container {
    position: relative;
    z-index: 2;
}

.discover-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.discover-title {
    font-size: 56px;
    line-height: 1;
}

.discover-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    margin: 20px 0 40px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Video Background Wrapper */
.section-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.section-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

/* Overlay - Matching Hero Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.5), transparent 80%), linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

/* Responsive */
/* --- Recent Articles Section --- */
.recent-articles-section {
    padding: 100px 0;
    background-color: #fff;
    color: #111;
}

.articles-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: end;
}

/* Columns */
.article-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    justify-content: space-between;
}

/* .left-col {
    justify-content: flex-start;
}

.right-col {
    justify-content: flex-start;
} */

/* Header Block */
.article-header-block {
    margin-bottom: 20px;

    .section-title {
        max-width: 220px;
    }
}

.article-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #808080;
    margin-top: 20px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Cards */
.article-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
}

.article-card>a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.article-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.article-card:hover img {
    transform: scale(1.05);
    opacity: 0.6;
}

.tall-height {
    height: 100%;
    min-height: 600px;
}

.small-height {
    height: 300px;
}

/* Content Overlay */
.article-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 10;
}

.article-date {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
    display: block;
    margin-bottom: 10px;
}

.article-title {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.article-excerpt {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    opacity: 0.9;
    margin-top: 10px;
}

.article-cta-block {
    margin-top: 40px;
}

.cta-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Responsive */
/* --- Footer Section --- */
.site-footer {
    background-color: #fdfcf8;
    color: #333;
    font-family: var(--font-body);
    border-top: 1px solid #E6E1D3;
}

.footer-container {
    display: grid;
    grid-template-columns: 50% 50%;
    max-width: 100%;
    gap: 16px;
}

.footer-left-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-right-panel {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* --- Left Panel Sections --- */
/* Logo Section */
.footer-logo-section {
    padding-top: 53px;
    padding-bottom: 53px;
    border: 1px solid #E6E1D3;
    border-left: none;
    background-color: #FAF9F7;
    padding-left: calc((100vw - 1280px) / 2 + 43px);
}

@media (max-width: 1366px) {
    .footer-logo-section {
        padding-left: 43px;
    }
}


.footer-logo {
    max-width: 250px;
    height: auto;
}

/* Links Section (2 Cols internal) */
.footer-links-section {
    display: flex;
    gap: 100px;
    border: 1px solid #E6E1D3;
    border-left: none;
    background-color: #FAF9F7;
    padding: 25px 40px;
    padding-left: calc((100vw - 1280px) / 2 + 43px);
}

@media (max-width: 1366px) {
    .footer-links-section {
        padding-left: 43px;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu li a:hover {
    color: var(--primary-gold);
}

/* Footer Sub-Menu Flyout (Right Dropdown) */
.footer-menu li {
    position: relative;
    margin-bottom: 10px;
}

.footer-menu .sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 100%;
    top: -10px;
    background-color: #f9f9f7;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 15px 20px;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    transform: translateX(10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
}

.footer-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(20px);
}

.footer-menu .sub-menu li {
    margin-bottom: 10px;
}

.footer-menu .sub-menu li:last-child {
    margin-bottom: 0;
}

.footer-menu .sub-menu li a {
    font-size: 14px;
    color: #333;
}

/* Add right-arrow indicator for menu items that have children */
.footer-menu li.menu-item-has-children>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-menu li.menu-item-has-children>a::after {
    content: "\f105";
    /* FontAwesome right angle bracket */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: #999;
}

.footer-menu li.menu-item-has-children>a:hover::after {
    color: var(--primary-gold);
}

/* Bottom Section (Socials + Copyright) */
.footer-bottom-section {
    display: flex;
    flex-direction: column;
    border: 1px solid #E6E1D3;
    border-left: none;
    background-color: #FAF9F7;
    padding: 60px 0 38px;
    padding-left: calc((100vw - 1280px) / 2 + 43px);
}

@media (max-width: 1366px) {
    .footer-bottom-section {
        padding-left: 43px;
    }
}


.footer-socials {
    display: flex;
    gap: 30px;
    margin-bottom: 77px;
}

.footer-socials a img {
    height: 20px;
    width: 20px;
    object-fit: contain;
}

.footer-socials a {
    color: var(--primary-gold);
    font-size: 18px;
    font-family: "Font Awesome 6 Brands", sans-serif;
    transition: transform 0.3s;
}

.footer-socials a:hover {
    transform: translateY(-3px);
}

.footer-copyright p {
    font-size: 16px;
    color: #000000;
}

/* --- Right Panel Sections --- */
/* Contact Section */
.footer-contact-section {
    padding: 60px 40px 0 40px;
    padding-right: calc((100vw - 1280px) / 2 + 43px);
    margin-bottom: 16px;
}

@media (max-width: 1366px) {
    .footer-contact-section {
        padding-right: 43px;
    }
}


.footer-big-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    color: #000;
    margin-bottom: 16px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 16px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.contact-list li i {
    color: var(--primary-gold);
    margin-top: 5px;
    min-width: 20px;
}

.contact-list li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list li a:hover {
    color: var(--primary-gold);
}

/* Newsletter Section */
.footer-newsletter-section {
    padding: 0 40px 38px 40px;
    padding-right: calc((100vw - 1280px) / 2 + 43px);
    position: relative;
    margin-top: auto;
}

@media (max-width: 1366px) {
    .footer-newsletter-section {
        padding-right: 43px;
    }
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #333;
    margin-bottom: 16px;
}

.newsletter-desc {
    color: #666;
    margin-bottom: 16px;
}

body .footer-newsletter-section form.es_subscription_form,
body .footer-newsletter-section .es_subscription_form_wrapper {
    margin-left: 0 !important;
    margin-right: auto !important;
}

body .footer-newsletter-section form.es_subscription_form.ig_es_subscription_form.wysiwyg-form[data-form-id="1"] {
    display: flex;
    align-items: center !important;
    background-color: #fff !important;
    border: 1px solid #f2e6d9 !important;
    border-radius: 8px !important;
    padding: 6px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    max-width: 450px !important;
    width: 100% !important;
    height: 64px !important;
    margin-top: 24px !important;
    box-shadow: none !important;
    border-color: #E6E1D3 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

body .footer-newsletter-section form.es_subscription_form.ig_es_subscription_form.wysiwyg-form[data-form-id="1"] .es-field-wrap.ig-es-form-field {
    flex: 1 !important;
    margin-bottom: 0 !important;
    min-width: 0 !important;
}

body .footer-newsletter-section form.es_subscription_form.ig_es_subscription_form.wysiwyg-form[data-form-id="1"] .es-field-label {
    margin-bottom: 0 !important;
    font-size: 0 !important;
    color: transparent !important;
    display: block !important;
}

body .footer-newsletter-section form.es_subscription_form.ig_es_subscription_form.wysiwyg-form[data-form-id="1"] .es-field-label br {
    display: none !important;
}

body .footer-newsletter-section form.es_subscription_form.ig_es_subscription_form.wysiwyg-form[data-form-id="1"] .ig-es-form-input {
    width: 100% !important;
    padding-left: 20px !important;
    height: 40px !important;
    border: none !important;
    border-width: 0 !important;
    background-color: transparent !important;
    color: #333 !important;
    outline: none !important;
    font-size: 14px !important;
    font-family: var(--font-body) !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}

body .footer-newsletter-section form.es_subscription_form.ig_es_subscription_form.wysiwyg-form[data-form-id="1"] .ig-es-form-input::placeholder {
    color: #bbb !important;
    font-weight: 300 !important;
}

body .footer-newsletter-section form.es_subscription_form.ig_es_subscription_form.wysiwyg-form[data-form-id="1"] .es-submit-container {
    margin-bottom: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
}

body .footer-newsletter-section form.es_subscription_form.ig_es_subscription_form.wysiwyg-form[data-form-id="1"] .es-subscribe-btn {
    background-color: var(--primary-gold) !important;
    color: #fff !important;
    padding: 0 24px !important;
    width: 130px !important;
    height: 40px !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.3s;
    font-family: var(--font-body) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    gap: 4px !important;
    opacity: 1 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

body .footer-newsletter-section form.es_subscription_form.ig_es_subscription_form.wysiwyg-form[data-form-id="1"] .es-subscribe-btn:hover {
    background-color: #b0892f !important;
}



/* Scroll To Top Button (Absolute in Footer) */
.scroll-top-btn {
    position: absolute;
    bottom: 60px;
    right: calc((100vw - 1280px) / 2 + 20px);
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: var(--primary-gold);
    border: 1px solid #E6E1D3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.scroll-top-btn i {
    font-size: 24px;
}

.scroll-top-btn:hover {
    background-color: #fdfcf8;
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

/* --- Responsive Footer Styling --- */
/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (min-aspect-ratio: 16/9) {
    .video-container iframe {
        height: 56.25vw;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-aspect-ratio: 16/9) {
    .video-container iframe {
        width: 177.78vh;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 1200px) {
    .header-search {
        flex: 0 1 320px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }

    .header-container {
        padding: 0 20px;
    }

    .header-search {
        flex: 0 1 200px;
        margin-right: 15px;
    }

    .site-logo {
        max-height: 48px;
    }

    .logo-link {
        margin-right: 20px;
    }

    .main-navigation {
        margin-right: 20px;
    }

    .main-navigation .menu {
        gap: 15px;
    }

    .main-navigation a {
        font-size: 13px;
        white-space: nowrap;
    }

    .craft-header-row,
    .craft-content-row {
        flex-direction: column;
        gap: 40px;
    }

    /* Mobile Bleed Calculation */
    .unified-video-area {
        margin-left: calc(50% - 50vw);
        width: 100%;
        max-width: 100%;
        border-radius: 0 !important;
        margin-right: calc(50% - 50vw);
        margin-top: 50px;
    }

    .craft-title-area,
    .craft-desc-area,
    .unified-video-area,
    .craft-stats-area {
        flex: 0 0 100%;
        max-width: none;
    }
}

@media (max-width: 992px) and (max-width: 834px) {
    .unified-video-area {
        margin-left: -43px;
        width: calc(100% + 43px);
        margin-right: 0;
        border-radius: 0 12px 12px 0 !important;
        max-width: none;
        margin-top: 50px;
    }

    .visual-strip.transparent-strip {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 40px;
    }

    .craft-description {
        text-align: left;
        font-size: 14px;
    }

    .stats-grid {
        gap: 40px;
    }

    .featured-header-row {
        flex-direction: column;
        gap: 30px;
    }

    .featured-title-box,
    .featured-info-box {
        flex: 0 0 100%;
    }

    /* .featured-card {
        width: 45vw;
    }

    .card-image {
        height: 300px;
    } */

    .premium-grid {
        flex-direction: column;
    }

    .premium-content-col,
    .premium-image-col {
        flex: 0 0 100%;
        width: 100%;
    }
}

@media (max-width: 992px) {

    /* Horizontal Scroller for Tabs on Mobile */
    .premium-tabs {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        gap: 23px;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .premium-tabs::-webkit-scrollbar {
        display: none;
    }

    .premium-tab-link {
        font-size: 18px;
        flex-shrink: 0;
    }

    .premium-tab-link .tab-arrow {
        display: none;
    }

    .premium-tab-link.active {
        border-bottom: 2px solid var(--primary-gold);
    }

    .premium-image-display {
        height: 350px;
    }

    .premium-img-item {
        width: 70%;
        height: 250px;
    }

    .premium-img-item.active {
        width: 80%;
        height: 300px;
        transform: translate(-50%, -50%) scale(1);
    }

    /* Previous Card (Left Peek for Mobile) */
    .premium-img-item.prev {
        transform: translate(-85%, -50%) scale(0.85);
    }

    /* Next Card (Right Peek for Mobile) */
    .premium-img-item.next {
        transform: translate(-15%, -50%) scale(0.85);
    }

    /* .luxury-item {
        width: 450px;
        height: 300px;
        gap: 20px;
    } */

    .articles-layout {
        grid-template-columns: 1fr;
    }

    .tall-height {
        min-height: 400px;
    }

    /* Hide Scroll To Top on Mobile/Tablet */
    .desktop-only-scroll {
        display: none !important;
    }

    .footer-container {
        grid-template-columns: 100%;
        flex-direction: column;
        padding: 40px 43px 20px;
        box-sizing: border-box;
    }

    .footer-left-panel,
    .footer-right-panel {
        display: contents;
    }

    .footer-logo-section,
    .footer-links-section,
    .footer-bottom-section {
        border: 1px solid #E6E1D3 !important;
        background-color: #FAF9F7;
        margin-bottom: 10px;
        padding: 24px 16px;
        padding-left: 14px;
        box-sizing: border-box;
        display: flex;
    }

    .footer-logo-section {
        justify-content: flex-start;
        order: 3;
    }

    .footer-newsletter-section {
        padding: 20px 16px 20px 14px;
        order: 1;
        margin-bottom: 0;
    }

    .footer-contact-section {
        order: 2;
        margin-bottom: 20px;
        padding: 20px 16px 0 14px;
    }

    .contact-list li {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding-left: 0 !important;
    }

    .contact-list li i {
        flex-shrink: 0 !important;
        margin-top: 4px !important;
        width: 16px !important;
        text-align: center !important;
    }

    .contact-list li span,
    .contact-list li a {
        flex: 1 !important;
    }

    /* Force exact wrapper classes from plugin to align left */
    body .footer-newsletter-section div.es_form_wrapper,
    body .footer-newsletter-section div.ig-es-form-wrapper,
    .footer-newsletter-section .es_form_wrapper,
    .footer-newsletter-section .ig-es-form-wrapper {
        margin-left: 0 !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }

    body .footer-newsletter-section form.es_subscription_form.ig_es_subscription_form.wysiwyg-form[data-form-id="1"] {
        display: flex !important;
        margin-left: 0 !important;
        max-width: 450px !important;
    }

    .footer-links-section {
        flex-direction: row;
        gap: 24px;
        order: 4;
    }

    .footer-bottom-section {
        flex-direction: column;
        order: 5;
        gap: 20px;
    }

    .footer-col {
        flex: 1;
    }

    .footer-socials {
        margin-bottom: 50px;
        gap: 20px;
    }

    .footer-copyright p {
        font-size: 14px;
        line-height: 1.4;
    }

    .footer-big-title {
        font-size: 34px;
        margin-bottom: 24px;
    }

    .footer-heading {
        margin-bottom: 16px;
    }

    @media (max-width: 768px) {
        .footer-container {
            padding-left: 20px;
            padding-right: 20px;
        }
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }

    .logo-block {
        font-size: 9px;
    }

    .site-header {
        z-index: 10002 !important;
    }

    .header-container {
        padding: 0 12px !important;
        width: 100% !important;
        justify-content: space-between !important;
        box-sizing: border-box !important;
    }

    .logo-link {
        margin-right: 10px !important;
    }

    .site-logo {
        width: 80px !important;
        height: 48px !important;
        object-fit: contain;
    }

    .hero-content-container {
        padding: 80px 30px 180px;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
    }

    .logo-block span {
        width: 14px;
        height: 14px;
        font-size: 9px;
    }

    .header-actions {
        gap: 8px !important;
        margin-left: auto !important;
        display: flex !important;
        align-items: center !important;
    }

    .header-actions a,
    .header-actions .mobile-search-icon,
    .menu-toggle {
        padding: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
        box-sizing: border-box;
    }

    .cart-icon a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cart-count {
        top: 6px;
        right: 4px;
    }

    .eyebrow {
        font-size: 16px;
    }

    .hero-title {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .hero-description {
        margin-bottom: 30px;
        font-size: 14px;
    }

    .hero-slider-nav {
        left: 16px;
        right: auto;
        bottom: 30px;
        width: 343px;
        max-width: calc(100% - 32px);
        height: 90px;
        padding: 12px;
        border-radius: 10px;
    }

    .next-slide-preview {
        gap: 12px;
    }

    .next-slide-info {
        width: 241px;
    }

    .next-label {
        font-size: 14px;
    }

    .next-slide-preview img {
        width: 66px;
        height: 66px;
        border-radius: 6px;
    }

    .hero-text-content {
        padding-left: 0;
    }

    .btn {
        font-size: 16px;
    }

    .next-title {
        font-size: 16px;
    }

    .strip-label {
        font-size: 26px;
    }

    .stat-number {
        font-size: 30px;
    }

    .craft-elegance-section {
        padding-bottom: 50px;
    }

    .footer-menu li {
        margin-bottom: 6px;
    }

    .featured-collection-section {
        padding: 60px 0;
    }

    .featured-slider-container {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }

    .featured-description {
        font-size: 14px;
    }

    .luxury-description {
        font-size: 14px;
    }

    .explore-description {
        font-size: 14px;
        color: #CCCCCC;
    }

    .article-date {
        font-size: 14px;
    }

    .article-title {
        font-size: 18px;
    }

    .article-excerpt {
        font-size: 14px;
    }

    .article-col,
    .article-card.small-height,
    .article-card.tall-height {
        width: 100%;
        max-width: 343px;
        margin-left: auto;
        margin-right: auto;
    }

    .article-card.small-height {
        height: 270px;
        min-height: 270px;
    }

    .article-content {
        padding: 14px !important;
    }

    .article-card.tall-height {
        height: 460px;
        min-height: 460px;
    }

    .discover-description {
        font-size: 14px;
        color: #CCCCCC;
    }

    .cta-text {
        font-size: 20px;
    }

    .mobile-search-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .mobile-search-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .menu-toggle {
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-toggle i {
        font-size: 24px !important;
    }

    /* Mobile Menu Styles */
    .mobile-navigation {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 100000;
        padding-top: 80px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .mobile-navigation.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .menu-close {
        position: absolute;
        top: 25px;
        right: 25px;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }

    .menu-close i {
        font-size: 24px !important;
    }

    .mobile-menu-items {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0;
        width: 100%;
    }

    .mobile-menu-items>li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-items>li:last-child {
        border-bottom: none;
    }

    .mobile-menu-items a {
        font-family: var(--font-heading);
        font-size: 20px;
        color: #fff;
        text-transform: capitalize;
        letter-spacing: 0.5px;
        display: block;
        padding: 20px 0;
        width: 100%;
    }

    .mobile-menu-items a:hover {
        color: var(--primary-gold);
    }

    /* Dropdown Toggle in Mobile */
    .mobile-dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-navigation .sub-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        background: transparent;
        padding: 0 0 10px 20px;
        display: none;
        min-width: auto;
        border: none;
    }

    .mobile-navigation .sub-menu.active {
        display: block;
    }

    .mobile-navigation .sub-menu::before {
        display: none;
    }

    .mobile-navigation .sub-menu li a {
        font-family: var(--font-body);
        font-size: 15px;
        color: #999 !important;
        text-align: left;
        padding: 10px 0;
        font-weight: 400;
        background: transparent !important;
        border: none !important;
        text-transform: none;
    }

    .mobile-navigation .sub-menu li {
        border-bottom: none !important;
    }

    .mobile-navigation .sub-menu li a:hover {
        color: var(--primary-gold) !important;
    }

    .mobile-social-links {
        margin-top: auto;
        padding-top: 40px;
        display: flex;
        gap: 20px;
        z-index: 10;
    }

    .mobile-social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s;
    }

    .mobile-social-links a img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .mobile-social-links a:hover {
        transform: translateY(-3px);
    }

    .explore-gmc-section {
        padding: 100px 0;
    }

    .unified-video-area {
        margin-top: 50px;
    }

    .footer-big-title {
        font-size: 30px;
    }

    .contact-list li {
        font-size: 14px;
    }

    .newsletter-title {
        font-size: 20px;
    }

    .newsletter-desc {
        font-size: 14px;
    }

    .footer-heading {
        font-size: 20px;
    }

    .footer-menu li a {
        font-size: 14px;
    }

    .premium-img-item {
        height: 164px;
        width: 303px;
    }

    .premium-img-item.active {
        height: 193px;
        width: 303px;
    }

    .premium-selection-section {
        padding-top: 50px !important;
        padding-bottom: 0 !important;
    }
}

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

    .hero-content-container {
        padding: 85px 25px 200px;
        align-items: center;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-slider-nav {
        bottom: 40px;
        left: 16px;
        right: auto;
        width: 343px;
        max-width: calc(100% - 32px);
    }

    .section-title {
        font-size: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .stat-icon-box {
        font-size: 30px;
        width: 50px;
        height: 50px;
    }

    .stat-number {
        font-size: 30px;
    }

    .visual-strip {
        justify-content: center;
        padding-right: 0;
    }

    .unified-video-area {
        margin-top: 50px;
        margin-left: -43px;
        width: calc(100% + 20px);
        max-width: 85vw;
        margin-right: auto;
        border-radius: 0 12px 12px 0 !important;
    }

    .featured-card {
        width: 270px;
        /* Mobile: 1 item + peek */
    }

    .card-image {
        width: 100%;
        height: 240px;
        border-radius: 6px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-text {
        font-size: 14px;
    }

    .premium-image-display {
        height: 300px;
    }

    .premium-img-item {
        height: 200px;
        width: 303px;
    }

    /* .luxury-item {
        width: 85vw;
        height: 250px;
    } */

    .premium-tab-link {
        font-size: 18px;
    }

    .premium-tab-link.active {
        font-size: 26px;
    }

    /* .luxury-track {
        padding: 0 20px;
        gap: 15px;
    } */
}

@media (min-width: 993px) {
    .unified-video-area {
        margin-left: calc((100% - 100vw) / 2);
        width: calc(45% + (100vw - 100%) / 2);
        flex: 0 0 auto;
    }
}

@media (max-width: 576px) {
    .newsletter-form {
        max-width: 100%;
    }

    .newsletter-input-group {
        width: 100%;
        justify-content: space-between;
    }

    .newsletter-form input[type=email] {
        width: 0;
        flex-grow: 1;
        min-width: 0;
    }

    .newsletter-form .btn-gold {
        padding: 10px 20px;
        font-size: 14px;
        white-space: nowrap;
    }

    .footer-links-section {
        flex-direction: row;
        gap: 10px;
    }
}

/* Ensure Footer Stacks on Mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-left-panel,
    .footer-right-panel {
        flex: 0 0 100%;
        max-width: 100%;
        /* margin-bottom: 40px; */
    }
}

/* Hide Default WooCommerce Sidebar if exists */
/* .woocommerce-active .sidebar {
    display: none;
} */
/* AJAX Search Styles */
.gmc-ajax-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 300px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1000;
    display: none;
    margin-top: 10px;
}

.search-list li:last-child {
    border-bottom: none !important;
}

.search-item-link:hover {
    background: #f9f9f9;
}

/* Ensure relative positioning for search form wrapper if needed */
.header-search form {
    position: relative;
}

/* Archive Header Banner */
.archive-header-bg {
    position: relative;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Mobile Search Full Screen Overlay */
.mobile-search-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* Dimmed Background */
    z-index: 100001;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    display: none;
    /* Actually hide it from layout */
}

.mobile-search-wrapper.active {
    display: flex !important;
    /* Force flex when active */
    opacity: 1;
    visibility: visible;
}

.mobile-search-form {
    background: #fff;
    width: 100%;
    max-width: 600px;
    margin-top: 50px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    position: relative;
    flex-wrap: nowrap;
    /* Allow results to break line */
}

/* Close Button inside the white box or outside? 
   User image shows a white box with "Stone" input and "X" to close.
   Let's position close button inside the input area. */
.mobile-search-close {
    order: 3;
    color: #333;
    font-size: 16px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-search-form .search-field {
    flex-grow: 1;
    border: none !important;
    background: #fff !important;
    color: #333 !important;
    font-size: 16px;
    height: 50px;
    padding: 0 15px;
    border-radius: 4px;
    outline: none;
    box-shadow: none;
    order: 1;
}

.mobile-search-form .search-submit {
    /* Hide search icon if user wants X only?
  User prompt says "magnifying glass in mobile header need a pop up like this"
  Screenshot shows "Stone X".
  We can keep search submit as hidden or minimal. */
    display: none;
}

.mobile-search-form .search-field::placeholder {
    color: #aaa !important;
}

/* AJAX Results in Mobile Overlay */
.mobile-search-wrapper .gmc-ajax-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 0 0 8px 8px;
    margin-top: 5px;
    /* Gap from input */
    max-height: 60vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* Override absolute top if needed to be seamless with input? 
     User image shows results box is separate or attached?
     Screenshot looks like input is top bar, results are below in white box.
     Let's keep separate margin. 
  */
    display: none;
    /* JS toggles block */
    z-index: 2001;
}

/* Standard Page Styles */
.standard-page-container {
    padding-top: 150px;
    padding-bottom: 80px;
}

.standard-page-container .entry-title {
    color: #111;
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.standard-page-container .entry-content {
    color: #333;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

/*---------------------- new page css ---------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #111;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .inner-page-title {
        font-size: 30px;
    }
}

.breadcrumbs-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* product category */
.product-category-page {
    .product-category-page_banner {
        height: 300px;
        position: relative;

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

        h1 {
            position: absolute;
            left: 50%;
            bottom: 48px;
            transform: translateX(-50%);
            width: 100%;
            text-align: center;
        }

        @media screen and (max-width: 767px) {
            height: 200px;

            h1 {
                bottom: 0px;
                font-size: 30px;
            }
        }
    }

    .product-category-container {
        padding: 20px 0;

        .breadcrumbs-top {
            color: #121A21;

            i {
                color: #C38F26;
            }
        }

        .content {
            display: flex;
            align-items: center;
            color: #000;
            padding: 100px 0;
            gap: 24px;

            h2 {
                font-size: 48px;
                font-weight: 400;
                margin-bottom: 20px;

                @media screen and (max-width: 767px) {
                    font-size: 30px;
                }
            }

            p {
                color: #808080;
            }

            .left-section {
                max-width: 350px;

                @media screen and (max-width: 1279px) {
                    max-width: 300px;

                }

                .category-thumbnail {
                    max-width: 260px;
                    max-height: 63px;
                    width: auto;
                    height: auto;
                    margin-bottom: 20px;
                    object-fit: contain;

                    @media screen and (max-width: 767px) {
                        max-width: 160px;
                    }
                }
            }

            .right-section {
                flex: 1;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
                justify-content: space-between;
                gap: 50px;

                .image-display {
                    position: relative;
                    height: 480px;
                }

                .card-stack {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    max-width: 400px;
                }

                .image-card {
                    position: absolute;
                    aspect-ratio: 400/500;
                    border-radius: 6px;
                    overflow: hidden;
                    opacity: 0;
                    transition: all 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                    transform-origin: center center;
                }

                .image-card img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    aspect-ratio: 400 / 500;
                    border-radius: 6px;
                }

                /* Hide back2 layer - we only need 2 cards total */
                .image-card[data-layer=back2] {
                    display: none;
                }

                /* Back card - behind the active one */
                .image-card[data-layer=back1] {
                    top: 50px;
                    left: 50px;
                    transform: rotate(15deg) scale(0.95) translateX(30px);
                    z-index: 1;
                    filter: brightness(0.85);
                }

                /* Front active card - starts from left */
                .image-card[data-layer=front] {
                    top: 55px;
                    left: 40px;
                    transform: rotate(-20deg) scale(0.9) translateX(-40px);
                    z-index: 3;
                    filter: brightness(1);
                }

                /* Active state - back card rotates to right */
                .image-card.active[data-layer=back1] {
                    opacity: 1;
                    transform: rotate(-10deg) scale(1) translateX(-4px);
                    top: 60px;
                }

                /* Active state - front card rotates to center straight */
                .image-card.active[data-layer=front] {
                    opacity: 1;
                    transform: rotate(0deg) scale(1) translateX(0);
                    z-index: 10;
                }

                /* Leaving state - front card going to back rotates right */
                .image-card.leaving {
                    opacity: 0;
                }


                .label {
                    position: absolute;
                    bottom: 13px;
                    left: 50%;
                    transform: translateX(-50%);
                    padding: 10px 28px;
                    border-radius: 10px;
                    font-size: 15px;
                    color: #808080;
                    z-index: 10;
                    transition: all 0.3s ease;
                    letter-spacing: 0.5px;
                    border: 1px solid #808080;
                    width: calc(100% - 24px);
                    text-align: center;
                    font-weight: 600;

                }

                .image-card.active:hover .label,
                .image-card.active .label:hover {
                    background-color: #c9a961;
                    border-color: #c9a961;
                    color: #fff;
                }

                .material-list {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    max-width: max-content;
                }

                .material-item {
                    font-size: 30px;
                    font-weight: 300;
                    color: #000;
                    cursor: pointer;
                    padding: 12px 20px 12px 0px;
                    border-radius: 8px;
                    transition: all 0.3s ease;
                    position: relative;
                    letter-spacing: 1px;
                }

                .material-item:hover {
                    color: #333;
                    padding-left: 67px;
                }

                .material-item:hover::before {
                    width: 20px;
                }

                .material-item.active {
                    color: #c9a961;
                    font-weight: 400;
                    padding-left: 67px;
                    font-size: 40px;
                }

                .material-item.active::before {
                    width: 20px;
                }

                .arrow {
                    position: absolute;
                    left: -40px;
                    top: 50%;
                    transform: translateY(-50%);
                    color: #c9a961;
                    opacity: 0;
                    transition: all 0.3s ease;
                }

                .material-item:hover .arrow {
                    left: 0px;
                }

                .material-item.active .arrow {
                    opacity: 1;
                    left: 0px;
                }

                @media screen and (max-width: 1279px) {
                    .material-item {
                        font-size: 26px;

                        &.active {
                            font-size: 32px;
                        }
                    }

                }
            }

            @media screen and (max-width: 1024px) {
                flex-direction: column;
                padding: 50px 0 30px;
                overflow: hidden;



                .left-section {
                    max-width: none;
                }

                .right-section {
                    display: flex;
                    flex-direction: column-reverse;
                    width: 100%;
                    gap: 0;

                    .card-stack {
                        max-width: 280px;
                        left: 46%;
                        transform: translateX(-50%);
                    }

                    .image-display {
                        height: 365px;
                    }

                    .image-card {
                        aspect-ratio: 240/300;
                    }

                    .material-list {
                        flex-direction: row;
                        width: 93vw;
                        overflow-x: auto;
                        justify-content: start;
                        align-items: center;
                    }

                    .material-item {
                        font-size: 18px;
                        padding: 8px;

                        &.active {
                            font-size: 26px;
                            padding-left: 16px;
                        }

                        .arrow {
                            display: none;
                        }
                    }

                }
            }
        }
    }
}

/* about page */
.about-page {
    .legacy-section {
        padding: 100px 0;
        background-position: center;
        background-size: cover;

        .title {
            text-align: center;
            margin-bottom: 70px;

            .section-description {
                color: #808080;
                max-width: 822px;
                margin: 20px auto 0;
                font-size: 16px;
            }
        }

        /* Container */
        .stats-container {
            max-width: 1280px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;

            /* Each stat */
            .stat {
                display: flex;
                align-items: center;
                gap: 30px;

                img {
                    width: 60px;
                }

                h2 {
                    font-size: 40px;
                    font-weight: 500;
                    margin: 0;
                    color: #000000;
                }

                h2 span {
                    color: #d8a243;
                }

                p {
                    margin-top: 8px;
                    color: #666;
                    font-size: 14px;
                    font-weight: 600;
                    line-height: 128%;
                }
            }
        }

        @media screen and (max-width: 1023px) {
            padding: 50px 0;

            .stats-container {
                grid-template-columns: repeat(2, 1fr);

                .stat {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;

                    h2 {
                        font-size: 30px;
                    }

                    p {
                        margin-top: 4px;
                    }
                }
            }

            .title {
                margin-bottom: 40px;

                .section-description {
                    font-size: 14px;
                }
            }

            .count {
                display: flex;
                flex-direction: column;
                align-items: center;

                p {
                    text-align: center;
                }
            }
        }
    }

    .image-section {
        position: relative;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 122px 0;

        &::before {
            content: "";
            background: linear-gradient(270deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(270deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
        }

        .content {
            position: relative;
            max-width: 480px;
            margin-left: auto;
            display: flex;
            flex-direction: column;
            gap: 30px;

            p {
                color: #CCCCCC;
                font-size: 16px;
                line-height: 140%;
            }
        }

        @media screen and (max-width: 767px) {
            padding: 296px 0 50px;

            .content p {
                font-size: 14px;
            }
        }
    }

    .manager-section {
        padding: 100px 0;

        .wrapper {
            background: #FAF9F7;
            display: flex;
            border-radius: 10px;
            overflow: hidden;
        }

        .content {
            padding: 50px;
            width: calc(100% - 622px);
            display: flex;
            flex-direction: column;
            gap: 20px;

            p {
                color: #808080;
                font-size: 16px;
            }
        }

        .image {
            width: 100%;
            max-width: 622px;

            img {
                height: 100%;
                width: 100%;
                object-fit: cover;
                aspect-ratio: 622 / 495;
            }
        }

        .name {
            margin-top: auto;
            border-left: 8px solid #C38F26;
            padding-left: 16px;

            .title {
                color: #000;
                font-size: 26px;
                font-weight: 500;
                margin-bottom: 6px;
                line-height: 1.2;
            }

            p {
                margin: 0 !important;
                padding-top: 0 !important;
            }
        }

        @media screen and (max-width: 1279px) {
            padding: 50px 0px;

            .content {
                width: 50%;
            }

            .image {
                width: 50%;
            }
        }

        @media screen and (max-width: 767px) {
            .wrapper {
                flex-direction: column;
            }

            .content {
                width: 100%;
                padding: 20px 20px 40px;
                gap: 30px;

                p {
                    font-size: 14px;
                    color: #808080;
                }
            }

            .image {
                width: 100%;
            }

            .name {
                border-width: 6px;

                .title {
                    font-size: 18px;
                    margin-bottom: 6px;
                    line-height: 1.2;
                }

                p {
                    font-size: 14px;
                    margin: 0 !important;
                    padding-top: 0 !important;
                }
            }
        }
    }

    .innovation-section {
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center;
        padding-top: 170px;
        padding-bottom: 295px;
        background-size: cover;

        .content {
            max-width: 495px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-align: center;
        }

        .section-description {
            color: #808080;
            text-align: center;
            font-size: 16px;
        }

        @media screen and (max-width: 767px) {
            padding-top: 90px;
            padding-bottom: 211px;

            .content {
                gap: 16px;
            }
        }
    }

    .life-style-section {
        padding: 100px 0;

        .wrapper {
            display: flex;
            align-items: center;
            gap: 83px;
        }

        .wrapper .image {
            flex: 1;
            aspect-ratio: 314/434;
            border-radius: 10px;
            overflow: hidden;

            img {
                width: 100%;
                height: full;
                display: block;
            }
        }

        .wrapper .content {
            width: 400px;
            flex-shrink: 0;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-align: center;
        }

        .section-title {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .section-description {
            color: #808080;
            text-align: center;
            font-size: 16px;
            line-height: 140%;
        }

        .mobile-slider {
            display: none;
        }

        @media screen and (max-width: 1023px) {
            .wrapper {
                gap: 20px;

                .content {
                    width: 300px;
                }
            }
        }

        /* MOBILE ONLY */
        @media (max-width: 768px) {
            padding: 50px 0;

            .wrapper {
                .image {
                    display: none;
                }

                .content {
                    width: 100%;

                    .section-title {
                        font-size: 30px;
                    }

                    .section-description {
                        font-size: 14px;
                        line-height: 140%;
                    }
                }
            }

            .mobile-slider {
                display: block;
                position: relative;
                overflow: hidden;
                border-radius: 16px;
                margin-top: 20px;
            }

            .slides {
                display: flex;
                transition: transform 0.5s ease;
            }

            .slide {
                min-width: 100%;
                position: relative;
            }

            .slide img {
                width: 100%;
                height: 100%;
                aspect-ratio: 343/434;
                object-fit: cover;
                border-radius: 16px;
            }

            /* DARK GRADIENT OVERLAY */
            .slide::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 120px;
                background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
                border-radius: 16px;
            }

            /* DOTS */
            .dots {
                position: absolute;
                bottom: 12px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                gap: 6px;
            }

            .dot {
                width: 20px;
                height: 3px;
                background: #ccc;
                border-radius: 2px;
                transition: 0.3s;
            }

            .dot.active {
                background: #f5b400;
            }
        }
    }

    .production-section {
        display: flex;
        justify-content: flex-end;
        background-attachment: fixed;
        position: relative;

        &::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(204.54deg, rgba(0, 0, 0, 0) 12.52%, #000000 96.03%);
        }

        .left-section {
            padding: 100px 83px 100px 43px;
            width: 50%;
            z-index: 10;

            p {
                line-height: 140%;
                font-size: 16px;
                color: #fff;
            }
        }

        .image {
            width: 60px;
            min-width: 60px;
        }

        h2.section-title {
            color: #fff;
            margin-bottom: 20px;
            text-transform: capitalize;
            font-size: 48px;
        }

        .right-section {
            max-width: 644px;
            width: 50%;

            img {
                width: 100%;
                height: 100%;
                display: block;
                margin-bottom: 0;
            }
        }

        .content {
            margin-top: 34px;
            display: flex;
            flex-direction: column;
            gap: 50px;
            max-width: 510px;

            .image {
                width: 60px;
                min-width: 60px;
            }

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

            h3 {
                font-size: 26px;
                color: #fff;
            }

            .title {
                font-size: 26px;
                color: #fff;
                font-weight: 500;
                margin-bottom: 8px;
            }

            p {
                color: #CCCCCC;
            }
        }

        @media screen and (max-width: 767px) {
            padding: 50px 0 0;
            flex-direction: column;

            .left-section {
                width: 100%;
                padding: 0 14px 50px;

                h2.section-title {
                    font-size: 30px;
                }

                p {
                    font-size: 14px;
                }
            }

            .right-section {
                width: 100%;
                max-width: none;
                z-index: 1;
            }

            .content {
                .title {
                    font-size: 18px;
                }

                .box {
                    gap: 16px;
                }

                .image {
                    width: 48px;
                    min-width: 48px;
                }
            }
        }
    }

    .our-brand-section {
        padding: 100px 0;

        .wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 80px;
        }

        .content {
            max-width: 438px;
        }

        .content p {
            color: #808080;
            line-height: 140%;
            font-size: 16px;
        }

        h2.section-title {
            margin-bottom: 20px;
        }

        .image {
            width: 100%;
            max-width: 675px;

            img {
                width: 100%;
            }
        }

        @media screen and (max-width: 767px) {
            padding: 50px 0;

            .wrapper {
                flex-direction: column;
                gap: 40px;
            }

            .content {
                max-width: 100%;

                p {
                    font-size: 14px;
                }
            }
        }
    }
}

/* About Us Banner Video */
.banner-video-container {
    width: 100%;
    height: 100vh;

    .static-text {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        font-size: 55px;
        z-index: 3;
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 0 43px;
        color: #fff;
        gap: 10px;
        font-size: 5vw;
        font-family: 'Optima', sans-serif;
        opacity: 20%;
    }
}


.banner-video.banner-video-container.has-mobile-video {
    position: relative;
}

.banner-video.banner-video-container.has-mobile-video::before {
    content: "";
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        linear-gradient(238.78deg, rgba(0, 0, 0, 0) 10.7%, rgba(0, 0, 0, 0.3) 62.98%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}

.banner-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-video-container .mobile-video {
    display: none;
}

@media (max-width: 768px) {
    .banner-video-container.has-mobile-video .desktop-video {
        display: none;
    }

    .banner-video-container.has-mobile-video .mobile-video {
        display: block;
    }

    .banner-video-container {
        .static-text {
            flex-direction: column;
            align-items: center;
            gap: 100px;
            font-size: 13.5vw;
        }

    }
}

/* Sub Banner Dynamic Backgorund */
.image-section-dynamic-bg {
    background-image: var(--bg-desktop);
}

@media (max-width: 768px) {
    .image-section-dynamic-bg {
        background-image: var(--bg-mobile);
    }
}

/* contact us section */
.contact-page {
    .contact-page-banner {
        height: 300px;
        position: relative;

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

        h1 {
            position: absolute;
            left: 50%;
            bottom: 48px;
            transform: translateX(-50%);
            width: 100%;
            text-align: center;
        }

        @media screen and (max-width: 767px) {
            height: 200px;

            h1 {
                bottom: 0px;
                font-size: 30px;
            }
        }
    }

    .contact-container {
        padding: 20px 0 0;

        .breadcrumbs-top {
            color: #121A21;

            i {
                color: #C38F26;
            }
        }

        .content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            align-items: top;
            color: #000;
            padding: 100px 0;
            gap: 50px;

            .left-section {

                h2.section-title {
                    margin-bottom: 20px;
                }

                p {
                    color: #808080;
                }

                .footer-socials {
                    margin: 20px 0 40px;
                }

                .box {
                    display: flex;
                    flex-direction: column;
                    gap: 30px;
                    padding: 20px 30px;
                    background: #FAF9F7;
                    border-radius: 20px;

                    .text {
                        color: #000000;

                        &:hover {
                            color: #C38F26;
                        }
                    }

                    p {
                        color: #000000;
                    }
                }
            }

            .flex {
                display: flex;
                gap: 20px;
            }
        }

        .form {
            padding: 20px 24px;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

            h2 {
                margin-bottom: 25px;
                font-size: 26px;
                color: #222;
            }

            .title {
                font-size: 26px;
                font-weight: 500;
                margin-bottom: 20px;
            }

            .contact-form-wrapper .wpcf7-form-control-wrap {
                position: relative;
                display: flex;
                flex-direction: column;
                margin-bottom: 22px;
            }

            .contact-form-wrapper input,
            .contact-form-wrapper select,
            .contact-form-wrapper textarea {
                width: 100%;
                padding: 14px 16px;
                border-radius: 6px;
                border: 1px solid #e2e2e2;
                margin-bottom: 0;
                font-size: 15px;
                color: #000;
                outline: none;
                font-family: var(--font-body);
                box-sizing: border-box;
                height: 50px;
                background: #fff;
                display: block;
            }

            .contact-form-wrapper textarea {
                height: 120px;
                resize: none;
            }

            .contact-form-wrapper input::placeholder,
            .contact-form-wrapper textarea::placeholder {
                color: #999;
            }

            /* --- CF7 Country Override (Non Typeable Select) --- */
            .select {
                position: relative;
            }

            .select .iti,
            .select .intl-tel-input,
            .select .country-select {
                width: 100%;
            }

            .select .iti__flag,
            .select .iti-flag,
            .select .flag,
            .select .intl-tel-input .flag {
                display: none !important;
            }

            .select .iti__arrow,
            .select .iti-arrow,
            .select .arrow,
            .select .intl-tel-input .arrow {
                display: none !important;
            }

            .select .iti__flag-container,
            .select .flag-container,
            .select .intl-tel-input .flag-container,
            .select .country-select .flag-dropdown {
                width: 100% !important;
                height: 100% !important;
                right: 0 !important;
                top: 0 !important;
                left: 0 !important;
                bottom: 0 !important;
                position: absolute !important;
                display: block !important;
                z-index: 10 !important;
                pointer-events: auto !important;
            }

            .select .iti__selected-flag,
            .select .selected-flag,
            .select .intl-tel-input .selected-flag,
            .select .country-select .selected-flag {
                width: 100% !important;
                height: 100% !important;
                background: transparent !important;
                background-color: transparent !important;
                padding: 0 !important;
                display: block !important;
                pointer-events: auto !important;
            }

            /* Style input dynamically to look exactly like the design */
            .select input.wpcf7-countrytext {
                position: relative;
                z-index: 1 !important;
                /* Remain firmly beneath the transparent click overlay */
                cursor: pointer !important;
                padding-left: 16px !important;
                background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 5.25L7 8.75L10.5 5.25' stroke='%23C38F26' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
                background-repeat: no-repeat !important;
                background-position: right 16px center !important;
                background-color: transparent !important;
                padding-right: 40px !important;
                color: #000 !important;
            }

            /* Fix dropdown lists getting cramped or jumping */
            .select .country-list,
            .select .iti__country-list,
            .select .intl-tel-input .country-list {
                width: 100% !important;
                min-width: 300px !important;
                max-width: 350px !important;
                text-align: left !important;
                box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1) !important;
                border: 1px solid #e2e2e2 !important;
                pointer-events: auto !important;
                /* Ensure dropdown is clickable */
                top: 50px !important;
                /* height of input */
                bottom: auto !important;
                /* Prevent it from opening upwards */
                left: 0 !important;
                position: absolute !important;
                z-index: 999 !important;
                /* Float above the whole form */
            }

            span[data-name^="phonetext"] .country-list,
            span[data-name^="phonetext"] .iti__country-list,
            span[data-name^="phonetext"] .intl-tel-input .country-list {
                width: max-content !important;
                min-width: 300px !important;
                max-width: 350px !important;
                white-space: nowrap !important;
                text-align: left !important;
                box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1) !important;
                border: 1px solid #e2e2e2 !important;
            }

            /* --- CF7 Phone Code Override (+971) --- */
            span[data-name^="phonetext"] .iti,
            span[data-name^="phonetext"] .intl-tel-input {
                width: 100% !important;
            }

            span[data-name^="phonetext"] .iti__flag,
            span[data-name^="phonetext"] .iti-flag,
            span[data-name^="phonetext"] .flag,
            span[data-name^="phonetext"] .intl-tel-input .flag {
                display: none !important;
            }

            span[data-name^="phonetext"] .iti__arrow,
            span[data-name^="phonetext"] .iti-arrow,
            span[data-name^="phonetext"] .arrow,
            span[data-name^="phonetext"] .intl-tel-input .arrow {
                display: none !important;
            }

            span[data-name^="phonetext"] .iti__flag-container,
            span[data-name^="phonetext"] .flag-container,
            span[data-name^="phonetext"] .intl-tel-input .flag-container {
                width: 100% !important;
                right: 0 !important;
                position: absolute;
            }

            span[data-name^="phonetext"] .iti__selected-flag,
            span[data-name^="phonetext"] .selected-flag,
            span[data-name^="phonetext"] .intl-tel-input .selected-flag {
                width: 100% !important;
                background: transparent !important;
                background-color: transparent !important;
                padding: 0 !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                border-right: 1px solid #e2e2e2 !important;
                /* Applying border directly to flag container to fix duplication */
            }

            span[data-name^="phonetext"] .selected-dial-code {
                background: transparent !important;
                background-color: transparent !important;
                border: none !important;
                padding: 0 !important;
                color: #222 !important;
            }

            span[data-name^="phonetext"] {
                flex: 0 0 85px !important;
                /* Match image width */
                display: block;
                /* use block so absolute positioning works normally */
                position: relative;
            }

            span[data-name^="phonetext"] input {
                width: 100% !important;
                height: 50px !important;
                cursor: pointer !important;
                caret-color: transparent !important;
                padding: 0 !important;
                border: none !important;
                background: transparent !important;
                color: transparent !important;
            }

            /* Ensure placeholders are consistent */
            .contact-form-wrapper input::placeholder {
                color: #bbb !important;
                font-family: var(--font-body);
                font-weight: 300;
            }

            .phone input[name="your-phone"] {
                padding-left: 16px !important;
                /* restore padding lost to none override */
            }

            /* --------------------------------------------- */
            .row {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .contact-form-wrapper .phone {
                display: flex;
                flex-wrap: nowrap;
                align-items: center;
                border: 1px solid #e2e2e2 !important;
                border-radius: 6px;
                margin-bottom: 25px;
                background: #fff;
                position: relative;
                height: 50px;
                width: 100%;
                box-sizing: border-box;
                overflow: visible;
            }

            .phone br {
                display: none !important;
            }

            .phone p {
                margin: 0 !important;
                padding: 0 !important;
                display: flex;
                flex: 1;
                width: 100%;
                align-items: center;
            }

            .phone .code {
                display: flex;
                align-items: center;
                font-size: 15px;
                color: #808080;
                background: none;
                background-color: #ffffff;
                flex-shrink: 0;
            }

            .phone span.wpcf7-form-control-wrap {
                flex: 1;
                display: flex;
                margin: 0;
                padding: 0;
                position: static !important;
            }

            .contact-form-wrapper .wpcf7-not-valid-tip {
                position: absolute;
                top: 52px;
                /* Exactly below the 50px field */
                left: 0;
                width: 100%;
                color: #ff0000;
                font-size: 11px;
                line-height: normal;
                margin-top: 0;
                z-index: 10;
                white-space: normal;
                background: transparent;
                padding: 0;
                text-align: left !important;
            }

            /* Align phone error tip with the country code box */
            .phone .wpcf7-not-valid-tip {
                left: 0 !important;
                width: 100% !important;
            }

            .phone-error {
                text-align: left !important;
                width: 100% !important;
                display: block !important;
                color: red;
                font-size: 12px;
                margin-top: 5px;
            }

            /* For textarea specifically, keep it dynamic */
            .contact-form-wrapper .wpcf7-form-control-wrap[data-name="your-message"] .wpcf7-not-valid-tip {
                top: 100%;
            }

            .phone input,
            .phone .wpcf7-form-control-wrap input,
            .phone span[data-name^="phonetext"] input {
                border: none !important;
                margin: 0 !important;
                width: 100% !important;
                height: 48px !important;
                /* Slightly less than 50px to fit inside border */
                padding: 14px 16px !important;
                box-sizing: border-box;
                border-radius: 0 !important;
                outline: none !important;
                background: transparent !important;
            }

            button {
                width: 100%;
                padding: 16px;
                border: none;
                border-radius: 10px;
                background: #b88722;
                color: #fff;
                font-size: 18px;
                font-weight: 600;
                cursor: pointer;
                transition: 0.3s;
                font-family: var(--font-body);
            }

            button:hover {
                background: #a4761c;
            }

            .select select {
                appearance: none;
                cursor: pointer;
            }

            .select .arrow {
                position: absolute;
                right: 10px;
                top: 15px;
                z-index: 3;
            }

            .selected-dial-code {
                background-color: #ffffff;
                border-right: 1px solid #D8D8D8;
            }

            .intl-tel-input .selected-flag {
                background-color: #ffffff;
            }
        }

        .map {
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 100px;
        }

        .faq {
            padding: 100px 0;
            background-position: center;

            .title {
                text-align: center;
                margin-bottom: 40px;

                p,
                .section-description {
                    color: #808080;
                }

                h2.section-title {
                    margin-bottom: 20px;
                }
            }

            button {
                font-family: var(--font-body);
            }

            .faq-container {
                max-width: 950px;
                margin: auto;
                display: flex;
                flex-direction: column;
                gap: 16px;
            }

            .faq-item {
                background: #ffffff;
                border-radius: 14px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
                overflow: hidden;
                transition: all 0.3s ease;
            }

            .faq-question {
                width: 100%;
                padding: 24px 20px;
                background: none;
                border: none;
                outline: none;
                font-size: 18px;
                font-weight: 500;
                text-align: left;
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
                color: #000;
            }

            .faq-arrow {
                transition: transform 0.3s ease;
                width: 16px;
                color: #c28a2e;
            }

            .faq-answer {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, padding 0.3s ease;
                padding: 0 24px;
            }

            .faq-answer p {
                font-size: 16px;
                color: #808080;
                line-height: 1.6;
                margin: 0;
                padding-bottom: 20px;
            }

            /* Active state */
            .faq-item.active .faq-answer {
                max-height: 300px;
                padding-top: 0;
            }

            .faq-item.active .faq-arrow {
                transform: rotate(-180deg);
            }
        }

        @media screen and (max-width: 1023px) {
            .content {
                grid-template-columns: repeat(1, 1fr);
                padding: 50px 0;

                .left-section {
                    padding: 0;

                    .box {
                        padding: 20px 16px;
                        gap: 20px;

                        .text {
                            font-size: 14px;
                        }
                    }

                    .footer-socials {
                        margin: 20px 0;
                    }
                }

                .flex {
                    gap: 10px;
                }
            }
        }

        @media screen and (max-width: 767px) {


            .form {
                padding: 16px;

                button {
                    font-size: 16px;
                    padding: 11px;
                }

                .row {
                    grid-template-columns: repeat(1, 1fr);
                    gap: 0px;
                }

                .title {
                    font-size: 20px;
                }
            }

            .map {
                margin-bottom: 50px;
            }

            .faq {
                padding: 50px 0;

                .faq-question {
                    padding: 16px;
                    font-size: 16px;
                }

                .faq-answer p {
                    font-size: 14px;
                }
            }
        }
    }
}

.section-description p {
    color: #808080 !important;
}

/* ACF bullet points and numbered lists override */
.section-description ul,
.section-description ol,
.content ul,
.content ol,
.top ul,
.top ol,
.box ul,
.box ol,
.gallery-description ul,
.gallery-description ol {
    padding-left: 40px !important;
    margin: 10px 0 !important;
    list-style-position: outside !important;
}

.section-description ul,
.content ul,
.top ul,
.box ul,
.gallery-description ul {
    list-style-type: disc !important;
}

.section-description ol,
.content ol,
.top ol,
.box ol,
.gallery-description ol {
    list-style-type: decimal !important;
}

.section-description ul li,
.section-description ol li,
.content ul li,
.content ol li,
.top ul li,
.top ol li,
.box ul li,
.box ol li,
.gallery-description ul li,
.gallery-description ol li {
    display: list-item !important;
    margin-bottom: 8px !important;
}

.section-description ul li,
.content ul li,
.top ul li,
.box ul li,
.gallery-description ul li {
    list-style-type: disc !important;
}

.section-description ol li,
.content ol li,
.top ol li,
.box ol li,
.gallery-description ol li {
    list-style-type: decimal !important;
}

@media screen and (max-width: 768px) {
    .es_form_wrapper {
        max-width: 100vw;
    }
}

/*# sourceMappingURL=style.css.map */