:root {
    --bg: #f6f1e8;
    --surface: #fffaf4;
    --surface-strong: #ffffff;
    --ink: #182126;
    --muted: #5a646b;
    --line: rgba(24, 33, 38, 0.1);
    --brand: #cf4e2d;
    --brand-dark: #a7381d;
    --accent: #0e6d63;
    --accent-soft: #dff3ef;
    --shadow: 0 24px 60px rgba(24, 33, 38, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Hind Siliguri", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(14, 109, 99, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(207, 78, 45, 0.12), transparent 25%),
        linear-gradient(180deg, #fffaf5 0%, #f4eee4 100%);
}

body.lightbox-open {
    overflow: hidden;
}

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

.top-strip {
    background: #172127;
    color: #eaf2ef;
    font-size: 0.92rem;
}

.top-strip span {
    opacity: 0.92;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    background:
        linear-gradient(135deg, rgba(23, 33, 39, 0.96), rgba(27, 53, 51, 0.92)),
        linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.05));
    color: #fffdf9;
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 95%);
    opacity: 0.35;
}

.offer-chip,
.eyebrow,
.summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 700;
}

.offer-chip {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 1rem;
}

.hero-title,
.section-head h2,
.feature-box h3,
.benefit-panel h3,
.summary-copy h3,
.faq-card h3 {
    font-family: "Space Grotesk", sans-serif;
}

.hero-title {
    font-size: clamp(2.3rem, 4vw, 4.45rem);
    line-height: 1.3;
    margin-bottom: 1.15rem;
}

.hero-title>span {
    color: #ffd77b;
}

.spotlight-title {
    max-width: 13ch;
}

.hero-price-callout {
    position: relative;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1.5rem;
    padding: 0.9rem 1.05rem;
    border-radius: 1.15rem;
    background: linear-gradient(135deg, rgba(255, 215, 123, 0.18), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 215, 123, 0.24);
    box-shadow:
        0 18px 38px rgba(7, 15, 24, 0.18),
        0 0 30px rgba(255, 215, 123, 0.12);
    overflow: hidden;
}

.hero-price-callout::before {
    content: "";
    position: absolute;
    inset: -10% auto -10% -18%;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: rotate(10deg);
    animation: priceCalloutShine 3.8s ease-in-out infinite;
    pointer-events: none;
}

.hero-price-label,
.hero-price-old,
.hero-price-now,
.hero-price-new {
    position: relative;
    z-index: 1;
}

.hero-price-label {
    color: rgba(255, 249, 232, 0.92);
    font-weight: 700;
    font-size: 1.40rem;
}

.hero-price-old {
    color: #ffc107;
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    font-size: 1.60rem;
}

.hero-price-now {
    padding: 0.26rem 0.62rem;
    border-radius: 999px;
    background: #ffd77b;
    color: #101820;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 1rem;
}

.hero-price-new {
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    text-shadow:
        0 10px 20px rgba(7, 15, 24, 0.25),
        0 0 18px rgba(255, 215, 123, 0.22);
}

.hero-title-ring {
    position: relative;
    display: inline-grid;
    place-items: center;
    margin: 0 0.2rem;
    padding: 0.05rem 0.38rem;
    color: #fff5d6;
    isolation: isolate;
}

.hero-title-ring>span {
    position: relative;
    z-index: 1;
    color: #fff5d6;
    text-shadow:
        0 10px 22px rgba(7, 15, 24, 0.22),
        0 0 16px rgba(255, 215, 123, 0.18);
}

.hero-title-ring::before,
.hero-title-ring::after {
    content: "";
    position: absolute;
    inset: -0.22em -0.3em;
    border-radius: 999px;
    pointer-events: none;
}

.hero-title-ring::before {
    border: 2px solid rgba(255, 215, 123, 0.92);
    box-shadow:
        0 0 0 6px rgba(255, 215, 123, 0.08),
        0 0 28px rgba(255, 215, 123, 0.28);
    animation: titleRingSpin 7s linear infinite;
}

.hero-title-ring::after {
    inset: -0.1em -0.18em;
    background:
        radial-gradient(circle at center, rgba(255, 215, 123, 0.24), transparent 68%);
    filter: blur(4px);
}

.hero-copy,
.section-copy,
.benefit-panel p,
.feature-box p,
.summary-copy p,
.faq-item p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.02rem;
    line-height: 1.75;
}

.section-copy,
.benefit-panel p,
.feature-box p,
.summary-copy p,
.faq-item p {
    color: var(--muted);
}

.hero-offer-band,
.inline-price-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.old-price {
    color: rgba(255, 244, 214, 0.86);
    text-decoration: line-through;
    font-weight: 700;
    font-size: 1.18rem;
    opacity: 0.95;
}

.offer-arrow {
    color: #101820;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #ffd77b;
    box-shadow: 0 10px 22px rgba(255, 215, 123, 0.28);
}

.new-price {
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-shadow:
        0 10px 22px rgba(7, 15, 24, 0.24),
        0 0 18px rgba(255, 215, 123, 0.24);
}

@keyframes titleRingSpin {

    0%,
    100% {
        transform: rotate(1turn);
    }
}

@keyframes priceCalloutShine {
    0% {
        transform: translateX(-180%) rotate(10deg);
        opacity: 0;
    }

    16% {
        opacity: 0.85;
    }

    40% {
        transform: translateX(320%) rotate(10deg);
        opacity: 0;
    }

    100% {
        transform: translateX(320%) rotate(10deg);
        opacity: 0;
    }
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.point-card {
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.point-card.highlight {
    background: rgba(255, 215, 123, 0.16);
    border-color: rgba(255, 215, 123, 0.24);
}

.point-card strong,
.point-card span {
    display: block;
}

.point-card strong {
    font-size: 0.82rem;
    opacity: 0.78;
    margin-bottom: 0.4rem;
}

.point-card span {
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-btn,
.submit-btn,
.mobile-cta .btn {
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand), #f06b44);
    box-shadow: 0 16px 30px rgba(207, 78, 45, 0.22);
}

.hero-btn:hover,
.submit-btn:hover,
.mobile-cta .btn:hover {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.ghost-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.ghost-btn:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.06);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-proof span {
    padding: 0.6rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
}

.hero-visual {
    position: relative;
    min-height: 36rem;
}

.hero-card {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #ffffff;
}

.hero-card img,
.gallery-card img,
.summary-media img,
.size-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-card {
    position: relative;
    width: min(100%, 28rem);
    margin-left: auto;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-card {
    position: absolute;
    width: 10rem;
    aspect-ratio: 1 / 1.15;
}

.top-card {
    top: 1rem;
    left: 0;
    transform: rotate(-7deg);
}

.bottom-card {
    right: 1rem;
    bottom: 0.5rem;
    transform: rotate(8deg);
}

.price-burst {
    position: absolute;
    left: 1.2rem;
    bottom: 2.5rem;
    padding: 1rem 1.1rem;
    border-radius: 1.3rem;
    background: linear-gradient(135deg, #ffd77b, #ffc247);
    color: #332100;
    box-shadow: 0 16px 35px rgba(255, 194, 71, 0.28);
}

.price-burst small,
.price-burst strong {
    display: block;
}

.price-burst strong {
    font-size: 1.7rem;
    line-height: 1.1;
}

.section-space {
    padding: 5.5rem 0;
}

.section-soft {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.92)),
        radial-gradient(circle at left top, rgba(14, 109, 99, 0.08), transparent 30%);
}

.section-head {
    max-width: 50rem;
    margin: 0 auto 2.5rem;
}

.eyebrow {
    background: var(--accent-soft);
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-head h2 {
    font-size: clamp(2rem, 3.3vw, 3.2rem);
    margin-bottom: 0.8rem;
}

.feature-box,
.benefit-panel,
.order-form-shell,
.summary-card,
.faq-card,
.table-shell {
    height: 100%;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: 1.7rem;
    box-shadow: var(--shadow);
}

.feature-box {
    padding: 1.5rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent), #4ebdae);
    color: #fff;
    font-weight: 700;
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.benefit-panel {
    padding: 1.7rem;
}

.dark-panel {
    background: linear-gradient(180deg, #112328, #183239);
    color: #fff;
}

.dark-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
}

.check-list li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: 0.9rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffd77b;
    font-weight: 700;
}

.showcase-shell {
    position: relative;
    padding: 1.35rem;
    border-radius: 2rem;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 237, 0.94)),
        radial-gradient(circle at top right, rgba(207, 78, 45, 0.08), transparent 26%);
    box-shadow: var(--shadow);
}

.showcase-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.showcase-topbar h3,
.showcase-focus-copy h3,
.video-copy h3 {
    font-family: "Space Grotesk", sans-serif;
}

.showcase-topbar h3 {
    font-size: 1.1rem;
    margin: 0.35rem 0 0;
}

.showcase-controls {
    display: flex;
    gap: 0.7rem;
}

.showcase-tag {
    display: inline-flex;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.showcase-tag.muted {
    background: rgba(24, 33, 38, 0.06);
    color: var(--muted);
}

.showcase-rail-shell {
    overflow: hidden;
    margin-bottom: 1rem;
}

.showcase-rail {
    display: flex;
    gap: 1rem;
    transition: transform 0.35s ease;
}

.gallery-card {
    flex: 0 0 calc((100% - 2rem) / 3);
    min-height: 24rem;
    border-radius: 1.7rem;
    overflow: hidden;
    border: 0;
    padding: 0;
    background: #fff;
    box-shadow: var(--shadow);
    cursor: pointer;
    opacity: 0.62;
    transform: scale(0.94);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-card img {
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
}

.gallery-nav {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    border: 1px solid rgba(24, 33, 38, 0.1);
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    display: grid;
    place-items: center;
    z-index: 2;
    box-shadow: var(--shadow);
}

.gallery-nav span {
    font-size: 1.2rem;
    line-height: 1;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.2rem;
    margin-bottom: 1.5rem;
}

.gallery-dot {
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    border: 0;
    background: rgba(24, 33, 38, 0.18);
}

.gallery-dot.active {
    background: var(--brand);
}

.showcase-focus {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(16rem, 1fr);
    gap: 1.2rem;
    align-items: center;
    margin-top: 0.4rem;
}

.showcase-focus-media {
    position: relative;
    min-height: 28rem;
    border-radius: 1.8rem;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
}

.showcase-focus-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    border: 0;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    background: rgba(23, 33, 39, 0.86);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
}

.showcase-focus-copy {
    padding: 1.2rem;
}

.showcase-focus-copy h3 {
    font-size: 1.85rem;
    margin: 0.8rem 0 0.7rem;
}

.showcase-focus-copy p,
.video-copy p {
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
}

.video-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(18rem, 1fr);
    gap: 1.6rem;
    align-items: center;
}

.video-frame {
    position: relative;
    border-radius: 1.8rem;
    overflow: hidden;
    padding: 0.85rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 237, 0.9)),
        radial-gradient(circle at top left, rgba(255, 215, 123, 0.16), transparent 30%);
    border: 1px solid rgba(24, 33, 38, 0.08);
    box-shadow:
        0 28px 60px rgba(24, 33, 38, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.35) inset;
    min-height: 28rem;
}

.video-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 215, 123, 0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(14, 109, 99, 0.12), transparent 24%);
    pointer-events: none;
}

.video-frame video {
    width: 100%;
    height: 28rem;
    min-height: 28rem;
    display: block;
    border-radius: 1.25rem;
    object-fit: cover;
    background: #0e1013;
    box-shadow: 0 18px 36px rgba(7, 15, 24, 0.24);
}

.promo-reel {
    position: relative;
    min-height: 28rem;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(7, 15, 24, 0.2);
}

.promo-progress {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 4.8rem;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem;
}

.promo-bar {
    height: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    overflow: hidden;
}

.promo-bar::after {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    background: #ffffff;
    transition: width 2.6s linear;
}

.promo-bar.active::after {
    width: 100%;
}

.promo-toggle {
    position: absolute;
    top: 0.95rem;
    right: 1rem;
    z-index: 3;
    border: 0;
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    background: rgba(11, 16, 19, 0.62);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

.promo-stage {
    position: relative;
    min-height: 28rem;
}

.promo-stage img {
    width: 100%;
    height: 28rem;
    object-fit: cover;
}

.promo-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 16, 19, 0.1), rgba(11, 16, 19, 0.72));
}

.promo-copybox {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: grid;
    gap: 0.45rem;
    padding: 1rem 1.05rem;
    border-radius: 1.1rem;
    background: rgba(11, 16, 19, 0.58);
    color: #fff;
}

.promo-copybox span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.promo-copybox strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
    line-height: 1.3;
}

.promo-copybox p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

.video-overlay-note {
    position: absolute;
    left: 1.6rem;
    right: 1.6rem;
    bottom: 1.6rem;
    display: grid;
    gap: 0.2rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(11, 16, 19, 0.66);
    color: #fff;
    z-index: 2;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.video-overlay-note span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
}

.video-copy {
    padding: 1.2rem 1.1rem;
    border-radius: 1.6rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 237, 0.88));
    border: 1px solid rgba(24, 33, 38, 0.08);
    box-shadow: 0 22px 42px rgba(24, 33, 38, 0.08);
}

.video-copy h3 {
    font-size: 1.65rem;
    margin: 0.8rem 0 0.8rem;
}

.feedback-shell {
    padding: 1.35rem;
    border-radius: 2rem;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 237, 0.92)),
        radial-gradient(circle at top left, rgba(14, 109, 99, 0.08), transparent 28%);
    box-shadow: var(--shadow);
}

.feedback-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.feedback-label strong,
.feedback-label span {
    display: block;
}

.feedback-tag {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.feedback-label strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.08rem;
}

.feedback-controls {
    display: flex;
    gap: 0.7rem;
}

.feedback-viewport {
    overflow: hidden;
}

.feedback-nav {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(24, 33, 38, 0.1);
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(24, 33, 38, 0.08);
}

.feedback-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.35s ease;
    will-change: transform;
}

.feedback-card {
    flex: 0 0 100%;
    min-height: 24rem;
    padding: 0.9rem;
    border-radius: 1.8rem;
    border: 1px solid rgba(129, 41, 24, 0.15);
    background:
        linear-gradient(180deg, #ffffff, #fcf8f2);
    box-shadow: 0 18px 44px rgba(24, 33, 38, 0.08);
}

.feedback-avatar {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), #f08c67);
    color: #fff;
    font-weight: 700;
}

.feedback-thread {
    display: grid;
    gap: 0.85rem;
}

.feedback-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.feedback-footer span {
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(24, 33, 38, 0.05);
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.fb-shot {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(24, 33, 38, 0.08);
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.fb-shot-bar {
    display: grid;
    grid-template-columns: 1.5rem 1fr 1.5rem;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 0.9rem;
    border-bottom: 1px solid rgba(24, 33, 38, 0.06);
    font-size: 0.92rem;
}

.fb-shot-bar strong {
    text-align: center;
    font-size: 0.96rem;
}

.fb-arrow,
.fb-menu {
    color: #7d8791;
    font-weight: 700;
}

.fb-shot-top {
    padding: 0.85rem 0.95rem 0.65rem;
    border-bottom: 1px solid rgba(24, 33, 38, 0.05);
}

.fb-line {
    height: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #dfe4ea, #eef2f6);
}

.fb-line.short {
    width: 36%;
    margin-bottom: 0.75rem;
}

.fb-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: #6f7d8a;
    font-size: 0.8rem;
}

.boost-pill {
    padding: 0.45rem 0.75rem;
    border-radius: 0.7rem;
    background: #1677f2;
    color: #fff;
    font-weight: 700;
}

.fb-shot-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0.75rem 0.9rem;
    color: #6d7883;
    font-size: 0.82rem;
    text-align: center;
}

.screenshot-thread {
    margin-top: 0.95rem;
}

.fb-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #6d7883;
    font-size: 0.8rem;
}

.feedback-comment {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
}

.feedback-comment.reply {
    margin-left: 0.4rem;
}

.user-tone {
    background: linear-gradient(135deg, #283b54, #42698c);
}

.brand-tone {
    background: linear-gradient(135deg, var(--brand), #df7d5f);
}

.fb-comment-body {
    padding: 0.8rem 0.9rem;
    border-radius: 1rem;
    background: #f2f4f7;
}

.fb-comment-body strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 0.2rem;
}

.fb-comment-body p {
    margin: 0;
    color: #233038;
    font-size: 0.92rem;
    line-height: 1.65;
}

.brand-reply {
    background: linear-gradient(135deg, rgba(14, 109, 99, 0.12), rgba(14, 109, 99, 0.18));
}

.fb-comment-meta {
    margin-top: 0.45rem;
    color: #6d7883;
    font-size: 0.76rem;
}

.feedback-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
}

.feedback-dot {
    width: 0.8rem;
    height: 0.8rem;
    border: 0;
    border-radius: 50%;
    background: rgba(24, 33, 38, 0.16);
}

.feedback-dot.active {
    background: var(--accent);
}

.lightbox-backdrop {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(11, 16, 19, 0.9);
    padding: 2rem 5rem;
}

.lightbox-backdrop.open {
    display: flex;
}

.lightbox-dialog {
    max-width: min(78rem, 100%);
    text-align: center;
}

.lightbox-dialog img {
    max-height: 78vh;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 1.4rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-dialog p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

.lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
}

.lightbox-nav.prev {
    left: 1.5rem;
}

.lightbox-nav.next {
    right: 1.5rem;
}

.table-shell,
.size-visual {
    overflow: hidden;
    border-radius: 1.7rem;
}

.size-table {
    margin: 0;
}

.size-table thead th {
    background: #172127;
    color: #fff;
    border: 0;
    padding: 1rem;
}

.size-table tbody td {
    padding: 1rem;
    border-color: rgba(24, 33, 38, 0.08);
}

.size-table tbody tr:nth-child(even) td {
    background: rgba(14, 109, 99, 0.04);
}

.order-form-shell,
.summary-card,
.faq-card {
    padding: 1.7rem;
}

.form-label,
.selection-block h3 {
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.form-control {
    border-radius: 1rem;
    border: 1px solid rgba(24, 33, 38, 0.12);
    padding: 0.9rem 1rem;
}

.form-control:focus {
    border-color: rgba(14, 109, 99, 0.4);
    box-shadow: 0 0 0 0.2rem rgba(14, 109, 99, 0.08);
}

.selection-block {
    margin-top: 1.6rem;
}

.choice-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.choice-pill {
    min-width: 4.3rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(24, 33, 38, 0.12);
    background: #fff;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.combo-pill {
    min-width: 6.8rem;
    line-height: 1.2;
}

.combo-pill small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.82rem;
    opacity: 0.82;
}

.fixed-combo-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1.2rem;
    background: rgba(14, 109, 99, 0.08);
    border: 1px solid rgba(14, 109, 99, 0.12);
}

.fixed-combo-box strong {
    display: block;
    margin-bottom: 0.3rem;
}

.inline-price-highlight {
    margin-bottom: 0.45rem;
}

.fixed-combo-box .old-price {
    color: #8d4b3b;
}

.fixed-combo-box .new-price {
    color: var(--brand);
    font-size: 1.2rem;
}

.fixed-combo-box p {
    color: var(--muted);
    line-height: 1.7;
}

.combo-count-badge {
    min-width: 7rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: #172127;
    color: #fff;
    text-align: center;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.design-card {
    display: grid;
    grid-template-columns: 5.4rem 1fr auto;
    gap: 0.9rem;
    align-items: center;
    padding: 0.9rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(24, 33, 38, 0.1);
    background: #fff;
    cursor: pointer;
    background:
        linear-gradient(180deg, #ffffff, #fcfbf8);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.design-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(24, 33, 38, 0.08);
}

.design-card.active {
    border-color: rgba(14, 109, 99, 0.26);
    box-shadow: 0 18px 36px rgba(14, 109, 99, 0.12);
    background:
        linear-gradient(180deg, rgba(14, 109, 99, 0.06), rgba(255, 255, 255, 0.98));
}

.design-thumb {
    width: 5.4rem;
    height: 5.4rem;
    border-radius: 1rem;
    overflow: hidden;
}

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

.design-card-copy strong,
.design-card-copy span {
    display: block;
}

.design-card-copy strong {
    font-size: 0.98rem;
    margin-bottom: 0.25rem;
}

.design-card-copy span {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.design-card-state {
    display: grid;
    justify-items: end;
    gap: 0.35rem;
}

.design-add-text {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.design-qty-badge {
    min-width: 2.1rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(24, 33, 38, 0.08);
    text-align: center;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.design-card.active .design-qty-badge {
    background: #172127;
    color: #fff;
}

.selected-designs-panel {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(24, 33, 38, 0.03);
}

.selected-designs-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.selected-designs-head span {
    color: var(--muted);
    font-size: 0.88rem;
}

.selected-designs-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.selected-design-card {
    display: grid;
    grid-template-columns: 4.4rem 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(24, 33, 38, 0.08);
}

.selected-design-card img {
    width: 4.4rem;
    height: 4.4rem;
    object-fit: cover;
    border-radius: 0.8rem;
}

.selected-design-copy strong,
.selected-design-copy span {
    display: block;
}

.selected-design-copy strong {
    font-size: 0.92rem;
    margin-bottom: 0.15rem;
}

.selected-design-copy span {
    color: var(--muted);
    font-size: 0.84rem;
}

.selected-remove-btn {
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 50%;
    background: rgba(207, 78, 45, 0.1);
    color: var(--brand);
    font-size: 1.1rem;
    line-height: 1;
    display: grid;
    place-items: center;
}

.selected-design-empty {
    padding: 1rem;
    border-radius: 1rem;
    border: 1px dashed rgba(24, 33, 38, 0.16);
    text-align: center;
}

.selected-design-empty strong,
.selected-design-empty span {
    display: block;
}

.selected-design-empty span {
    color: var(--muted);
    font-size: 0.88rem;
    margin-top: 0.3rem;
}

.btn-check:checked+.choice-pill {
    background: #172127;
    color: #fff;
    border-color: #172127;
}

.delivery-list {
    display: grid;
    gap: 0.85rem;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    justify-content: space-between;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(24, 33, 38, 0.1);
    border-radius: 1rem;
    background: #fff;
}

.delivery-option span {
    flex: 1;
}

.cod-box {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: var(--accent-soft);
    color: #0c4f48;
}

.submit-btn {
    width: 100%;
    margin-top: 1.5rem;
}

.form-status {
    margin-top: 0.95rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(14, 109, 99, 0.08);
    color: #0b554d;
    font-size: 0.95rem;
}

.summary-media {
    aspect-ratio: 1.35 / 1;
    border-radius: 1.4rem;
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.summary-badge {
    background: #172127;
    color: #fff;
    margin-bottom: 0.8rem;
}

.summary-copy h3 {
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.95rem 0;
    border-top: 1px solid rgba(24, 33, 38, 0.08);
}

.summary-line strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
}

.total-line strong {
    color: var(--brand);
    font-size: 1.45rem;
}

.trust-stack {
    margin-top: 1rem;
    display: grid;
    gap: 0.8rem;
}

.trust-stack div {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(14, 109, 99, 0.05);
}

.trust-stack span {
    font-weight: 700;
}

.faq-card {
    margin-top: 1rem;
}

.faq-item+.faq-item {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(24, 33, 38, 0.08);
}

.mobile-cta {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 1.2rem;
    background: rgba(23, 33, 39, 0.96);
    color: #fff;
    box-shadow: 0 24px 50px rgba(24, 33, 38, 0.22);
}

.mobile-cta small,
.mobile-cta strong {
    display: block;
}

.confirmation-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(14, 109, 99, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(207, 78, 45, 0.1), transparent 26%),
        linear-gradient(180deg, #fffaf5 0%, #f3eee5 100%);
}

.confirmation-hero {
    padding: 4.5rem 0 2.5rem;
}

.confirmation-wrap,
.confirmation-card {
    border-radius: 2rem;
    border: 1px solid rgba(24, 33, 38, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.confirmation-wrap {
    padding: 2rem;
    text-align: center;
}

.confirmation-badge {
    display: inline-flex;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.confirmation-wrap h1,
.confirmation-card-head h2 {
    font-family: "Space Grotesk", sans-serif;
}

.confirmation-wrap h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 0.8rem;
}

.confirmation-wrap p,
.next-step-item p {
    color: var(--muted);
    line-height: 1.8;
}

.confirmation-card {
    padding: 1.7rem;
}

.confirmation-card+.confirmation-card {
    margin-top: 1rem;
}

.confirmation-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.confirmation-card-head.compact {
    margin-bottom: 1rem;
}

.confirmation-card-head h2 {
    font-size: 1.6rem;
    margin: 0.7rem 0 0;
}

.order-code-box {
    min-width: 12rem;
    padding: 0.95rem 1rem;
    border-radius: 1.1rem;
    background: rgba(24, 33, 38, 0.04);
    text-align: left;
}

.order-code-box small,
.order-code-box strong {
    display: block;
}

.order-code-box small {
    color: var(--muted);
    margin-bottom: 0.3rem;
}

.order-code-box strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
}

.confirm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.confirm-item {
    padding: 1rem;
    border-radius: 1.15rem;
    background: rgba(24, 33, 38, 0.04);
}

.confirm-item.wide {
    grid-column: 1 / -1;
}

.confirm-item span,
.confirm-item strong {
    display: block;
}

.confirm-item span {
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}

.confirm-item strong {
    font-size: 1rem;
    line-height: 1.7;
}

.next-step-list {
    display: grid;
    gap: 1rem;
}

.next-step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(24, 33, 38, 0.04);
}

.step-no {
    width: 2.8rem;
    height: 2.8rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), #f06b44);
    color: #fff;
    font-weight: 700;
}

.next-step-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.next-step-item p {
    margin: 0;
}

.confirmation-actions {
    margin-top: 1rem;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0 5.5rem;
    }

    .hero-section .row {
        row-gap: 2.25rem;
    }

    .hero-section .col-lg-6:first-child {
        text-align: center;
    }

    .offer-chip,
    .hero-price-callout {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-proof {
        justify-content: center;
    }

    .showcase-focus,
    .video-showcase {
        grid-template-columns: 1fr;
    }

    .gallery-card {
        flex-basis: calc((100% - 1rem) / 2);
    }

    .hero-visual {
        min-height: auto;
        padding-bottom: 2rem;
        max-width: 26rem;
        margin: 0 auto;
    }

    .main-card {
        margin: 0 auto;
        width: min(100%, 24rem);
    }

    .top-card {
        left: 1rem;
    }

    .bottom-card {
        right: 0.6rem;
        bottom: 0.2rem;
    }

    .price-burst {
        left: auto;
        right: 1rem;
        bottom: 1rem;
    }

    .mobile-cta {
        display: flex;
    }

    .confirmation-card-head {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: clamp(1.95rem, 9vw, 2.8rem);
        line-height: 1.3;
    }

    .spotlight-title {
        max-width: 11ch;
        margin-left: auto;
        margin-right: auto;
    }

    .top-strip .container {
        gap: 0.35rem 0.75rem !important;
        padding-top: 0.65rem !important;
        padding-bottom: 0.65rem !important;
    }

    .top-strip span {
        font-size: 0.76rem;
        line-height: 1.35;
    }

    .offer-chip {
        font-size: 0.72rem;
        padding: 0.5rem 0.75rem;
    }

    .hero-price-callout {
        width: min(100%, 22rem);
        justify-content: center;
        gap: 0.45rem;
        padding: 0.8rem 0.9rem;
    }

    .hero-price-label,
    .hero-price-old,
    .hero-price-now,
    .hero-price-new {
        text-align: center;
    }

    .hero-price-label,
    .hero-price-old {
        font-size: 0.9rem;
    }

    .hero-price-new {
        font-size: 1.15rem;
    }

    .section-space {
        padding: 4rem 0;
    }

    .hero-actions {
        flex-direction: column;
        margin-bottom: 1.2rem;
    }

    .hero-btn {
        width: 100%;
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
    }

    .hero-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        margin: 1.4rem 0;
    }

    .hero-points .point-card:last-child {
        grid-column: 1 / -1;
    }

    .point-card {
        padding: 0.9rem 0.8rem;
        text-align: left;
    }

    .point-card strong {
        font-size: 0.76rem;
    }

    .point-card span {
        font-size: 1rem;
    }

    .hero-proof {
        gap: 0.55rem;
    }

    .hero-proof span {
        font-size: 0.8rem;
        padding: 0.5rem 0.72rem;
    }

    .hero-visual {
        max-width: 21rem;
        padding-bottom: 1.2rem;
    }

    .main-card {
        width: min(100%, 20.5rem);
        border-radius: 1.6rem;
    }

    .floating-card {
        width: 5.7rem;
        border-radius: 1.2rem;
    }

    .top-card {
        top: 0.7rem;
        left: 0.3rem;
    }

    .bottom-card {
        right: 0.15rem;
        bottom: 0;
    }

    .price-burst {
        right: 0.45rem;
        left: auto;
        bottom: 0.55rem;
        padding: 0.75rem 0.85rem;
        border-radius: 1rem;
    }

    .price-burst small {
        font-size: 0.78rem;
    }

    .price-burst strong {
        font-size: 1.25rem;
    }

    .fixed-combo-box {
        display: grid;
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 0.9rem;
        padding: 1rem;
    }

    .combo-count-badge {
        min-width: 0;
        width: 100%;
        justify-content: center;
    }

    .design-grid,
    .selected-designs-list {
        grid-template-columns: 1fr;
    }

    .design-grid {
        gap: 0.85rem;
    }

    .design-card {
        display: grid;
        grid-template-columns: 4.4rem minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.75rem;
        padding: 0.85rem;
        border-radius: 1rem;
    }

    .design-thumb {
        width: 4.4rem;
        height: 4.4rem;
        border-radius: 0.9rem;
    }

    .design-card-copy strong {
        font-size: 0.92rem;
        margin-bottom: 0.15rem;
    }

    .design-card-copy span {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .design-card-state {
        justify-items: end;
        align-self: center;
        gap: 0.3rem;
    }

    .design-add-text {
        font-size: 0.72rem;
        text-align: right;
    }

    .design-qty-badge {
        min-width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
    }

    .selected-designs-panel {
        padding: 0.9rem;
        border-radius: 1rem;
    }

    .selected-designs-head {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.35rem;
        margin-bottom: 0.85rem;
    }

    .selected-design-card {
        grid-template-columns: 3.9rem minmax(0, 1fr) auto;
        gap: 0.65rem;
        padding: 0.7rem;
    }

    .selected-design-card img {
        width: 3.9rem;
        height: 3.9rem;
    }

    .selected-design-copy strong {
        font-size: 0.88rem;
    }

    .selected-design-copy span {
        font-size: 0.76rem;
        line-height: 1.35;
    }

    .size-choice-grid {
        gap: 0.6rem;
    }

    .size-choice-grid .choice-pill {
        min-width: calc(33.333% - 0.4rem);
        flex: 1 1 calc(33.333% - 0.4rem);
        padding: 0.72rem 0.6rem;
        font-size: 0.88rem;
    }

    .gallery-card {
        flex-basis: 100%;
        min-height: 20rem;
    }

    .showcase-topbar,
    .feedback-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .showcase-controls,
    .feedback-controls {
        width: 100%;
    }

    .gallery-nav,
    .feedback-nav {
        width: 3rem;
        height: 3rem;
    }

    .showcase-focus-media {
        min-height: 19rem;
    }

    .feedback-track {
        gap: 0.75rem;
    }

    .feedback-card {
        flex-basis: 100%;
    }

    .video-frame video,
    .promo-reel,
    .promo-stage,
    .promo-stage img {
        min-height: 18rem;
    }

    .video-frame {
        min-height: 18rem;
        padding: 0.6rem;
    }

    .video-frame video,
    .promo-stage img {
        height: 18rem;
    }

    .video-overlay-note {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .lightbox-backdrop {
        padding: 1.2rem;
    }

    .lightbox-close {
        top: 0.8rem;
        right: 0.8rem;
    }

    .lightbox-nav.prev {
        left: 0.8rem;
    }

    .lightbox-nav.next {
        right: 0.8rem;
    }

    .summary-shell {
        padding-bottom: 5rem;
    }

    .confirmation-wrap,
    .confirmation-card {
        border-radius: 1.5rem;
    }

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

.design-qty-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.design-qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #d0d5dd;
    background: #fff;
    border-radius: 999px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.design-qty-btn:hover {
    background: #f5f7fa;
}

.story-reel {
    position: relative;
    width: 100%;
    min-height: 460px;
    overflow: hidden;
    border-radius: 24px;
    background: #111;
}

.story-progress {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 5;
    display: flex;
    gap: 8px;
}

.story-progress-item {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    overflow: hidden;
}

.story-progress-fill {
    display: block;
    width: 0%;
    height: 100%;
    background: #fff;
    border-radius: inherit;
}

.story-progress-item.active .story-progress-fill {
    animation: storyFill 3s linear forwards;
}

.story-progress-item.done .story-progress-fill {
    width: 100%;
}

.story-slides {
    position: relative;
    width: 100%;
    height: 460px;
}

.story-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.story-slide.active {
    opacity: 1;
    z-index: 2;
}

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

@keyframes storyFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}


.size-guide-wrap {
    padding: 32px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.10), transparent 24%),
        radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.size-guide-top {
    max-width: 760px;
    margin: 0 auto 28px;
}

.size-guide-top h2 {
    margin: 8px 0 10px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
}

.size-guide-top p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
}

.size-guide-panel {
    height: 100%;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #e5e7eb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
}

.size-guide-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.size-guide-panel-head h4 {
    margin: 8px 0 0;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
}

.size-chart-card,
.size-visual-card {
    position: relative;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.size-chart-card::before,
.size-visual-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
}

.size-chart-card::before {
    background: linear-gradient(90deg, #f59e0b 0%, #ea580c 100%);
}

.size-visual-card::before {
    background: linear-gradient(90deg, #0ea5e9 0%, #2563eb 100%);
}

.size-chart-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.dynamic-size-chart table {
    width: 100%;
    min-width: 520px;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
}

.dynamic-size-chart thead th {
    padding: 16px 18px;
    background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    border: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.dynamic-size-chart tbody td {
    padding: 16px 18px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.dynamic-size-chart tbody tr:nth-child(even) td {
    background: #f8fafc;
}

.dynamic-size-chart tbody tr:hover td {
    background: #fff7ed;
    transition: background 0.2s ease;
}

.dynamic-size-chart tbody tr:last-child td {
    border-bottom: none;
}

.dynamic-size-chart tbody td:first-child {
    font-weight: 800;
    color: #b45309;
}

.size-chart-note,
.size-visual-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.7;
}

.size-chart-note {
    background: #fff7ed;
    border: 1px solid #fdba74;
    color: #9a3412;
}

.size-visual-note {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
}

.size-chart-note strong,
.size-visual-note strong {
    flex-shrink: 0;
    font-weight: 800;
}

.size-visual-badge {
    margin-bottom: 14px;
}

.size-visual-badge span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 700;
}

.size-visual {
    border-radius: 18px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.size-visual img {
    width: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .size-guide-wrap {
        padding: 24px;
        border-radius: 24px;
    }

    .size-guide-panel {
        padding: 18px;
        border-radius: 20px;
    }

    .size-guide-panel-head h4 {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .size-guide-top h2 {
        font-size: 24px;
    }

    .dynamic-size-chart table {
        min-width: 460px;
    }

    .dynamic-size-chart thead th,
    .dynamic-size-chart tbody td {
        padding: 14px 12px;
        font-size: 14px;
    }
}

.feedback-proof-shell-v2 {
    padding: 28px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 24%),
        radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.12), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.proof-toolbar {
    margin-bottom: 20px;
}

.proof-card-v2 {
    min-width: 100%;
    padding: 18px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.proof-card-v2-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.proof-card-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
}

.proof-brand-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.proof-verified-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.proof-screen-frame {
    overflow: hidden;
    border-radius: 22px;
    background: #111827;
    border: 1px solid #1f2937;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.proof-screen-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-screen-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.proof-screen-image {
    background: #0b1220;
}

.proof-screen-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.proof-card-v2-copy {
    padding: 18px 4px 4px;
}

.proof-card-v2-head strong {
    display: block;
    color: #0f172a;
    font-size: 18px;
    font-weight: 800;
}

.proof-card-v2-head span {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.proof-card-v2-copy p {
    margin: 12px 0 0;
    color: #334155;
    font-size: 15px;
    line-height: 1.75;
}

.proof-card-v2-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.proof-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .proof-card-v2 {
        min-width: calc(50% - 12px);
    }
}

@media (min-width: 1200px) {
    .proof-card-v2 {
        min-width: calc(33.333% - 16px);
    }
}

@media (max-width: 767.98px) {
    .feedback-proof-shell-v2 {
        padding: 20px;
        border-radius: 24px;
    }

    .proof-card-v2 {
        padding: 14px;
        border-radius: 20px;
    }

    .proof-card-v2-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .proof-screen-image img {
        height: 320px;
    }

    .proof-card-v2-copy {
        padding-top: 16px;
    }
}
