@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&display=swap');

:root {
    --refresh-shadow-lg: 0 20px 45px rgba(71, 103, 142, 0.18);
    --refresh-shadow-md: 0 12px 28px rgba(71, 103, 142, 0.14);
    --refresh-shadow-sm: 0 8px 18px rgba(64, 93, 128, 0.12);
    --refresh-outline: #d7e9f6;
    --refresh-bg-soft: #f7fbff;
}

body {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(760px 280px at -4% -12%, rgba(244, 195, 58, 0.35), transparent 70%),
        radial-gradient(680px 260px at 104% 0%, rgba(100, 183, 214, 0.3), transparent 74%),
        radial-gradient(580px 320px at 50% 110%, rgba(154, 208, 75, 0.16), transparent 74%),
        linear-gradient(180deg, #fffef8 0%, #f8fbff 40%, #ffffff 100%);
}

body::before,
body::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: -1;
}

body::before {
    inset: 0;
    background:
        radial-gradient(220px 220px at 12% 22%, rgba(154, 106, 214, 0.12), transparent 80%),
        radial-gradient(240px 240px at 87% 30%, rgba(246, 108, 141, 0.12), transparent 80%),
        radial-gradient(180px 180px at 80% 84%, rgba(154, 208, 75, 0.15), transparent 78%);
}

body::after {
    top: 0;
    left: 0;
    right: 0;
    height: 340px;
    opacity: 0.23;
    background-image: radial-gradient(#64b7d6 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 82%);
}

h1,
h2,
h3 {
    font-family: "Fredoka", "Trebuchet MS", sans-serif;
    letter-spacing: 0.005em;
}

a {
    transition: color 0.2s ease;
}

.site-ribbon {
    box-shadow: 0 6px 18px rgba(43, 80, 111, 0.2);
}

.ribbon-content span {
    position: relative;
}

.ribbon-content span::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    vertical-align: middle;
}

.site-header {
    border-bottom-color: var(--refresh-outline);
    box-shadow: 0 10px 26px rgba(82, 116, 148, 0.11);
}

.topbar {
    padding: 0.74rem 0;
}

.brand-logo {
    filter: drop-shadow(0 6px 12px rgba(82, 116, 148, 0.16));
}

.site-nav {
    gap: 0.44rem;
}

.site-nav a {
    padding: 0.56rem 0.84rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.site-nav a:hover {
    transform: translateY(-2px);
    box-shadow: var(--refresh-shadow-sm);
    background: #ebf8ff;
}

.cart-link {
    background: linear-gradient(180deg, #fffadf 0%, #fff0be 100%);
    border-color: #f0d171;
}

.main-content {
    gap: 1.45rem;
    padding-top: 1.75rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.store-toolbar {
    border: 1px solid var(--refresh-outline);
    border-radius: 22px;
    background:
        radial-gradient(160px 90px at 0% 10%, rgba(100, 183, 214, 0.14), transparent 72%),
        radial-gradient(160px 90px at 100% 90%, rgba(154, 106, 214, 0.12), transparent 72%),
        #fff;
    padding: 0.92rem;
    box-shadow: var(--refresh-shadow-md);
    display: grid;
    gap: 0.78rem;
}

.store-search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.6rem;
}

.store-search-form input {
    border: 2px solid #9ad04b;
    border-radius: 16px;
    padding: 0.82rem 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    background: #fff;
}

.store-search-form button {
    border: 0;
    border-radius: 16px;
    padding: 0 1.05rem;
    font-weight: 900;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(180deg, #64b7d6 0%, #4ea5c6 100%);
    box-shadow: 0 8px 18px rgba(78, 165, 198, 0.24);
}

.store-departments {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 0.2rem;
}

.store-departments a {
    flex: 0 0 auto;
    text-decoration: none;
    font-weight: 900;
    color: #344761;
    border-radius: 999px;
    border: 1px solid #dbeaf5;
    background: #f9fcff;
    padding: 0.44rem 0.82rem;
    font-size: 0.84rem;
}

.store-departments a:hover,
.store-departments a.is-active {
    color: #2a7396;
    border-color: #b5ddef;
    background: #eaf7fd;
}

.store-department-tiles {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.72rem;
}

.dept-tile {
    text-decoration: none;
    color: #2f4f67;
    border: 1px solid var(--refresh-outline);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--refresh-shadow-sm);
    padding: 0.72rem 0.58rem;
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 0.48rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dept-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--refresh-shadow-md);
    border-color: #c6e2f1;
}

.dept-icon {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #2d6b8a;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    background:
        radial-gradient(70px 70px at 24% 24%, rgba(244, 195, 58, 0.25), transparent 74%),
        linear-gradient(180deg, #eff8ff 0%, #e3f2fc 100%);
    border: 1px solid #cae4f3;
}

.dept-tile span:last-child {
    font-size: 0.88rem;
    line-height: 1.35;
    font-weight: 800;
}

.main-content > section,
.main-content > .hero,
.main-content > .vitrine-home,
.main-content > .promo-strip,
.main-content > .instagram-home {
    position: relative;
}

.hero-shop .hero-text,
.hero-shop .hero-card {
    border-radius: 26px;
    border-color: var(--refresh-outline);
    box-shadow: var(--refresh-shadow-lg);
}

.hero-shop .hero-text {
    padding: 1.5rem;
    background:
        radial-gradient(200px 120px at 92% 4%, rgba(244, 195, 58, 0.35), transparent 78%),
        radial-gradient(170px 120px at 8% 96%, rgba(154, 106, 214, 0.16), transparent 76%),
        linear-gradient(145deg, #f9fdff 0%, #ffffff 100%);
}

.hero-shop .hero-text::after {
    width: 190px;
    height: 190px;
    right: -38px;
    bottom: -66px;
    background: rgba(154, 106, 214, 0.17);
}

.hero-shop .hero-text h1 {
    font-size: clamp(2.1rem, 3.6vw, 3.2rem);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    background: #f6edff;
    color: #714ab5;
    border: 1px solid #dfc8ff;
    border-radius: 999px;
    padding: 0.34rem 0.74rem;
    width: fit-content;
}

.tag::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #9a6ad6;
    box-shadow: 0 0 0 3px rgba(154, 106, 214, 0.2);
}

.bubble-list li {
    border: 1px solid #f2d68f;
    box-shadow: 0 4px 10px rgba(244, 195, 58, 0.18);
    padding: 0.44rem 0.9rem;
    font-weight: 800;
}

.toy-badges span {
    box-shadow: 0 6px 0 rgba(46, 42, 64, 0.08);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 0.25rem;
}

.hero-stats article {
    border-radius: 16px;
    border: 1px solid var(--refresh-outline);
    background: #fff;
    padding: 0.62rem 0.68rem;
    box-shadow: var(--refresh-shadow-sm);
    display: grid;
    gap: 0.16rem;
}

.hero-stats strong {
    font-family: "Fredoka", "Trebuchet MS", sans-serif;
    font-size: 1.25rem;
    line-height: 1.05;
    color: #2f7fa0;
}

.hero-stats span {
    font-size: 0.77rem;
    line-height: 1.35;
    color: #63738d;
    font-weight: 800;
}

.hero-shop .hero-highlight {
    padding: 1.35rem;
    background:
        radial-gradient(140px 120px at 6% 6%, rgba(100, 183, 214, 0.3), transparent 72%),
        radial-gradient(180px 140px at 94% 96%, rgba(154, 208, 75, 0.2), transparent 72%),
        linear-gradient(152deg, #ffffff 0%, #f4fff1 100%);
}

.hero-highlight h2 {
    font-size: clamp(1.5rem, 2.3vw, 2rem);
    margin-bottom: 0.26rem;
}

.hero-offer-item a {
    border-radius: 14px;
    border-color: #cfe6f3;
    box-shadow: 0 4px 10px rgba(95, 129, 156, 0.1);
}

.hero-offer-item a:hover {
    transform: translateY(-2px);
    box-shadow: var(--refresh-shadow-sm);
}

.home-trails {
    border-radius: 22px;
    border: 1px solid var(--refresh-outline);
    padding: 1rem;
    background:
        radial-gradient(190px 120px at 0% 0%, rgba(100, 183, 214, 0.14), transparent 75%),
        radial-gradient(180px 120px at 100% 100%, rgba(246, 108, 141, 0.14), transparent 75%),
        #fff;
    box-shadow: var(--refresh-shadow-md);
}

.store-pulse {
    border-radius: 22px;
    border: 1px solid var(--refresh-outline);
    padding: 1rem;
    background:
        radial-gradient(190px 120px at 2% 4%, rgba(244, 195, 58, 0.18), transparent 74%),
        radial-gradient(160px 110px at 98% 96%, rgba(154, 106, 214, 0.14), transparent 74%),
        #fff;
    box-shadow: var(--refresh-shadow-md);
}

.pulse-badges {
    margin: 0.74rem 0 0.92rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.52rem;
}

.pulse-badges span {
    border-radius: 999px;
    padding: 0.34rem 0.74rem;
    border: 1px solid #dfebf6;
    background: #f7fcff;
    color: #4f6180;
    font-size: 0.79rem;
    font-weight: 800;
}

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

.flash-card {
    border: 1px solid var(--refresh-outline);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--refresh-shadow-sm);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.flash-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--refresh-shadow-md);
}

.flash-media {
    display: block;
    position: relative;
    text-decoration: none;
}

.flash-media img,
.flash-media .placeholder {
    width: 100%;
    height: 188px;
    object-fit: cover;
    display: block;
}

.flash-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 999px;
    padding: 0.24rem 0.54rem;
    font-size: 0.69rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(246, 108, 141, 0.95);
    color: #fff;
}

.flash-body {
    padding: 0.78rem;
    display: grid;
    gap: 0.5rem;
}

.flash-body h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.28;
}

.flash-body h3 a {
    text-decoration: none;
    color: inherit;
}

.flash-copy {
    margin: 0;
    color: #627390;
    font-size: 0.85rem;
    line-height: 1.45;
}

.flash-price {
    display: grid;
    gap: 0.04rem;
}

.flash-price strong {
    color: #2a8aab;
    font-size: 1.14rem;
    line-height: 1.1;
}

.flash-price small {
    color: #667894;
    font-size: 0.78rem;
    font-weight: 800;
}

.flash-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
}

.flash-actions .btn {
    min-width: 94px;
    text-align: center;
}

.trail-grid {
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.trail-card {
    border-radius: 18px;
    border: 1px solid var(--refresh-outline);
    padding: 0.85rem;
    background: #fff;
    box-shadow: var(--refresh-shadow-sm);
    display: grid;
    gap: 0.44rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.trail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--refresh-shadow-md);
}

.trail-badge {
    width: fit-content;
    border-radius: 999px;
    padding: 0.28rem 0.64rem;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trail-card h3 {
    margin: 0;
    font-size: 1.18rem;
}

.trail-card p {
    margin: 0;
    color: #566580;
    font-size: 0.92rem;
    line-height: 1.5;
}

.trail-card a {
    font-weight: 900;
    text-decoration: none;
    width: fit-content;
    border-bottom: 2px solid currentColor;
    padding-bottom: 0.06rem;
}

.trail-blue {
    background: linear-gradient(180deg, #f4fbff 0%, #ffffff 100%);
}

.trail-blue .trail-badge {
    background: #dff4ff;
    color: #2b7ea0;
}

.trail-blue a {
    color: #2b7ea0;
}

.trail-yellow {
    background: linear-gradient(180deg, #fffbf0 0%, #ffffff 100%);
}

.trail-yellow .trail-badge {
    background: #ffefbc;
    color: #7c6111;
}

.trail-yellow a {
    color: #8a6b14;
}

.trail-pink {
    background: linear-gradient(180deg, #fff5f8 0%, #ffffff 100%);
}

.trail-pink .trail-badge {
    background: #ffd3df;
    color: #9a2e53;
}

.trail-pink a {
    color: #a1375d;
}

.vitrine-home {
    gap: 1rem;
}

.vitrine-main-card,
.promo-item-card,
.instagram-main-card,
.instagram-feed-placeholder,
.promo-strip article,
.card,
.summary-card,
.form-card,
.empty-state,
.success-state,
.article,
.product-detail,
.catalog-head,
.playful-filter {
    border-color: var(--refresh-outline);
    box-shadow: var(--refresh-shadow-md);
}

.vitrine-main-card {
    border-radius: 22px;
}

.vitrine-main-body {
    padding: 1.08rem;
}

.promo-pill {
    box-shadow: 0 8px 16px rgba(206, 67, 106, 0.25);
}

.promo-item-card {
    border-radius: 18px;
}

.promo-item-card:hover {
    transform: translateY(-4px) scale(1.01);
}

.promo-item-discount {
    box-shadow: 0 5px 12px rgba(122, 181, 44, 0.25);
}

.promo-strip article {
    border-radius: 18px;
    padding: 1rem;
    background:
        radial-gradient(120px 90px at 90% 10%, rgba(100, 183, 214, 0.15), transparent 76%),
        linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.benefit-icon {
    box-shadow: inset 0 -2px 0 rgba(46, 42, 64, 0.08);
}

.instagram-main-card,
.instagram-feed-placeholder {
    border-radius: 20px;
    padding: 1.08rem;
}

.instagram-main-card h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}

.instagram-feed-placeholder ul {
    margin-top: 0.8rem;
}

.section-title-row h2 {
    font-size: clamp(1.6rem, 2.4vw, 2rem);
}

.section-title-row a {
    font-weight: 900;
    text-decoration: none;
    color: #326f9c;
}

.section-title-row a:hover {
    color: #2b5f86;
}

.btn {
    border-radius: 14px;
    font-weight: 900;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:focus-visible {
    outline: 3px solid rgba(100, 183, 214, 0.35);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(180deg, #72c1dd 0%, #4ea5c6 100%);
    box-shadow: 0 8px 0 rgba(56, 138, 170, 0.26), 0 14px 22px rgba(78, 165, 198, 0.24);
}

.btn-primary:hover {
    filter: brightness(1.03);
}

.btn-ghost {
    border-width: 2px;
    border-color: #ccb4ee;
    color: #5d469c;
    box-shadow: 0 6px 14px rgba(113, 89, 166, 0.1);
}

.card {
    border-radius: 20px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fcfeff 100%);
}

.product-card {
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--refresh-shadow-lg);
}

.chip {
    background: #e8f6fe;
    color: #286d8f;
    font-weight: 900;
}

.price-row strong,
.price-stack strong,
.promo-item-price strong {
    color: #268eb2;
}

.price-stack-inline {
    display: grid;
    gap: 0.02rem;
}

.price-stack-inline strong {
    color: #268eb2;
}

.price-stack-inline small {
    color: #687a95;
    font-size: 0.76rem;
    font-weight: 800;
}

.product-card-actions {
    display: flex;
    align-items: center;
    gap: 0.42rem;
}

.blog-card {
    border-top-width: 5px;
}

.store-shelf {
    border-radius: 22px;
    border: 1px solid var(--refresh-outline);
    background: #fff;
    box-shadow: var(--refresh-shadow-md);
    padding: 1rem;
}

.shelf-kicker {
    margin: 0 0 0.18rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5f6d89;
    font-size: 0.74rem;
    font-weight: 900;
}

.site-footer {
    margin-top: 2.5rem;
}

.footer-shell::before {
    height: 6px;
}

.footer-brand-col,
.footer-col {
    border-radius: 18px;
}

.footer-col {
    padding: 0.6rem 0.8rem;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.78rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #d8e8f4;
    background: #fff;
    color: #2f6f92;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--refresh-shadow-sm);
    border-color: #bddbed;
}

.footer-social-link img {
    width: 18px;
    height: 18px;
}

.footer-social-youtube {
    background: #ff4058;
    color: #fff;
    border-color: #ff4058;
}

.footer-social-youtube svg {
    width: 19px;
    height: 19px;
}

.floating-contact a {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float:hover,
.instagram-float:hover {
    transform: translateY(-2px) scale(1.02);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.main-content > * {
    animation: none;
}

@media (max-width: 1000px) {
    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .store-department-tiles {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .trail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .flash-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .hero-shop .hero-text,
    .hero-shop .hero-card {
        border-radius: 22px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .store-department-tiles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 700px) {
    body::after {
        height: 220px;
    }

    .site-nav {
        border-color: var(--refresh-outline);
        box-shadow: var(--refresh-shadow-md);
    }

    .store-search-form {
        grid-template-columns: 1fr;
    }

    .store-search-form button {
        min-height: 44px;
    }

    .hero-shop .hero-text {
        padding: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .store-department-tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-trails {
        padding: 0.85rem;
    }

    .trail-card {
        padding: 0.74rem;
    }

    .footer-col {
        padding: 0.2rem 0;
    }

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

    .flash-media img,
    .flash-media .placeholder {
        height: 210px;
    }

    .flash-actions,
    .product-card-actions {
        width: 100%;
        justify-content: stretch;
    }

    .flash-actions .btn,
    .product-card-actions .btn {
        flex: 1;
    }
}

@media (max-width: 520px) {
    .section-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-title-row h2 {
        font-size: 1.45rem;
    }

    .hero-shop .hero-text h1 {
        font-size: 1.95rem;
    }

    .store-toolbar,
    .store-shelf,
    .store-pulse,
    .home-trails {
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
