:root {
    --bg: #fff3f6;
    --paper: #ffffff;
    --ink: #2a171b;
    --muted: #7d6670;
    --rose: #e04475;
    --rose-dark: #9c234b;
    --rose-soft: #ffe0ea;
    --plum: #4a1f32;
    --cream: #fffaf2;
    --line: rgba(168, 73, 102, .18);
    --shadow: 0 24px 70px rgba(137, 53, 82, .16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(224, 68, 117, .16), transparent 24rem),
        radial-gradient(circle at 95% 14%, rgba(255, 197, 213, .42), transparent 28rem),
        var(--bg);
    color: var(--ink);
    font-family: "Segoe UI", Inter, system-ui, sans-serif;
    letter-spacing: 0;
}

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

.site-nav {
    background: rgba(255, 246, 248, .76);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.site-nav.is-scrolled {
    box-shadow: 0 18px 45px rgba(156, 35, 75, .12);
}

.navbar-brand {
    color: var(--ink);
    font-weight: 900;
    letter-spacing: .04rem;
}

.site-nav .nav-link {
    color: var(--muted);
    font-weight: 700;
}

.site-nav .nav-link:hover {
    color: var(--rose-dark);
}

.btn {
    border-radius: 999px;
    padding: .78rem 1.25rem;
    font-weight: 800;
}

.btn-whatsapp {
    background: #1fa855;
    color: #fff;
    border: 1px solid #1fa855;
    box-shadow: 0 14px 32px rgba(31, 168, 85, .22);
}

.btn-whatsapp:hover {
    background: #178845;
    color: #fff;
}

.btn-primary-soft {
    background: linear-gradient(135deg, var(--rose), #f58aae);
    border: 0;
    color: #fff;
    box-shadow: 0 18px 40px rgba(216, 79, 120, .28);
}

.btn-primary-soft:hover {
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-soft {
    border: 1px solid var(--line);
    color: var(--rose-dark);
    background: rgba(255, 255, 255, .65);
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 9rem 0 5rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(216, 79, 120, .22), transparent 26rem),
        radial-gradient(circle at 85% 25%, rgba(255, 225, 234, .95), transparent 28rem),
        linear-gradient(135deg, #fffafb, #fff0f4 52%, #fff8f2);
    animation: dreamyGlow 10s ease-in-out infinite alternate;
}

.hero-bg::before,
.hero-bg::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: .65;
}

.hero-bg::before {
    width: 18rem;
    height: 18rem;
    right: 8%;
    top: 13%;
    background: rgba(224, 68, 117, .12);
    animation: floatOrb 8s ease-in-out infinite;
}

.hero-bg::after {
    width: 12rem;
    height: 12rem;
    left: 7%;
    bottom: 12%;
    background: rgba(255, 255, 255, .65);
    animation: floatOrb 9s ease-in-out infinite reverse;
}

@keyframes dreamyGlow {
    from { transform: scale(1); filter: saturate(1); }
    to { transform: scale(1.03); filter: saturate(1.12); }
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-22px); }
}

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

.label {
    color: var(--rose-dark);
    text-transform: uppercase;
    letter-spacing: .14rem;
    font-size: .78rem;
    font-weight: 900;
    margin-bottom: .8rem;
}

.hero h1,
.section-title h2,
.shipping-section h2 {
    font-size: clamp(2.7rem, 6vw, 5.7rem);
    line-height: .96;
    font-weight: 900;
    color: var(--ink);
}

.hero .lead,
.section-title p,
.shipping-section p,
.site-footer p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.trust-row span,
.sizes,
.mini-card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .72);
    color: var(--muted);
    border-radius: 999px;
    padding: .62rem .9rem;
    font-weight: 700;
}

.hero-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 10px solid rgba(255, 255, 255, .72);
    transform: rotate(1.2deg);
    animation: heroFloat 5.5s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(1.2deg); }
    50% { transform: translateY(-14px) rotate(-.4deg); }
}

.hero-card img {
    width: 100%;
    height: min(72vh, 720px);
    object-fit: cover;
}

.floating-offer {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow);
}

.floating-badge {
    position: absolute;
    background: rgba(74, 31, 50, .9);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 999px;
    padding: .65rem 1rem;
    font-weight: 900;
    box-shadow: 0 20px 50px rgba(74, 31, 50, .22);
}

.badge-one {
    left: 1.2rem;
    top: 1.4rem;
    animation: badgeFloat 4.7s ease-in-out infinite;
}

.badge-two {
    right: 1.2rem;
    top: 46%;
    animation: badgeFloat 5.2s ease-in-out infinite reverse;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-offer strong,
.floating-offer span {
    display: block;
}

.floating-offer span {
    color: var(--rose-dark);
    font-weight: 900;
}

.section {
    padding: 5.5rem 0;
}

.marquee-band {
    overflow: hidden;
    background: var(--plum);
    color: #fff;
    padding: 1rem 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: marqueeMove 28s linear infinite;
}

.marquee-track span {
    white-space: nowrap;
    font-weight: 900;
    letter-spacing: .08rem;
    text-transform: uppercase;
}

@keyframes marqueeMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.mood-section {
    padding-top: 3.5rem;
}

.mood-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: repeat(2, minmax(220px, 1fr));
    gap: 1rem;
}

.mood-card {
    position: relative;
    min-height: 220px;
    border-radius: 1.5rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.mood-card.large {
    grid-row: span 2;
}

.mood-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(42, 23, 27, .78));
}

.mood-card div {
    position: relative;
    color: #fff;
}

.mood-card span {
    color: #ffd9e5;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12rem;
    font-size: .78rem;
}

.mood-card h3 {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 900;
}

.intro-strip {
    padding-top: 3rem;
}

.mini-card {
    border-radius: 1rem;
}

.mini-card strong {
    display: block;
    color: var(--rose-dark);
    font-size: 1.5rem;
}

.mini-card span {
    color: var(--muted);
    font-weight: 700;
}

.section-title {
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.product-card {
    height: 100%;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1.35rem;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(137, 53, 82, .1);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(224, 68, 117, .38);
}

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

.product-media {
    position: relative;
}

.product-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform .45s ease;
}

.product-media span {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, .92);
    color: var(--rose-dark);
    border-radius: 999px;
    padding: .42rem .75rem;
    font-size: .78rem;
    font-weight: 900;
}

.product-body {
    padding: 1.25rem;
}

.product-body h3 {
    font-size: 1.2rem;
    font-weight: 900;
    min-height: 2.9rem;
}

.product-body p {
    color: var(--muted);
    margin-bottom: .8rem;
}

.sizes {
    display: inline-block;
    border-radius: .75rem;
    margin-bottom: 1rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: .7rem;
    margin-bottom: 1rem;
}

.price-row strong {
    color: var(--rose-dark);
    font-size: 1.45rem;
}

.price-row del {
    color: #aa8d98;
}

.shipping-section {
    background: #fff;
    border-block: 1px solid var(--line);
}

.fabric-section {
    background: linear-gradient(135deg, var(--plum), #8d3158);
    color: #fff;
}

.fabric-section h2,
.fabric-section p {
    color: #fff;
}

.fabric-section .label {
    color: #ffd6e2;
}

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

.fabric-grid div {
    min-height: 150px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .1);
    border-radius: 1.25rem;
    padding: 1.2rem;
    display: grid;
    align-content: end;
    backdrop-filter: blur(12px);
}

.fabric-grid strong {
    font-size: 1.6rem;
}

.fabric-grid span {
    color: rgba(255, 255, 255, .76);
}

.wide-img {
    width: 100%;
    border-radius: 1.6rem;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.steps {
    display: grid;
    gap: .8rem;
    margin: 1.6rem 0 2rem;
}

.steps div {
    display: flex;
    align-items: center;
    gap: .85rem;
    background: var(--rose-soft);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: .9rem;
    color: var(--ink);
    font-weight: 800;
}

.steps b {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--rose);
    color: #fff;
}

.review-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    padding: 1.4rem;
    box-shadow: 0 18px 55px rgba(137, 53, 82, .08);
}

.stars {
    color: var(--rose);
    font-size: 1.1rem;
    letter-spacing: .05rem;
    margin-bottom: .75rem;
}

.review-card p {
    color: var(--muted);
    line-height: 1.75;
}

.review-card footer {
    color: var(--ink);
    font-weight: 900;
}

.faq-section {
    background: linear-gradient(180deg, #fff7f8, #fff);
}

.size-guide-section {
    padding-top: 2rem;
}

.size-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 1.8rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: var(--shadow);
}

.size-guide h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
}

.size-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    justify-content: flex-end;
}

.size-pills span {
    display: grid;
    place-items: center;
    min-width: 4.4rem;
    min-height: 4.4rem;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--rose-dark);
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(156, 35, 75, .08);
}

.reveal-up {
    opacity: 0;
    transform: translateY(18px);
    animation: revealUp .8s ease forwards;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up:nth-child(2) {
    animation-delay: .12s;
}

.reveal-up:nth-child(3) {
    animation-delay: .22s;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-item {
    border: 1px solid var(--line);
    border-radius: 1rem !important;
    overflow: hidden;
    margin-bottom: .8rem;
    background: #fff;
}

.accordion-button {
    color: var(--ink);
    font-weight: 900;
    background: #fff;
}

.accordion-button:not(.collapsed) {
    background: var(--rose-soft);
    color: var(--rose-dark);
    box-shadow: none;
}

.accordion-body {
    color: var(--muted);
    line-height: 1.7;
}

.site-footer {
    padding: 3rem 0;
    background: #2a171b;
    color: #fff;
}

.site-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-footer h2 {
    font-weight: 900;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.checkout-page {
    min-height: 100vh;
    padding: 8rem 0 5rem;
    background:
        radial-gradient(circle at 15% 12%, rgba(216, 79, 120, .16), transparent 24rem),
        linear-gradient(180deg, #fff7f8, #fff);
}

.back-link {
    display: inline-flex;
    color: var(--rose-dark);
    font-weight: 900;
    margin-bottom: 1.2rem;
    text-decoration: none;
}

.cart-card,
.checkout-card,
.success-card,
.empty-cart {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.35rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.cart-row {
    display: grid;
    grid-template-columns: 84px 1fr 100px 130px 90px;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.cart-row img {
    width: 84px;
    height: 96px;
    object-fit: cover;
    border-radius: .8rem;
}

.cart-row h3 {
    font-size: 1.05rem;
    font-weight: 900;
    margin: 0;
}

.cart-row span {
    color: var(--muted);
}

.remove-link {
    border: 0;
    background: transparent;
    color: var(--rose-dark);
    font-weight: 900;
}

.cart-total,
.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cart-total {
    padding: 1.2rem 0;
    font-size: 1.25rem;
}

.cart-actions {
    display: flex;
    justify-content: flex-end;
    gap: .8rem;
    flex-wrap: wrap;
}

.checkout-card h3 {
    font-weight: 900;
    margin-bottom: 1rem;
}

.summary-row {
    padding: .65rem 0;
    color: var(--muted);
}

.summary-row strong {
    color: var(--ink);
}

.summary-row.total {
    font-size: 1.15rem;
    color: var(--ink);
    font-weight: 900;
}

.summary-box {
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1rem;
    margin: 1.5rem 0;
    background: var(--rose-soft);
}

.success-wrap {
    display: grid;
    align-items: center;
}

.success-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.success-card h1 {
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
}

@media (max-width: 991px) {
    .hero {
        padding-top: 7.5rem;
    }

    .hero-card img {
        height: 520px;
    }

    .site-footer .container {
        align-items: flex-start;
        flex-direction: column;
    }

    .mood-grid,
    .size-guide {
        grid-template-columns: 1fr;
    }

    .mood-card.large {
        grid-row: auto;
    }

    .size-pills {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .cart-row {
        grid-template-columns: 70px 1fr;
    }

    .cart-row input,
    .cart-row strong,
    .cart-row .remove-link {
        grid-column: 2;
    }
}

@media (max-width: 575px) {
    .hero h1,
    .section-title h2,
    .shipping-section h2 {
        font-size: 2.45rem;
    }

    .hero-card img {
        height: 430px;
    }

    .btn {
        width: 100%;
    }

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