/* --- THEME ARCHITECTURE & CONFIGURATION --- */
:root {
    --primary-red: #D60000;         
    --mid-rose: #FF4D4D;            
    --pure-white: #FFFFFF;          
    
    --dark-charcoal: #1A0000;       
    --light-gray: rgba(255, 245, 245, 0.4); /* Glassmorphism translucent option */
    --subtle-border: rgba(214, 0, 0, 0.08); 
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --shadow-premium: 0 30px 60px rgba(26, 0, 0, 0.04);
    --shadow-subtle: 0 10px 30px rgba(26, 0, 0, 0.01);
    --glass-background: rgba(255, 255, 255, 0.85);
    
    --max-width: 1400px;
    --bezier-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* [NEW] DYNAMIC BACKDROP BLUR ORBS SETUP */
body {
    position: relative;
    background-color: #FFFDFD;
}

.blur-bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    -webkit-filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.45;
    will-change: transform;
}

.orb-red-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background-color: rgba(214, 0, 0, 0.12);
}

.orb-white-1 {
    top: 30%;
    right: -5%;
    width: 700px;
    height: 700px;
    background-color: rgba(255, 255, 255, 0.9);
    filter: blur(80px);
    opacity: 0.8;
}

.orb-red-2 {
    bottom: -10%;
    left: 20%;
    width: 650px;
    height: 650px;
    background-color: rgba(214, 0, 0, 0.07);
}

/* Reset Engine Layout Architecture (Blue Lining & Highlight Bug Fixed) */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent; 
}

*:focus, *:active {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

button:focus, input:focus, select:focus, textarea:focus, a:focus {
    outline: none !important;
    box-shadow: none !important;
}

.form-element-wrapper input:focus, 
.form-element-wrapper select:focus, 
.form-element-wrapper textarea:focus {
    outline: none !important;
    border-color: var(--primary-red);
    background-color: var(--pure-white);
    box-shadow: 0 0 0 4px rgba(214, 0, 0, 0.04) !important;
    color: var(--dark-charcoal) !important;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--dark-charcoal);
    overflow-x: hidden;
    line-height: 1.6;
}

.wide-container {
    width: 100%;
    max-width: var(--max-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

.section-spacing {
    padding-top: 100px;
    padding-bottom: 100px;
}

.light-gray-bg {
    background-color: var(--light-gray);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--subtle-border);
    border-bottom: 1px solid var(--subtle-border);
}

.icon-svg {
    display: inline-block;
    vertical-align: middle;
}

.icon-svg-lg {
    width: 28px;
    height: 28px;
    color: var(--primary-red);
}

#loader-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--pure-white);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s var(--bezier-smooth);
}

.loader-wrap {
    text-align: center;
}

.loader-logo {
    height: 65px;
    margin-bottom: 25px;
}

.loader-track {
    width: 140px;
    height: 3px;
    background-color: rgba(214, 0, 0, 0.06);
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.loader-fill {
    position: absolute;
    height: 100%;
    width: 45%;
    background-color: var(--primary-red);
    border-radius: 4px;
    animation: loaderLoadingLoop 1.4s infinite ease-in-out;
}

@keyframes loaderLoadingLoop {
    0% { left: -50%; }
    100% { left: 100%; }
}

#scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3.5px;
    background: linear-gradient(to right, var(--primary-red), var(--mid-rose));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
}

.boutique-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 105px;
    z-index: 9000;
    background-color: transparent;
    transition: all 0.5s var(--bezier-smooth);
    border-bottom: 1px solid transparent;
}

.boutique-nav.scrolled {
    height: 85px;
    background-color: var(--glass-background);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--subtle-border);
    box-shadow: var(--shadow-subtle);
}

.nav-wrapper {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    height: 48px;
    transition: transform 0.4s var(--bezier-smooth);
}

.site-logo:hover {
    transform: scale(1.03);
}

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

.nav-links a.nav-item-link, .nav-links a.nav-target {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-charcoal);
    text-decoration: none;
    opacity: 0.8;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a.nav-item-link::after, .nav-links a.nav-target::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-links a.nav-item-link:hover::after, .nav-links a.nav-target.active::after {
    width: 100%;
}

.nav-links a.nav-item-link:hover, .nav-links a.nav-target.active {
    opacity: 1;
    color: var(--primary-red);
}

.nav-cta-btn, .action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.4s var(--bezier-smooth);
    cursor: pointer;
}

.nav-cta-btn {
    padding: 12px 26px;
    background-color: var(--dark-charcoal);
    color: var(--pure-white);
}

.nav-cta-btn:hover {
    background-color: var(--primary-red);
    box-shadow: 0 10px 25px rgba(214, 0, 0, 0.15);
    transform: translateY(-2px);
}

.action-btn.primary-action {
    padding: 16px 36px;
    background-color: var(--primary-red);
    color: var(--pure-white);
    box-shadow: 0 15px 35px rgba(214, 0, 0, 0.12);
}

.action-btn.primary-action:hover {
    background-color: var(--dark-charcoal);
    box-shadow: 0 15px 35px rgba(26, 0, 0, 0.12);
    transform: translateY(-3px);
}

.action-btn.secondary-action {
    padding: 16px 36px;
    background-color: transparent;
    color: var(--dark-charcoal);
    border: 2px solid var(--subtle-border);
}

.action-btn.secondary-action:hover {
    background-color: rgba(214, 0, 0, 0.02);
    border-color: var(--dark-charcoal);
    transform: translateY(-3px);
}

.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 4px;
}

.bar-line {
    width: 24px;
    height: 2px;
    background-color: var(--dark-charcoal);
    transition: width 0.3s ease;
}

.luxury-hero-panel {
    min-height: 85vh;
    padding-top: 140px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
}

.hero-inner-grid {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    width: 100%;
}

.hero-narrative {
    max-width: 800px;
    margin: 0 auto;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(214, 0, 0, 0.04);
    border: 1px solid var(--subtle-border);
    border-radius: 50px;
    color: var(--primary-red);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.hero-narrative h1 {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark-charcoal);
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.hero-narrative p {
    font-size: 1.05rem;
    opacity: 0.75;
    margin: 0 auto 40px auto;
    max-width: 650px;
}

.hero-action-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-center-metric {
    margin-top: 50px;
    display: inline-block;
    background-color: var(--pure-white);
    padding: 16px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--subtle-border);
    text-align: center;
}

.metric-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
}

.metric-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.7;
    margin-top: 4px;
}

.metrics-row-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 80px;
}

.metric-grid-cell {
    padding: 40px;
    border-radius: 28px;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--subtle-border);
    transition: all 0.4s var(--bezier-smooth);
}

.metric-grid-cell:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-subtle);
    border-color: rgba(214, 0, 0, 0.2);
}

.icon-holder-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background-color: rgba(214, 0, 0, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.metric-grid-cell h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.metric-grid-cell p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

.section-headline {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.section-headline h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.premium-product-card {
    height: 420px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s var(--bezier-smooth);
}

.premium-product-card.flipped .card-inner-wrap {
    transform: rotateY(180deg);
}

.card-face-front, .card-face-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--subtle-border);
}

.card-face-front {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.product-card-media {
    width: 100%;
    height: 70%;
    object-fit: cover;
    background-color: var(--light-gray);
}

.product-details {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.product-details h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
}

.price-tag-badge {
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: rgba(214, 0, 0, 0.04);
    color: var(--primary-red);
    border-radius: 30px;
}

.card-face-back {
    background-color: var(--dark-charcoal);
    color: var(--pure-white);
    transform: rotateY(180deg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.card-face-back h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--pure-white);
}

.card-face-back p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.product-order-link {
    padding: 12px 28px;
    background-color: var(--pure-white);
    color: var(--dark-charcoal);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.product-order-link:hover {
    background-color: var(--primary-red);
    color: var(--pure-white);
}

.pdf-viewer-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 28px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--subtle-border);
    overflow: hidden;
    padding: 20px;
}

.pdf-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 5px 10px;
    flex-wrap: wrap;
    gap: 15px;
}

.catalog-title-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.catalog-navigation-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-catalog-adjust {
    padding: 10px 22px;
    font-size: 0.85rem;
    border: 2px solid var(--subtle-border);
    color: var(--dark-charcoal);
    background: transparent;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-catalog-adjust:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.btn-next-active {
    border-color: var(--primary-red);
    color: var(--pure-white);
    background: var(--primary-red);
}

.btn-next-active:hover {
    background-color: var(--dark-charcoal);
    border-color: var(--dark-charcoal);
    color: var(--pure-white);
}

#catalog-page-num {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    min-width: 100px;
    text-align: center;
}

.pdf-iframe-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 18px;
}

#catalog-viewer-image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.25s ease-in-out;
}

.native-showroom-bg {
    background-color: rgba(255, 253, 253, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.showroom-branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.branch-display-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--subtle-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: all 0.4s var(--bezier-smooth);
}

.branch-display-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(214, 0, 0, 0.15);
}

.branch-image-frame {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--light-gray);
}

.branch-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--bezier-smooth);
}

.branch-display-card:hover .branch-photo {
    transform: scale(1.04);
}

.branch-meta-details {
    padding: 25px;
}

.branch-location-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-block;
    margin-bottom: 8px;
}

.branch-meta-details h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-charcoal);
}

.branch-meta-details p {
    font-size: 0.88rem;
    color: var(--dark-charcoal);
    opacity: 0.75;
    line-height: 1.5;
}

.interior-gallery-wrap {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--subtle-border);
    border-radius: 32px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    margin-top: 40px;
}

.gallery-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--subtle-border);
    padding-bottom: 20px;
}

.gallery-headline-left .gallery-mini-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-headline-left h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-top: 4px;
    letter-spacing: -0.3px;
}

.gallery-slider-arrows {
    display: flex;
    gap: 10px;
}

.gallery-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--subtle-border);
    background-color: var(--pure-white);
    color: var(--dark-charcoal);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background-color: rgba(214, 0, 0, 0.02);
}

.interior-cards-carousel-container {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.interior-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s var(--bezier-smooth);
    will-change: transform;
}

.interior-slide-item {
    min-width: calc(33.333% - 13.33px);
    width: calc(33.333% - 13.33px);
    height: 250px;
    border-radius: 14px;
    overflow: hidden;
    background-color: var(--light-gray);
    box-shadow: var(--shadow-subtle);
}

.interior-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease;
}

.interior-img:hover {
    filter: brightness(0.95);
}

.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--subtle-border);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: rgba(214, 0, 0, 0.2);
}

.faq-trigger {
    width: 100%;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-charcoal);
}

.chevron-svg {
    width: 18px;
    height: 18px;
    opacity: 0.6;
    transition: transform 0.4s var(--bezier-smooth);
}

.faq-item.active .chevron-svg {
    transform: rotate(180deg);
    color: var(--primary-red);
    opacity: 1;
}

.faq-body-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--bezier-smooth);
    background-color: rgba(255, 245, 245, 0.4);
}

.faq-body-content p {
    padding: 0 30px 24px 30px;
    font-size: 0.92rem;
    opacity: 0.8;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.contact-form-block {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 32px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--subtle-border);
}

.form-element-wrapper {
    margin-bottom: 22px;
}

.form-element-wrapper label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.form-element-wrapper input, .form-element-wrapper select, .form-element-wrapper textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1.5px solid var(--subtle-border);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--dark-charcoal);
    background-color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.form-feedback-banner {
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: none;
}

.form-feedback-banner.success {
    background-color: rgba(0, 180, 0, 0.06);
    color: #007000;
    border: 1px solid rgba(0, 180, 0, 0.1);
    display: block;
}

.boutique-footer-core {
    background-color: var(--dark-charcoal);
    color: var(--pure-white);
    padding-top: 80px;
    border-top: 4px solid var(--primary-red);
    position: relative;
    z-index: 10;
}

.footer-links-columns {
    display: grid;
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand-logo {
    height: 52px;
    margin-bottom: 25px;
}

.footer-identity-card p {
    font-size: 0.9rem;
    opacity: 0.6;
    line-height: 1.6;
    max-width: 320px;
}

.footer-nav-column h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.footer-nav-column ul {
    list-style: none;
}

.footer-nav-column ul li {
    margin-bottom: 12px;
}

.footer-nav-column ul li a {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-nav-column ul li a:hover {
    opacity: 1;
    color: var(--mid-rose);
    padding-left: 4px;
}

.footer-base {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 24px;
    text-align: center;
    font-size: 0.82rem;
    opacity: 0.4;
}

.whatsapp-anchor {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background-color: #25D366;
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 8500;
    transition: all 0.4s var(--bezier-smooth);
}

.whatsapp-anchor:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* --- FIXED & FULLY VISIBLE FRANCHISE BUTTON + TOOLTIP ARCHITECTURE --- */
.franchise-floating-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    z-index: 9999; /* Z-Index ekdum high kiya taaki kisi scroll section ke piche na chupe */
}

.franchise-floating-tooltip {
    background-color: #1A0000; /* Dark premium background */
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    white-space: nowrap;
    position: relative;
    display: block !important; /* Forces layout tracking visibility */
    visibility: visible !important;
    opacity: 1 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    animation: tooltipFloatBounce 2s infinite ease-in-out;
}

/* Tooltip ke niche ka chhota triangle indicator arrow design */
.franchise-floating-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 24px;
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #1A0000 transparent;
    display: block;
    width: 0;
}

@keyframes tooltipFloatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.franchise-floating-trigger {
    padding: 0 24px;
    height: 62px;
    background-color: var(--primary-red);
    color: var(--pure-white);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(214, 0, 0, 0.35);
    transition: all 0.4s var(--bezier-smooth);
}

.franchise-floating-trigger:hover {
    transform: scale(1.04) translateY(-2px);
    background-color: #1A0000;
    box-shadow: 0 15px 35px rgba(26, 0, 0, 0.4);
}


.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--bezier-smooth), transform 0.8s var(--bezier-smooth);
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero-narrative h1 { font-size: 2.6rem; }
    .hero-inner-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-narrative p { margin-right: auto; margin-left: auto; }
    .hero-action-row { justify-content: center; }
    
    .metrics-row-panel, .products-showcase-grid, .showroom-branches-grid { grid-template-columns: 1fr; gap: 24px; }
    .interior-slide-item { min-width: calc(50% - 10px); width: calc(50% - 10px); }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-links-columns { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .boutique-nav { height: 85px; background-color: rgba(255, 255, 255, 0.9); }
    .menu-trigger { display: flex; }
    
    .nav-links {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background-color: var(--pure-white);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        border-bottom: 2px solid var(--subtle-border);
        box-shadow: var(--shadow-premium);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.4s var(--bezier-smooth);
    }
    
    .nav-links.mobile-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a.nav-item-link, .nav-links a.nav-target {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
    }
    
    .nav-links a.nav-item-link::after, .nav-links a.nav-target::after { display: none; }
    .nav-cta-btn { display: inline-block; margin-top: 15px; }
    .interior-slide-item { min-width: 100%; width: 100%; }
    
    .pdf-viewer-container { padding: 10px !important; }
    .pdf-iframe-wrapper { min-height: 300px !important; }
    
    .franchise-floating-trigger {
        padding: 0;
        width: 62px;
        justify-content: center;
        border-radius: 50%;
    }
    .franchise-btn-text, .franchise-floating-tooltip {
        display: none;
    }
}
