/* ============================================================
   Products Page & Product Systems Showcase Styles
   Step 4 Architectural Showcase — Elita Lifts & Escalators
   ============================================================ */

/* ============================================================
   1. PRODUCT SHOWCASE — 3-ZONE EDITORIAL SHOWROOM
   ============================================================ */

.product-showcase {
    position: relative;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    background-color: var(--color-page, #F5F4F0);
    border-top: 1px solid var(--color-border, #E2E1DC);
}

/* ---- Header ---- */
.product-showcase__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--space-2xl);
}

.product-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-brand);
    margin-bottom: 10px;
}

.product-showcase__eyebrow-line {
    width: 18px;
    height: 2px;
    background-color: var(--color-brand);
    display: inline-block;
}

.product-showcase__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.product-showcase__description {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1vw, 0.95rem);
    color: var(--color-text-muted);
    line-height: 1.55;
    max-width: 580px;
    margin: 0 auto;
}

/* ---- 3-Zone Experience Container ---- */
.product-showcase__experience {
    display: grid;
    grid-template-columns: 28% 44% 28%;
    min-height: 480px;
    border: 1px solid var(--color-border, #E2E1DC);
    border-radius: var(--radius-xs, 4px);
    overflow: hidden;
    background-color: var(--color-surface, #FFFFFF);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

/* ---- ZONE 1 (LEFT): Product Family Navigation ---- */
.product-showcase__nav {
    background-color: var(--background-100, #EEEDE9);
    color: var(--color-text, #171A1C);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0 16px;
    border-right: 1px solid var(--color-border, #E2E1DC);
}

.product-showcase__nav-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-showcase__nav-item {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--color-text-muted, #5C6870);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast, 0.2s);
}

.product-showcase__nav-item:hover {
    color: var(--color-text, #171A1C);
    background-color: rgba(0, 0, 0, 0.04);
}

.product-showcase__nav-item:hover .product-showcase__nav-arrow {
    transform: translateX(3px);
    color: var(--color-text, #171A1C);
}

.product-showcase__nav-item.active {
    color: var(--color-text, #171A1C);
    background-color: rgba(0, 0, 0, 0.06);
    border-left-color: var(--color-brand);
    font-weight: 700;
}

.product-showcase__nav-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(0, 0, 0, 0.3);
    transition: color var(--transition-fast, 0.2s);
}

.product-showcase__nav-item.active .product-showcase__nav-num {
    color: var(--color-brand);
}

.product-showcase__nav-title {
    flex: 1;
    margin-left: 6px;
    letter-spacing: -0.01em;
}

.product-showcase__nav-arrow {
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.25);
    transition: transform var(--transition-fast, 0.2s), color var(--transition-fast, 0.2s);
    display: inline-flex;
    align-items: center;
}

.product-showcase__nav-item.active .product-showcase__nav-arrow {
    color: var(--color-brand);
}

.product-showcase__nav-footer {
    padding: 14px 22px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.product-showcase__nav-hint {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-text-muted, #5C6870);
    line-height: 1.45;
    margin: 0;
}

/* ---- ZONE 2 (CENTER): Large Dynamic Product Visual ---- */
.product-showcase__visual {
    position: relative;
    background-color: var(--color-surface-muted, #EEEDE9);
    height: 100%;
    min-height: 480px;
    overflow: hidden;
}

.product-showcase__image-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-showcase__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #FFFFFF;
    padding: 16px;
    box-sizing: border-box;
    display: block;
    transform: scale(1);
    opacity: 1;
    transition: opacity 0.45s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-showcase__image.is-switching {
    opacity: 0;
    transform: scale(1.04);
}

.product-showcase__image-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.product-showcase__image-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(7, 23, 29, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    padding: 3px 8px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    z-index: 5;
}

/* Slider Progress Bar */
.product-showcase__progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 10;
}

.product-showcase__progress-fill {
    height: 100%;
    width: 0%;
    background: var(--color-brand, #C0141E);
    transition: width 0.1s linear;
}

/* ---- ZONE 3 (RIGHT): Dynamic Product Information ---- */
.product-showcase__content {
    background-color: var(--background-100, #EEEDE9);
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid var(--color-border, #E2E1DC);
    transition: opacity 0.25s ease;
}

.product-showcase__content.is-updating {
    opacity: 0.2;
}

.product-showcase__content.is-animating .product-showcase__title-text {
    animation: showcaseSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.product-showcase__content.is-animating .product-showcase__title-bar {
    animation: showcaseBarExpand 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.product-showcase__content.is-animating .product-showcase__product-desc {
    animation: showcaseSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.product-showcase__content.is-animating .product-showcase__focus-box {
    animation: showcaseSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.product-showcase__content.is-animating .product-showcase__tag {
    animation: showcaseTagPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes showcaseSlideIn {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes showcaseBarExpand {
    0% { width: 0; }
    100% { width: 28px; }
}

@keyframes showcaseTagPop {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.product-showcase__content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.product-showcase__content-index {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--color-text-muted);
}

.product-showcase__configure-link {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition-fast, 0.2s);
}

.product-showcase__configure-link:hover {
    color: var(--color-brand);
}

.product-showcase__content-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-showcase__product-title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 1.6vw, 1.75rem);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-showcase__title-bar {
    width: 3px;
    height: 18px;
    background-color: var(--color-brand);
    display: inline-block;
    flex-shrink: 0;
}

.product-showcase__product-desc {
    font-family: var(--font-body);
    font-size: 0.84rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.product-showcase__focus-box {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 12px;
    margin-bottom: 12px;
}

.product-showcase__focus-label {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--color-brand);
    margin-bottom: 4px;
}

.product-showcase__focus-statement {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
}

.product-showcase__tags-box {
    margin-bottom: 12px;
}

.product-showcase__tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.product-showcase__tag {
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: rgba(255, 255, 255, 0.55);
    padding: 3px 8px;
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-text);
    text-transform: uppercase;
    border-radius: 2px;
}

.product-showcase__content-footer {
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.product-showcase__explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-brand);
    text-decoration: none;
    transition: gap var(--transition-fast, 0.2s), color var(--transition-fast, 0.2s);
}

.product-showcase__explore-btn:hover {
    gap: 10px;
    color: var(--color-brand-hover, #970E16);
}

/* ---- Bottom Section CTA ---- */
.product-showcase__bottom-cta {
    text-align: center;
    margin-top: 28px;
}

.btn--outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-text);
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-xs, 4px);
    text-decoration: none;
    transition: all var(--transition-fast, 0.2s);
}

.btn--outline-dark:hover {
    background-color: var(--color-dark, #07171D);
    color: #FFFFFF;
    border-color: var(--color-dark, #07171D);
}

/* ============================================================
   Ultra-Aesthetic Modern Executive Product Catalog Layout
   ============================================================ */
.products-catalog-container {
    padding-top: calc(var(--navbar-height, 90px) + 32px);
    padding-bottom: 80px;
    background: #F8FAFC;
}

.products-breadcrumb-bar {
    font-size: 0.85rem;
    color: #64748B;
    margin-bottom: 28px;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-breadcrumb-bar a {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.products-breadcrumb-bar a:hover {
    color: #BA121B;
}

.products-catalog-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 32px;
    align-items: start;
}

/* Sidebar Styling — Premium Glassmorphic Card */
.product-sidebar-card {
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
    position: sticky;
    top: calc(var(--navbar-height, 90px) + 20px);
}

.product-sidebar-header {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    padding: 18px 22px;
    text-align: left;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-sidebar-header::after {
    content: '✦';
    font-size: 0.85rem;
    color: #BA121B;
}

.product-sidebar-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.product-sidebar-item {
    margin: 2px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.product-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.product-sidebar-link::after {
    content: '›';
    font-size: 1.1rem;
    color: #94A3B8;
    transition: transform 0.2s ease, color 0.2s ease;
}

.product-sidebar-link:hover {
    color: #BA121B;
    background: #FEF2F2;
}

.product-sidebar-link:hover::after {
    transform: translateX(3px);
    color: #BA121B;
}

.product-sidebar-item.active .product-sidebar-link {
    color: #BA121B;
    background: rgba(186, 18, 27, 0.08);
    font-weight: 700;
}

.product-sidebar-item.active .product-sidebar-link::after {
    color: #BA121B;
    transform: translateX(3px);
}

/* Product Main List — Modern Floating Aesthetic Cards */
.product-main-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-aesthetic-card {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 28px;
    align-items: center;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.product-aesthetic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -8px rgba(15, 23, 42, 0.08), 0 8px 16px -4px rgba(186, 18, 27, 0.06);
    border-color: rgba(186, 18, 27, 0.25);
}

/* Left Image Container with Hover Diagram Flip */
.product-media-wrapper {
    width: 250px;
    height: 190px;
    border-radius: 14px;
    overflow: hidden;
    background: #F1F5F9;
    flex-shrink: 0;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

.product-media-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-aesthetic-card:hover .product-media-cover {
    transform: scale(1.06);
}

.product-category-pill {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Hover Tech Spec Overlay Badge */
.product-tech-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #0F172A;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Right Content Area */
.product-info-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.product-card-title a {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-card-title a:hover {
    color: #BA121B;
}

.product-card-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Spec Pills Group */
.product-spec-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.spec-pill-item {
    background: #F1F5F9;
    color: #334155;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(203, 213, 225, 0.5);
}

.spec-pill-item .bullet {
    color: #BA121B;
    font-weight: bold;
}

/* Action Buttons Row */
.product-cta-group {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #BA121B 0%, #E62A35 100%);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(186, 18, 27, 0.25);
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(186, 18, 27, 0.35);
    color: #FFFFFF;
}

.btn-secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #475569;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-secondary-link:hover {
    color: #BA121B;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .products-catalog-layout {
        grid-template-columns: 1fr;
    }

    .product-aesthetic-card {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .product-media-wrapper {
        width: 100%;
        height: 210px;
    }
}

/* ============================================================
   2. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablets (768px – 1023px) */
@media (max-width: 1023px) {
    .product-showcase__experience {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .product-showcase__nav {
        border-right: none;
        border-bottom: 1px solid var(--color-border, #E2E1DC);
        padding: 16px 20px;
    }

    .product-showcase__nav-list {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        padding-bottom: 6px;
    }

    .product-showcase__nav-item {
        width: auto;
        white-space: nowrap;
        padding: 10px 16px;
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: var(--radius-xs, 4px);
    }

    .product-showcase__nav-item.active {
        border-left-color: transparent;
        border-bottom-color: var(--color-brand);
        background-color: rgba(0, 0, 0, 0.06);
    }

    .product-showcase__nav-footer {
        display: none;
    }

    .product-showcase__visual {
        min-height: 440px;
        height: 440px;
    }

    .product-showcase__content {
        border-left: none;
        border-top: 1px solid var(--color-border, #E2E1DC);
        padding: 28px 24px;
    }
}

/* Mobile Devices (<= 767px) — Tailored Interactive Product Explorer */
@media (max-width: 767px) {
    .product-showcase {
        padding-top: var(--space-2xl);
        padding-bottom: var(--space-2xl);
    }

    .product-showcase__header {
        margin-bottom: var(--space-xl);
        text-align: left;
    }

    .product-showcase__eyebrow {
        font-size: 0.6875rem;
    }

    .product-showcase__heading {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .product-showcase__description {
        font-size: 0.875rem;
        margin: 0;
    }

    .product-showcase__experience {
        display: flex;
        flex-direction: column;
        min-height: auto;
        border-radius: var(--radius-xs, 4px);
        overflow: hidden;
        background-color: var(--color-surface, #FFFFFF);
    }

    /* ZONE 1 (TOP): Horizontal Scrollable Category Pills */
    .product-showcase__nav {
        order: 1;
        background-color: var(--background-100, #EEEDE9);
        border-right: none;
        border-bottom: 1px solid var(--color-border, #E2E1DC);
        padding: 10px 12px;
    }

    .product-showcase__nav-list {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 6px;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .product-showcase__nav-list::-webkit-scrollbar {
        display: none;
    }

    .product-showcase__nav-item {
        width: auto;
        flex-shrink: 0;
        white-space: nowrap;
        padding: 8px 12px;
        font-size: 0.75rem;
        font-weight: 700;
        background: rgba(0, 0, 0, 0.04);
        border-radius: 4px;
        border-left: none;
        gap: 6px;
    }

    .product-showcase__nav-item.active {
        background-color: var(--color-brand);
        color: #FFFFFF;
        border-left: none;
    }

    .product-showcase__nav-item.active .product-showcase__nav-num {
        color: #FFFFFF;
    }

    .product-showcase__nav-item .product-showcase__nav-arrow {
        display: none;
    }

    .product-showcase__nav-footer {
        display: none;
    }

    /* ZONE 2 (MIDDLE): Compact Image Stage */
    .product-showcase__visual {
        order: 2;
        width: 100%;
        min-height: auto;
        height: auto;
        max-height: 240px;
    }

    .product-showcase__image-viewport {
        aspect-ratio: 16 / 10;
        max-height: 240px;
        height: 100%;
    }

    .product-showcase__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-showcase__image-tag {
        bottom: 10px;
        right: 10px;
        padding: 4px 8px;
    }

    .product-showcase__tag-code {
        font-size: 0.5625rem;
    }

    /* ZONE 3 (BOTTOM): Information Panel */
    .product-showcase__content {
        order: 3;
        border-left: none;
        border-top: 1px solid var(--color-border, #E2E1DC);
        padding: 18px 16px 20px;
    }

    .product-showcase__content-header {
        margin-bottom: 8px;
    }

    .product-showcase__content-index {
        font-size: 0.625rem;
    }

    .product-showcase__configure-link {
        font-size: 0.625rem;
        padding: 3px 8px;
    }

    .product-showcase__product-title {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .product-showcase__product-desc {
        font-size: 0.8125rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .product-showcase__focus-box {
        padding: 10px 12px;
        margin-bottom: 12px;
    }

    .product-showcase__focus-label {
        font-size: 0.5625rem;
        margin-bottom: 2px;
    }

    .product-showcase__focus-statement {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .product-showcase__tags-box {
        margin-bottom: 14px;
    }

    .product-showcase__tag {
        font-size: 0.625rem;
        padding: 3px 7px;
    }

    .product-showcase__explore-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.75rem;
    }

    .product-showcase__bottom-cta {
        margin-top: 20px;
    }

    .product-showcase__bottom-cta .btn {
        width: 100%;
        justify-content: center;
        font-size: 0.8125rem;
        padding: 11px 18px;
    }
}

/* ============================================================
   3. PRODUCT DETAIL & OTHER PAGE STYLES (Preserved)
   ============================================================ */

/* ---- Category Tabs ---- */
.product-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
}

.product-tab {
    padding: 10px 24px;
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--color-muted);
    background: var(--color-surface-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.product-tab:hover,
.product-tab.active {
    background: var(--color-brand);
    color: var(--color-white);
    border-color: var(--color-brand);
}

/* ---- Product Card ---- */
.product-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-brand);
}

.product-card__image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.product-card__image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image {
    transform: scale(1.05);
}

/* Interactive AI Cover to Tech Diagram Swap on Hover */
.product-card:hover .ai-cover-layer {
    opacity: 0 !important;
    pointer-events: none;
}

.product-card .ai-cover-layer {
    transition: opacity 0.45s ease-in-out;
}

.product-card__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 6px 14px;
    font-size: var(--fs-tiny);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    background: var(--color-brand);
    color: var(--color-white);
    border-radius: var(--radius-full);
}

.product-card__body {
    padding: var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card__category {
    font-size: var(--fs-tiny);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    color: var(--color-brand);
    margin-bottom: var(--space-xs);
}

.product-card__title {
    font-size: var(--fs-h4);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    line-height: var(--lh-snug);
}

.product-card__description {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-lg);
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--color-brand);
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.product-card__link:hover {
    color: var(--color-secondary);
    gap: var(--space-sm);
}

.product-card__link-arrow {
    transition: transform var(--transition-fast);
}

.product-card:hover .product-card__link-arrow {
    transform: translateX(4px);
}

/* ---- Product Detail ---- */
.product-detail__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.product-detail__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-detail__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.product-detail__info h1 {
    margin-bottom: var(--space-lg);
}

.product-detail__info p {
    color: var(--color-muted);
    font-size: var(--fs-body-lg);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-xl);
}

/* Specifications table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--color-border);
}

.specs-table td {
    padding: var(--space-md) 0;
    font-size: var(--fs-small);
}

.specs-table td:first-child {
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    width: 40%;
}

.specs-table td:last-child {
    color: var(--color-muted);
}

/* ---- Product Photo Gallery ---- */
.product-gallery__main {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--color-surface-muted, #EEEDE9);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.product-gallery__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-gallery__thumbs {
    display: flex;
    gap: 10px;
    margin-top: var(--space-md);
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.product-gallery__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: var(--color-surface-muted, #EEEDE9);
    padding: 0;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

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

.product-gallery__thumb:hover {
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.product-gallery__thumb.active {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 2px rgba(201, 164, 92, 0.3);
}

/* 3D Viewer container (legacy — kept for safety) */
.product-3d-viewer {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--color-surface-muted, #EEEDE9);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-3d-viewer canvas {
    width: 100% !important;
    height: 100% !important;
}

.product-3d-controls {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 5;
}

.product-3d-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--fs-tiny);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    cursor: pointer;
    transition: all var(--transition-base);
}

.product-3d-btn:hover,
.product-3d-btn.active {
    background: var(--color-secondary);
    color: var(--color-primary);
    border-color: var(--color-secondary);
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.feature-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--color-surface-light);
    border-radius: var(--radius-md);
    transition: transform var(--transition-base);
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-item__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(var(--color-secondary-rgb), 0.12);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-item__text h4 {
    font-size: var(--fs-body);
    margin-bottom: var(--space-xs);
}

.feature-item__text p {
    font-size: var(--fs-small);
    color: var(--color-muted);
    line-height: var(--lh-relaxed);
}

/* ==============================================================
   PREMIUM PRODUCT DETAIL PAGE (pd-*)
   ============================================================== */

/* ---- Hero Grid Layout ---- */
.pd-hero-grid {
    display: grid;
    grid-template-columns: minmax(320px, 460px) 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.pd-gallery-sticky {
    position: sticky;
    top: calc(var(--navbar-height-scroll, 70px) + 20px);
}

/* ---- Gallery ---- */
.pd-gallery__main {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 600px;
    background: var(--color-surface-muted, #EEEDE9);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.06);
}

.pd-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.pd-gallery__main:hover img {
    transform: scale(1.02);
}

.pd-gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    pointer-events: none;
}

.pd-gallery__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
}

.pd-gallery__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pd-gallery__placeholder p {
    color: #9CA3AF;
    margin-top: 12px;
    font-size: 0.9rem;
}

/* Thumbnails */
.pd-gallery__thumbs {
    display: flex;
    gap: 10px;
    margin-top: var(--space-md);
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.pd-gallery__thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: var(--color-surface-muted, #EEEDE9);
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
}

.pd-gallery__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
    border-radius: inherit;
}

.pd-gallery__thumb:hover::after {
    background: rgba(0,0,0,0.08);
}

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

.pd-gallery__thumb:hover {
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.pd-gallery__thumb.active {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pd-gallery__thumb.active::after {
    background: rgba(201, 164, 92, 0.08);
}

/* ---- Product Info (Right Column) ---- */
.pd-product-info {
    padding-top: var(--space-sm);
}

.pd-category-label {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(201, 164, 92, 0.1);
    color: var(--color-secondary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    margin-bottom: var(--space-md);
}

.pd-product-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.pd-product-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-muted);
    margin-bottom: var(--space-xl);
}

/* ---- Quick Specs ---- */
.pd-quick-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(201, 164, 92, 0.04), rgba(201, 164, 92, 0.08));
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 164, 92, 0.15);
}

.pd-quick-spec {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-quick-spec__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(201, 164, 92, 0.15);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pd-quick-spec__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-muted);
    font-weight: 600;
}

.pd-quick-spec__value {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* ---- Actions ---- */
.pd-actions {
    display: flex;
    gap: 12px;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.pd-btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pd-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.pd-btn-whatsapp svg {
    fill: #25D366;
}

/* ---- Trust Badges ---- */
.pd-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.pd-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: var(--color-surface-light);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pd-trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.pd-trust-badge__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(201, 164, 92, 0.12), rgba(201, 164, 92, 0.22));
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pd-trust-badge__label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted);
    font-weight: 600;
}

.pd-trust-badge__value {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

/* ==============================================================
   TECHNICAL SPECIFICATIONS TABLE & CARDS
   ============================================================== */
.pd-specs-table-wrapper {
    max-width: 960px;
    margin: 0 auto;
    background: var(--color-white, #fff);
    border-radius: var(--radius-lg, 14px);
    border: 1px solid var(--color-border, #E5E7EB);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.pd-specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pd-specs-table thead {
    background: linear-gradient(135deg, #0D1B2A 0%, #162A3F 100%);
}

.pd-specs-table th {
    padding: 18px 28px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    border: none;
}

.pd-specs-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background-color 0.2s ease;
}

.pd-specs-table tbody tr:last-child {
    border-bottom: none;
}

.pd-specs-table tbody tr:nth-child(even) {
    background: rgba(238, 237, 233, 0.35);
}

.pd-specs-table tbody tr:hover {
    background: rgba(201, 164, 92, 0.08);
}

.pd-specs-table td {
    padding: 18px 28px;
    font-size: 0.95rem;
    vertical-align: middle;
}

.pd-spec-name {
    font-weight: 700;
    color: var(--color-primary, #0D1B2A);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pd-spec-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-secondary, #C9A45C);
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(201, 164, 92, 0.2);
}

.pd-spec-val {
    color: var(--color-text, #374151);
    font-weight: 500;
}

@media (max-width: 640px) {
    .pd-specs-table th,
    .pd-specs-table td {
        padding: 14px 16px;
        font-size: 0.86rem;
    }
}

.pd-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.pd-spec-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pd-spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: rgba(201, 164, 92, 0.3);
}

.pd-spec-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0D1B2A, #1B2D45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(13, 27, 42, 0.2);
}

.pd-spec-card__content {
    flex: 1;
    min-width: 0;
}

.pd-spec-card__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted);
    font-weight: 600;
    margin: 0 0 4px;
}

.pd-spec-card__value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.3;
}

/* ==============================================================
   ARCHITECTURAL CORE ENGINEERING & SAFETY ARCHITECTURE
   ============================================================== */
.arch-eng-section {
    background-color: #F8F7F4;
    padding: clamp(64px, 8vw, 104px) 0;
    position: relative;
    border-top: 1px solid rgba(17, 24, 32, 0.06);
    border-bottom: 1px solid rgba(17, 24, 32, 0.06);
}

/* Master Architectural Vector Blueprint Showcase (Desktop) */
.arch-eng-desktop-showcase {
    display: block;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px -8px rgba(17, 24, 32, 0.07), 0 4px 16px -2px rgba(17, 24, 32, 0.03);
    border: 1px solid rgba(17, 24, 32, 0.08);
    background: #F7F5F0;
}

.arch-eng-desktop-showcase svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile & Tablet Fallback Showcase */
.arch-eng-mobile-showcase {
    display: none;
}

/* Section Header */
.arch-eng-header {
    max-width: 860px;
    margin-bottom: clamp(44px, 6vw, 68px);
}

.arch-eng-eyebrow {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #C8102E;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.arch-eng-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1.5px;
    background: #C8102E;
}

.arch-eng-title {
    font-family: var(--font-heading, 'RoslaneDEMO', Georgia, serif);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.14;
    color: #111820;
    margin: 0 0 20px;
    letter-spacing: -0.015em;
}

.arch-eng-lead {
    font-size: clamp(1.02rem, 1.2vw, 1.15rem);
    line-height: 1.7;
    color: #5F6468;
    margin: 0;
    max-width: 720px;
}

/* Asymmetric 52% / 48% Grid */
.arch-eng-grid {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: clamp(44px, 5vw, 76px);
    align-items: start;
}

/* Left Column: 01 / Core Engineering */
.arch-eng-left {
    padding-right: 8px;
}

.arch-col-label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #5F6468;
    margin-bottom: 24px;
    display: block;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(17, 24, 32, 0.12);
}

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

.arch-eng-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(17, 24, 32, 0.08);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.arch-eng-item:last-child {
    border-bottom: none;
}

.arch-eng-item:hover {
    transform: translateX(4px);
}

.arch-eng-item:hover .arch-eng-num {
    color: #C8102E;
}

.arch-eng-item:hover .arch-eng-icon {
    color: #111820;
    opacity: 1;
}

.arch-eng-num {
    font-family: var(--font-heading, 'RoslaneDEMO', Georgia, serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: #A0A5AA;
    line-height: 1.2;
    transition: color 0.3s ease;
    padding-top: 2px;
}

.arch-eng-content {
    min-width: 0;
}

.arch-eng-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 6px;
}

.arch-eng-name {
    font-size: 1.08rem;
    font-weight: 600;
    color: #111820;
    letter-spacing: -0.01em;
    margin: 0;
}

.arch-eng-icon {
    color: #71767B;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arch-eng-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5F6468;
    margin: 0;
}

/* Right Column: 02 / Safety Architecture Panel */
.arch-safety-panel {
    background: #0D1B2A;
    color: #FFFFFF;
    border-radius: 16px;
    padding: clamp(36px, 4.5vw, 50px);
    box-shadow: 0 24px 60px rgba(13, 27, 42, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    overflow: hidden;
}

/* Subtle corner light accent */
.arch-safety-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at top right, rgba(200, 16, 46, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.arch-safety-eyebrow {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C8102E;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.arch-safety-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C8102E;
    box-shadow: 0 0 8px rgba(200, 16, 46, 0.6);
}

.arch-safety-heading {
    font-family: var(--font-heading, 'RoslaneDEMO', Georgia, serif);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 12px;
}

.arch-safety-lead {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #B9C1C8;
    margin: 0 0 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.arch-safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.arch-safety-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.arch-safety-item:last-child {
    border-bottom: none;
}

/* Subtle red vertical indicator on hover */
.arch-safety-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 2.5px;
    background: #C8102E;
    border-radius: 2px;
    opacity: 0;
    transform: scaleY(0.4);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.arch-safety-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.arch-safety-item:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.arch-safety-item:hover .arch-safety-icon {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}

.arch-safety-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #B9C1C8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.3s ease;
}

.arch-safety-text {
    flex: 1;
    min-width: 0;
}

.arch-safety-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.arch-safety-detail {
    font-size: 0.85rem;
    line-height: 1.55;
    color: #B9C1C8;
    margin: 0;
}

/* ==============================================================
   APPLICATION CARDS
   ============================================================== */
.pd-apps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pd-app-card {
    flex: 1 1 280px;
    max-width: 340px;
    min-width: 250px;
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.pd-app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pd-app-card:hover::before {
    transform: scaleX(1);
}

.pd-app-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    border-color: rgba(201, 164, 92, 0.2);
}

.pd-app-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(201, 164, 92, 0.08), rgba(201, 164, 92, 0.18));
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.pd-app-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 var(--space-sm);
}

.pd-app-card__line {
    width: 30px;
    height: 2px;
    background: var(--color-secondary);
    margin: 0 auto;
    opacity: 0.5;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.pd-app-card:hover .pd-app-card__line {
    width: 50px;
    opacity: 1;
}

/* ==============================================================
   CTA BANNER
   ============================================================== */
.pd-cta-banner {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #0D1B2A 0%, #162A3F 50%, #0D1B2A 100%);
    position: relative;
    overflow: hidden;
}

.pd-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 164, 92, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pd-cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.pd-cta-banner__title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}

.pd-cta-banner__text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    max-width: 520px;
    line-height: 1.6;
}

.pd-cta-banner__actions {
    flex-shrink: 0;
}

/* ==============================================================
   SECTION SUBTITLE (GLOBAL ADDITION)
   ============================================================== */
.section-subtitle {
    font-size: 1rem;
    color: var(--color-muted);
    max-width: 540px;
    margin: var(--space-sm) auto 0;
    line-height: 1.6;
}

/* ==============================================================
   RESPONSIVE — PRODUCT DETAIL PAGE
   ============================================================== */
@media (max-width: 1024px) {
    .pd-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .arch-eng-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .arch-eng-left {
        padding-right: 0;
    }

    .pd-trust-badges {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .pd-features-safety-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .pd-cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .pd-cta-banner__text {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .arch-eng-desktop-showcase {
        display: none;
    }

    .arch-eng-mobile-showcase {
        display: block;
    }

    .arch-eng-section {
        padding: 52px 0;
    }

    .arch-eng-header {
        margin-bottom: 36px;
    }

    .arch-eng-item {
        grid-template-columns: 36px 1fr;
        gap: 14px;
        padding: 18px 0;
    }

    .arch-eng-num {
        font-size: 1.15rem;
    }

    .arch-eng-name {
        font-size: 1rem;
    }

    .arch-safety-panel {
        padding: 28px 20px;
    }

    .arch-safety-item {
        padding: 14px 12px;
        gap: 12px;
    }

    .pd-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .pd-gallery-sticky {
        position: static;
    }

    .pd-trust-badges {
        grid-template-columns: 1fr;
    }

    .pd-specs-grid {
        grid-template-columns: 1fr;
    }

    .pd-feature-section {
        padding: var(--space-xl);
    }

    .pd-gallery__thumb {
        width: 64px;
        height: 64px;
    }

    /* Mobile: 3 compact horizontal rows */
    .pd-apps-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        max-width: 520px;
        margin: 0 auto;
    }

    .pd-app-card {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 0;
        display: flex;
        align-items: center;
        text-align: left;
        padding: 14px 18px;
        border-radius: 14px;
        gap: 16px;
    }

    .pd-app-card:hover {
        transform: translateY(-2px);
    }

    .pd-app-card__icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 12px;
        margin: 0;
        font-size: 1.15rem;
        flex-shrink: 0;
    }

    .pd-app-card__title {
        font-size: 0.92rem;
        margin: 0;
        flex: 1;
        line-height: 1.4;
    }

    .pd-app-card__line {
        display: none;
    }

    .pd-actions {
        flex-direction: column;
    }

    .pd-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .product-detail__intro {
        grid-template-columns: 1fr;
    }

    .product-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: var(--space-sm);
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .pd-app-card {
        padding: 12px 14px;
        gap: 12px;
    }

    .pd-quick-specs {
        padding: var(--space-md);
    }

    .pd-feature-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ==============================================================
   GLOBAL CERTIFICATIONS & COMPLIANCE SECTION
   Exact Match to Architectural Reference Specification
   ============================================================== */
.pd-global-cert-section {
    padding: clamp(52px, 6.5vw, 84px) 0;
    background: #FFFFFF;
    border-top: 1px solid rgba(23, 26, 28, 0.06);
    border-bottom: 1px solid rgba(23, 26, 28, 0.06);
    position: relative;
}

.pd-global-cert__header {
    text-align: center;
    margin-bottom: clamp(36px, 4.5vw, 56px);
}

.pd-global-cert__title {
    font-family: var(--font-heading, 'RoslaneDEMO', sans-serif);
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 800;
    color: #0E2A38;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pd-global-cert__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 56px);
    max-width: 960px;
    margin: 0 auto;
    align-items: flex-start;
}

.pd-global-cert__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-global-cert__item:hover {
    transform: translateY(-4px);
}

.pd-global-cert__badge {
    width: 140px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-global-cert__item:hover .pd-global-cert__badge {
    transform: scale(1.06);
}

.pd-global-cert__badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.04));
}

.pd-global-cert__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pd-global-cert__name {
    font-family: var(--font-heading, 'RoslaneDEMO', sans-serif);
    font-size: 1.18rem;
    font-weight: 700;
    color: #171A1C;
    line-height: 1.25;
}

.pd-global-cert__sub {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.02rem;
    font-weight: 600;
    color: #4B5563;
    line-height: 1.3;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 768px) {
    .pd-global-cert-section {
        padding: clamp(40px, 6vw, 60px) 0;
    }

    .pd-global-cert__header {
        margin-bottom: 32px;
    }

    .pd-global-cert__grid {
        gap: 16px;
    }

    .pd-global-cert__badge {
        width: 100px;
        height: 95px;
        margin-bottom: 14px;
    }

    .pd-global-cert__name {
        font-size: 0.98rem;
    }

    .pd-global-cert__sub {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .pd-global-cert__badge {
        width: 82px;
        height: 78px;
        margin-bottom: 10px;
    }

    .pd-global-cert__name {
        font-size: 0.85rem;
    }

    .pd-global-cert__sub {
        font-size: 0.78rem;
    }
}

/* Dark Theme Support */
:root[data-theme="dark"] .pd-global-cert-section {
    background: #0F171D;
    border-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .pd-global-cert__title {
    color: #FFFFFF;
}

:root[data-theme="dark"] .pd-global-cert__name {
    color: #FFFFFF;
}

:root[data-theme="dark"] .pd-global-cert__sub {
    color: #9CA3AF;
}

/* ==============================================================
   STICKY FLOATING BOTTOM CTA (Desktop, Tablet & Mobile)
   Refined Architectural Floating Island Dock
   ============================================================== */
.pd-floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, calc(100% + 40px));
    width: calc(100% - 48px);
    max-width: 1060px;
    z-index: 990;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(23, 26, 28, 0.08);
    border-radius: 16px;
    box-shadow: 0 16px 40px -6px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.pd-floating-cta.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.pd-floating-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    gap: 18px;
    width: 100%;
    margin: 0 auto;
}

.pd-floating-cta__info {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.pd-floating-cta__thumb {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(23, 26, 28, 0.08);
    overflow: hidden;
    background: #F5F4F0;
    flex-shrink: 0;
}

.pd-floating-cta__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-floating-cta__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #F5F4F0;
    color: #171A1C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pd-floating-cta__meta {
    min-width: 0;
}

.pd-floating-cta__name {
    display: block;
    font-family: var(--font-heading, 'RoslaneDEMO', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    color: #171A1C;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
}

.pd-floating-cta__cat {
    display: block;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.78rem;
    color: #5C6870;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

.pd-floating-cta__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Call Button: Architectural Slate Outline */
.pd-floating-cta__btn-call {
    background: transparent;
    color: #171A1C !important;
    border: 1.5px solid #D4D3CD;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-weight: 600;
    font-size: 0.86rem;
    padding: 9px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pd-floating-cta__btn-call i {
    font-size: 0.9rem;
    color: #5C6870;
    transition: color 0.2s ease;
}

.pd-floating-cta__btn-call:hover {
    background: #F5F4F0;
    border-color: #171A1C;
    color: #171A1C !important;
    transform: translateY(-1px);
}

.pd-floating-cta__btn-call:hover i {
    color: #171A1C;
}

/* WhatsApp Button: Clean architectural outline with green WhatsApp icon (matching hero secondary button) */
.pd-floating-cta__btn-whatsapp {
    background: #FFFFFF;
    color: #171A1C !important;
    border: 1.5px solid #D4D3CD;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-weight: 600;
    font-size: 0.86rem;
    padding: 9px 18px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pd-floating-cta__btn-whatsapp i {
    font-size: 1.05rem;
    color: #25D366;
    transition: transform 0.2s ease;
}

.pd-floating-cta__btn-whatsapp:hover {
    background: #F5F4F0;
    border-color: #171A1C;
    color: #171A1C !important;
    transform: translateY(-1px);
}

.pd-floating-cta__btn-whatsapp:hover i {
    transform: scale(1.1);
}

/* Primary CTA: Elita Signature Brand Red */
.pd-floating-cta__btn-quote {
    background: #BA121B;
    color: #FFFFFF !important;
    border: 1.5px solid #BA121B;
    font-family: var(--font-heading, 'RoslaneDEMO', sans-serif);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    padding: 9px 22px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(186, 18, 27, 0.28);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-floating-cta__btn-quote:hover {
    background: #970E16;
    border-color: #970E16;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(186, 18, 27, 0.38);
}

/* Floating WhatsApp & Back to top button elevation */
body.has-floating-cta .whatsapp-btn {
    bottom: 96px !important;
    transition: bottom 0.35s ease;
}

body.has-floating-cta .back-to-top {
    bottom: 152px !important;
    transition: bottom 0.35s ease;
}

/* Tablet view */
@media (max-width: 991px) {
    .pd-floating-cta {
        bottom: 16px;
        width: calc(100% - 32px);
    }
    .pd-floating-cta__inner {
        padding: 8px 14px;
        gap: 12px;
    }
    .pd-floating-cta__name {
        font-size: 0.92rem;
    }
    .pd-floating-cta__btn-quote {
        padding: 8px 16px;
        font-size: 0.84rem;
    }
    .pd-floating-cta__btn-whatsapp {
        padding: 8px 14px;
    }
}

/* Mobile Floating Island Dock */
@media (max-width: 767px) {
    .pd-floating-cta {
        bottom: 12px;
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
        transform: translateY(calc(100% + 24px));
        border-radius: 14px;
        padding: 6px;
        box-sizing: border-box;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .pd-floating-cta.is-visible {
        transform: translateY(0);
    }

    .pd-floating-cta__inner {
        padding: 0;
        gap: 6px;
        box-sizing: border-box;
        width: 100%;
    }

    .pd-floating-cta__info {
        display: none;
    }

    .pd-floating-cta__actions {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 6px;
        box-sizing: border-box;
    }

    .pd-floating-cta__btn-call {
        width: 42px;
        height: 42px;
        min-width: 42px;
        flex: 0 0 42px;
        padding: 0;
        justify-content: center;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .pd-floating-cta__btn-call .pd-btn-text {
        display: none;
    }

    .pd-floating-cta__btn-whatsapp {
        flex: 1;
        min-width: 0;
        height: 42px;
        padding: 0 8px;
        gap: 6px;
        justify-content: center;
        font-size: 0.82rem;
        border-radius: 8px;
        white-space: nowrap;
        box-sizing: border-box;
    }

    .pd-floating-cta__btn-quote {
        flex: 1.1;
        min-width: 0;
        height: 42px;
        padding: 0 10px;
        gap: 6px;
        justify-content: center;
        font-size: 0.82rem;
        border-radius: 8px;
        white-space: nowrap;
        box-sizing: border-box;
    }

    body.has-floating-cta .whatsapp-btn {
        bottom: 78px !important;
    }

    body.has-floating-cta .back-to-top {
        bottom: 130px !important;
    }
}

/* Dark Theme Support */
:root[data-theme="dark"] .pd-floating-cta {
    background: rgba(17, 19, 19, 0.94);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

:root[data-theme="dark"] .pd-floating-cta__thumb {
    background: #252827;
    border-color: rgba(255, 255, 255, 0.1);
}

:root[data-theme="dark"] .pd-floating-cta__icon {
    background: #252827;
    color: #FFFFFF;
}

:root[data-theme="dark"] .pd-floating-cta__name {
    color: #FFFFFF;
}

:root[data-theme="dark"] .pd-floating-cta__cat {
    color: #abb4ba;
}

:root[data-theme="dark"] .pd-floating-cta__btn-call {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.18);
}

:root[data-theme="dark"] .pd-floating-cta__btn-call i {
    color: #abb4ba;
}

:root[data-theme="dark"] .pd-floating-cta__btn-call:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #FFFFFF;
}

:root[data-theme="dark"] .pd-floating-cta__btn-whatsapp {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.18);
}

:root[data-theme="dark"] .pd-floating-cta__btn-whatsapp:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #FFFFFF;
}
