.main-product-page {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.main-product-page.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.gallery-mobile {
    display: none;
}

.mobile-main-img-wrap {
    display: none;
    position: relative;
}

.mobile-list-img-wrap {
    display: none;
}

.section-product {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 48px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 30px 80px;
}

.gallery {
    position: sticky;
    top: calc(var(--header-h, 50px) + 24px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: calc(100vh - var(--header-h, 50px) - 48px);
    flex: 4;
    min-width: 0;
    /* max-width: 48%; */

}

.info-wrap {
    padding-top: 6px;
    min-width: 0;

    flex: 6;
}


.main-img-wrap {
    border-radius: 24px;
    border: 1px solid var(--border);
    overflow: hidden;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    position: relative;
    background: var(--surface);
    box-shadow: 0 0 48px 0 var(--glow);
    animation: pulse 3s ease-in-out infinite;
    will-change: box-shadow;

    aspect-ratio: 1;
    /* flex-grow: 0;
    flex-shrink: 1; */
    min-height: 0;

    flex: 1 1 auto;
}

.main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.main-img-wrap:hover img {
    transform: scale(1.04);
}

.main-img-wrap .jsp {
    width: 100%;
    height: 100%;
    transform: translateY(-110%);
}

.main-img-wrap .jsp.active {
    animation: popImg 0.3s ease-out forwards;
}

.badge-name-img {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 4px 10px;
    border: 1px solid var(--border);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    transform: translateX(-110%);
}

.badge-name-img.active {
    animation: popB 0.3s ease-out forwards;
}


.list-img-wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    max-height: 100px;
    margin-top: 15px;

    flex: 0 0 auto;

}

.img-wrap {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    background: var(--surface);
    aspect-ratio: 1;
    transition: border-color 0.2s;
    position: relative;
}

.img-wrap.active,
.img-wrap:hover {
    border-color: var(--gold);
}

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

/* BOOOOOOOX INFO ZBI */

.list-tag-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 16px;
}

.tag {
    border-radius: 50px;
    /* font-size: 14px; */
    font-size: 0.7rem;

    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 12px;
    letter-spacing: 0.08rem;
    white-space: nowrap;

}

.tag-1 {
    background: rgba(0, 212, 255, 0.12);
    color: var(--cyan);
    border: 1px solid rgba(0, 212, 255, 0.25);
}

.tag-2 {
    background: rgba(155, 92, 245, 0.12);
    color: var(--purple-glow);
    border: 1px solid rgba(155, 92, 245, 0.25);
}

.tag-promo {
    background: rgba(240, 192, 64, 0.12);
    color: var(--gold);
    border: 1px solid rgba(240, 192, 64, 0.25);
}

.title-product {
    font-family: "Cinzel", serif;
    /* font-size: 2.1rem; */
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 12px;

    /* max-width: 450px; */
}

.title-product em::after {
    display: block;
    content: "";
}

.subtitle-product {
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.rating-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 19px;

    margin-bottom: 24px;
}

.stars-wrap {
    display: flex;
    gap: 2px;
    color: var(--gold);
    font-size: 1rem;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.rating-count a {
    color: var(--cyan);
    text-decoration: none;
}

.rating-count a:hover {
    text-decoration: underline;
}

.price-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 8px;
}

.price-main {
    font-family: "Cinzel", serif;
    /* font-size: 2.4rem; */
    font-size: clamp(1.8rem, 3vw, 2.3rem);

    font-weight: 700;
    color: var(--gold);
}

.price-old {
    font-size: 1.1rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.badge-promo {
    background: var(--red);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.info-liv-wrap {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.info-liv-wrap span {
    color: var(--green);
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 22px 0;
}

/* :::::::::::::::::::::::::::::::: SELECTION ZBI */

.header-select {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

#nameVariantSelected {
    font-weight: 500;
    color: var(--text);
}

.variant-list-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.variant-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface2);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 78px;
    color: var(--text-dim);
    font-size: 0.80rem;

}


.variant-btn.active {
    border-color: var(--gold);
    background: rgba(240, 192, 64, 0.08);
}

.variant-btn:hover {
    border-color: rgba(240, 192, 64, 0.5);
}

.name-variant {
    text-transform: capitalize;
}


.qty-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.qty-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

.qty-ctrl {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.qty-btn {
    background: var(--surface2);
    border: none;
    color: var(--text);
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--surface);
    color: var(--gold);
}

.qty-number {
    width: 44px;
    text-align: center;
    font-size: 0.95rem;
    background: transparent;
    color: var(--text);
    border: none;
    outline: none;
}

.qty-stock {
    font-size: 0.78rem;
    color: var(--green);
}


.cta-wrap {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    height: 49px;
}

.btn-addtocart {
    flex: 2;
    background: linear-gradient(135deg, #f0c040, #e8a020);
    color: #05060a;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    padding: 9px 10px;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.btn-addtocart::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn-addtocart:hover::after {
    opacity: 1;
}

.btn-addtocart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 192, 64, 0.4);
}

.btn-addtocart.adder {
    transform: translateY(0);
    box-shadow: none;
}

.btn-buy-flash {
    min-width: 75px;
    background: linear-gradient(135deg, #f0c040, #e8a020);
    color: #05060a;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;

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

.btn-buy-flash::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn-buy-flash:hover::after {
    opacity: 1;
}

.btn-buy-flash:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 192, 64, 0.4);
}

.btn-buy-flash.load {
    transform: translateY(0);
}

.btn-buy-flash.load .neon-loader {
    display: block;
}

.btn-buy-flash.load #txtBuy {
    display: none;
}

.neon-loader {
    animation: spin 1s linear infinite;
    display: none;
}

.loader-track {
    fill: none;
    stroke: rgba(255, 255, 255, .08);
    stroke-width: 8;
}

.loader-ring {
    fill: none;
    stroke: url(#neonGradient);
    stroke-width: 8;
    stroke-linecap: round;

    stroke-dasharray: 180;
    stroke-dashoffset: 40;

}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.btn-like {
    background: var(--surface2);
    border: 1.5px solid var(--border);
    color: var(--text-dim);
    font-size: 1.5rem;
    border-radius: 12px;
    padding: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    height: 100%;
    min-width: 75px;
}


.btn-like:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 30, 30, 0.25);
}

.btn-like svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.btn-like span {
    font-size: 0.7rem;
    display: block;
    line-height: 1;
}

.btn-like:hover {
    border-color: var(--red);
    /* color: var(--red); */
}

.btn-like.active {
    /* border-color: var(--red); */
    color: var(--red);
}

.trust-wrap {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.70rem;
    color: var(--text-dim);
    background: var(--surface2);
    border: 1px solid var(--border);
    padding: 5px 10px;
    border-radius: 8px;
    max-height: 28px;
}

.trust-item span {
    font-size: 0.90rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* :::::::::::::::::::::::::::::::::::::::::::::: */
.sect-tab {
    padding-top: 15px;
}

.tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 36px;
}

.tab-btn {
    background: none;
    border: none;
    outline: none;
    color: var(--text-dim);
    font-family: "Inter", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s;
}

.tab-btn.active {
    color: var(--gold);
    border-color: var(--gold);
}

.tab-btn:hover {
    color: var(--text);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

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

.header-feature-card {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.2s;
}

.feature-card:hover {
    border-color: rgba(59, 143, 245, 0.4);
}

.feature-card-img {
    margin-bottom: 12px;
    display: block;
    aspect-ratio: 1;
    width: 75px;
}

.feature-card h3 {
    font-family: "Cinzel", serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    color: var(--text);

    text-align: center;
}

/* .feature-card-body-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
} */

.feature-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.2rem;
    text-align: center;
}

.feature-card .divider {
    margin: 10px auto;
}

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

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

.specs-table td {
    padding: 14px 0;
    font-size: 0.85rem;
}

.specs-table td:first-child {
    color: var(--text-dim);
    width: 200px;
}

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

/* Reviews */
.reviews-summary {
    display: flex;
    gap: 48px;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 36px;
    margin-bottom: 28px;
    scroll-margin-block: var(--header-h);

}

.rev-score {
    text-align: center;
}

.rev-score .big {
    font-family: "Cinzel", serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.rev-score .stars {
    justify-content: center;
    margin: 6px 0 4px;
}

.rev-score small {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.rev-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.rev-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--text-dim);
}

.rev-bar-track {
    flex: 1;
    height: 6px;
    background: var(--surface2);
    border-radius: 4px;
    overflow: hidden;
}

.rev-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--gold);
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 14px;
}

.review-card:hover {
    border: 1px solid rgba(59, 143, 245, 0.4);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.info-rev-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.reviewer {
    font-weight: 500;
    font-size: 0.88rem;
    min-width: 60px;
}

.sk {
    position: relative;
    overflow: hidden;
    min-height: 15px;

}

.sk::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 212, 255, 0.4),
            transparent);
}

.sk.load::before {
    animation: shine 0.8s ease forwards;
}

@keyframes shine {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

.name-pokemon {
    font-weight: 200;
    font-size: 0.78rem;
    color: var(--blue-glow);
    min-width: 60px;
    text-transform: uppercase;
    margin-top: 5px;
    text-align: end;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-dim);
    min-width: 90px;
    text-align: end;
    text-transform: capitalize;
}

.stars-rev-wrap {
    /* margin-bottom: 8px; */
    min-width: 85px;

}

.review-body {
    font-size: 0.84rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.review-body::first-letter {
    text-transform: capitalize;
}

.btns-ctrl-review-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-ctrl-review {
    display: grid;
    place-items: center;
    text-align: center;
    outline: none;
    border: 1px solid var(--border);
    background-color: var(--surface2);
    color: var(--text);
    padding: 8px;
    border-radius: 25px;
    cursor: pointer;
}

.btn-ctrl-review:hover {
    border: 1px solid var(--gold);
    color: var(--text-dim);
    transform: scale(1.1);
}

.btn-ctrl-review.disabled {
    cursor: default;
    opacity: 0.4;
}

.btn-ctrl-review.disabled:hover {
    border: var(--border) 1px solid;
    transform: none;
}

.svgArrow {
    width: 25px;
    height: 25px;
}

.rev-bar-row span {
    width: 25px;
    text-align: end;
}

/*  */
.desc-sect {
    max-width: 1100px;
    padding-left: 60px;
    padding-right: 60px;
}

.desc-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 16px; */
    margin: 55px auto;

}


.desc-wrap:last-of-type {
    margin-bottom: 30px;
}

.desc-wrap:first-of-type {
    margin-top: 60px;
}

.desc-wrap.reverse {
    flex-direction: row-reverse;
}

.desc-info-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    z-index: 2;
    position: relative;
    margin-left: -120px;
    /* max-width: 650px; */
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.03);

    /* flex: 6 0 700px; */
    flex: 2 1 auto;

}

.desc-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 490px;
    width: 600px; */

    /* flex: 4 1 500px;
    max-height: 500px; */
    flex: 1 0 auto;
    max-width: 500px;

}


.desc-wrap.reverse .desc-info-wrap {
    margin-left: 0;
    margin-right: -120px;
}

.desc-info-wrap h3 {
    /* font-family: "Cinzel", serif; */
    font-size: 1.5rem;
    font-weight: 600;
    /* letter-spacing: 0.06em; */
    margin-bottom: 1rem;
    color: var(--text);
    /* text-align: justify; */
}

.desc-info-wrap p {
    font-size: 0.95rem;
    color: var(--text-dim);
    /* line-height: 1.3; */
    margin: 15px 0;
    text-align: justify;
}

.desc-info-wrap p strong {
    color: var(--text);
    font-weight: 600;
}


.desc-img-wrap img,
.desc-img-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.desc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.desc-cta button {
    background: linear-gradient(135deg, #f0c040, #e8a020);
    color: #05060a;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    padding: 16px 28px;
    margin: 15px auto;
    cursor: pointer;
    transition: all 0.25s;
}

.desc-cta button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(240, 192, 64, 0.4);


}

/*  */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 350px);
    gap: 20px;
    /* height: 1200px; */
}

.review-card-i {
    /* break-inside: avoid; */
    margin-bottom: 24px;

    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;

    display: flex;
    flex-direction: column;
    height: 100%;
    /* max-width: 700px;
  max-height: 450px; */
}

.review-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);

    cursor: zoom-in;
    flex: 1;
    min-height: 0;
    height: 200px;
}

.review-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card-i5 img {
    object-position: center top;
}

.review-card-i1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.review-card-i2 {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

.review-card-i3 {
    grid-column: 2/ 3;
    grid-row: 2 / 3;
}

.review-card-i4 {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
}

.review-card-i5 {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

.header-rev-i {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 3px;
}

.review-txt {
    color: var(--text-dim);
}

/*  */

.faq-title {
    font-size: 2rem;
    font-family: "Cinzel", serif;
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    padding: 0 28px 24px;
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (min-width:724px) and (max-width:900px) {

    .variant-btn {
        padding: 6px 8px;
        min-width: 50px;
        border-radius: 6px;
    }

    .variant-list-wrap {
        gap: 5px;
    }
}

@media (min-width:1300px) {
    .desc-sect {
        max-width: 1100px;
    }

    .desc-wrap {

        margin: 80px auto;

    }


    .desc-img-wrap {
        max-width: 60%;
        min-width: 500px;
        max-height: 500px;
    }

    .desc-info-wrap {
        margin-left: -80px;
        min-width: 700px;
    }

    .desc-wrap.reverse .desc-info-wrap {
        margin-left: 0;
        margin-right: -80px;
    }

}

@media (max-width: 1024px) {

    .section-product {
        gap: 32px;
    }

    .desc-wrap {
        margin: 80px auto;
        flex-direction: column;
        align-items: flex-start;
    }

    .desc-img-wrap {
        height: 450px;



        min-width: 400px;
        width: 100%;
        max-width: 480px;
        flex: none;

    }

    .desc-wrap.reverse {
        flex-direction: column;
    }

    .desc-info-wrap,
    .desc-wrap.reverse .desc-info-wrap {
        max-width: 520px;
        margin: -280px 0 0;
        align-self: flex-end;
        flex: none;

        width: 58%;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
        grid-auto-rows: 400px;
    }

    .review-card-i1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .review-card-i2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .review-card-i3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .review-card-i4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .review-card-i5 {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
}


@media (max-width: 768px) {

    .section-product {
        flex-direction: column;
        gap: 0;
        padding: 16px 16px 60px;
    }

    .title-product br {
        display: none;
    }

    .gallery {
        display: none;
    }

    .mobile-gallery {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .mobile-main-img-wrap {
        display: block;
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--border);
        background: var(--surface);
        box-shadow: 0 0 48px 0 var(--glow);
        animation: pulse 3s ease-in-out infinite;
        aspect-ratio: 1;
        margin-bottom: 12px;

        max-height: 450px;
    }

    .mobile-main-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .mobile-list-img-wrap {
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
    }

    .mobile-list-img-wrap .img-wrap {
        max-height: 110px;

    }

    .info-wrap {
        flex: none;
        width: 100%;
        padding-top: 0;
    }

    .title-product {
        font-size: clamp(1.4rem, 5vw, 1.9rem);
    }

    .variant-list-wrap {
        gap: 5px;
    }

    .variant-btn {
        border-radius: 5px;
    }

    .price-main {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }

    .cta-wrap {
        height: auto;
        flex-wrap: wrap;
    }

    .btn-addtocart {
        flex: 1 1 100%;
        padding: 14px 10px;
    }

    .btn-buy-flash {
        flex: 1;
    }

    .btn-like {
        min-width: 60px;
        padding: 5px;
    }

    .btn-like svg {
        width: 20px;
        height: 15px;
    }

    .btn-like span {
        font-size: 0.8rem;
    }

    .tab-btn {
        padding: 12px 16px;
        font-size: 0.75rem;
    }

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

    .features-grid .feature-card:last-of-type {
        grid-column: 1/3;
    }

    .specs-table td:first-child {
        width: 140px;
        padding-left: 10px;
    }

    .reviews-summary {
        flex-direction: column;
        gap: 24px;
        padding: 20px 20px;
    }

    .rev-score {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .rev-bars {
        width: 100%;
    }

    .review-card {
        padding: 16px 18px;
    }

    .review-header {
        flex-wrap: wrap;
        gap: 8px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 350px;
        grid-auto-rows: 350px;

        gap: 16px;
    }

    .review-card-i1,
    .review-card-i2,
    .review-card-i3,
    .review-card-i4,
    .review-card-i5 {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .review-card-i1 img {
        object-position: center 25%;
    }

    .header-rev-i {
        justify-content: flex-start;
        gap: 15px;
    }

    .review-txt-wraps p {
        color: var(--text-dim);
    }

    .desc-sect {
        padding: 48px 40px 48px;

    }

    .desc-wrap,
    .desc-wrap.reverse {
        margin: 72px auto;

        align-items: center;
        justify-content: center;
    }

    .desc-info-wrap,
    .desc-wrap.reverse .desc-info-wrap {
        margin: 0;
        max-width: 100%;
        border-radius: 0 0 16px 16px;

        align-self: center;
        width: 100%;
        margin-top: -0;
    }

    .desc-img-wrap {
        width: 100%;
        /* height: 280px; */
        height: 320px;
        border-radius: 16px 16px 0 0;
        max-width: 100%;
        min-width: 0;

    }

    .faq-title {
        font-size: 1.6rem;
        margin-bottom: 32px;
    }

    .faq-item summary {
        padding: 18px 20px;
        font-size: 0.92rem;
    }

    .faq-item p {
        padding: 0 20px 20px;
        font-size: 0.88rem;
    }


}


@media (max-width: 600px) {

    .section-product {
        padding: 12px 12px 48px;
    }

    .variant-btn {
        min-width: 64px;
        padding: 8px 10px;
        font-size: 0.76rem;
    }

    .qty-wrap {
        gap: 12px;
    }

    .tag {
        font-size: 0.70rem;
        padding: 3px 10px;
    }

    .trust-wrap {
        gap: 6px;
    }

    .trust-item {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

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

    .feature-card {
        grid-column: 1 / 3;
    }

    .header-feature-card {
        flex-direction: row-reverse;
        justify-content: space-between;
        min-height: 0;

    }

    .header-feature-card h3 {
        text-align: left;
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 14px;
        color: var(--text-dim);
        line-height: 1.2rem;
        text-align: left;
    }

    .feature-card .divider {
        margin: 15px auto;
    }

    .tabs-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 10px 14px;
    }

    .btns-ctrl-review-wrap {
        gap: 10px;
    }

    .desc-sect {
        padding: 36px 12px 36px;

    }

    .desc-img-wrap {
        height: 320px;
    }

    .desc-info-wrap {
        padding: 18px;
    }

    .desc-info-wrap h3 {
        font-size: 1.25rem;
    }

    .desc-info-wrap p {
        font-size: 0.88rem;
    }


}

@media (max-width: 480px) {

    .header-feature-card h3 {
        text-align: left;
        font-size: 1.1rem;
    }



    .section-product {
        padding: 10px 10px 40px;
    }

    .title-product {
        font-size: clamp(1.25rem, 6vw, 1.6rem);
        margin-bottom: 14px;
    }

    .subtitle-product {
        font-size: 0.82rem;
    }

    .price-main {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    .price-old {
        font-size: 0.95rem;
    }

    .rating-wrap {
        gap: 12px;
        flex-wrap: wrap;
    }

    .qty-btn {
        width: 34px;
        height: 34px;
    }

    .qty-number {
        width: 38px;
        font-size: 0.88rem;
    }

    .btn-addtocart {
        font-size: 0.82rem;
        letter-spacing: 0.05em;
    }

    .btn-buy-flash {
        font-size: 0.82rem;
        min-width: 60px;
    }

    .btn-like {
        min-width: 52px;
        font-size: 1.25rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 10px;
    }

    .review-date {
        text-align: start;
    }

    .stars-rev-wrap {
        min-width: unset;
    }

    .rev-score .big {
        font-size: 2.8rem;
    }

    .desc-sect {
        padding: 28px 10px 28px;

    }

    .desc-img-wrap {
        height: 250px;
    }

    .desc-info-wrap h3 {
        font-size: 1.1rem;
    }

    .faq-item summary {
        padding: 16px 16px;
        font-size: 0.88rem;
    }

    .faq-item p {
        padding: 0 16px 18px;
    }
}

@media (max-width: 360px) {



    .section-product {
        padding: 8px 8px 32px;
    }

    .title-product {
        font-size: 1.2rem;
    }

    .price-main {
        font-size: 1.4rem;
    }

    .variant-btn {
        min-width: 56px;
        padding: 7px 8px;
        font-size: 0.72rem;
    }

    .cta-wrap {
        gap: 8px;
    }

    .btn-addtocart {
        font-size: 0.78rem;
    }

    .trust-item {
        font-size: 0.62rem;
    }

    .tag {
        font-size: 0.65rem;
        padding: 2px 8px;
    }

    .tabs-nav {
        gap: 0;
    }

    .tab-btn {
        padding: 10px 10px;
        font-size: 0.70rem;
    }

    .desc-sect {}

    .desc-img-wrap {
        height: 180px;
    }

    .desc-info-wrap {
        padding: 14px;
    }

    .desc-info-wrap h3 {
        font-size: 1rem;
    }

    .desc-info-wrap p {
        font-size: 0.82rem;
    }

    .faq-title {
        font-size: 1.3rem;
    }



}