:root {
    --clr-single-50: rgba(255, 107, 53, .05);
    --clr-single-100: rgba(255, 107, 53, .1);
    --clr-single-glow: rgba(255, 107, 53, .15);
    --accent: #F59E0B;
    --accent-dark: #D97706;
    --accent-light: #FBBF24;
    --slate-900: #1E293B;
    --slate-700: #334155;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;
    --white: #FFFFFF;
    --emerald: #059669;
    --emerald-light: #34D399;
    --emerald-50: rgba(5, 150, 105, .06);
    --rose: #DC2626;
    --rose-50: rgba(220, 38, 38, .06);
    --f-serif: 'DM Serif Display', Georgia, serif;
    --f-mono: 'DM Mono', monospace;
    --max-w: 1200px;
    --r: 14px;
    --r-sm: 8px;
    --r-full: 100px;
    --sh-sm: 0 1px 3px rgba(0, 0, 0, .04), 0 1px 2px rgba(0, 0, 0, .06);
    --sh-md: 0 4px 6px rgba(0, 0, 0, .04), 0 10px 24px rgba(0, 0, 0, .06);
    --sh-lg: 0 8px 16px rgba(0, 0, 0, .04), 0 20px 48px rgba(0, 0, 0, .08)
}

*, ::after, ::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: var(--f-body);
    background: var(--clr-bgr);
    line-height: 1.6;
    overflow-x: hidden
}

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

button {
    font-family: var(--f-body);
    cursor: pointer;
    border: none;
    background: 0 0
}

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

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px
    }

    .modal-box{
        width: 100%;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .5
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1)
}

.reveal.vis {
    opacity: 1;
    transform: translateY(0)
}

.breadcrumb {
    padding: 16px 0 0
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    font-size: .78rem;
    color: var(--slate-400);
    flex-wrap: wrap;
    font-family: var(--f-body);
    font-weight: 500
}

.breadcrumb-inner a {
    color: var(--slate-400);
    transition: color .2s
}

.breadcrumb-inner a:hover {
    color: var(--clr-single-main)
}

.breadcrumb-sep {
    color: var(--slate-400);
    flex-shrink: 0
}

.breadcrumb-current {
    color: var(--clr-text);
    font-weight: 600
}

.product-section {
    padding: 24px 0 0
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.gallery {
    grid-column: 1;
    grid-row: 1
}

.gallery-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(255, 107, 53, .12), rgba(255, 143, 101, .08) 30%, rgba(245, 158, 11, .06) 50%, rgba(255, 107, 53, .08) 70%, rgba(255, 107, 53, .12));
    padding: 2px
}

.gallery-main-inner {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: var(--clr-single-glow);
    position: relative
}

.gallery-main-inner img {
    width: 100%;
    height: auto;
    display: block
}

.gallery-slides {
    display: flex;
    transition: transform .5s cubic-bezier(.22, 1, .36, 1);
    will-change: transform
}

.gallery-slide {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s, transform .35s, background .2s, color .2s, box-shadow .35s;
    color: var(--slate-500);
    padding: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04)
}

.gallery-arrow svg {
    width: 16px;
    height: 16px
}

.gallery-arrow-l {
    left: 12px
}

.gallery-arrow-r {
    right: 12px
}

.gallery-arrow.show {
    pointer-events: auto
}

.gallery-main:hover .gallery-arrow.show {
    opacity: 1
}

.gallery-arrow:hover {
    background: rgba(255, 255, 255, .7);
    color: var(--clr-text);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08)
}

.gallery-arrow:active {
    transform: translateY(-50%) scale(.92)
}

.gallery-main-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .7) 30%, rgba(255, 255, 255, .9) 50%, rgba(255, 255, 255, .7) 70%, transparent)
}

.gallery-discount {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    padding: 5px 12px;
    border-radius: 10px;
    background: rgba(15, 23, 42, .88);
    color: var(--clr-single-light);
    backdrop-filter: blur(8px);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .03em;
    border: 1px solid rgba(255, 255, 255, .08)
}

.gallery-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: .66rem;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(225, 29, 72, .82)
}

.gallery-indicators {
    display: flex;
    gap: 6px;
    padding: 14px 4px 0
}

.gallery-indicator {
    flex: 1;
    height: 2.5px;
    border-radius: 2px;
    background: var(--slate-200);
    cursor: pointer;
    transition: all .4s cubic-bezier(.22, 1, .36, 1);
    position: relative;
    overflow: hidden
}

.gallery-indicator::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--clr-single-main), var(--clr-single-light));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1)
}

.gallery-indicator.active::after {
    transform: scaleX(1)
}

.gallery-indicator:hover {
    background: var(--slate-300)
}

.gallery-indicator:first-child:last-child {
    display: none !important
}

.product-info {
    padding-top: 45px;
    grid-column: 2;
    grid-row: 1/3
}

.product-cat-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    background: var(--clr-single-50);
    border: 1px solid var(--clr-single-100);
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-single-main);
    margin-bottom: 14px;
    font-family: var(--f-mono)
}

.product-title {
    font-family: var(--f-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--clr-text);
    line-height: 1.25;
    margin-bottom: 16px;
    font-weight: 700
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    line-height: 1;
    flex-wrap: wrap
}

.product-stars-wrap {
    display: flex;
    align-items: center;
    gap: 2px
}

.product-star {
    width: 16px;
    height: 16px;
    color: var(--clr-single-main)
}

.product-stars-count {
    font-size: .85rem;
    font-weight: 700;
    color: var(--clr-text)
}

.product-reviews-link {
    font-size: .78rem;
    color: var(--clr-text);
    font-weight: 500;
    transition: color .2s
}

.product-reviews-link:hover {
    color: var(--clr-single-main)
}

.product-rating-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--clr-text)
}

.product-sold {
    font-size: .72rem;
    color: var(--emerald);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px
}

.product-sold::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald);
    flex-shrink: 0;
    animation: pulse 2s infinite
}

.urgency-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 53, .06), rgba(220, 38, 38, .06));
    border: 1px solid rgba(255, 107, 53, .12);
    margin-bottom: 22px;
    font-size: .78rem;
    color: var(--clr-single-dark);
    font-weight: 600;
    overflow: hidden;
    position: relative
}

.urgency-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    color: var(--clr-single-dark)
}

.urgency-rotator {
    position: relative;
    flex: 1;
    min-width: 0;
    height: 1.4em;
    overflow: hidden
}

.urgency-msg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transform: translateY(100%);
    transition: all .6s cubic-bezier(.22, 1, .36, 1);
    line-height: 1.4
}

.urgency-msg.active {
    opacity: 1;
    transform: translateY(0)
}

.urgency-msg.exit {
    opacity: 0;
    transform: translateY(-100%)
}

.urgency-msg b {
    color: var(--clr-single-dark);
    font-weight: 700
}

.urgency-msg span {
    color: var(--slate-500);
    font-weight: 400
}

.price-block {
    background: var(--clr-single-glow);
    border: 1px solid var(--clr-single-glow);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 2px 6px rgba(15, 23, 42, .04)
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.product-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--clr-text);
    font-family: var(--f-display);
    letter-spacing: -.02em
}

.product-price-old {
    font-size: 1rem;
    color: var(--clr-text);
    text-decoration: line-through;
    opacity: .5
}

.product-save-badge {
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--clr-single-main);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .02em
}

.product-price-row div[data-singleproductbox=savePercent] {
    font-size: .68rem
}

.product-price-note {
    font-size: .75rem;
    color: var(--slate-400);
    margin: 0
}

.product-price-note b {
    color: var(--slate-500)
}

.whats-included {
    margin-bottom: 24px
}

.whats-included-title {
    font-family: var(--f-mono);
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-single-main);
    margin-bottom: 12px
}

.whats-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: .85rem;
    color: var(--clr-text);
    font-weight: 500
}

.whats-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-single-main), var(--clr-single-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.whats-check svg {
    width: 11px;
    height: 11px;
    color: #fff
}

.cta-zone {
    margin-bottom: 20px
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap
}

.qty-wrap {
    display: flex;
    align-items: center;
    border: 2px solid var(--slate-200);
    border-radius: 14px;
    overflow: hidden;
    background: var(--clr-single-glow);
    transition: border-color .2s
}

.qty-wrap:hover {
    border-color: var(--slate-300)
}

.qty-btn {
    width: 44px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--slate-400);
    transition: all .2s;
    background: 0 0
}

.qty-btn:hover {
    background: var(--slate-50);
    color: var(--clr-text)
}

.qty-val {
    width: 40px;
    text-align: center;
    font-size: .95rem;
    font-weight: 700;
    color: var(--clr-text);
    border: none;
    background: 0 0;
    font-family: var(--f-body);
    outline: 0;
    -moz-appearance: textfield
}

.qty-val::-webkit-inner-spin-button, .qty-val::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.btn-add-cart {
    flex: 1;
    min-width: 200px;
    padding: 16px 32px;
    border-radius: 14px;
    width: 100%;
    background: var(--clr-single-main);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px var(--clr-single-glow);
    transition: background .8s ease, color .8s ease, transform .9s cubic-bezier(.22, 1, .36, 1), box-shadow .9s cubic-bezier(.22, 1, .36, 1);
    position: relative;
    overflow: hidden
}

.btn-add-cart::after {
    display: none
}

.btn-add-cart:hover {
    background: #fff;
    color: var(--clr-single-main);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--clr-single-glow)
}

.btn-add-cart svg {
    width: 20px;
    height: 20px
}

.q_cart {
    width: 100%
}

.btn-wishlist {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 2px solid var(--slate-200);
    background: var(--clr-single-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all .25s;
    flex-shrink: 0;
    color: var(--slate-300)
}

.btn-wishlist:hover {
    border-color: var(--clr-single-main);
    background: var(--clr-single-50);
    color: var(--clr-single-main)
}

.btn-buy-now {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    background: var(--clr-text);
    color: #fff;
    font-size: .92rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(15, 23, 42, .12)
}

.btn-buy-now:hover {
    background: var(--slate-900);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(15, 23, 42, .2)
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0 4px;
    margin-bottom: 4px
}

.social-proof-avatars {
    display: flex;
    flex-shrink: 0
}

.social-proof-av, img.social-proof-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-single-glow);
    margin-left: -6px;
    flex-shrink: 0
}

.social-proof-av:first-child {
    margin-left: 0
}

.img.social-proof-av, .social-proof-av img {
    object-fit: cover
}

.social-proof-text {
    font-size: .75rem;
    color: var(--slate-400);
    line-height: 1.4
}

.social-proof-text b {
    color: var(--clr-text);
    font-weight: 600
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 4px;
    background: linear-gradient(175deg, rgba(255, 255, 255, .35), rgba(252, 252, 254, .3));
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04)
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 8px;
    text-align: center;
    border-right: 1px solid rgba(15, 23, 42, .04);
    transition: all .2s
}

.trust-badge:last-child {
    border-right: none
}

.trust-badge:hover {
    background: var(--clr-single-50)
}

.trust-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--clr-single-50);
    border: 1px solid var(--clr-single-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all .2s;
    color: var(--clr-single-main)
}

.trust-badge:hover .trust-badge-icon {
    background: var(--clr-single-glow)
}

.trust-badge-label {
    font-size: .68rem;
    font-weight: 600;
    color: var(--clr-text);
    line-height: 1.3
}

.info-accordions {
    background: var(--clr-single-glow);
    border-radius: 20px;
    padding: 4px 20px;
    margin-top: 12px;
    border: 1px solid rgba(15, 23, 42, .06)
}

.info-acc {
    border-bottom: 1px solid rgba(15, 23, 42, .06)
}

.info-acc:last-child {
    border-bottom: none
}

.info-acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-family: var(--f-body);
    font-size: .88rem;
    font-weight: 600;
    color: var(--clr-text);
    background: 0 0;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 12px
}

.info-acc-header:hover {
    color: var(--clr-single-main)
}

.info-acc-header-left {
    display: flex;
    align-items: center;
    gap: 10px
}

.info-acc-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--clr-single-50);
    border: 1px solid var(--clr-single-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
    transition: all .2s;
    color: var(--clr-single-main)
}

.info-acc-icon svg {
    flex-shrink: 0
}

.info-acc:hover .info-acc-icon {
    background: var(--clr-single-glow)
}

.info-acc-chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--slate-300);
    transition: transform .3s cubic-bezier(.22, 1, .36, 1)
}

.info-acc.open .info-acc-chevron {
    transform: rotate(180deg)
}

.info-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.22, 1, .36, 1), padding .4s;
    padding: 0 0 0 40px
}

.info-acc.open .info-acc-body {
    max-height: 300px;
    padding: 0 0 18px 40px
}

.info-acc-body p {
    font-size: .82rem;
    color: var(--clr-text);
    line-height: 1.65;
    margin: 0 0 6px
}

.info-acc-body p:last-child {
    margin-bottom: 0
}

.product-content {
    grid-column: 1;
    grid-row: 2;
    padding-top: 8px;
    padding-bottom: 80px
}

.tabs-nav {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    overflow-x: auto;
    scrollbar-width: none
}

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

.tab-btn {
    padding: 10px 20px;
    border-radius: var(--r-full);
    font-size: .82rem;
    font-weight: 600;
    color: var(--clr-text);
    background: 0 0;
    border: 1.5px solid transparent;
    white-space: nowrap;
    transition: all .3s
}

.tab-btn:hover {
    color: var(--clr-text);
    background: rgba(255, 255, 255, .7)
}

.tab-btn.active {
    background: var(--clr-single-glow);
    color: var(--clr-text);
    border-color: rgba(15, 23, 42, .06);
    box-shadow: var(--sh-sm)
}

.tab-panel {
    display: none
}

.tab-panel.active {
    display: block;
    animation: fadeUp .5s ease
}

.desc-blocks {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.desc-blocks ul {
    margin-left: 30px
}

.db-hero {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--clr-text) 0, #1a2640 50%, #243352 100%);
    padding: 48px 36px;
    text-align: center;
    position: relative
}

.db-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 107, 53, .12), transparent 60%), radial-gradient(ellipse at 70% 80%, rgba(255, 107, 53, .06), transparent 50%);
    pointer-events: none
}

.db-hero > * {
    position: relative;
    z-index: 1
}

.db-hero-tag {
    display: inline-block;
    background: rgba(255, 107, 53, .12);
    border: 1px solid rgba(255, 107, 53, .2);
    color: var(--clr-single-light);
    padding: 6px 16px;
    border-radius: var(--r-full);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: var(--f-mono)
}

.db-hero h2 {
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
    font-style: italic
}

.db-hero-sub {
    font-size: .88rem;
    color: rgba(255, 255, 255, .6);
    max-width: 460px;
    margin: 0 auto 28px;
    line-height: 1.7
}

.db-hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px
}

.db-hero-stat {
    text-align: center
}

.db-hero-stat-num {
    display: block;
    font-family: var(--f-display);
    font-size: 1.8rem;
    color: #fff;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 2px
}

.db-hero-stat-label {
    display: block;
    font-size: .72rem;
    color: rgba(255, 255, 255, .45);
    font-weight: 400
}

.db-hook {
    border-radius: 20px;
    background: linear-gradient(175deg, rgba(255, 255, 255, .96), rgba(252, 252, 254, .94));
    border: 1px solid rgba(15, 23, 42, .06);
    padding: 36px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04)
}

.db-hook-lead {
    font-family: var(--f-display);
    font-size: 1.15rem;
    color: var(--clr-text);
    line-height: 1.45;
    margin: 0 0 16px;
    font-style: italic
}

.db-hook p {
    font-size: .88rem;
    color: var(--slate-500);
    line-height: 1.8;
    margin: 0 0 16px
}

.db-hook-accent {
    font-weight: 600;
    color: var(--clr-single-dark);
    font-style: normal;
    font-size: .88rem;
    line-height: 1.8;
    margin: 0
}

.db-quote {
    border-radius: 20px;
    background: var(--clr-single-50);
    border: 1px solid var(--clr-single-100);
    padding: 40px 36px;
    text-align: center
}

.db-quote-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
    display: block
}

.db-quote p {
    font-family: var(--f-display);
    font-size: 1.15rem;
    color: var(--clr-single-dark);
    font-style: italic;
    max-width: 440px;
    margin: 0 auto 18px;
    line-height: 1.5
}

.db-quote-line {
    width: 48px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--clr-single-main), var(--clr-single-light));
    margin: 0 auto
}

.db-features {
    border-radius: 20px;
    background: linear-gradient(175deg, rgba(255, 255, 255, .96), rgba(252, 252, 254, .94));
    border: 1px solid rgba(15, 23, 42, .06);
    padding: 36px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04)
}

.db-features-tag {
    display: inline-block;
    background: var(--clr-single-50);
    color: var(--clr-single-main);
    padding: 5px 14px;
    border-radius: var(--r-full);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: var(--f-mono)
}

.db-features h2 {
    font-family: var(--f-display);
    font-size: 1.3rem;
    color: var(--clr-text);
    margin: 0 0 24px;
    line-height: 1.3
}

.db-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--slate-100)
}

.db-feat-item:last-child {
    border-bottom: none
}

.db-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem
}

.db-feat-icon.g1 {
    background: linear-gradient(135deg, var(--clr-text), #243352)
}

.db-feat-icon.g2 {
    background: linear-gradient(135deg, var(--clr-single-main), var(--clr-single-dark))
}

.db-feat-text h4 {
    font-family: var(--f-display);
    font-size: .92rem;
    color: var(--clr-text);
    margin: 0 0 3px;
    font-style: italic
}

.db-feat-text p {
    font-size: .82rem;
    color: var(--slate-400);
    line-height: 1.7;
    margin: 0
}

.db-reviews {
    border-radius: 20px;
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    padding: 36px
}

.db-reviews-tag {
    display: inline-block;
    background: var(--clr-single-50);
    color: var(--clr-single-main);
    padding: 5px 14px;
    border-radius: var(--r-full);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: var(--f-mono)
}

.db-reviews h2 {
    font-family: var(--f-display);
    font-size: 1.3rem;
    color: var(--clr-text);
    margin: 0 0 24px;
    line-height: 1.3
}

.db-review {
    padding: 20px 0;
    border-bottom: 1px solid var(--slate-200)
}

.db-review:last-child {
    border-bottom: none
}

.db-review-stars {
    color: var(--clr-single-main);
    font-size: .72rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block
}

.db-review-text {
    font-size: .85rem;
    color: var(--slate-500);
    line-height: 1.8;
    font-style: italic;
    margin: 0 0 12px
}

.db-review-author {
    font-family: var(--f-display);
    font-size: .82rem;
    color: var(--clr-text);
    font-style: italic
}

.db-review-author span {
    font-family: var(--f-body);
    font-weight: 400;
    font-style: normal;
    color: var(--slate-400);
    font-size: .78rem
}

.db-whom {
    border-radius: 20px;
    background: linear-gradient(175deg, rgba(255, 255, 255, .96), rgba(252, 252, 254, .94));
    border: 1px solid rgba(15, 23, 42, .06);
    padding: 36px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04)
}

.db-whom h2 {
    font-family: var(--f-display);
    font-size: 1.3rem;
    color: var(--clr-text);
    margin: 0 0 22px;
    line-height: 1.3
}

.db-whom-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: .85rem;
    color: var(--clr-text);
    line-height: 1.7
}

.db-whom-check {
    color: var(--clr-single-main);
    font-size: .8rem;
    flex-shrink: 0;
    margin-top: 3px;
    font-weight: 700
}

.db-cta {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--clr-text) 0, #1a2640 50%, #243352 100%);
    padding: 44px 36px;
    text-align: center;
    position: relative
}

.db-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0, rgba(255, 107, 53, .1), transparent 60%);
    pointer-events: none
}

.db-cta > * {
    position: relative;
    z-index: 1
}

.db-cta-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: block
}

.db-cta h2 {
    font-family: var(--f-display);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
    font-style: italic
}

.db-cta p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
    margin: 0 0 24px;
    line-height: 1.7
}

.db-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--r-full);
    background: var(--clr-single-main);
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    transition: all .35s cubic-bezier(.22, 1, .36, 1);
    box-shadow: 0 4px 20px rgba(255, 107, 53, .25)
}

.db-cta-btn:hover {
    background: var(--clr-single-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 53, .35)
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--clr-single-glow);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid var(--clr-single-100);
    margin-bottom: 20px;
    box-shadow: 0 1px 2px var(--clr-single-50)
}

@media (max-width: 640px) {
    .reviews-summary {
        flex-direction: column;
        gap: 16px;
        text-align: center
    }

    .reviews-bars {
        width: 100%;
        flex: none
    }
}

.reviews-big-score {
    text-align: center;
    flex-shrink: 0
}

.reviews-big-num {
    font-family: var(--f-display);
    font-size: 2.8rem;
    color: var(--clr-text);
    line-height: 1
}

.reviews-big-stars {
    color: var(--clr-single-main);
    font-size: .85rem;
    margin: 5px 0 3px
}

.reviews-big-total {
    font-size: .72rem;
    color: var(--slate-400)
}

.reviews-bars {
    flex: 1
}

.review-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px
}

.review-bar-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--slate-400);
    width: 12px;
    text-align: right
}

.review-bar-track {
    flex: 1;
    height: 5px;
    background: var(--slate-100);
    border-radius: 3px;
    overflow: hidden;
    min-width: 0
}

.review-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--clr-single-main), var(--clr-single-light))
}

.review-card {
    background: linear-gradient(175deg, rgba(255, 255, 255, .96), rgba(252, 252, 254, .94));
    border-radius: 16px;
    padding: 22px;
    border: 1px solid rgba(15, 23, 42, .06);
    margin-bottom: 14px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04)
}

.review-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    flex-shrink: 0
}

.review-author-name {
    font-size: .85rem;
    font-weight: 700;
    color: var(--clr-text)
}

.review-author-date {
    font-size: .7rem;
    color: var(--slate-400)
}

.review-stars {
    color: var(--clr-single-main);
    font-size: .72rem;
    letter-spacing: 1px;
    margin-bottom: 8px
}

.review-text {
    font-size: .85rem;
    color: var(--slate-500);
    line-height: 1.7
}

.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .66rem;
    font-weight: 600;
    color: var(--emerald);
    margin-top: 8px
}

.review-verified::before {
    content: '✓';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--emerald-50);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .55rem
}

.btn-load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    background: var(--clr-single-glow);
    border: 1.5px solid var(--slate-200);
    color: var(--clr-text);
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--f-body);
    transition: all .3s;
    margin-top: 6px
}

.btn-load-more:hover {
    border-color: var(--clr-single-main);
    color: var(--clr-single-main);
    background: var(--clr-single-50);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 107, 53, .1)
}

.desc-content {
    background: linear-gradient(175deg, rgba(255, 255, 255, .96), rgba(252, 252, 254, .94));
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04)
}

.desc-content h3 {
    font-family: var(--f-display);
    font-size: 1.2rem;
    color: var(--slate-500);
    margin-bottom: 12px
}

.desc-content p {
    font-size: .88rem;
    color: var(--slate-500);
    line-height: 1.75;
    margin-bottom: 14px
}

.desc-content p:last-child {
    margin-bottom: 0
}

.section-header {
    text-align: center;
    margin-bottom: 48px
}

.section-tag {
    font-family: var(--f-mono);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--clr-single-main);
    display: block;
    margin-bottom: 12px
}

.section-title {
    font-family: var(--f-display);
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    color: var(--clr-text);
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 700
}

.section-sub {
    font-size: 1rem;
    color: var(--slate-400);
    max-width: 540px;
    margin: 0 auto
}

.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    background: rgba(15, 23, 42, .88);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-top: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 -4px 32px rgba(0, 0, 0, .15);
    padding: 12px 0;
    transform: translateY(100%);
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
    pointer-events: none
}

.sticky-bar.vis {
    transform: translateY(0);
    pointer-events: auto
}

.sticky-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 20px
}

@media (max-width: 640px) {
    .sticky-bar-inner {
        padding: 0 16px;
        gap: 12px
    }
}

.sticky-bar-product {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0
}

.sticky-bar-thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .05)
}

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

.sticky-bar-info {
    min-width: 0
}

.sticky-bar-name {
    font-family: var(--f-display);
    font-size: .88rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3
}

.sticky-bar-prices {
    display: flex;
    align-items: center;
    gap: 8px
}

.sticky-bar-price {
    font-size: .95rem;
    font-weight: 800;
    color: #fff
}

.sticky-bar-price-old {
    font-size: .75rem;
    color: rgba(255, 255, 255, .3);
    text-decoration: line-through
}

.sticky-bar-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0
}

.sticky-bar-stars {
    color: var(--clr-single-main);
    font-size: .7rem;
    letter-spacing: .5px
}

.sticky-bar-reviews {
    font-size: .68rem;
    color: rgba(255, 255, 255, .4);
    font-weight: 500
}

@media (max-width: 768px) {
    .sticky-bar-rating {
        display: none
    }
}

.sticky-bar-cta {
    padding: 12px 28px;
    border-radius: 12px;
    background: var(--clr-single-main);
    color: #fff;
    font-size: .88rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, .25);
    transition: all .25s;
    white-space: nowrap;
    flex-shrink: 0
}

.sticky-bar-cta:hover {
    background: #fff;
    color: var(--clr-single-main);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 53, .35)
}

.sticky-bar-cta svg {
    width: 16px;
    height: 16px
}

@media (max-width: 480px) {
    .sticky-bar-name {
        font-size: .78rem
    }

    .sticky-bar-cta {
        padding: 10px 18px;
        font-size: .8rem
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .product-info {
        grid-column: auto;
        grid-row: auto;
        padding-top: 0
    }

    .product-content {
        grid-column: auto;
        grid-row: auto;
        padding-bottom: 40px
    }

    .gallery {
        grid-column: auto;
        grid-row: auto
    }
}

@media (max-width: 768px) {
    .flex_item{
        padding: 50px 0 50px 0 !important;
    }
    .breadcrumb {
        padding: 10px 0 0
    }

    .breadcrumb-inner {
        padding: 6px 0
    }

    .product-section {
        padding: 50px 0 0
    }

    .product-grid {
        gap: 20px
    }

    .gallery-main {
        border-radius: 18px;
        padding: 1.5px
    }

    .gallery-main-inner {
        border-radius: 16px
    }

    .gallery-discount {
        top: 12px;
        right: 12px;
        padding: 4px 10px;
        font-size: .62rem
    }

    .gallery-badge {
        top: 12px;
        left: 12px;
        padding: 4px 10px;
        font-size: .6rem
    }

    .gallery-indicators {
        padding: 10px 2px 0
    }

    .product-title {
        font-size: 1.5rem;
        margin-bottom: 12px
    }

    .product-rating {
        gap: 8px;
        margin-bottom: 14px
    }

    .urgency-strip {
        padding: 8px 12px;
        font-size: .72rem;
        margin-bottom: 16px
    }

    .price-block {
        padding: 16px;
        border-radius: 16px;
        margin-bottom: 18px
    }

    .product-price {
        font-size: 1.8rem
    }

    .product-price-old {
        font-size: .88rem
    }

    .whats-included {
        margin-bottom: 18px
    }

    .whats-included-title {
        margin-bottom: 8px
    }

    .whats-item {
        padding: 5px 0;
        font-size: .82rem
    }

    .product-actions {
        flex-wrap: nowrap
    }

    .qty-wrap {
        flex-shrink: 0
    }

    .qty-btn {
        width: 38px;
        height: 46px;
        font-size: 1rem
    }

    .qty-val {
        width: 34px;
        font-size: .88rem
    }

    .btn-add-cart {
        min-width: 0;
        padding: 14px 20px;
        font-size: .92rem;
        border-radius: 12px
    }

    .btn-add-cart svg {
        width: 18px;
        height: 18px
    }

    .btn-wishlist {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        font-size: 1rem
    }

    .btn-buy-now {
        padding: 14px;
        font-size: .85rem;
        border-radius: 12px
    }

    .social-proof {
        padding: 10px 0 0
    }

    .trust-grid {
        border-radius: 14px
    }

    .trust-badge {
        padding: 12px 6px
    }

    .trust-badge-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: .88rem
    }

    .trust-badge-label {
        font-size: .62rem
    }

    .info-acc-header {
        padding: 14px 0;
        font-size: .84rem
    }

    .info-acc-icon {
        width: 26px;
        height: 26px;
        border-radius: 6px
    }

    .info-acc.open .info-acc-body {
        padding: 0 0 14px 36px
    }

    .info-acc-body p {
        font-size: .78rem
    }

    .tabs-nav {
        margin-bottom: 18px;
        overflow: auto;
        max-width: calc(100vw - 30px)
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: .78rem
    }

    .db-hero {
        padding: 32px 20px;
        border-radius: 14px
    }

    .db-hero h2 {
        font-size: 1.3rem
    }

    .db-hero-sub {
        font-size: .82rem;
        margin-bottom: 22px
    }

    .db-hero-stats {
        gap: 20px
    }

    .db-hero-stat-num {
        font-size: 1.4rem
    }

    .db-hero-stat-label {
        font-size: .66rem
    }

    .db-features, .db-hook, .db-reviews, .db-whom {
        padding: 24px 20px;
        border-radius: 14px
    }

    .db-hook-lead {
        font-size: 1.05rem
    }

    .db-feat-text p, .db-hook p, .db-review-text {
        font-size: .82rem
    }

    .db-quote {
        padding: 28px 20px;
        border-radius: 14px
    }

    .db-quote p {
        font-size: 1rem
    }

    .db-features h2, .db-reviews h2, .db-whom h2 {
        font-size: 1.15rem
    }

    .db-feat-item {
        gap: 12px;
        padding: 14px 0
    }

    .db-feat-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem
    }

    .db-feat-text h4 {
        font-size: .85rem
    }

    .db-whom-item {
        font-size: .82rem
    }

    .db-cta {
        padding: 32px 20px;
        border-radius: 14px
    }

    .db-cta h2 {
        font-size: 1.15rem
    }

    .db-cta-btn {
        padding: 12px 26px;
        font-size: .82rem
    }

    .desc-blocks {
        gap: 8px
    }

    .review-card {
        padding: 18px;
        border-radius: 14px
    }

    .desc-content {
        padding: 24px 20px;
        border-radius: 14px
    }

    .section-title {
        font-size: 1.5rem
    }

    .section-sub {
        font-size: .88rem
    }

    .related-section {
        padding: 48px 0
    }

    .related-section .section-header {
        margin-bottom: 24px
    }

    .sticky-bar-rating {
        display: none
    }
}

@media (max-width: 540px) {
    .product-grid {
        gap: 16px
    }

    .gallery-main {
        border-radius: 14px
    }

    .gallery-main-inner {
        border-radius: 12px
    }

    .gallery-discount {
        top: 8px;
        right: 8px;
        padding: 3px 8px;
        font-size: .58rem;
        border-radius: 7px
    }

    .gallery-badge {
        top: 8px;
        left: 8px;
        padding: 3px 8px;
        font-size: .56rem;
        border-radius: 7px
    }

    .product-cat-tag {
        font-size: .58rem;
        padding: 3px 10px;
        margin-bottom: 10px
    }

    .product-title {
        font-size: 1.3rem
    }

    .price-block {
        padding: 14px;
        border-radius: 14px
    }

    .product-price {
        font-size: 1.6rem
    }

    .product-save-badge {
        font-size: .6rem;
        padding: 3px 8px
    }

    .product-actions {
        gap: 8px
    }

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

    .btn-add-cart {
        padding: 12px 16px;
        font-size: .85rem;
        border-radius: 10px
    }

    .btn-wishlist {
        width: 42px;
        height: 42px;
        border-radius: 10px
    }

    .btn-buy-now {
        padding: 12px;
        border-radius: 10px;
        font-size: .82rem
    }

    .trust-badge {
        padding: 10px 4px
    }

    .trust-badge-icon {
        width: 28px;
        height: 28px;
        font-size: .8rem
    }

    .trust-badge-label {
        font-size: .58rem
    }
}

@media (prefers-reduced-motion: reduce) {
    *, ::after, ::before {
        animation-duration: 0s !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important
    }
}

#addToCart {
    transition: all .5s ease-out;
    background: var(--clr-atc-bgr);
    color: var(--clr-atc-text)
}

#addToCart:hover {
    background: var(--clr-atc-bgr-hover);
    color: var(--clr-atc-text-hover)
}

@media (max-width: 767px) {
    .content section.desc-hero table table td {
        padding: 10px 5px !important
    }

    .desc-hero table table td[valign=middle]:nth-child(2n) {
        display: none
    }
}
