/**
 * Wadi Aldeqa Goods Wholesalers L.L.C - Dubai, UAE
 * Core Luxury Theme Stylesheet
 */

:root {
    --brand-green: #0A3F23;
    --brand-green-rgb: 10, 63, 35;
    --brand-green-dark: #052012;
    --brand-green-light: #165c36;
    --brand-gold: #D4AF37;
    --brand-gold-rgb: 212, 175, 55;
    --brand-gold-light: #C5A85A;
    --brand-gold-dark: #A48325;
    --text-white: #ffffff;
    --text-dark: #1E2522;
    --text-muted: #64736C;
    --bg-light: #F4F7F5;
    --bg-white: #ffffff;
    --border-gold: rgba(197, 168, 90, 0.25);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Layout */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --box-shadow-luxury: 0 15px 35px rgba(5, 32, 18, 0.08), 0 5px 15px rgba(197, 168, 90, 0.05);
    --box-shadow-hover: 0 25px 50px rgba(5, 32, 18, 0.15), 0 10px 20px rgba(197, 168, 90, 0.1);
}

/* Core Typography & Base Styling */
html {
    scroll-behavior: smooth;
    margin: 0 !important;
    padding: 0 !important;
}
body {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.65;
}

/* Premium Main Content Wrapper — clips horizontal scroll bleed-outs without breaking sticky nav */
.main-content-wrapper {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
}

/* Global mobile safety — prevent any image or embed from blowing out the viewport */
img, video, iframe, svg {
    max-width: 100%;
    height: auto;
}
/* Restore height:100% for images inside fixed-ratio containers (card images, gallery, product plate) */
.card-img-wrapper img,
.crop-plate-img,
.gallery-main-img,
.gallery-thumb img,
.thumb-circle img {
    height: 100%;
}

/* Bootstrap row uses negative margins — contain them so they don't cause horizontal scroll */
@media (max-width: 991.98px) {
    .container, .container-fluid {
        overflow-x: hidden;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--brand-green-dark);
}

p {
    font-family: var(--font-body);
    color: var(--text-muted);
}

/* ---- Utility Classes ---- */
/* Width constraints — ensure they never exceed 100% on small screens */
.max-width-600 { max-width: 600px; width: 100%; }
.max-width-800 { max-width: 800px; width: 100%; }
/* Letter-spacing helpers */
.tracking-wider  { letter-spacing: 1.5px; }
.tracking-widest { letter-spacing: 2.5px; }
.tracking-wide   { letter-spacing: 1px; }
/* Bootstrap font-size extension utilities */
.fs-7  { font-size: 0.95rem !important; }
.fs-8  { font-size: 0.85rem !important; }
.fs-9  { font-size: 0.75rem !important; }
.italic { font-style: italic; }

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

/* Sticky Luxury Header */
.top-bar {
    background-color: var(--brand-green-dark);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
}
.top-bar a {
    color: rgba(255, 255, 255, 0.85);
}
.top-bar a:hover {
    color: var(--brand-gold);
}
@media (max-width: 1200px) {
    .top-bar {
        font-size: 0.78rem;
    }
}

.luxury-navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 1030 !important; /* Extremely high z-index to overlay all sections */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(197, 168, 90, 0.15);
    transition: var(--transition-smooth);
    padding: 15px 0;
}
.luxury-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    padding: 10px 0 !important;
    border-bottom: 1.5px solid rgba(197, 168, 90, 0.25) !important;
    box-shadow: 0 10px 30px rgba(5, 32, 18, 0.08) !important;
}
.luxury-navbar.scrolled .nav-link {
    color: var(--brand-green-dark) !important;
}
.luxury-navbar.scrolled .nav-link:hover,
.luxury-navbar.scrolled .nav-link.active {
    color: var(--brand-gold-dark) !important;
}
.luxury-navbar.scrolled .btn-luxury-outline {
    border-color: var(--brand-green) !important;
    color: var(--brand-green) !important;
}
.luxury-navbar.scrolled .btn-luxury-outline:hover {
    background: var(--brand-green) !important;
    color: var(--text-white) !important;
}

.navbar-brand {
    padding: 0 !important;
    display: block !important;
    height: 68px !important;
    width: 220px !important;
    overflow: hidden !important;
    position: relative !important;
    background: transparent !important;
    transition: var(--transition-smooth) !important;
}

.navbar-brand img {
    height: 115px !important; /* Increased to clip outer margin box */
    width: auto !important;
    max-width: none !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important; /* Perfectly centered horizontally for square canvas */
    transform: translate(-50%, -50%) scale(1.15) !important; /* Zoom in on logo graphic */
    mix-blend-mode: multiply !important; /* Seamlessly blends grey background into the white navbar background! */
    display: block !important;
    transition: var(--transition-smooth) !important;
}

.luxury-navbar.scrolled .navbar-brand {
    height: 52px !important;
    width: 175px !important;
}

.luxury-navbar.scrolled .navbar-brand img {
    height: 90px !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
    filter: none !important;
}

/* Premium Footer Brand Logo Card Wrapper */
.luxury-footer-logo-wrapper {
    height: 58px !important;
    width: 190px !important;
    background: #ffffff !important; /* Clean premium pure white background */
    border-radius: 8px !important; /* Premium rounded corner seal badge */
    display: inline-block !important;
    margin-bottom: 25px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    transition: var(--transition-smooth) !important;
    position: relative !important;
    overflow: hidden !important;
}
.luxury-footer-logo-wrapper:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25) !important;
}
.luxury-footer-logo-img {
    height: 100px !important; /* Zoom/scale similar to navbar to crop outer box */
    width: auto !important;
    max-width: none !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important; /* Perfectly centered horizontally for square canvas */
    transform: translate(-50%, -50%) scale(1.1) !important; /* Zoom in on logo graphic */
    mix-blend-mode: multiply !important; /* Seamlessly blends grey background into the white badge! */
    display: block !important;
    transition: var(--transition-smooth) !important;
}

/* Mobile responsive rules for logo brand */
@media (max-width: 991.98px) {
    .navbar-brand {
        height: 52px !important;
        width: 170px !important;
    }
    .navbar-brand img {
        height: 90px !important;
        transform: translate(-50%, -50%) scale(1.1) !important;
        left: 50% !important; /* Symmetrical centering on tablets */
    }
}
@media (max-width: 575.98px) {
    .navbar-brand {
        height: 44px !important;
        width: 140px !important;
    }
    .navbar-brand img {
        height: 78px !important;
        transform: translate(-50%, -50%) scale(1.15) !important;
        left: 50% !important; /* Symmetrical centering on mobile */
    }
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brand-green-dark) !important;
    padding: 8px 18px !important;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    width: 0;
    height: 2px;
    background-color: var(--brand-gold);
    transition: var(--transition-smooth);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 36px);
}
.nav-link:hover,
.nav-link.active {
    color: var(--brand-gold-dark) !important;
}

/* Premium Buttons */
.btn-luxury {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-light) 100%);
    color: var(--brand-green-dark);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.45);
    color: var(--brand-green-dark);
}

.btn-luxury-outline {
    background: transparent;
    border: 2px solid var(--brand-green);
    color: var(--brand-green);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-luxury-outline:hover {
    background-color: var(--brand-green);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Luxury Sections */
.section-luxury {
    padding: 100px 0;
    position: relative;
}
.bg-luxury-green {
    background-color: var(--brand-green-dark);
    color: var(--text-white);
}
.bg-luxury-green h2,
.bg-luxury-green h3,
.bg-luxury-green h4,
.bg-luxury-green .section-subtitle {
    color: var(--text-white);
}
.bg-luxury-green p {
    color: #b0c4b8;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-title span {
    color: var(--brand-gold-light);
}
.section-subtitle {
    font-family: var(--font-body);
    color: var(--brand-gold-dark);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.title-divider {
    width: 80px;
    height: 3px;
    background-color: var(--brand-gold);
    margin: 15px auto 35px;
    position: relative;
}
.title-divider::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--brand-gold);
    border: 2px solid var(--brand-green-dark);
    border-radius: 50%;
}
.bg-luxury-green .title-divider::after {
    border-color: var(--brand-green);
}

/* Hero Section */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 650px;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 32, 18, 0.85) 0%, rgba(5, 32, 18, 0.4) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-white);
    max-width: 850px;
}
.hero-content h1 {
    font-size: 4rem;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
}
.hero-content h1 span {
    color: var(--brand-gold);
}
.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

/* Shopify-Like Modern Cards */
.card-luxury {
    position: relative !important; /* Supported for stretched-link navigation wrapper */
    background: var(--bg-white);
    border: 1px solid rgba(197, 168, 90, 0.15);
    border-radius: 4px; /* Slightly rounded for premium modern look */
    box-shadow: var(--box-shadow-luxury);
    transition: var(--transition-smooth);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card-luxury:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--brand-gold);
}
.card-luxury .card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10 !important; /* Premium widescreen ratio to keep cards compact! */
    background-color: var(--bg-light);
}
.card-luxury .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-luxury:hover .card-img-wrapper img {
    transform: scale(1.08);
}
.card-luxury .card-overlay-btn {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: var(--brand-green);
    color: var(--text-white);
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: var(--transition-smooth);
}
.card-luxury:hover .card-overlay-btn {
    bottom: 0;
}
.card-luxury .card-body-luxury {
    padding: 18px 20px 20px 20px !important; /* Reduced padding for tighter elegance */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-luxury .product-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-gold-dark);
    font-weight: 700;
    margin-bottom: 4px;
}
.card-luxury .product-title {
    font-size: 1.2rem !important; /* Elegant compact text */
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}
.card-luxury .product-specs {
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 10px;
    margin-top: 10px;
}

/* World Map & Trading Routes */
.map-container {
    position: relative;
    background: radial-gradient(circle, rgba(10, 63, 35, 0.4) 0%, rgba(5, 32, 18, 0.9) 100%);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-gold);
    overflow: hidden;
}
.route-line {
    stroke: var(--brand-gold);
    stroke-dasharray: 6;
    animation: dash 30s linear infinite;
}
@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}
.port-dot {
    fill: var(--brand-gold);
    animation: pulse 2s infinite;
}
.dubai-dot {
    fill: #ffffff;
    stroke: var(--brand-gold);
    stroke-width: 3;
    animation: pulse 1.5s infinite;
}

/* Floating WhatsApp Button */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}
.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    transition: var(--transition-smooth);
    position: relative;
}
.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    color: #ffffff;
}
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--brand-green-dark);
    color: var(--text-white);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--brand-gold);
    opacity: 0;
    transform: translateX(15px);
    transition: var(--transition-smooth);
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Infrastructure Spec Grid */
.infra-card {
    position: relative;
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}
.infra-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}
.infra-icon {
    font-size: 3rem;
    color: var(--brand-gold);
    margin-bottom: 20px;
}

/* Category Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}
.filter-btn {
    background: transparent;
    border: 1px solid rgba(10, 63, 35, 0.15);
    color: var(--brand-green-dark);
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}
.filter-btn.active,
.filter-btn:hover {
    background-color: var(--brand-green);
    color: var(--text-white);
    border-color: var(--brand-green);
}

/* Product Specifications Table */
.spec-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}
.spec-table tr:nth-child(even) {
    background-color: var(--bg-light);
}
.spec-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.95rem;
}
.spec-table td.spec-label {
    font-weight: 700;
    color: var(--brand-green-dark);
    width: 35%;
}

/* Multi-Image Shopify Gallery */
.gallery-main-wrapper {
    position: relative;
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-light);
    aspect-ratio: 4 / 3;
}
.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}
.gallery-thumb {
    width: 80px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--brand-gold);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact & Inquiry Forms */
.form-luxury-wrapper {
    background-color: var(--bg-light);
    border: 1px solid var(--border-gold);
    padding: 45px;
    border-radius: 4px;
}
.form-luxury-input {
    background: var(--bg-white);
    border: 1px solid rgba(10, 63, 35, 0.15);
    border-radius: 4px;
    padding: 14px 18px;
    color: var(--text-dark);
    font-family: var(--font-body);
}
.form-luxury-input:focus {
    border-color: var(--brand-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
    outline: none;
}

/* Luxury Multi-Column Footer */
.luxury-footer {
    background-color: var(--brand-green-dark);
    color: rgba(255, 255, 255, 0.8);
    border-top: 3px solid var(--brand-gold);
    font-size: 0.95rem;
    padding: 80px 0 30px;
}
.luxury-footer h4 {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}
.luxury-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--brand-gold);
}
/* Footer logo wrapper styling overrides if any (none needed, handled by classes) */
.luxury-footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}
.luxury-footer a:hover {
    color: var(--brand-gold);
    padding-left: 5px;
}
.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(197, 168, 90, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white) !important;
    margin-right: 10px;
}
.footer-social-link:hover {
    background-color: var(--brand-gold);
    color: var(--brand-green-dark) !important;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    margin-top: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Custom Alert System */
.alert-premium {
    background: rgba(10, 63, 35, 0.05);
    border: 1px solid var(--border-gold);
    color: var(--brand-green-dark);
    border-radius: 4px;
    padding: 15px 20px;
}

/* -----------------------------------------
   Advanced Dynamic Splitted Hero Section
-------------------------------------------- */
.adv-hero-section {
    position: relative !important;
    height: 95vh !important;
    min-height: 750px !important;
    background-color: #F5F1E8 !important; /* Premium warm cream/sand background */
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    border-bottom: 1px solid rgba(197, 168, 90, 0.2) !important;
    z-index: 10 !important;
    padding: 0 !important;
}

.hero-shape {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 60% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #E6DEC9 0%, #D8CDB2 100%) !important;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%) !important;
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%) !important;
    z-index: 1 !important;
}

.hero-chevron-accent {
    position: absolute !important;
    bottom: 80px !important;
    left: 8% !important;
    width: 130px !important;
    height: 90px !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.adv-hero-section .container {
    position: relative !important;
    z-index: 2 !important;
}

.hero-text-col {
    padding-right: 40px !important;
    z-index: 5 !important;
}

/* Typography Overrides */
#hero-tagline {
    font-family: var(--font-heading) !important;
    font-style: italic !important;
    font-size: 1.25rem !important;
    color: var(--brand-gold-dark) !important;
    text-transform: none !important;
    letter-spacing: 0px !important;
}

#hero-title {
    font-family: var(--font-heading) !important;
    font-size: 5rem !important;
    font-weight: 900 !important;
    color: #06311D !important; /* Rich Dark Green */
    line-height: 1.05 !important;
    margin-bottom: 20px !important;
}

#hero-description {
    font-size: 1.05rem !important;
    color: #55625B !important;
    max-width: 440px !important;
    line-height: 1.65 !important;
}

.btn-luxury {
    background: #A48325 !important;
    color: #ffffff !important;
    box-shadow: 0 5px 20px rgba(164, 131, 37, 0.3) !important;
    border-radius: 30px !important; /* Oval Pill button */
    padding: 15px 35px !important;
    font-weight: 700 !important;
    transition: var(--transition-smooth) !important;
    border: none !important;
}
.btn-luxury:hover {
    background: #876a1d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(164, 131, 37, 0.45) !important;
}

/* Nav arrows */
.hero-arrows {
    gap: 15px !important;
}
.hero-arrow-btn {
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    border: 1.5px solid #06311D !important;
    background: transparent !important;
    color: #06311D !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--transition-smooth) !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    padding: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}
.hero-arrow-btn:hover {
    background: #06311D !important;
    color: #ffffff !important;
    transform: scale(1.05) !important;
}

/* Central rotating concentric rings and plate */
.hero-plate-col {
    z-index: 2 !important;
    height: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.concentric-ring {
    position: absolute !important;
    border-radius: 50% !important;
    border: 1.5px solid rgba(164, 131, 37, 0.2) !important;
    pointer-events: none !important;
}
.ring-1 {
    width: 480px !important;
    height: 480px !important;
    animation: slow-spin 35s linear infinite !important;
}
.ring-2 {
    width: 550px !important;
    height: 550px !important;
    animation: slow-spin 55s linear infinite reverse !important;
}
.ring-3 {
    width: 620px !important;
    height: 620px !important;
    border-style: dashed !important;
    animation: slow-spin 90s linear infinite !important;
}

.crop-plate-wrapper {
    position: relative !important;
    width: 420px !important;
    height: 420px !important;
    border-radius: 50% !important;
    z-index: 5 !important;
    filter: drop-shadow(0 25px 45px rgba(5, 32, 18, 0.35)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}
.crop-plate-rim {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    border: 18px solid #2B2E2F !important; /* Premium Dark slate boundary */
    overflow: hidden !important;
    background: #ffffff !important;
    display: block !important;
}
.crop-plate-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    display: block !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease !important;
}

/* Right Side Tab Navigation Frosted Panel */
.hero-thumbs-glass-panel {
    background: rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 24px !important;
    padding: 35px 20px !important;
    box-shadow: 0 20px 40px rgba(5, 32, 18, 0.06) !important;
    width: 140px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    align-items: center !important;
    z-index: 10 !important;
}

.hero-tab-item {
    background: transparent !important;
    border: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    opacity: 0.55 !important;
    transition: var(--transition-smooth) !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    outline: none !important;
    box-shadow: none !important;
    width: 100% !important;
}
.hero-tab-item.active,
.hero-tab-item:hover {
    opacity: 1 !important;
}
.thumb-circle {
    width: 76px !important;
    height: 76px !important;
    border-radius: 50% !important;
    border: 2px solid transparent !important;
    padding: 3px !important;
    overflow: hidden !important;
    background: transparent !important;
    transition: var(--transition-smooth) !important;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08) !important;
}
.hero-tab-item.active .thumb-circle {
    border-color: #A48325 !important;
    background-color: #ffffff !important;
    transform: scale(1.1) !important;
    box-shadow: 0 10px 22px rgba(164, 131, 37, 0.3) !important;
}
.thumb-circle img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
}
.thumb-label {
    font-family: var(--font-body) !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    color: #4A5550 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    transition: var(--transition-smooth) !important;
    margin-top: 4px !important;
}
.hero-tab-item.active .thumb-label {
    color: #06311D !important;
    transform: translateY(1px) !important;
}

/* Responsiveness adjustments for advanced hero */
@media (max-width: 991.98px) {
    .adv-hero-section {
        height: auto !important;
        min-height: auto !important;
        padding: 50px 0 80px 0 !important;
        overflow: hidden !important; /* Prevents concentric rings / oversized elements from bleeding outside viewport */
        display: block !important;
        background: linear-gradient(135deg, #F5F1E8 0%, #E6DEC9 100%) !important;
    }
    .hero-shape {
        display: none !important;
    }
    .hero-text-col {
        padding-right: 0 !important;
        text-align: center !important;
        margin-bottom: 40px !important;
    }
    #hero-title {
        font-size: 2.8rem !important; /* Compact dynamic title on mobile */
        margin-bottom: 12px !important;
    }
    #hero-description {
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 0.95rem !important;
        line-height: 1.55 !important;
        margin-bottom: 20px !important;
    }
    .hero-arrows {
        justify-content: center !important;
        margin-top: 30px !important;
    }
    .hero-plate-col {
        margin-bottom: 45px !important;
        height: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        min-height: 280px !important;
    }
    .crop-plate-wrapper {
        width: 250px !important; /* Sized perfectly to display without clipping */
        height: 250px !important;
        filter: drop-shadow(0 15px 30px rgba(5, 32, 18, 0.22)) !important;
    }
    .crop-plate-rim {
        border-width: 10px !important;
    }
    .concentric-ring {
        display: none !important; /* Clean visual space on mobile */
    }
    .hero-thumbs-glass-panel {
        width: calc(100% - 30px) !important;
        max-width: 420px !important;
        flex-direction: row !important; /* Horizontal grid on tablet/mobile */
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 15px !important;
        padding: 15px !important;
        border-radius: 18px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    .hero-tab-item {
        width: auto !important;
        gap: 4px !important;
    }
    .thumb-circle {
        width: 56px !important; /* Compact thumbs */
        height: 56px !important;
        padding: 2px !important;
    }
    .thumb-label {
        font-size: 0.65rem !important;
        letter-spacing: 1px !important;
    }

    /* Universal mobile centering rules to align all content symmetrically */
    .section-title, .section-subtitle {
        text-align: center !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .title-divider {
        margin: 15px auto 35px !important;
        float: none !important;
    }
    .section-luxury p, 
    .section-luxury .lead,
    .section-luxury .col-lg-6,
    .section-luxury .col-lg-5,
    .section-luxury .col-lg-7,
    .section-luxury .col-md-6,
    .section-luxury .col-12 {
        text-align: center !important;
    }
    .section-luxury .d-flex,
    .hero-text-col .d-flex,
    .form-luxury-wrapper .d-flex {
        justify-content: center !important;
    }
    .form-luxury-wrapper .form-luxury-input {
        text-align: left !important;
    }
    .contact-details-block,
    .spec-table,
    .gallery-thumbnails {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }
    .spec-table {
        width: 100% !important;
    }

    /* Premium Mobile Footer Centering and Alignment */
    .luxury-footer {
        text-align: center !important;
    }
    .luxury-footer h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .luxury-footer-logo-wrapper {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .footer-socials {
        display: flex !important;
        justify-content: center !important;
        gap: 12px !important;
        margin-bottom: 30px !important;
    }
    .luxury-footer .list-unstyled li {
        text-align: center !important;
    }
    .luxury-footer .list-unstyled li a {
        display: inline-block !important;
    }
    .luxury-footer ul {
        padding-left: 0 !important;
    }
    .luxury-footer .d-flex.align-items-start,
    .luxury-footer .d-flex.align-items-center {
        justify-content: center !important;
        text-align: center !important;
    }

    /* Card Luxury Adaptations for 2-column mobile grid */
    @media (max-width: 767.98px) {
        .card-luxury .card-body-luxury {
            padding: 12px 10px 14px 10px !important;
        }
        .card-luxury .product-title {
            font-size: 0.95rem !important;
            margin-bottom: 4px !important;
        }
        .card-luxury .product-category {
            font-size: 0.6rem !important;
            letter-spacing: 1px !important;
        }
        .card-luxury .btn-luxury-outline,
        .card-luxury .btn-luxury {
            font-size: 0.7rem !important;
            padding: 6px 8px !important;
        }
    }
}

@media (max-width: 575.98px) {
    .adv-hero-section {
        padding: 40px 0 60px 0 !important;
        overflow: hidden !important;
    }
    #hero-title {
        font-size: 2.3rem !important; /* Clean tight heading fitting small viewports */
    }
    .hero-plate-col {
        min-height: 220px !important;
        margin-bottom: 35px !important;
        overflow: hidden !important;
    }
    .crop-plate-wrapper {
        width: 200px !important; /* Beautifully fit circular plate */
        height: 200px !important;
        max-width: 100% !important;
    }
    .crop-plate-rim {
        border-width: 8px !important;
    }
    .hero-thumbs-glass-panel {
        gap: 8px !important;
        padding: 10px 6px !important;
        width: calc(100% - 20px) !important;
        max-width: 100% !important;
    }
    .thumb-circle {
        width: 48px !important;
        height: 48px !important;
    }
    /* Prevent any section from overflowing on small phones */
    .section-luxury,
    .map-container,
    .luxury-footer {
        overflow: hidden !important;
        max-width: 100vw !important;
    }
    /* Prevent table overflow on product details */
    .spec-table {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    /* Prevent hero section row from overflowing */
    .adv-hero-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* -----------------------------------------
   Premium Mobile Offcanvas Sidebar Drawer
-------------------------------------------- */
.offcanvas .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 15px 10px !important;
    transition: var(--transition-smooth) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.offcanvas .nav-link::after {
    display: none !important; /* Disable active underline line inside drawer */
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
    color: var(--brand-gold) !important;
    background-color: rgba(255, 255, 255, 0.03) !important;
    padding-left: 18px !important; /* Elegant slide hover shift */
}
