/* =========================
   RESET + BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0d0f14;
    color: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: rgba(17, 21, 28, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    z-index: 100;
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #ffffff;
}

.nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav a {
    font-size: 14px;
    color: #c8ced8;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: #ffffff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-switcher {
    display: inline-flex;
    padding: 3px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
}

.language-switcher button {
    min-width: 36px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #9ea7b6;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.language-switcher button.is-active {
    background: #1f4e9d;
    color: #ffffff;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: #c8ced8;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover {
    border-color: rgba(79,134,255,0.65);
    color: #ffffff;
}

.theme-toggle-track {
    position: relative;
    width: 36px;
    height: 20px;
    border-radius: 999px;
    background: #1f4e9d;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.theme-toggle-thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 22px;

    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;

    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: #1f4e9d;
    color: #ffffff;
    border: 1px solid #2e67c7;
}

.btn-primary:hover {
    background: #2e67c7;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn-secondary:hover {
    border-color: #2e67c7;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    color: #8fb8ff;
    border: 1px solid rgba(46, 103, 199, 0.7);
    background: rgba(31, 78, 157, 0.08);
}

.btn-outline:hover {
    background: #1f4e9d;
    color: #ffffff;
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding-top: 72px;

    background-image: url("../Images/fb92496b-97ef-4143-9d79-6890e1c6681b.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 82% center;

    overflow: hidden;
}

/* dark readability overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 78% 52%, rgba(46, 103, 199, 0.08), transparent 28%),
        linear-gradient(
            to right,
            rgba(13, 15, 20, 0.98) 0%,
            rgba(13, 15, 20, 0.9) 34%,
            rgba(13, 15, 20, 0.55) 62%,
            rgba(13, 15, 20, 0.16) 100%
        );

    z-index: 2;
}

/* optional blue SVG lines */
.hero-bg-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
    pointer-events: none;
    opacity: 0.24;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 20%,
        black 80%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 20%,
        black 80%,
        transparent 100%
    );
}

.hero-bg-lines path {
    fill: none;
    stroke: #2e67c7;
    stroke-width: 2;
}

/* content */
.hero-inner {
    position: relative;
    z-index: 3;
}

.hero-text {
    max-width: 560px;
}

.hero-text h1 {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -0.04em;
}

.hero-text h1 span {
    color: #4f86ff;
}

.hero-text p {
    max-width: 480px;
    color: #b4bac5;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================
   PRODUCTS
========================= */
.products {
    padding: 72px 0;
    background:
        radial-gradient(circle at top center, rgba(31, 78, 157, 0.12), transparent 35%),
        #0d0f14;
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.product-card {
    background: linear-gradient(180deg, #171c26 0%, #121721 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;

    padding: 18px;
    text-align: center;

    transition: transform 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
    will-change: transform;
    contain: layout paint;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(46, 103, 199, 0.75);
}



.product-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.product-card p {
    color: #aeb6c4;
    font-size: 14px;
    margin-bottom: 10px;
}

.product-card span {
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.product-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    align-self: center;
}

.power-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 13px;
    border-radius: 999px;
    border: 1px solid rgba(79,134,255,0.28);
    background: rgba(46,103,199,0.14);
    color: #9fc2ff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.power-badge.gas {
    border-color: rgba(255,177,77,0.3);
    background: rgba(255,177,77,0.12);
    color: #ffc36d;
}

.product-card .power-badge {
    display: inline-flex;
    color: #9fc2ff;
    min-height: 26px;
    padding: 0 10px;
    font-size: 10.5px;
    margin-bottom: 0;
}

.product-card .power-badge.gas {
    color: #ffc36d;
}

.product-price,
.product-detail-price {
    color: #4f86ff;
    font-size: 18px;
    font-weight: 800;
}

.product-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    font-size: 16px;
}

.product-price.is-sale {
    gap: 8px;
    padding: 5px 9px;
    border: 1px solid rgba(255,177,77,0.46);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255,177,77,0.18), rgba(46,103,199,0.14)),
        rgba(255,255,255,0.04);
    color: #ffffff;
    box-shadow:
        0 10px 26px rgba(255,177,77,0.1),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.product-card .product-price span {
    margin-bottom: 0;
}

.product-card .product-price .price-stack {
    display: inline-flex;
}

.sale-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffbf64, #e58b24);
    border: 1px solid rgba(255,224,161,0.46);
    color: #101722;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price-stack,
.detail-price-stack {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.original-price {
    color: #8d97a8;
    font-size: 11px;
    font-weight: 800;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.sale-price {
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

.product-card .sale-kicker {
    min-height: 20px;
    padding: 0 7px;
    font-size: 9px;
}

.product-card .original-price {
    font-size: 10px;
}

.product-card .sale-price {
    font-size: 14px;
}

.product-detail-price.is-sale {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border: 1px solid rgba(79,134,255,0.24);
    border-radius: 999px;
    background: rgba(46,103,199,0.1);
    color: #ffffff;
}

.product-detail-price.is-sale .detail-price-stack {
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.product-price.is-out-of-stock,
.product-detail-price.is-out-of-stock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 92, 92, 0.4);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 92, 92, 0.18), rgba(46,103,199,0.1)),
        rgba(255,255,255,0.04);
    color: #ffd3d3;
    box-shadow:
        0 12px 28px rgba(255, 92, 92, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.product-stock-status,
.stock-status-content {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mini-swatch.is-out-of-stock,
.color-swatch.is-out-of-stock {
    position: relative;
    overflow: hidden;
}

.mini-swatch.is-out-of-stock::after,
.color-swatch.is-out-of-stock::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -18%;
    width: 2px;
    height: 136%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 0 0 1px rgba(12,16,22,0.28);
    transform: rotate(45deg);
    transform-origin: center;
}

.product-card button {
    min-height: 38px;
    padding: 0 18px;

    background: #1f4e9d;
    color: #ffffff;

    border: 1px solid #2e67c7;
    border-radius: 7px;

    font-size: 13px;
    font-weight: 700;
    cursor: pointer;

    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-card button:hover {
    background: #2e67c7;
}

/* =========================
   CTA
========================= */
.cta {
    position: relative;
    text-align: center;

    padding: 80px 0;
    background: linear-gradient(180deg, #11151c 0%, #0d0f14 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta h2 {
    font-size: clamp(26px, 4vw, 40px);
    margin-bottom: 24px;
}

/* =========================
   FOOTER
========================= */
.footer {
    padding: 28px 0;
    text-align: center;

    background: #090b0f;
    color: #777f8d;

    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        background-position: 70% center;
    }
}

@media (max-width: 760px) {
    .header-inner {
        min-height: 66px;
    }

    .nav {
        display: none;
    }

    .btn-outline {
        display: none;
    }

    .hero {
        min-height: 92vh;
        padding-top: 66px;
        background-position: 70% center;
    }

    .hero::before {
        background:
            linear-gradient(
                to bottom,
                rgba(13, 15, 20, 0.82) 0%,
                rgba(13, 15, 20, 0.78) 45%,
                rgba(13, 15, 20, 0.95) 100%
            );
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .products {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .container {
        width: 92%;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .btn {
        width: 100%;
    }

    .hero-buttons {
        width: 100%;
    }

    .product-card img {
        height: 180px;
    }
}


.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}



/* =========================
   PRODUCT GRID
========================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* =========================
   PRODUCT CARD
========================= */

.product-card {
    position: relative;

    background:
        radial-gradient(circle at 74% 43%, rgba(46,103,199,0.24), transparent 24%),
        radial-gradient(circle at 50% 42%, rgba(46,103,199,0.08), transparent 48%),
        linear-gradient(180deg, #111722 0%, #07101c 100%);

    border: 1px solid rgba(143,166,202,0.3);

    border-radius: 22px;
    padding: 0;

    overflow: hidden;

    transition: transform 0.2s ease, border-color 0.2s ease;

    box-shadow:
        0 14px 30px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.04);

    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (hover: hover) and (pointer: fine) {
    .product-card {
        cursor: pointer;
    }
}

/* top blue accent */
.product-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        #2e67c7,
        transparent
    );

    opacity: 0;
    transition: opacity 0.2s ease;
}

/* hover */
.product-card:hover {
    transform: translateY(-4px);

    border-color: rgba(79,134,255,0.62);
}

.product-card:hover::before {
    opacity: 1;
}

/* =========================
   IMAGE
========================= */

/* =========================
   IMAGE AREA
========================= */

.product-image-wrap {
    position: relative;

    min-height: 312px;
    padding: 42px 18px 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.product-image-wrap::before {
    content: "";
    position: absolute;
    width: min(74%, 320px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid rgba(79,134,255,0.58);
    background:
        radial-gradient(circle at 67% 70%, rgba(46,103,199,0.42), transparent 34%),
        radial-gradient(circle at 50% 50%, rgba(46,103,199,0.07), transparent 64%);
    box-shadow:
        0 0 24px rgba(46,103,199,0.35),
        inset 0 0 30px rgba(46,103,199,0.1);
    z-index: 0;
}

.product-image-wrap::after {
    display: none;
}

.product-card-top {
    position: absolute;
    top: 16px;
    left: 18px;
    right: 18px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
}

.sale-corner-badge {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 5;
    display: grid;
    place-items: center;
    min-width: 48px;
    width: auto;
    height: 30px;
    padding: 1px 9px 0;
    border: 1px solid rgba(255,224,161,0.5);
    border-radius: 999px;
    background:
        linear-gradient(180deg, #ffbf64 0%, #e58b24 100%);
    color: #101722;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.02em;
    line-height: 1;
    text-align: center;
    box-sizing: border-box;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.42);
}

.product-card .sale-corner-badge {
    display: grid;
    margin-bottom: 0;
}

/* product image */
.product-image-wrap img {
    position: relative;
    z-index: 3;

    width: 92%;
    max-width: 330px;
    height: 180px;

    object-fit: contain;

    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;

    transition: transform 0.2s ease;
    will-change: transform;
}

/* hover */
.product-card:hover img {
    transform: scale(1.025);
}



/* =========================
   CONTENT
========================= */

.product-content {
    padding: 4px 18px 18px;
    display: grid;
    flex: 1;
    grid-template-rows: 54px 38px 58px 58px 70px 38px;
    row-gap: 6px;
    align-content: start;
}

.product-category {
    display: inline-block;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    color: #4f86ff;

    margin-top: 16px;
    margin-bottom: 10px;
}

.product-content h3 {
    font-size: 20px;
    font-weight: 800;

    margin-bottom: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.15;
    overflow-wrap: anywhere;
    max-height: 48px;
    overflow: hidden;
}

.product-content p {
    color: #aab2bf;

    font-size: 12.5px;
    line-height: 1.38;

    margin-bottom: 0;
    min-height: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    align-self: start;
}

/* =========================
   SPECS
========================= */

.product-specs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;

    margin-bottom: 0;
    min-height: 0;
    align-content: center;
    align-items: center;
    overflow: hidden;
}

.product-specs span {
    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.06);

    padding: 5px 8px;

    border-radius: 999px;

    font-size: 10.5px;
    line-height: 1.15;
    color: #d4d8df;
    margin-bottom: 0;
    max-width: 100%;
}

html[lang="ka"] .product-content {
    grid-template-rows: 62px 38px 58px 58px 76px 38px;
    row-gap: 5px;
}

html[lang="ka"] .product-content h3 {
    font-size: 17px;
    line-height: 1.16;
    max-height: 56px;
}

html[lang="ka"] .product-content p {
    font-size: 11.5px;
    line-height: 1.34;
}

html[lang="ka"] .product-specs {
    gap: 8px;
}

html[lang="ka"] .product-specs span {
    padding: 5px 7px;
    font-size: 9.5px;
}

/* =========================
   BUTTON
========================= */

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 38px;

    border-radius: 10px;

    background: linear-gradient(
        180deg,
        #2e67c7 0%,
        #1f4e9d 100%
    );

    color: #ffffff;

    font-weight: 700;
    font-size: 12.5px;

    transition: transform 0.2s ease, background 0.2s ease;
    margin-top: 0;
    align-self: end;
}

.product-btn:hover {
    transform: translateY(-2px);
}

/* =========================
   CARD OPTIONS + CONTACT
========================= */

.card-option-block {
    display: grid;
    grid-template-rows: 18px 30px;
    align-content: start;
    margin-bottom: 0;
    align-self: start;
}

.card-option-label {
    display: block;
    margin-bottom: 5px;
    color: #7f8ba0;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-option-row,
.card-color-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    min-height: 30px;
}

.product-card .mini-option {
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: #d4d8df;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.product-card .mini-option.is-active {
    border-color: #4f86ff;
    background: #1f4e9d;
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(46,103,199,0.16);
}

.product-card .mini-option:hover {
    border-color: rgba(79,134,255,0.8);
    background: rgba(46,103,199,0.18);
    color: #ffffff;
}

.product-card .mini-swatch {
    width: 24px;
    height: 24px;
    min-height: 0;
    padding: 0;
    border: 2px solid rgba(255,255,255,0.16);
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.3), transparent),
        var(--swatch-color);
    cursor: pointer;
    flex: 0 0 auto;
}

.product-card .mini-swatch.is-active,
.product-card .mini-swatch:hover {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.3), transparent),
        var(--swatch-color);
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.16);
}

.product-detail-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 20px;
}

.contact-section {
    position: relative;
    padding: 90px 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(46,103,199,0.14), transparent 34%),
        linear-gradient(180deg, #11151c 0%, #0d0f14 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    content-visibility: auto;
    contain-intrinsic-size: auto 620px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 46px;
    align-items: start;
}

.contact-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.contact-copy p {
    max-width: 540px;
    color: #aeb6c4;
    font-size: 16px;
    line-height: 1.8;
}

.contact-info {
    display: grid;
    gap: 14px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(23,28,38,0.88), rgba(15,18,25,0.96));
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-row:hover {
    border-color: rgba(46,103,199,0.7);
    transform: translateY(-2px);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(46,103,199,0.18);
    color: #8fb8ff;
    font-size: 20px;
    font-weight: 800;
}

.contact-row small {
    display: block;
    margin-bottom: 5px;
    color: #7f8ba0;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-row strong {
    color: #ffffff;
    font-size: 16px;
}

.social-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 6px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-button svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.social-button.whatsapp {
    background: #1fa855;
    color: #ffffff;
}

.social-button.facebook {
    background: #1f4e9d;
    color: #ffffff;
}

.social-button:hover {
    transform: translateY(-2px);
}

/* =========================
   PRODUCT DETAIL PAGE
========================= */

.product-detail-hero {
    position: relative;
    min-height: 100vh;
    padding: 130px 0 80px;
    background:
        radial-gradient(circle at 72% 28%, rgba(46, 103, 199, 0.16), transparent 30%),
        linear-gradient(180deg, #11151c 0%, #0d0f14 100%);
    overflow: hidden;
}

.product-lines {
    opacity: 0.1;
}

.product-detail-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: clamp(26px, 4vw, 48px);
    align-items: start;
}

.product-gallery {
    min-width: 0;
    width: 100%;
}

.main-product-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    aspect-ratio: 4 / 3;
    padding: 0;
    border: 1px solid rgba(143,166,202,0.3);
    border-radius: 18px;
    background: #2b3038;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
}

.main-product-image::before {
    display: none;
}

.main-product-image::after {
    display: none;
}

.main-product-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    filter: none;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 50%;
    background: rgba(12, 16, 24, 0.54);
    color: #ffffff;
    font: inherit;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.34;
    transform: translateY(-50%);
    transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.gallery-nav-prev {
    left: 18px;
}

.gallery-nav-next {
    right: 18px;
}

.main-product-image:hover .gallery-nav,
.gallery-nav:focus-visible,
.gallery-nav:active {
    opacity: 1;
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
    border-color: rgba(79,134,255,0.65);
    background: rgba(31, 78, 157, 0.78);
    outline: none;
}

.gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 120px;
    gap: 14px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.gallery-thumb {
    height: 88px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: #2b3038;
    cursor: pointer;
    transition: border-color 0.2s ease;
    overflow: hidden;
}

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

.gallery-thumb:hover,
.gallery-thumb.is-active {
    border-color: rgba(46,103,199,0.85);
    background: rgba(46,103,199,0.13);
}

.product-detail-panel {
    min-width: 0;
    padding: 8px 0;
}

.product-detail-panel h1 {
    max-width: 12ch;
    margin: 0 0 20px;
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: 0;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

html[lang="ka"] .product-detail-panel h1 {
    max-width: 14ch;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.18;
}

.product-description-section {
    margin-top: 22px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.028)),
        rgba(13, 18, 28, 0.58);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.product-description-section h2 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 800;
}

.product-description {
    white-space: pre-line;
    color: #aeb6c4;
    font-size: 16px;
    line-height: 1.8;
}

.product-options {
    display: grid;
    gap: 24px;
    margin: 30px 0;
}

.installment-card,
.purchase-note {
    margin-top: 26px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.035)),
        rgba(13, 18, 28, 0.72);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.installment-card h2,
.purchase-note h2 {
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 800;
}

.installment-card h2 {
    text-align: center;
}

.bank-logo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.bank-logo {
    display: grid;
    flex: 0 1 calc((100% - 30px) / 4);
    justify-items: center;
    align-content: center;
    gap: 10px;
    min-height: 82px;
    padding: 12px 8px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.045);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.bank-logo img {
    width: 100%;
    max-width: 104px;
    height: 34px;
    object-fit: contain;
}

.installment-card p,
.purchase-copy {
    color: #aeb6c4;
    font-size: 14px;
    line-height: 1.7;
}

.installment-card p {
    text-align: center;
}

.purchase-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
}

.purchase-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.045);
    color: #ffffff;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.purchase-action:hover {
    transform: translateY(-2px);
    border-color: rgba(79,134,255,0.55);
    background: rgba(46,103,199,0.12);
}

.purchase-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(180deg, #2e67c7 0%, #1f4e9d 100%);
    color: #ffffff;
}

.purchase-icon svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.purchase-action span span {
    display: block;
    margin-bottom: 4px;
    color: #8f98a8;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.purchase-action strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.purchase-action[href^="tel:"] strong {
    white-space: nowrap;
}

.option-label {
    display: block;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.option-row,
.color-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-button {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: #d4d8df;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.option-button:hover,
.option-button.is-active {
    color: #ffffff;
    border-color: rgba(46,103,199,0.85);
    background: rgba(46,103,199,0.22);
}

.color-swatch {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.18);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.25), transparent),
        var(--swatch-color);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.color-swatch:hover {
    transform: translateY(-2px);
    border-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.14);
}

.color-swatch.is-active {
    border-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.14);
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 30px;
}

.product-spec-section {
    position: relative;
    z-index: 3;
    margin-top: 34px;
}

.section-heading-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 16px;
}

.section-heading-row h2 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
}

.section-heading-row p {
    max-width: 420px;
    color: #8f98a8;
    line-height: 1.7;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.spec-item {
    min-height: 118px;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(23,28,38,0.95), rgba(15,18,25,0.98));
}

.spec-item span {
    display: block;
    margin-bottom: 12px;
    color: #8fb8ff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.spec-item strong {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.25;
}

@media (max-width: 1120px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        display: contents;
    }

    .main-product-image {
        order: 1;
    }

    .gallery-track {
        order: 2;
    }

    .product-detail-panel {
        order: 3;
    }

    .product-description-section {
        order: 4;
    }

    .main-product-image {
        min-height: 0;
        max-width: 860px;
        margin: 0 auto;
    }

    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .product-detail-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .main-product-image {
        min-height: 0;
        padding: 0;
    }

    .main-product-image::before {
        display: none;
    }

    .main-product-image::after {
        display: none;
    }

    .main-product-image img {
        width: 100%;
        height: 100%;
        max-height: none;
    }

    .product-detail-panel h1 {
        max-width: 18ch;
        font-size: 34px;
    }

    html[lang="ka"] .product-detail-panel h1 {
        max-width: 20ch;
        font-size: 31px;
    }

    .product-options {
        margin: 24px 0 0;
    }

    .installment-card {
        margin-top: 24px;
    }

    .product-description-section {
        padding: 18px;
    }

    .section-heading-row {
        display: block;
    }

    .section-heading-row p {
        margin-top: 12px;
    }
}

@media (max-width: 560px) {
    .gallery-track {
        grid-auto-columns: 96px;
    }

    .gallery-thumb {
        height: 76px;
    }

    .detail-actions .btn {
        width: 100%;
    }

    .purchase-action[href^="tel:"] strong {
        white-space: normal;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }
}

/* Final responsive overrides */
@media (max-width: 1000px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .header-inner {
        gap: 12px;
    }

    .logo img {
        height: 58px;
    }

    .header-actions {
        margin-left: auto;
    }

    .header-actions .btn-outline {
        display: inline-flex;
        min-height: 36px;
        padding: 0 12px;
        font-size: 12px;
    }

    .language-switcher button {
        min-width: 32px;
        height: 28px;
    }

    .hero {
        min-height: 100svh;
        background-size: cover;
        background-position: center bottom;
    }

    .hero-inner {
        display: flex;
        align-items: center;
        min-height: calc(100svh - 66px);
        padding-bottom: 28px;
    }

    .hero-bg-lines {
        opacity: 0.16;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .product-card {
        border-radius: 16px;
        min-height: 0;
    }

    .product-image-wrap {
        min-height: 184px;
        padding: 42px 8px 0;
    }

    .product-image-wrap::before {
        width: 132px;
        height: 132px;
    }

    .product-image-wrap::after {
        left: 12%;
        right: 12%;
        bottom: 16px;
        height: 28px;
    }

    .product-card-top {
        top: 14px;
        left: 12px;
        right: 12px;
    }

    .sale-corner-badge {
        top: 12px;
        right: 10px;
        min-width: 42px;
        height: 26px;
        padding: 1px 7px 0;
        font-size: 11px;
        line-height: 1;
    }

    .product-image-wrap img {
        width: 118%;
        height: 128px;
    }

    .product-content {
        padding: 0 10px 12px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .product-content h3 {
        font-size: 16px;
        line-height: 1.2;
        min-height: 46px;
        max-height: 46px;
        margin-top: 0;
        margin-bottom: 0;
        justify-content: center;
        text-align: center;
    }

    html[lang="ka"] .product-content {
        gap: 8px;
    }

    html[lang="ka"] .product-content h3 {
        font-size: 13px;
        line-height: 1.25;
        min-height: 56px;
        max-height: 56px;
    }

    .product-category {
        display: none;
    }

    .product-content p {
        display: none;
    }

    .card-option-block {
        display: block;
        min-height: 24px;
        margin-bottom: 0;
    }

    .card-option-label {
        display: none;
    }

    .card-option-row,
    .card-color-row {
        display: flex;
        justify-content: center;
        gap: 6px;
    }

    .card-color-row {
        min-height: 24px;
    }

    .product-card .mini-option {
        min-height: 26px;
        padding: 0 6px;
        font-size: 10px;
        width: 100%;
    }

    .product-card .mini-swatch {
        width: 20px;
        height: 20px;
    }

    .product-meta-row {
        gap: 6px;
        margin-bottom: 0;
        min-height: 42px;
    }

    .power-badge {
        min-height: 24px;
        padding: 0 8px;
        font-size: 9px;
    }

    .product-price {
        width: auto;
        max-width: 100%;
        font-size: 11px;
        text-align: center;
    }

    .product-price.is-sale {
        width: 100%;
        gap: 4px;
        padding: 5px 7px;
        border-radius: 12px;
    }

    .product-price.is-out-of-stock {
        width: 100%;
        min-height: 30px;
        padding: 5px 8px;
        border-radius: 12px;
    }

    .product-stock-status {
        font-size: 9px;
    }

    .product-card .product-price.is-sale .sale-kicker {
        display: none;
    }

    .product-card .product-price .price-stack {
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 6px;
    }

    .sale-kicker {
        min-height: 20px;
        padding: 0 6px;
        font-size: 8px;
    }

    .original-price {
        font-size: 9px;
    }

    .sale-price {
        font-size: 10px;
    }

    .product-specs {
        display: none;
    }

    .product-specs span {
        padding: 5px 6px;
        font-size: 9px;
        text-align: center;
    }

    .product-btn {
        min-height: 34px;
        border-radius: 10px;
        font-size: 11px;
        margin-top: 0;
    }

    .contact-section {
        padding: 68px 0;
    }

    .contact-row {
        padding: 15px;
    }
}

@media (max-width: 560px) {
    .container {
        width: 94%;
    }

    .header-actions {
        gap: 6px;
    }

    .header-actions .btn {
        width: auto;
    }

    .header-actions .btn-outline {
        padding: 0 9px;
        font-size: 11px;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text p {
        font-size: 14px;
        line-height: 1.65;
    }

    .social-actions {
        grid-template-columns: 1fr;
    }

    .contact-row strong {
        font-size: 14px;
    }

    .purchase-actions {
        grid-template-columns: 1fr;
    }

    .bank-logo-row {
        justify-content: center;
    }

    .bank-logo {
        flex-basis: calc((100% - 10px) / 2);
    }
}

@media (max-width: 390px) {
    .logo img {
        height: 50px;
    }

    .language-switcher button {
        min-width: 28px;
        font-size: 11px;
    }

    .header-actions .btn-outline {
        min-height: 32px;
        padding: 0 8px;
    }

    .product-grid {
        gap: 10px;
    }

    .product-content {
        padding: 0 9px 12px;
    }

    .product-image-wrap img {
        height: 104px;
    }

    .product-content h3 {
        font-size: 14px;
        min-height: 36px;
        max-height: 42px;
    }

    html[lang="ka"] .product-content {
        gap: 8px;
    }

    html[lang="ka"] .product-content h3 {
        font-size: 12px;
        min-height: 60px;
        max-height: 60px;
    }

    .product-specs span {
        font-size: 8px;
    }
}

/* =========================
   LIGHT THEME
========================= */
html[data-theme="light"] body {
    background: #f5f8fc;
    color: #101722;
}

html[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(21, 43, 73, 0.1);
}

html[data-theme="light"] .logo {
    color: #101722;
}

html[data-theme="light"] .nav a {
    color: #4b5a70;
}

html[data-theme="light"] .nav a:hover {
    color: #174c9f;
}

html[data-theme="light"] .language-switcher,
html[data-theme="light"] .theme-toggle {
    background: rgba(12, 35, 65, 0.05);
    border-color: rgba(21, 43, 73, 0.12);
}

html[data-theme="light"] .language-switcher button {
    color: #5f6d80;
}

html[data-theme="light"] .language-switcher button.is-active {
    background: #1f64c8;
    color: #ffffff;
}

html[data-theme="light"] .theme-toggle {
    color: #40516a;
}

html[data-theme="light"] .theme-toggle:hover {
    color: #174c9f;
    border-color: rgba(31, 100, 200, 0.35);
}

html[data-theme="light"] .theme-toggle-track {
    background: #dce8f8;
    box-shadow: inset 0 0 0 1px rgba(31, 100, 200, 0.2);
}

html[data-theme="light"] .theme-toggle-thumb {
    left: 20px;
    background: #1f64c8;
}

html[data-theme="light"] .btn-primary {
    background: #1f64c8;
    border-color: #1f64c8;
}

html[data-theme="light"] .btn-primary:hover {
    background: #174c9f;
}

html[data-theme="light"] .btn-secondary {
    background: rgba(255, 255, 255, 0.76);
    color: #18314f;
    border-color: rgba(24, 49, 79, 0.2);
}

html[data-theme="light"] .btn-secondary:hover {
    color: #174c9f;
    border-color: rgba(31, 100, 200, 0.5);
}

html[data-theme="light"] .btn-outline {
    color: #174c9f;
    border-color: rgba(31, 100, 200, 0.35);
    background: rgba(31, 100, 200, 0.08);
}

html[data-theme="light"] .btn-outline:hover {
    background: #1f64c8;
    color: #ffffff;
}

html[data-theme="light"] .hero::before {
    background:
        radial-gradient(circle at 78% 52%, rgba(31, 100, 200, 0.16), transparent 30%),
        linear-gradient(
            to right,
            rgba(248, 251, 255, 0.98) 0%,
            rgba(248, 251, 255, 0.88) 34%,
            rgba(248, 251, 255, 0.48) 64%,
            rgba(248, 251, 255, 0.08) 100%
        );
}

html[data-theme="light"] .hero-bg-lines path {
    stroke: #1f64c8;
}

html[data-theme="light"] .hero-text h1 span,
html[data-theme="light"] .product-category,
html[data-theme="light"] .spec-item span {
    color: #1f64c8;
}

html[data-theme="light"] .hero-text p,
html[data-theme="light"] .contact-copy p,
html[data-theme="light"] .product-content p,
html[data-theme="light"] .product-description,
html[data-theme="light"] .section-heading-row p {
    color: #536176;
}

html[data-theme="light"] .products {
    background:
        radial-gradient(circle at top center, rgba(31, 100, 200, 0.12), transparent 36%),
        #f5f8fc;
}

html[data-theme="light"] .product-card,
html[data-theme="light"] .contact-row,
html[data-theme="light"] .main-product-image,
html[data-theme="light"] .spec-item {
    border-color: rgba(28, 55, 90, 0.11);
    box-shadow: 0 16px 42px rgba(31, 67, 110, 0.1);
}

html[data-theme="light"] .product-card {
    background:
        radial-gradient(circle at 72% 52%, rgba(31,100,200,0.09), transparent 28%),
        radial-gradient(circle at 50% 43%, rgba(31,100,200,0.045), transparent 52%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,246,253,0.98));
    border-color: rgba(140, 159, 186, 0.34);
    box-shadow:
        0 24px 58px rgba(31, 67, 110, 0.14),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

html[data-theme="light"] .contact-row,
html[data-theme="light"] .spec-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(239,245,252,0.98));
}

html[data-theme="light"] .product-card:hover,
html[data-theme="light"] .contact-row:hover {
    border-color: rgba(31, 100, 200, 0.45);
}

html[data-theme="light"] .main-product-image {
    background: #e1e4e9;
    border-color: rgba(28, 55, 90, 0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

html[data-theme="light"] .product-image-wrap::before {
    border-color: rgba(31,100,200,0.38);
    background:
        radial-gradient(circle at 67% 70%, rgba(31,100,200,0.09), transparent 34%),
        radial-gradient(circle at center, rgba(31,100,200,0.035), transparent 66%);
    box-shadow:
        0 0 22px rgba(31,100,200,0.14),
        inset 0 0 28px rgba(31,100,200,0.05);
}

html[data-theme="light"] .main-product-image::before,
html[data-theme="light"] .main-product-image::after {
    display: none;
}

html[data-theme="light"] .product-image-wrap::after {
    display: none;
}

html[data-theme="light"] .product-image-wrap img {
    filter: none;
}

html[data-theme="light"] .main-product-image img {
    filter: none;
}

html[data-theme="light"] .gallery-nav {
    background: rgba(255,255,255,0.7);
    border-color: rgba(28, 55, 90, 0.18);
    color: #174c9f;
}

html[data-theme="light"] .gallery-nav:hover,
html[data-theme="light"] .gallery-nav:focus-visible {
    background: #1f64c8;
    border-color: #1f64c8;
    color: #ffffff;
}

html[data-theme="light"] .product-card span,
html[data-theme="light"] .contact-row strong,
html[data-theme="light"] .spec-item strong,
html[data-theme="light"] .option-label {
    color: #101722;
}

html[data-theme="light"] .product-price,
html[data-theme="light"] .product-detail-price {
    color: #1f64c8;
}

html[data-theme="light"] .product-price.is-sale,
html[data-theme="light"] .product-detail-price.is-sale {
    border-color: rgba(210, 126, 28, 0.3);
    background:
        linear-gradient(135deg, rgba(255,177,77,0.18), rgba(31,100,200,0.08)),
        rgba(255,255,255,0.76);
    color: #101722;
}

html[data-theme="light"] .product-price.is-out-of-stock,
html[data-theme="light"] .product-detail-price.is-out-of-stock {
    border-color: rgba(194, 52, 52, 0.28);
    background:
        linear-gradient(135deg, rgba(255, 92, 92, 0.16), rgba(31,100,200,0.06)),
        rgba(255,255,255,0.78);
    color: #9b1f1f;
}

html[data-theme="light"] .sale-kicker {
    background: linear-gradient(180deg, #ffbf64, #e58b24);
    border-color: rgba(210, 126, 28, 0.32);
    color: #101722;
}

html[data-theme="light"] .sale-corner-badge {
    color: #101722;
}

html[data-theme="light"] .original-price {
    color: #7c8798;
}

html[data-theme="light"] .sale-price {
    color: #101722;
}

html[data-theme="light"] .installment-card,
html[data-theme="light"] .purchase-note,
html[data-theme="light"] .product-description-section {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(239,245,252,0.98));
    border-color: rgba(31, 100, 200, 0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

html[data-theme="light"] .installment-card h2,
html[data-theme="light"] .purchase-note h2,
html[data-theme="light"] .product-description-section h2 {
    color: #101722;
}

html[data-theme="light"] .bank-logo,
html[data-theme="light"] .purchase-action {
    background: rgba(255,255,255,0.72);
    border-color: rgba(31, 100, 200, 0.12);
    color: #101722;
}

html[data-theme="light"] .purchase-action:hover {
    background: rgba(31, 100, 200, 0.08);
    border-color: rgba(31, 100, 200, 0.35);
}

html[data-theme="light"] .installment-card p,
html[data-theme="light"] .purchase-copy,
html[data-theme="light"] .purchase-action span span {
    color: #536176;
}

html[data-theme="light"] .purchase-action strong {
    color: #101722;
}

html[data-theme="light"] .power-badge {
    background: rgba(31, 100, 200, 0.1);
    border-color: rgba(31, 100, 200, 0.2);
    color: #174c9f;
}

html[data-theme="light"] .product-card .power-badge {
    color: #174c9f;
}

html[data-theme="light"] .power-badge.gas {
    background: rgba(194, 116, 27, 0.1);
    border-color: rgba(194, 116, 27, 0.22);
    color: #9a5b12;
}

html[data-theme="light"] .product-card .power-badge.gas {
    color: #9a5b12;
}

html[data-theme="light"] .product-specs span,
html[data-theme="light"] .product-card .mini-option,
html[data-theme="light"] .option-button,
html[data-theme="light"] .gallery-thumb {
    background: rgba(31, 100, 200, 0.06);
    border-color: rgba(31, 100, 200, 0.12);
    color: #41536c;
}

html[data-theme="light"] .product-card .mini-option.is-active,
html[data-theme="light"] .product-card .mini-option:hover,
html[data-theme="light"] .option-button:hover,
html[data-theme="light"] .option-button.is-active,
html[data-theme="light"] .gallery-thumb:hover,
html[data-theme="light"] .gallery-thumb.is-active {
    background: rgba(31, 100, 200, 0.14);
    border-color: rgba(31, 100, 200, 0.55);
    color: #174c9f;
}

html[data-theme="light"] .product-card .mini-option.is-active {
    background: #1f64c8;
    color: #ffffff;
}

html[data-theme="light"] .product-card .mini-swatch,
html[data-theme="light"] .color-swatch {
    border-color: rgba(28, 55, 90, 0.24);
}

html[data-theme="light"] .product-card .mini-swatch.is-active,
html[data-theme="light"] .product-card .mini-swatch:hover,
html[data-theme="light"] .color-swatch:hover {
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(28, 55, 90, 0.16);
}

html[data-theme="light"] .color-swatch.is-active {
    border-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(28, 55, 90, 0.16);
}

html[data-theme="light"] .product-btn {
    background: linear-gradient(180deg, #2878df 0%, #1f64c8 100%);
}

html[data-theme="light"] .contact-section {
    background:
        radial-gradient(circle at 20% 0%, rgba(31,100,200,0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
    border-top-color: rgba(21, 43, 73, 0.1);
}

html[data-theme="light"] .contact-icon {
    background: rgba(31,100,200,0.1);
    color: #1f64c8;
}

html[data-theme="light"] .contact-row small,
html[data-theme="light"] .card-option-label {
    color: #637188;
}

html[data-theme="light"] .product-detail-hero {
    background:
        radial-gradient(circle at 72% 28%, rgba(31, 100, 200, 0.14), transparent 31%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

html[data-theme="light"] .footer {
    background: #e9f0f8;
    color: #5f6d80;
}

@media (max-width: 760px) {
    html[data-theme="light"] .hero::before {
        background:
            linear-gradient(
                to bottom,
                rgba(248, 251, 255, 0.78) 0%,
                rgba(248, 251, 255, 0.72) 45%,
                rgba(248, 251, 255, 0.96) 100%
            );
    }

    .theme-toggle {
        min-height: 34px;
        padding: 0 8px;
    }

    .theme-toggle-label {
        display: none;
    }
}
