@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --cannabis-green: #1a4d1e;
    --cannabis-light: #4caf50;
    --cannabis-lime: #8bc34a;
    --primary: #1a4d1e;
    --primary-dark: #0f2e11;
    --white: #ffffff;
    --gray-bg: #f8faf8;
    --bg-light: #f1f8f1;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --accent-gold: #f1c40f;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.header,
.hero,
.info,
.invite,
.form,
.accordion-container,
.footer,
.financial-hero,
.financial,
.shop-hero,
.shop,
.product,
.cart,
.flash-stack {
    max-width: 100%;
}

/* --- FLASH MESSAGES --- */
.flash-stack {
    max-width: 1280px;
    width: 100%;
    margin: 20px auto 0;
    padding: 0 1rem;
    display: grid;
    gap: 12px;
}

.flash {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 226, 1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 40px rgba(26, 77, 30, 0.08);
    backdrop-filter: blur(10px);
}

.flash--success {
    border-left: 6px solid rgba(76, 175, 80, 1);
}

.flash--error {
    border-left: 6px solid rgba(239, 68, 68, 1);
}

.flash__content {
    flex: 1;
}

.flash__title {
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.flash__text {
    color: var(--text-gray);
    line-height: 1.6;
}

.flash__link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 800;
    color: var(--cannabis-green);
    text-decoration: none;
    border-bottom: 2px solid rgba(76, 175, 80, 0.35);
    padding-bottom: 2px;
}

.flash__link:hover {
    border-bottom-color: rgba(76, 175, 80, 0.7);
}

.flash__list {
    margin-top: 8px;
    padding-left: 18px;
    color: rgba(127, 29, 29, 1);
}

.flash__close {
    border: 0;
    background: rgba(15, 46, 17, 0.06);
    color: var(--text-dark);
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.flash__close:hover {
    transform: scale(1.05);
    background: rgba(15, 46, 17, 0.1);
}

/* --- HEADER --- */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(26, 77, 30, 0.08);
}

.header__container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo-link img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.header__logo-link:hover img {
    transform: scale(1.05);
}

.header__menu, .header__auth {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cannabis-green), var(--cannabis-light));
    transition: width 0.3s ease;
}

.header__link:hover::after,
.header__link--active::after {
    width: 100%;
}

.header__link:hover, .header__link--active {
    color: var(--primary);
}

.header__button--primary {
    background: linear-gradient(135deg, var(--cannabis-green), var(--cannabis-light));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.header__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

/* --- HERO SECTION (portada tour) --- */
.hero {
    position: relative;
    height: 85vh;
    min-height: 560px;
    display: grid;
    grid-template-areas: "hero-cover";
    overflow: hidden;
}

/* Imagen y texto comparten la misma celda: el texto queda encima de la foto */
.hero__image-banner,
.hero__container {
    grid-area: hero-cover;
}

.hero__image-banner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    z-index: 1;
}

.hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero__image-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(15, 46, 17, 0.92) 0%,
        rgba(26, 77, 30, 0.75) 42%,
        rgba(0, 0, 0, 0.35) 100%
    );
    z-index: 2;
}

.hero__container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    align-self: stretch;
    justify-self: center;
}

.hero__description-banner {
    max-width: 640px;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__content-color {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--cannabis-lime);
    display: block;
    margin-bottom: 1.2rem;
}

.hero__tittle {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero__tittle span {
    color: var(--cannabis-lime);
    position: relative;
}

.hero__subtittle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 2rem;
}

/* --- INFO CARDS --- */
.info {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-bg) 0%, var(--white) 100%);
    position: relative;
}

.info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    clip-path: ellipse(60% 100% at 50% 0%);
}

.info__container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    overflow-x: hidden;
}

.info__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.info__cards-content {
    background: var(--white);
    padding: 35px;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 40px rgba(26, 77, 30, 0.1);
    border: 4px solid var(--cannabis-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.info__cards-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, transparent 100%);
    z-index: 0;
}

.info__cards-content:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(26, 77, 30, 0.2);
    border-color: var(--cannabis-green);
}

.info__cards-tittle {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.info__itemP {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.info__itemP::before {
    content: "✓ ";
    color: var(--cannabis-light);
    font-weight: bold;
}

.info__flyer {
    background: linear-gradient(135deg, var(--primary), var(--cannabis-green));
    padding: 60px;
    border-radius: 25px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.info__flyer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.info__flyer-tittle {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero__content-text {
    column-count: 2;
    column-gap: 40px;
    text-align: justify;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* --- INVITE SECTION --- */
.invite {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.invite__image-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.invite__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.invite__image-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 46, 17, 0.95) 0%, rgba(26, 77, 30, 0.9) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.invite__container {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 0 2rem;
}

.invite__description-banner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.invite__title {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: white;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

#si {
    background: linear-gradient(135deg, var(--cannabis-lime), var(--cannabis-light));
    color: var(--primary);
    padding: 1.3rem 3.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(139, 195, 74, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 10;
}

#si:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(139, 195, 74, 0.6);
}

/* --- FORMULARIO --- */
.form {
    padding: 100px 0;
    background: var(--white);
}

.form__container {
    max-width: 900px;
    width: calc(100% - 2rem);
    margin: 0 auto;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(26, 77, 30, 0.12);
    background: linear-gradient(145deg, #ffffff, #f8faf8);
}

.form__text {
    text-align: center;
    margin-bottom: 3rem;
}

.form__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.form__subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.form__form fieldset {
    border: 2px solid var(--bg-light);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    background: white;
}

.form__form legend {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    padding: 0 1rem;
}

.form__form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form__form input[type="text"],
.form__form input[type="email"],
.form__form input[type="tel"],
.form__form input[type="date"], 
.form__form select,
.form__form textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8e2;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fafdfa;
}

.form__form fieldset {
    min-width: 0;
    max-width: 100%;
}

.form__form input:focus,
.form__form select:focus,
.form__form textarea:focus {
    outline: none;
    border-color: var(--cannabis-light);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
    background: white;
}

.form__form button[type="submit"] {
    background: linear-gradient(135deg, var(--cannabis-green), var(--cannabis-light));
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
    margin-right: 1rem;
}

.form__form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.form__form button[type="reset"] {
    background: white;
    color: var(--text-gray);
    padding: 1.2rem 2.5rem;
    border: 2px solid #e2e8e2;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form__form button[type="reset"]:hover {
    border-color: var(--text-gray);
    background: #f8faf8;
}

/* --- ACCORDION --- */
.accordion-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 1rem;
}

.accordion-container h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 3rem;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 2px solid var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 20px rgba(26, 77, 30, 0.08);
}

.accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
    background: var(--gray-bg);
    transition: all 0.3s ease;
    list-style: none;
    position: relative;
}

.accordion-header::-webkit-details-marker {
    display: none;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 2rem;
    font-size: 2rem;
    color: var(--cannabis-green);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-item[open] .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-item[open] .accordion-header {
    background: linear-gradient(135deg, var(--cannabis-green), var(--cannabis-light));
    color: white;
}

.accordion-item[open] .accordion-header::after {
    color: white;
}

.accordion-content {
    padding: 2rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* --- WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #FFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
}

/* --- FOOTER --- */
.footer {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--gray-bg) 100%);
    padding: 5rem 2rem 3rem;
    border-top: 3px solid var(--cannabis-light);
}

.footer__container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer__branding {
    text-align: left;
}

.footer__image {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer__image-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.footer__image-subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer__list {
    list-style: none;
}

.footer__item.footer__item--text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.footer__item {
    margin-bottom: 0.8rem;
}

.footer__item a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer__item a:hover {
    color: var(--cannabis-green);
    padding-left: 5px;
}

/* --- ESTADOS FINANCIEROS --- */
.financial-hero {
    position: relative;
    padding: 90px 0 60px;
    background: radial-gradient(circle at 20% 10%, rgba(139, 195, 74, 0.25) 0%, rgba(139, 195, 74, 0) 45%),
        radial-gradient(circle at 85% 25%, rgba(76, 175, 80, 0.22) 0%, rgba(76, 175, 80, 0) 50%),
        linear-gradient(135deg, rgba(15, 46, 17, 0.06) 0%, rgba(255, 255, 255, 1) 60%);
    overflow: hidden;
}

.financial-hero__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.financial-hero__tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--cannabis-green);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(76, 175, 80, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(26, 77, 30, 0.08);
    margin-bottom: 1.25rem;
}

.financial-hero__title {
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    max-width: 780px;
}

.financial-hero__subtitle {
    color: var(--text-gray);
    font-size: 1.15rem;
    max-width: 720px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.financial-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.financial-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
}

.financial-hero__btn--primary {
    background: linear-gradient(135deg, var(--cannabis-green), var(--cannabis-light));
    color: white;
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.3);
}

.financial-hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(76, 175, 80, 0.4);
}

.financial-hero__btn--ghost {
    background: rgba(255, 255, 255, 0.85);
    color: var(--cannabis-green);
    border: 2px solid rgba(76, 175, 80, 0.25);
}

.financial-hero__btn--ghost:hover {
    background: white;
    border-color: rgba(76, 175, 80, 0.45);
    transform: translateY(-2px);
}

.financial-hero__decoration {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.financial-hero__blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: 0.75;
}

.financial-hero__blob--one {
    width: min(420px, 70vw);
    height: min(420px, 70vw);
    top: -160px;
    right: -80px;
    background: radial-gradient(circle at 30% 30%, rgba(139, 195, 74, 0.55) 0%, rgba(139, 195, 74, 0) 60%);
}

.financial-hero__blob--two {
    width: 320px;
    height: 320px;
    bottom: -140px;
    left: -120px;
    background: radial-gradient(circle at 40% 40%, rgba(76, 175, 80, 0.45) 0%, rgba(76, 175, 80, 0) 65%);
}

.financial-hero__blob--three {
    width: 220px;
    height: 220px;
    top: 110px;
    left: 55%;
    background: radial-gradient(circle at 40% 40%, rgba(26, 77, 30, 0.25) 0%, rgba(26, 77, 30, 0) 70%);
}

.financial {
    padding: 40px 0 90px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 248, 1) 100%);
}

.financial__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 2rem;
    align-items: start;
}

.financial__card {
    background: white;
    border: 1px solid rgba(226, 232, 226, 1);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(26, 77, 30, 0.08);
}

.financial__title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.financial__text {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.financial__file {
    font-weight: 800;
    color: var(--cannabis-green);
    word-break: break-word;
}

.financial__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.financial__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, var(--cannabis-green), var(--cannabis-light));
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.25);
    transition: all 0.25s ease;
}

.financial__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(76, 175, 80, 0.35);
}

.financial__btn--ghost {
    background: white;
    color: var(--cannabis-green);
    border: 2px solid rgba(76, 175, 80, 0.25);
    box-shadow: none;
}

.financial__btn--ghost:hover {
    background: rgba(248, 250, 248, 1);
    box-shadow: none;
}

.financial__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.financial__chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary);
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.18);
}

.financial__preview {
    background: white;
    border: 1px solid rgba(226, 232, 226, 1);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(26, 77, 30, 0.08);
}

.docs__note {
    padding: 26px;
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 700;
}

.contest__flyer {
    width: 100%;
    height: auto;
    display: block;
}

.page--concurso .financial-hero {
    background: radial-gradient(circle at 18% 18%, rgba(255, 193, 7, 0.18) 0%, rgba(255, 193, 7, 0) 52%),
        radial-gradient(circle at 88% 22%, rgba(76, 175, 80, 0.18) 0%, rgba(76, 175, 80, 0) 50%),
        linear-gradient(135deg, rgba(15, 46, 17, 0.05) 0%, rgba(255, 255, 255, 1) 60%);
}

.page--energia .financial-hero {
    background: radial-gradient(circle at 22% 12%, rgba(33, 150, 243, 0.16) 0%, rgba(33, 150, 243, 0) 55%),
        radial-gradient(circle at 85% 18%, rgba(139, 195, 74, 0.18) 0%, rgba(139, 195, 74, 0) 55%),
        linear-gradient(135deg, rgba(15, 46, 17, 0.05) 0%, rgba(255, 255, 255, 1) 60%);
}

.energy__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0 1.1rem;
}

.energy__pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.85rem;
    color: rgba(33, 150, 243, 1);
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.contest__subtitle {
    margin-top: 1.35rem;
    margin-bottom: 0.6rem;
    font-weight: 900;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.contest__rules {
    margin-left: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 700;
    display: grid;
    gap: 0.4rem;
}

.financial__iframe {
    width: 100%;
    height: 720px;
    border: 0;
    display: block;
}

/* --- TIENDA (SHOP) --- */
.shop-hero {
    position: relative;
    padding: 80px 0 40px;
    background: radial-gradient(circle at 20% 20%, rgba(139, 195, 74, 0.22) 0%, rgba(139, 195, 74, 0) 55%),
        radial-gradient(circle at 85% 10%, rgba(76, 175, 80, 0.18) 0%, rgba(76, 175, 80, 0) 50%),
        linear-gradient(135deg, rgba(15, 46, 17, 0.05) 0%, rgba(255, 255, 255, 1) 60%);
    overflow: hidden;
}

.shop-hero__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.shop-hero__title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.shop-hero__subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 820px;
    line-height: 1.8;
}

.shop-hero__decoration {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 70%, rgba(26, 77, 30, 0.12) 0%, rgba(26, 77, 30, 0) 55%);
    z-index: 1;
    pointer-events: none;
}

.shop {
    padding: 30px 0 90px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 248, 1) 100%);
}

.shop__container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    overflow-x: hidden;
}

.shop-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.shop-sidebar {
    position: sticky;
    top: 110px;
}

.shop-filters {
    background: white;
    border: 1px solid rgba(226, 232, 226, 1);
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(26, 77, 30, 0.08);
    padding: 18px;
    display: grid;
    gap: 14px;
}

.shop-filters__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(226, 232, 226, 1);
}

.shop-filters__title {
    font-weight: 900;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.shop-filters__reset {
    font-weight: 900;
    color: var(--text-gray);
    text-decoration: none;
}

.shop-filters__reset:hover {
    color: var(--cannabis-green);
}

.shop-field {
    display: grid;
    gap: 8px;
}

.shop-label {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.shop-input,
.shop-select {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 2px solid rgba(226, 232, 226, 1);
    background: rgba(250, 253, 250, 1);
    outline: none;
    font-family: 'Inter', sans-serif;
}

.shop-input:focus,
.shop-select:focus {
    border-color: rgba(76, 175, 80, 1);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
    background: white;
}

.shop-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-gray);
    font-weight: 700;
}

.shop-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--cannabis-green);
}

.shop-apply {
    border: 0;
    cursor: pointer;
    font-weight: 900;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cannabis-green), var(--cannabis-light));
    color: white;
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.25);
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.shop-toolbar__count {
    color: var(--text-gray);
    font-weight: 800;
}

.shop-toolbar__cart {
    display: inline-flex;
    padding: 0.7rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    color: var(--cannabis-green);
    border: 2px solid rgba(76, 175, 80, 0.25);
    background: rgba(255, 255, 255, 0.85);
}

.shop-toolbar__cart:hover {
    border-color: rgba(76, 175, 80, 0.45);
    background: white;
}

.shop__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.shop__empty {
    background: white;
    border: 1px solid rgba(226, 232, 226, 1);
    border-radius: 22px;
    padding: 44px;
    box-shadow: 0 14px 40px rgba(26, 77, 30, 0.08);
    text-align: center;
}

.shop__empty-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.shop__empty-text {
    color: var(--text-gray);
    line-height: 1.7;
}

.shop-card {
    background: white;
    border: 1px solid rgba(226, 232, 226, 1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(26, 77, 30, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.shop-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(26, 77, 30, 0.12);
}

.shop-card__image {
    height: 190px;
    background: rgba(241, 248, 241, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
}

.shop-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-card__placeholder {
    font-weight: 800;
    color: var(--text-gray);
}

.shop-card__body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.shop-card__title {
    font-weight: 900;
    color: var(--text-dark);
    font-size: 1.15rem;
}

.shop-card__title-link {
    color: inherit;
    text-decoration: none;
}

.shop-card__title-link:hover {
    text-decoration: underline;
}

.shop-card__desc {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
}

.shop-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.shop-card__price {
    font-weight: 900;
    color: var(--cannabis-green);
}

.shop-card__stock {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.shop-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
}

.shop-card__btn {
    border: 0;
    cursor: pointer;
    font-weight: 900;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: rgba(76, 175, 80, 1);
    color: white;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px rgba(76, 175, 80, 0.2);
}

.shop-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(76, 175, 80, 0.35);
}

.shop-card__btn--ghost {
    background: white;
    color: var(--cannabis-green);
    border: 2px solid rgba(76, 175, 80, 0.25);
    box-shadow: none;
}

.shop-card__btn--ghost:hover {
    box-shadow: none;
    transform: translateY(-2px);
    border-color: rgba(76, 175, 80, 0.45);
}

/* --- PRODUCTO (DETALLE) --- */
.product {
    padding: 40px 0 90px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 248, 1) 100%);
}

.product__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product__breadcrumb a {
    color: var(--cannabis-green);
    text-decoration: none;
    font-weight: 900;
}

.product__breadcrumb a:hover {
    text-decoration: underline;
}

.product__grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.product__media {
    background: white;
    border: 1px solid rgba(226, 232, 226, 1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(26, 77, 30, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}

.product__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product__placeholder {
    color: var(--text-gray);
    font-weight: 900;
}

.product__info {
    background: white;
    border: 1px solid rgba(226, 232, 226, 1);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 14px 40px rgba(26, 77, 30, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product__title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
}

.product__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.product__price {
    font-weight: 900;
    color: var(--cannabis-green);
    font-size: 1.4rem;
}

.product__stock {
    color: var(--text-gray);
    font-weight: 800;
}

.product__desc {
    color: var(--text-gray);
    line-height: 1.8;
}

.product__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.product__btn {
    border: 0;
    cursor: pointer;
    font-weight: 900;
    padding: 0.95rem 1.2rem;
    border-radius: 14px;
    background: rgba(76, 175, 80, 1);
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(76, 175, 80, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(76, 175, 80, 0.28);
}

.product__btn--ghost {
    background: white;
    color: var(--cannabis-green);
    border: 2px solid rgba(76, 175, 80, 0.25);
    box-shadow: none;
}

.product__btn--ghost:hover {
    box-shadow: none;
    border-color: rgba(76, 175, 80, 0.45);
}

/* --- CARRITO --- */
.cart {
    padding: 40px 0 90px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 248, 1) 100%);
}

.cart__container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    overflow-x: hidden;
}

.cart__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.cart__title {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--text-dark);
}

.cart__back {
    color: var(--cannabis-green);
    text-decoration: none;
    font-weight: 900;
}

.cart__back:hover {
    text-decoration: underline;
}

.cart__empty {
    background: white;
    border: 1px solid rgba(226, 232, 226, 1);
    border-radius: 22px;
    padding: 44px;
    box-shadow: 0 14px 40px rgba(26, 77, 30, 0.08);
    text-align: center;
}

.cart__empty-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cart__empty-text {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cart__empty-btn {
    display: inline-flex;
    padding: 0.95rem 1.2rem;
    border-radius: 14px;
    font-weight: 900;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, var(--cannabis-green), var(--cannabis-light));
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.25);
}

.cart__table {
    background: white;
    border: 1px solid rgba(226, 232, 226, 1);
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(26, 77, 30, 0.08);
    overflow: hidden;
}

.cart__row {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 0.7fr;
    gap: 12px;
    padding: 14px 18px;
    align-items: center;
    border-top: 1px solid rgba(226, 232, 226, 1);
}

.cart__row--head {
    border-top: 0;
    background: rgba(248, 250, 248, 1);
    font-weight: 900;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.78rem;
}

.cart__center {
    text-align: center;
    color: var(--text-dark);
}

.cart__product {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cart__thumb {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(241, 248, 241, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.cart__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart__thumb-placeholder {
    font-weight: 900;
    color: var(--text-gray);
}

.cart__product-name {
    font-weight: 900;
    color: var(--text-dark);
}

.cart__product-id {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.cart__qty {
    width: 90px;
    padding: 0.6rem 0.65rem;
    border-radius: 14px;
    border: 2px solid rgba(226, 232, 226, 1);
    text-align: center;
    outline: none;
}

.cart__qty:focus {
    border-color: rgba(76, 175, 80, 1);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
}

.cart__subtotal {
    font-weight: 900;
    color: var(--cannabis-green);
}

.cart__remove {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.6rem 0.9rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    color: rgba(185, 28, 28, 1);
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.18);
}

.cart__remove:hover {
    background: rgba(239, 68, 68, 0.12);
}

.cart__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
}

.cart__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cart__whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.2rem;
    border-radius: 14px;
    font-weight: 900;
    text-decoration: none;
    color: rgba(15, 46, 17, 1);
    background: linear-gradient(135deg, rgba(139, 195, 74, 1), rgba(76, 175, 80, 1));
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart__whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(76, 175, 80, 0.35);
}

.cart__total {
    background: white;
    border: 1px solid rgba(226, 232, 226, 1);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 14px 40px rgba(26, 77, 30, 0.08);
    display: flex;
    gap: 14px;
    align-items: baseline;
}

.cart__total strong {
    font-size: 1.2rem;
    color: var(--cannabis-green);
}

.cart__update {
    border: 0;
    cursor: pointer;
    font-weight: 900;
    padding: 0.95rem 1.2rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cannabis-green), var(--cannabis-light));
    color: white;
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.25);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero__tittle {
        font-size: 3rem;
    }

    .footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .financial__container {
        grid-template-columns: 1fr;
    }

    .financial-hero__title {
        font-size: 2.6rem;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

    .shop-hero__title {
        font-size: 2.5rem;
    }

    .product__grid {
        grid-template-columns: 1fr;
    }

    .form__container {
        max-width: 100%;
        padding: 40px 32px;
    }

    .info__flyer {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .hero__container,
    .financial-hero__container,
    .shop-hero__container,
    .financial__container,
    .product__container,
    .invite__container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero {
        height: 75vh;
        min-height: 460px;
    }

    .hero__container {
        align-items: flex-end;
        padding: 2rem 1rem 2.5rem;
    }

    .hero__img {
        object-position: center 35%;
    }

    .hero__image-banner::after {
        background: linear-gradient(
            180deg,
            rgba(15, 46, 17, 0.55) 0%,
            rgba(15, 46, 17, 0.88) 55%,
            rgba(0, 0, 0, 0.75) 100%
        );
    }

    .hero__tittle {
        font-size: 2.2rem;
        overflow-wrap: anywhere;
    }

    .hero__subtittle {
        font-size: 1.1rem;
    }

    .info {
        padding: 60px 0;
    }

    .info__container {
        gap: 2rem;
    }

    .info__cards {
        flex-direction: column;
        align-items: center;
    }

    .info__cards-content {
        width: 260px;
        height: 260px;
        padding: 25px;
    }

    .info__flyer {
        padding: 40px 25px;
    }

    .info__flyer-tittle {
        font-size: 1.8rem;
    }

    .hero__content-text {
        column-count: 1;
    }

    .invite__title {
        font-size: 1.8rem;
    }

    .form__form fieldset {
        padding: 1rem;
    }

    .form__form button[type="submit"],
    .form__form button[type="reset"] {
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .accordion-container h3 {
        font-size: 1.8rem;
    }

    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__branding {
        text-align: center;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 25px;
        right: 25px;
        font-size: 30px;
    }

    .financial-hero__title {
        font-size: 2.2rem;
    }

    .financial__iframe {
        height: 520px;
    }

    .shop-hero__title {
        font-size: 2.2rem;
    }

    .flash-stack {
        padding: 0 1rem;
        margin-top: 12px;
    }

    .header {
        overflow-x: clip;
    }

    .header__container {
        flex-wrap: nowrap;
        gap: 0.75rem;
        padding: 0.9rem 1rem;
    }

    .header__toggle-label {
        display: inline-flex;
        margin-left: auto;
        position: relative;
        z-index: 1101;
        flex-shrink: 0;
    }

    .header__panel {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        height: 100dvh;
        width: min(300px, 86vw);
        max-width: 100%;
        background: rgba(255, 255, 255, 0.98);
        border-left: 1px solid rgba(226, 232, 226, 1);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.12);
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
        padding: 1rem;
        transform: translate3d(100%, 0, 0);
        transition: transform 0.25s ease;
        z-index: 1100;
        overflow-y: auto;
        overflow-x: hidden;
        visibility: hidden;
        pointer-events: none;
    }

    .header__nav {
        width: 100%;
        flex: none;
        justify-content: flex-start;
    }

    .header__menu {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .header__menu .header__link {
        display: block;
        width: 100%;
        padding: 0.8rem 0.85rem;
        border-radius: 12px;
        background: rgba(248, 250, 248, 1);
    }

    .header__actions {
        width: 100%;
    }

    .header__auth {
        width: 100%;
        justify-content: flex-start;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .header__overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.45);
        z-index: 1099;
        cursor: pointer;
    }

    .header__toggle:checked + .header__toggle-label .header__hamburger {
        background: transparent;
    }

    .header__toggle:checked + .header__toggle-label .header__hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }

    .header__toggle:checked + .header__toggle-label .header__hamburger::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .header__toggle:checked ~ .header__overlay {
        display: block;
    }

    .header__toggle:checked ~ .header__panel {
        transform: translate3d(0, 0, 0);
        visibility: visible;
        pointer-events: auto;
    }

    .invite {
        height: auto;
        min-height: 380px;
        padding: 3rem 0;
    }

    #si {
        width: 100%;
        max-width: 320px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .form {
        padding: 60px 0;
    }

    .form__container {
        width: calc(100% - 1.5rem);
        margin: 0 auto;
        padding: 28px 18px;
    }

    .form__title {
        font-size: 2rem;
    }

    .form__form input[type="radio"] + label {
        display: inline-block;
        margin-right: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .accordion-header {
        padding: 1.25rem 3rem 1.25rem 1.25rem;
        font-size: 1rem;
    }

    .accordion-header::after {
        right: 1rem;
    }

    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-toolbar__cart {
        text-align: center;
        justify-content: center;
    }

    .shop-card__actions {
        grid-template-columns: 1fr;
    }

    .cart__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart__title {
        font-size: 2rem;
    }

    .cart__row--head {
        display: none;
    }

    .cart__table {
        overflow: visible;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .cart__row:not(.cart__row--head) {
        grid-template-columns: 1fr;
        min-width: 0;
        text-align: left;
        gap: 12px;
        padding: 1rem;
        margin-bottom: 1rem;
        background: white;
        border: 1px solid rgba(226, 232, 226, 1);
        border-radius: 18px;
        box-shadow: 0 10px 28px rgba(26, 77, 30, 0.08);
    }

    .cart__center {
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .cart__center::before {
        font-size: 0.75rem;
        font-weight: 800;
        color: var(--text-gray);
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .cart__row:not(.cart__row--head) .cart__center:nth-child(2)::before {
        content: "Precio";
    }

    .cart__row:not(.cart__row--head) .cart__center:nth-child(3)::before {
        content: "Cantidad";
    }

    .cart__row:not(.cart__row--head) .cart__center:nth-child(4)::before {
        content: "Subtotal";
    }

    .cart__row:not(.cart__row--head) .cart__center:nth-child(5)::before {
        content: "Quitar";
    }

    .cart__qty {
        width: 100%;
        max-width: 140px;
        margin-left: auto;
    }

    .cart__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .cart__actions {
        width: 100%;
        justify-content: stretch;
    }

    .cart__actions .cart__update,
    .cart__actions .cart__whatsapp {
        width: 100%;
        text-align: center;
    }

    .cart__total {
        width: 100%;
        justify-content: space-between;
    }

    .financial-hero {
        padding: 60px 0 40px;
    }

    .financial-hero__blob {
        display: none;
    }

    .financial__card,
    .financial__preview {
        padding: 20px;
    }

    .product__title {
        font-size: 1.6rem;
    }

    .product__actions .product__btn {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 420px;
        height: 70vh;
    }

    .hero__container {
        padding-bottom: 2rem;
    }

    .hero__tittle {
        font-size: 1.75rem;
    }

    .hero__content-color {
        letter-spacing: 2px;
        font-size: 0.8rem;
    }

    .info__cards-content {
        width: min(100%, 280px);
        height: auto;
        min-height: 240px;
        border-radius: 24px;
        aspect-ratio: 1;
    }

    .shop-hero__title,
    .financial-hero__title {
        font-size: 1.85rem;
    }

    .financial__iframe {
        height: 420px;
    }

    .cart__product {
        flex-direction: column;
        align-items: flex-start;
    }
}

