:root {
    --sakura-blue: #2D3277;
    --sakura-pink: #F2A7B5;
    --sakura-light: #F8F7FC;
    --sakura-text: #1D214C;
    --sakura-nav-bg: rgba(45, 50, 119, 0.96);
    --sakura-border: rgba(45, 50, 119, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--sakura-light);
    color: var(--sakura-text);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.navbar {
    background-color: var(--sakura-nav-bg) !important;
    box-shadow: 0 2px 18px rgba(17, 19, 64, 0.18);
    padding: 14px 0;
    transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.navbar-brand {
    color: var(--sakura-pink) !important;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem;
    font-weight: 500;
    margin-left: 0.4rem;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active { color: var(--sakura-pink) !important; }

.cart-link {
    border-color: rgba(255, 255, 255, 0.65);
    border-radius: 50px;
    min-width: 46px;
}

.section-padding { padding: 104px 0; }

.hero-home {
    background: radial-gradient(circle at 10% 10%, rgba(242, 167, 181, 0.25), transparent 28rem), linear-gradient(132deg, #222663 0%, var(--sakura-blue) 56%, #3c438d 100%);
    color: #fff;
    min-height: 690px;
    overflow: hidden;
    padding: 150px 0 86px;
    position: relative;
}

.hero-home::after {
    border: 1px solid rgba(242, 167, 181, 0.22);
    border-radius: 50%;
    content: '';
    height: 520px;
    position: absolute;
    right: -175px;
    top: 85px;
    width: 520px;
}

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

.eyebrow {
    color: var(--sakura-pink);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.eyebrow-dark { color: var(--sakura-blue); }

.hero-home h1 {
    font-size: clamp(2.7rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 1.03;
    margin-bottom: 1.5rem;
    max-width: 680px;
}

.hero-copy {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 570px;
}

.btn-sakura {
    background-color: var(--sakura-pink);
    border: 2px solid var(--sakura-pink);
    border-radius: 50px;
    color: var(--sakura-blue);
    font-weight: 700;
    padding: 0.78rem 1.5rem;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-sakura:hover {
    background-color: #fff;
    border-color: #fff;
    box-shadow: 0 10px 24px rgba(242, 167, 181, 0.25);
    color: var(--sakura-blue);
    transform: translateY(-2px);
}

.product-card { overflow: hidden; }

.producto-remate {
    border: 3px solid #f0a500 !important;
    box-shadow: 0 0 0 0.2rem rgba(242, 167, 181, 0.3), 0 0.75rem 1.5rem rgba(30, 34, 88, 0.18) !important;
}

.descuento-flotante {
    background: #d63384;
    color: #fff;
    font-size: 0.82rem;
    right: 0.75rem;
    top: 0.75rem;
    z-index: 10;
}

.producto-remate .descuento-flotante {
    background: linear-gradient(135deg, #d63384, #8a5a00);
}

.btn-ghost {
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    padding: 0.78rem 1.5rem;
}

.btn-ghost:hover { background: #fff; border-color: #fff; color: var(--sakura-blue); }

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 2.2rem;
}

.hero-benefits li { color: rgba(255, 255, 255, 0.9); font-size: 0.88rem; }
.hero-benefits i { color: var(--sakura-pink); margin-right: 0.35rem; }

.hero-promo-card {
    background: #fff;
    border: 7px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    box-shadow: 0 24px 55px rgba(12, 14, 57, 0.35);
    color: var(--sakura-text);
    margin-left: auto;
    max-width: 475px;
    overflow: hidden;
    position: relative;
}

.promo-label {
    background: var(--sakura-pink);
    color: var(--sakura-blue);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.55rem 0.85rem;
    position: absolute;
    right: 0;
    top: 1rem;
    z-index: 1;
}

.hero-promo-image { display: block; height: 365px; object-fit: cover; object-position: center; width: 100%; }

.hero-promo-content { padding: 1.35rem 1.5rem 1.5rem; position: relative; }
.hero-promo-content h2 { color: var(--sakura-blue); font-size: 2rem; font-weight: 700; margin-bottom: 0.35rem; }

.hero-promo-content a, .text-link {
    color: var(--sakura-blue);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.hero-promo-content a:hover, .text-link:hover { color: #d56d84; }

.trust-strip {
    background: var(--sakura-pink);
    color: var(--sakura-blue);
    font-size: 0.93rem;
    font-weight: 700;
    padding: 1.15rem 0;
}

.trust-strip i { margin-right: 0.45rem; }
.launches-section { background: #fff; }
.section-heading { max-width: 720px; }

.section-heading h2, .club-panel h2 {
    color: var(--sakura-blue);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.section-heading p:not(.eyebrow), .club-panel > .row p:not(.eyebrow) {
    color: #5f6380;
    line-height: 1.7;
    margin-bottom: 0;
}

.launch-card {
    background: #fff;
    border: 1px solid var(--sakura-border);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(30, 34, 88, 0.07);
    overflow: hidden;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.launch-card:hover { box-shadow: 0 17px 34px rgba(30, 34, 88, 0.14); transform: translateY(-5px); }
.launch-image-link { display: block; overflow: hidden; }
.launch-image { display: block; height: 225px; object-fit: cover; transition: transform 0.35s ease; width: 100%; }
.launch-card:hover .launch-image { transform: scale(1.04); }

.launch-card-body { display: flex; flex-direction: column; min-height: 252px; padding: 1.35rem; }

.product-tag {
    align-self: flex-start;
    background: #fcedf1;
    border-radius: 50px;
    color: #a23e59;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.32rem 0.6rem;
}

.launch-card h3 { color: var(--sakura-blue); font-size: 1.16rem; font-weight: 700; line-height: 1.35; margin: 0.85rem 0 0.6rem; }
.launch-card p { color: #656a83; font-size: 0.86rem; line-height: 1.65; margin-bottom: 1rem; }
.launch-card .text-link { margin-top: auto; }

.categories-section { background: var(--sakura-blue); color: #fff; }
.categories-section .section-heading h2 { color: #fff; }
.categories-section .section-heading p:not(.eyebrow) { color: rgba(255, 255, 255, 0.76); }

.category-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(242, 167, 181, 0.55);
    border-radius: 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 208px;
    padding: 1.35rem;
    position: relative;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.category-card:hover { background: rgba(242, 167, 181, 0.18); color: #fff; transform: translateY(-4px); }

.category-icon {
    align-items: center;
    background: var(--sakura-pink);
    border-radius: 12px;
    color: var(--sakura-blue);
    display: inline-flex;
    font-size: 1.35rem;
    height: 48px;
    justify-content: center;
    margin-bottom: 1.7rem;
    width: 48px;
}

.category-card > span:nth-of-type(2) { font-size: 1.15rem; font-weight: 700; }
.category-card small { color: rgba(255, 255, 255, 0.73); font-size: 0.78rem; margin-top: 0.35rem; max-width: 165px; }
.category-arrow { bottom: 1.3rem; color: var(--sakura-pink); position: absolute; right: 1.3rem; }

.club-section { background: var(--sakura-light); }

.club-panel {
    background: #fff;
    border: 1px solid var(--sakura-border);
    border-radius: 24px;
    box-shadow: 0 12px 34px rgba(30, 34, 88, 0.08);
    padding: clamp(1.6rem, 5vw, 4rem);
}

.club-form .form-control, .club-form .form-select {
    background: #f8f8fc;
    border: 1px solid #dfe1ee;
    border-radius: 10px;
    color: var(--sakura-text);
    padding: 0.75rem 0.9rem;
}

.club-form .form-control:focus, .club-form .form-select:focus {
    border-color: var(--sakura-pink);
    box-shadow: 0 0 0 0.22rem rgba(242, 167, 181, 0.28);
}

.footer-custom {
    background: #20245b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
}

.social-icons a { color: #fff; font-size: 1.1rem; text-decoration: none; transition: color 0.2s ease; }
.social-icons a:hover, .admin-link:hover { color: var(--sakura-pink); }
.admin-link { color: rgba(255, 255, 255, 0.66); font-size: 0.78rem; text-decoration: none; }

@media (max-width: 991.98px) {
    .navbar-nav { padding: 1rem 0 0.4rem; }
    .nav-link { margin-left: 0; padding: 0.55rem 0; }
    .hero-home { min-height: auto; padding: 132px 0 64px; }
    .hero-promo-card { margin: 0 auto; }
}

@media (max-width: 575.98px) {
    .section-padding { padding: 72px 0; }
    .hero-home h1 { font-size: 2.65rem; }
    .hero-promo-image { height: 300px; }
    .hero-benefits { display: grid; gap: 0.65rem; }
    .trust-strip .col-md-4 + .col-md-4 { margin-top: 0.55rem; }
    .launch-image { height: 210px; }
}
