/* ============================================================
   COWAY WATER PURIFIER PAGE STYLES - GLOBAL LAYOUT ALIGNED
   ============================================================ */

.produk-wp-page {
    background-color: #F8FAFC;
    color: var(--color-text, #333333);
    min-height: 100vh;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* Hero Section (Figma Spec Exact) */
.product-hero-section {
    position: relative;
    width: 100%;
    min-height: 540px;
    background: url('/img/background/beranda_hero1.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
    color: #FFFFFF;
}

.product-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    max-width: 745px;
    height: 100%;
    background: linear-gradient(270deg, rgba(67, 67, 67, 0) 0%, rgba(30, 30, 30, 0.95) 100%);
    pointer-events: none;
    z-index: 1;
}

.product-hero-content {
    max-width: 640px;
    position: relative;
    z-index: 2;
}

.product-hero-badge {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.hero-tagline-main {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
    color: #8AE1FF;
}

.hero-tagline-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8AE1FF;
}

.product-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0 0 16px;
    text-transform: capitalize;
}

.product-hero-underline {
    width: 150px;
    height: 0px;
    border-top: 3px solid #8AE1FF;
    margin-bottom: 24px;
}

.product-hero-description p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    margin: 0 0 8px;
}

.product-hero-description p:last-child {
    margin-bottom: 0;
}

.hero-image-placeholder {
    width: 100%;
    height: 380px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px dashed rgba(138, 225, 255, 0.4);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    color: #8AE1FF;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.product-hero-real-img {
    max-width: 100%;
    max-height: 440px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
    transition: transform 0.5s ease;
}

.product-hero-real-img:hover {
    transform: scale(1.04);
}

.product-showcase-img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
}

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

/* Why Section (Figma Spec Match) */
.product-why-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: url('/img/background/bg-mengapa-perlu.png') center center / cover no-repeat;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    color: #333333;
    margin: 0 0 16px;
    text-transform: capitalize;
}

.layanan-title-underline {
    width: 150px;
    height: 0px;
    border-top: 3px solid #00A7E1;
    margin: 0 auto;
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 32px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 286px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 167, 225, 0.12);
    border-color: rgba(0, 167, 225, 0.3);
}

.card-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    background: #00A7E1;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-content-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin-top: auto;
}

.card-divider {
    width: 100%;
    height: 0px;
    border-top: 1px solid #D2D2D2;
    margin: 0 0 14px;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 18.7px;
    font-weight: 600;
    line-height: 24px;
    color: #333333;
    margin: 0 0 8px;
}

.card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #777777;
    margin: 0;
}

/* Global Keunggulan Section (Figma Spec Exact) */
.product-advantages-section {
    padding: 80px 0;
    background: #EDF5F8;
    position: relative;
}

.section-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
    color: #00A7E1;
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin-bottom: 14px;
}

.product-advantages-section .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 44px;
    color: #333333;
    text-align: center;
    margin: 0 0 16px;
    text-transform: capitalize;
}

.advantages-grid-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.advantages-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* Individual Vertical Divider Line (Row 1 & Row 2 distinct) */
.advantages-v-line {
    width: 1px;
    height: 100%;
    min-height: 236px;
    background: linear-gradient(180deg, #EDF8F8 10%, #839AC2 50%, #EDF8F8 90%);
}

/* Horizontal Divider Line between Row 1 and Row 2 */
.advantages-horizontal-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #EDF8F8 10%, #839AC2 50%, #EDF8F8 90%);
    position: relative;
    z-index: 4;
}

/* Center Diamond Node positioned on Horizontal Line center */
.advantages-center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: #BACAE6;
    border-radius: 2px;
    z-index: 5;
}

.advantage-card {
    background: transparent;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
}

.advantage-num {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 28px;
    color: #00A7E1;
    text-align: center;
    margin-bottom: 24px;
}

.advantage-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #333333;
    text-align: center;
    margin: 0 0 8px;
}

.advantage-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #606060;
    text-align: center;
    margin: 0;
}

/* Catalog Section Outer & Inner Container (Figma Spec Exact) */
.product-catalog-section {
    background: linear-gradient(180deg, #EDF5F8 0%, #EDF5F8 143.65%);
    padding: 40px 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.catalog-inner-box {
    width: 100%;
    background: #FFFFFF;
    border-radius: 56px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 110px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    z-index: 10;
}

.sidebar-header {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    padding: 8px 12px 14px;
    border-bottom: 2px solid #00A7E1;
    margin-bottom: 12px;
}

.sidebar-group-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94A3B8;
    margin: 16px 12px 8px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item a {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-item a:hover {
    background: rgba(0, 167, 225, 0.06);
    color: #00A7E1;
}

.sidebar-item a.active {
    background: rgba(0, 167, 225, 0.1);
    color: #00A7E1;
    border-left-color: #00A7E1;
}

/* Catalog Category Section Header */
.catalog-category-header {
    margin-bottom: 24px;
    margin-top: 10px;
    padding-bottom: 16px;
    border-bottom: 1.5px stroke rgba(0, 167, 225, 0.2);
    position: relative;
    scroll-margin-top: 130px;
}

.catalog-category-header#cat-floor-standing {
    margin-top: 48px;
}

.category-header-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #00A7E1;
    background: rgba(0, 167, 225, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.category-header-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    letter-spacing: -0.02em;
}

.category-header-line {
    width: 100%;
    height: 0px;
    border: 3px solid var(--coway, #00A7E1);
    border-width: 3px;
    opacity: 1;
    margin-top: 12px;
    box-sizing: border-box;
}

/* Product Showcase Card (Figma Match) */
.product-showcase-card {
    background: transparent;
    border-radius: 0;
    padding: 30px 0;
    border: none;
    box-shadow: none;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 0;
    scroll-margin-top: 130px;
    transition: transform 0.3s ease;
}

.product-showcase-card:hover {
    box-shadow: none;
    border-color: transparent;
}

.product-img-box {
    width: 400px;
    height: 600px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    transform: rotate(0deg);
    display: block;
}

.product-code-tag {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #00A7E1;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 4px;
}

.product-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.product-title-underline {
    width: 150px;
    height: 0px;
    border-top: 3px solid #00A7E1;
    margin-bottom: 20px;
}

.product-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #606060;
    margin: 0 0 12px;
}

.product-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #606060;
    margin: 0 0 24px;
}

/* Warna Tersedia (Figma Spec Exact) */
.product-colors-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 24px;
    width: 100%;
}

.colors-label {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #606060;
    flex-shrink: 0;
}

.colors-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.color-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.color-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    box-sizing: border-box;
}

.color-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #606060;
}

.product-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #606060;
}

.feature-icon-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #00A7E1;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Alternating Bottom Gradient Border Lines */
.product-card-divider-line {
    width: 100%;
    height: 2px;
    margin: 40px 0;
    box-sizing: border-box;
}

/* Dari Kiri ke Kanan (Left to Right) */
.product-card-divider-line.gradient-ltr {
    background: linear-gradient(90deg, #00A7E1 0%, rgba(0, 167, 225, 0) 100%) !important;
    border-image: linear-gradient(90deg, #00A7E1 0%, rgba(0, 167, 225, 0) 100%) 1 !important;
}

/* Dari Kanan ke Kiri (Right to Left) */
.product-card-divider-line.gradient-rtl {
    background: linear-gradient(270deg, #00A7E1 0%, rgba(0, 167, 225, 0) 100%) !important;
    border-image: linear-gradient(270deg, #00A7E1 0%, rgba(0, 167, 225, 0) 100%) 1 !important;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

button.btn-outline-pill,
a.btn-outline-pill,
.btn-outline-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: max-content !important;
    height: 40px !important;
    padding: 8px 16px !important;
    gap: 8px !important;
    border-radius: 24px !important;
    border: 1px solid #00A7E1 !important;
    background: transparent !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    letter-spacing: 0 !important;
    color: #00A7E1 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    outline: none !important;
    box-sizing: border-box !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

button.btn-outline-pill:hover,
a.btn-outline-pill:hover,
.btn-outline-pill:hover {
    background: rgba(0, 167, 225, 0.08) !important;
    color: #00A7E1 !important;
    border-color: #00A7E1 !important;
    transform: translateY(-2px);
}

/* Modal Styling (Figma Exact 2-Column Specs) */
.spec-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.spec-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.spec-modal-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 1280px;
    max-width: 95vw;
    max-height: 90vh;
    background: #FFFFFF;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.spec-modal-backdrop.active .spec-modal-container {
    transform: scale(1);
}

/* Left Column - Specifications List */
.spec-modal-left {
    flex: 1;
    width: 55%;
    max-width: 680px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    box-sizing: border-box;
}

.spec-modal-heading {
    font-family: 'Stack Sans Headline', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: #333333;
    margin: 0;
}

.spec-modal-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.spec-row {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #36454F;
    width: 100%;
    gap: 16px;
}

.spec-label {
    width: 160px;
    font-family: 'Open Sans', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #36454F;
    flex-shrink: 0;
}

.spec-value {
    flex: 1;
    font-family: 'Open Sans', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #36454F;
}

.spec-value div {
    margin-bottom: 2px;
}

.spec-value div:last-child {
    margin-bottom: 0;
}

.spec-modal-note {
    font-family: 'Open Sans', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #36454F;
    margin: 10px 0 0;
}

/* Right Column - Blueprint Box & Close Button */
.spec-modal-right {
    flex: 1;
    width: 45%;
    min-width: 400px;
    background: #36454F;
    border-radius: 40px;
    box-shadow: -8px 0px 20px rgba(0, 0, 0, 0.14);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
}

.spec-modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #FFFFFF;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.spec-modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.spec-blueprint-box {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Specification Modal (Figma Exact Spec) */
.spec-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
    box-sizing: border-box;
}

.spec-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.spec-modal-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 1080px;
    max-width: 95vw;
    max-height: 90vh;
    background: #FFFFFF;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.spec-modal-backdrop.active .spec-modal-container {
    transform: scale(1);
}

.spec-modal-left {
    flex: 1;
    width: 55%;
    max-width: 680px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    box-sizing: border-box;
    background: #FFFFFF;
}

.spec-modal-heading {
    font-family: 'Stack Sans Headline', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: #36454F;
    margin: 0 0 12px;
}

.spec-modal-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.spec-row {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 10px;
    border-bottom: 1px solid #36454F;
    width: 100%;
    gap: 16px;
}

.spec-label {
    width: 160px;
    font-family: 'Open Sans', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #36454F;
    flex-shrink: 0;
}

.spec-value {
    flex: 1;
    font-family: 'Open Sans', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #36454F;
}

.spec-modal-note {
    font-family: 'Open Sans', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #36454F;
    margin: 16px 0 0;
}

.spec-modal-right {
    flex: 1;
    width: 45%;
    min-width: 380px;
    background: #36454F;
    border-radius: 40px;
    box-shadow: -8px 0px 20px rgba(0, 0, 0, 0.14);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
}

.spec-modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #FFFFFF;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.spec-modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

.spec-blueprint-box {
    width: 100%;
    height: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.spec-blueprint-img {
    max-width: 100%;
    max-height: 420px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Responsive Specs Modal (< 992px) - Image on Top, Specs on Bottom */
@media (max-width: 991px) {
    .spec-modal-backdrop {
        padding: 12px;
    }

    .spec-modal-container {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 502px !important;
        max-height: 85vh !important;
        border-radius: 32px !important;
        overflow-y: auto !important;
    }

    .spec-modal-right {
        order: 1 !important;
        width: 100% !important;
        min-width: 100% !important;
        height: auto !important;
        min-height: 280px !important;
        border-radius: 32px 32px 0 0 !important;
        padding: 32px 20px 24px !important;
        box-shadow: none !important;
    }

    .spec-modal-left {
        order: 2 !important;
        width: 100% !important;
        padding: 24px 20px !important;
    }

    .spec-blueprint-box {
        min-height: 220px !important;
    }

    .spec-blueprint-img {
        max-height: 240px !important;
    }

    .spec-modal-left {
        width: 100% !important;
        max-width: 100% !important;
        padding: 24px 20px !important;
        overflow-y: visible !important;
    }

    .spec-row {
        padding: 10px 0 !important;
        gap: 12px !important;
    }

    .spec-label {
        width: 130px !important;
        font-size: 13px !important;
        line-height: 19px !important;
    }

    .spec-value {
        font-size: 13px !important;
        line-height: 19px !important;
    }
}

/* Mobile & Tablet Responsive */
@media (max-width: 1023px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .product-hero-badge {
        align-items: center;
    }

    .product-hero-underline {
        margin: 0 auto 24px;
    }

    .product-hero-description {
        margin: 0 auto;
    }

    .why-cards-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .advantages-center-node {
        display: none;
    }

    .catalog-inner-box {
        padding: 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .catalog-sidebar {
        position: sticky !important;
        top: 75px !important;
        z-index: 99 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: #FFFFFF !important;
        border-radius: 40px !important;
        padding: 8px !important;
        border: 1px solid #E2E8F0 !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 6px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .catalog-sidebar::-webkit-scrollbar {
        display: none !important;
    }

    .sidebar-header,
    .sidebar-category-header,
    .sidebar-group-title {
        display: none !important;
    }

    .sidebar-nav,
    .sidebar-nav-list {
        display: contents !important;
    }

    .sidebar-item,
    .sidebar-nav-item {
        display: inline-flex !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .sidebar-item a,
    .sidebar-nav-item a {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 10px 20px !important;
        border-radius: 30px !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        letter-spacing: 0.03em !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        background: transparent !important;
        color: #334155 !important;
        border: none !important;
        white-space: nowrap !important;
        transition: all 0.2s ease !important;
    }

    .sidebar-item a.active,
    .sidebar-nav-item a.active {
        background: #E5F8FF !important;
        color: #00A7E1 !important;
        font-weight: 700 !important;
        border: none !important;
    }

    .product-showcase-card {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        gap: 20px;
        border-radius: 20px;
    }

    .product-img-box {
        width: 100% !important;
        height: 320px !important;
        flex-shrink: unset;
    }

    .product-img-box img {
        object-fit: contain !important;
    }
}

@media (max-width: 767px) {
    .product-hero-section {
        width: 100% !important;
        height: 300px !important;
        min-height: 270px !important;
        aspect-ratio: 16 / 9 !important;
        padding: 24px 0 !important;
        background-size: 100% 100% !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        display: flex !important;
        align-items: center !important;
    }

    .product-hero-bg-overlay {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.35) 100%) !important;
    }

    .product-hero-content {
        display: flex;
        flex-direction: column;
        max-width: 100% !important;
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: center !important;
        height: 100%;
    }

    .product-hero-badge {
        gap: 2px !important;
        margin-bottom: 8px !important;
        align-items: flex-start !important;
    }

    .hero-tagline-main,
    .hero-tagline-sub {
        font-size: 12px !important;
        line-height: 16px !important;
    }

    .product-hero-title {
        font-size: 24px !important;
        line-height: 30px !important;
        font-weight: 700 !important;
        margin-bottom: 8px !important;
        text-align: left !important;
    }

    .product-hero-underline {
        width: 80px !important;
        border-top-width: 3px !important;
        margin-bottom: 10px !important;
        margin-left: 0 !important;
    }

    .product-hero-description,
    .product-hero-description p {
        font-size: 15px !important;
        line-height: 22px !important;
        font-weight: 400 !important;
        color: #E2E8F0 !important;
        margin: 0 0 4px 0 !important;
        text-align: left !important;
    }

    .section-header-center .section-title {
        font-size: 24px !important;
        font-weight: 700 !important;
        line-height: 1.35 !important;
    }

    .why-card {
        padding: 24px 20px;
    }

    .product-advantages-section {
        background: #EDF5F8 !important;
        padding: 48px 0 !important;
    }

    .advantages-grid-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 36px !important;
        width: 100% !important;
        align-items: center !important;
        text-align: center !important;
    }

    .advantages-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 36px !important;
        width: 100% !important;
    }

    .advantages-v-line,
    .advantages-horizontal-line,
    .advantages-center-node {
        display: none !important;
    }

    .advantage-card {
        width: 100% !important;
        padding: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .advantage-num {
        font-family: 'Inter', sans-serif !important;
        font-size: 52px !important;
        font-weight: 500 !important;
        line-height: 1 !important;
        color: #00A7E1 !important;
        text-align: center !important;
        margin-bottom: 12px !important;
    }

    .advantage-title {
        font-family: 'Inter', sans-serif !important;
        font-size: 20px !important;
        font-weight: 600 !important;
        line-height: 28px !important;
        color: #333333 !important;
        text-align: center !important;
        margin: 0 0 8px !important;
    }

    .advantage-desc {
        font-family: 'Inter', sans-serif !important;
        font-size: 15px !important;
        line-height: 24px !important;
        color: #606060 !important;
        text-align: center !important;
        margin: 0 !important;
        max-width: 360px !important;
    }

    .product-showcase-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .product-img-box {
        width: 100% !important;
        height: 260px !important;
        flex-shrink: unset;
    }

    .product-title {
        font-size: 24px !important;
        font-weight: 700 !important;
    }

    .product-subheading {
        font-size: 18px !important;
        line-height: 24px !important;
        font-weight: 600 !important;
        margin-bottom: 8px !important;
    }

    .product-desc,
    .product-description {
        font-size: 15px !important;
        line-height: 24px !important;
        font-weight: 400 !important;
        color: #606060 !important;
        margin-bottom: 16px !important;
    }

    .product-feature-item,
    .feature-item,
    .colors-label {
        font-size: 15px !important;
        line-height: 22px !important;
        font-weight: 400 !important;
    }

    .product-actions {
        flex-direction: column;
        width: 100%;
    }

    .product-actions .btn-primary-pill,
    .product-actions .btn-outline-pill {
        width: 100% !important;
        justify-content: center !important;
    }
}