
/* =========================================================
   AROMAKIA
   STYLE.CSS
   Versión ordenada del CSS original
   ========================================================= */


/* =========================================================
   01. VARIABLES
   ========================================================= */

:root {
    --black: #111;
    --white: #fff;
    --off: #f5f3ef;
    --gold: #c9a46c;
    --gray: #777;
    --line: #dedbd5;

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", Arial, sans-serif;
}


/* =========================================================
   02. BASE / RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--off);
    color: var(--black);
    font-family: var(--sans);
    font-size: 14px;
}

button,
a {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================================================
   03. BARRA DE ANUNCIO
   ========================================================= */

.announcement {
    height: 30px;

    background: #0b0b0b;
    color: #ddd;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 9px;
    letter-spacing: 2px;
}


/* =========================================================
   04. HEADER
   ========================================================= */

.site-header {
    position: fixed;

    top: 30px;
    left: 0;

    width: 100%;
    height: 82px;

    z-index: 50;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;

    color: #fff;

    transition: 0.35s;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.scrolled {
    top: 0;
    height: 66px;

    background: rgba(17, 17, 17, 0.94);

    backdrop-filter: blur(12px);
}


/* =========================================================
   05. LOGO
   ========================================================= */

.brand {
    display: flex;
    align-items: center;

    height: 100%;
    width: 185px;
}

.brand img {
    display: block;

    width: 185px;
    height: auto;
    max-height: 70px;

    object-fit: contain;
}


/* =========================================================
   06. NAVEGACIÓN DE ESCRITORIO
   ========================================================= */

.desktop-nav {
    display: flex;

    align-items: center;

    gap: 28px;
}

.desktop-nav a {
    font-size: 10px;
    letter-spacing: 1.5px;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 82px;
}

.site-header.scrolled .nav-dropdown {
    height: 66px;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown-arrow {
    position: relative;
    top: -1px;
    color: var(--gold);
    font-size: 13px;
    transition: transform .2s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown:focus-within .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-submenu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    width: 155px;
    padding: 8px;
    background: rgba(17, 17, 17, .98);
    border-top: 2px solid var(--gold);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .28);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-submenu a {
    display: block;
    padding: 12px 14px;
    color: #ddd;
    font-size: 10px;
    text-align: center;
    transition: color .2s ease, background .2s ease;
}

.nav-submenu a:hover,
.nav-submenu a:focus {
    background: #222;
    color: var(--gold);
}


/* =========================================================
   07. ACCIONES DEL HEADER
   ========================================================= */

.header-actions {
    display: flex;
    gap: 12px;

    align-items: center;
}

.icon-btn,
.menu-btn {
    background: none;
    border: 0;

    color: inherit;

    cursor: pointer;

    font-size: 22px;

    position: relative;
}


/* =========================================================
   08. CONTADOR DEL CARRITO
   ========================================================= */

.cart-btn b {
    position: absolute;

    top: -5px;
    right: -8px;

    background: var(--gold);
    color: #111;

    border-radius: 50%;

    font-size: 9px;

    width: 17px;
    height: 17px;

    display: grid;
    place-items: center;
}


/* =========================================================
   09. BOTÓN MENÚ
   ========================================================= */

.menu-btn {
    display: none;
}


/* =========================================================
   10. HERO
   ========================================================= */

.hero {
    height: 100vh;
    min-height: 650px;

    position: relative;

    background: #111;

    overflow: hidden;
}


/* =========================================================
   11. SLIDES DEL HERO
   ========================================================= */

.hero-slide {
    position: absolute;

    inset: 0;

    background-size: cover;
    background-position: center;

    opacity: 0;

    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}


/* =========================================================
   12. OVERLAY DEL HERO
   ========================================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.18) 65%,
            rgba(0, 0, 0, 0.4)
        );
}


/* =========================================================
   13. CONTENIDO DEL HERO
   ========================================================= */

.hero-content {
    position: absolute;

    left: 9%;
    top: 50%;

    transform: translateY(-42%);

    max-width: 720px;

    color: #fff;
}

.eyebrow {
    font-size: 10px;

    letter-spacing: 3px;

    color: var(--gold);

    font-weight: 600;

    margin: 0 0 17px;
}

.hero h1 {
    font:
        600
        clamp(50px, 6vw, 92px)
        / 0.88
        var(--serif);

    margin: 0 0 25px;

    letter-spacing: -2px;
}

.hero h1 em,
h2 em {
    font-style: italic;
    font-weight: 500;
}

.hero-content > p:not(.eyebrow) {
    font-size: 15px;

    line-height: 1.8;

    color: #ddd;

    max-width: 500px;

    margin: 0 0 32px;
}


/* =========================================================
   14. BOTONES GENERALES
   ========================================================= */

.btn {
    border: 0;

    padding: 15px 25px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 10px;

    letter-spacing: 1.8px;

    font-weight: 600;

    transition: 0.3s;
}

.btn-gold {
    background: var(--gold);

    color: #111;
}

.btn-gold:hover {
    background: #e1c58f;

    transform: translateY(-2px);
}

.btn-dark {
    background: #111;

    color: #fff;
}

.btn-light {
    background: #fff;

    color: #111;
}


/* =========================================================
   15. CONTROLES DEL SLIDER
   ========================================================= */

.slider-controls {
    position: absolute;

    right: 6%;
    bottom: 45px;

    display: flex;

    align-items: center;

    gap: 18px;

    color: #fff;
}

.slider-controls button {
    background: none;
    border: 0;

    color: #fff;

    font-size: 20px;

    cursor: pointer;
}

.dots {
    display: flex;

    gap: 8px;
}

.dot {
    width: 25px;
    height: 1px;

    background: #777;

    cursor: pointer;
}

.dot.active {
    background: #fff;
}


/* =========================================================
   15.1 BANNER DE PROMOCIONES
   ========================================================= */

.promotion-banner {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(35px, 6vw, 95px);
    min-height: 330px;
    padding: clamp(55px, 7vw, 95px) 8%;
    overflow: hidden;
    background: linear-gradient(115deg, #0b0b0b 0%, #151515 62%, #1d1811 100%);
    color: #fff;
}

.promotion-banner::before,
.promotion-banner::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(201, 164, 108, .15);
    border-radius: 50%;
}

.promotion-banner::before {
    top: -130px;
    right: 18%;
    width: 380px;
    height: 380px;
}

.promotion-banner::after {
    right: -90px;
    bottom: -170px;
    width: 430px;
    height: 430px;
    border-color: rgba(255, 255, 255, .06);
}

.promotion-banner-mark {
    position: absolute;
    z-index: -1;
    left: 1.5%;
    top: 50%;
    color: rgba(255, 255, 255, .025);
    font: 600 clamp(250px, 30vw, 430px) / .8 var(--serif);
    transform: translateY(-50%);
    user-select: none;
}

.promotion-banner-copy {
    position: relative;
    max-width: 740px;
}

.promotion-banner-copy h2 {
    margin: 0 0 21px;
    font: 600 clamp(44px, 5.4vw, 78px) / .92 var(--serif);
    letter-spacing: -1px;
}

.promotion-banner-copy h2 em {
    color: var(--gold);
}

.promotion-banner-copy > p:not(.eyebrow) {
    max-width: 580px;
    margin: 0;
    color: #b5b5b5;
    font-size: 13px;
    line-height: 1.8;
}

.promotion-banner-action {
    display: grid;
    min-width: 230px;
    padding-left: clamp(28px, 4vw, 58px);
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.promotion-banner-action > span {
    color: #aaa;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
}

.promotion-banner-action > strong {
    margin: 4px 0 0;
    color: #fff;
    font: 600 clamp(58px, 6vw, 88px) / .9 var(--serif);
    letter-spacing: -2px;
}

.promotion-banner-action > small {
    margin: 7px 0 24px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
}


/* =========================================================
   16. SECCIONES GENERALES
   ========================================================= */

.section {
    padding: 105px 7%;
}


/* =========================================================
   17. INTRO
   ========================================================= */

.intro {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 9%;

    align-items: end;
}

.section h2,
.intro h2,
.newsletter h2 {
    font:
        600
        clamp(40px, 4.5vw, 65px)
        / 0.9
        var(--serif);

    margin: 0;

    letter-spacing: -1px;
}

.intro-copy {
    font-size: 14px;

    line-height: 2;

    color: #555;

    max-width: 550px;

    margin: 0;
}

.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 42px;
}


/* =========================================================
   18. CATEGORÍAS
   ========================================================= */

.category-grid {
    display: grid;

    grid-template-columns: 1.25fr 1fr 1fr;

    gap: 12px;

    height: 550px;
}

.category-card {
    position: relative;

    overflow: hidden;

    background: #ddd;
}

.category-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 1s;
}

.category-card:after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 45%,
            rgba(0, 0, 0, 0.7)
        );
}

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

.category-card > div {
    position: absolute;

    z-index: 2;

    bottom: 28px;
    left: 28px;

    color: #fff;

    display: flex;

    flex-direction: column;

    gap: 7px;
}

.category-card span {
    font:
        600
        34px
        var(--serif);
}

.category-card small {
    font-size: 9px;

    letter-spacing: 2px;
}


/* =========================================================
   19. TOOLBAR / FILTROS
   ========================================================= */

.toolbar {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin: -10px 0 35px;
}

.filter-pills {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}

.pill {
    border: 1px solid var(--line);

    background: transparent;

    padding: 9px 14px;

    font-size: 9px;

    letter-spacing: 1.3px;

    cursor: pointer;
}

.pill.active,
.pill:hover {
    background: #111;

    color: #fff;

    border-color: #111;
}

.toolbar select {
    border: 1px solid var(--line);

    background: transparent;

    padding: 9px 12px;

    font-size: 10px;
}


/* =========================================================
   20. PRODUCTOS
   ========================================================= */

.product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px 15px;
}

.product-card {
    position: relative;
}


/* =========================================================
   21. IMAGEN DEL PRODUCTO
   ========================================================= */

.product-image {
    aspect-ratio: 1 / 1.12;

    background: #e9e5df;

    overflow: hidden;

    position: relative;

    cursor: pointer;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s;
}

.product-image .second {
    position: absolute;

    inset: 0;

    opacity: 0;
}

.product-card:hover .first {
    transform: scale(1.035);
}

.product-card:hover .second {
    opacity: 1;
}


/* =========================================================
   22. BADGE
   ========================================================= */

.badge {
    position: absolute;

    left: 12px;
    top: 12px;

    background: #fff;

    padding: 6px 8px;

    font-size: 8px;

    letter-spacing: 1px;

    z-index: 2;
}


/* =========================================================
   23. FAVORITOS
   ========================================================= */

.heart {
    position: absolute;

    right: 12px;
    top: 10px;

    border: 0;

    background: #fff;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    cursor: pointer;

    z-index: 3;
}


/* =========================================================
   24. INFORMACIÓN DEL PRODUCTO
   ========================================================= */

.product-info {
    padding: 15px 2px;
}

.product-cat {
    font-size: 8px;

    letter-spacing: 1.5px;

    color: #999;
}

.product-name {
    font:
        600
        22px
        var(--serif);

    margin: 5px 0;
}

.product-price {
    font-size: 12px;
}

.old-price {
    text-decoration: line-through;

    color: #aaa;

    margin-right: 5px;
}


/* =========================================================
   25. ACCIONES DEL PRODUCTO
   ========================================================= */

.product-variant-wrap,
.included-aroma-picker {
    margin-top: 16px;
}

.product-variant-label,
.included-aroma-heading,
.included-aroma-picker label > span {
    display: block;
    margin-bottom: 7px;
    color: #685538;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.1px;
}

.product-variant-select,
.included-aroma-select {
    width: 100%;
    padding: 11px 34px 11px 12px;
    border: 1px solid #cfc9bf;
    border-radius: 0;
    background: #fff;
    color: #111;
    font: 500 10px var(--sans);
    outline: 0;
}

.product-variant-select:focus,
.included-aroma-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201,164,108,.12);
}

.included-aroma-picker {
    padding: 14px;
    border: 1px solid #d9c7aa;
    background: #f8f3e9;
}

.included-aroma-picker > small {
    display: block;
    margin: -2px 0 11px;
    color: #7c7367;
    font-size: 9px;
    line-height: 1.5;
}

.included-aroma-picker label + label {
    display: block;
    margin-top: 10px;
}

.included-aroma-warning {
    margin-top: 14px;
    padding: 11px;
    border: 1px solid #d9b6b0;
    background: #fff2ef;
    color: #8f443b;
    font-size: 10px;
}

.modal-product .included-aroma-picker {
    max-width: 520px;
    margin: 22px 0;
}

.cart-included-aroma {
    display: block;
    margin: 6px 0;
    color: #765d38;
    font-size: 9px;
    line-height: 1.5;
}

.cart-included-aroma strong {
    color: #342719;
}

.product-actions {
    display: flex;

    gap: 7px;

    margin-top: 13px;
}

.add-btn,
.quick-btn {
    border: 1px solid #111;

    background: #111;

    color: #fff;

    padding: 11px 12px;

    cursor: pointer;

    font-size: 8px;

    letter-spacing: 1px;

    flex: 1;
}

.quick-btn {
    background: transparent;

    color: #111;
}


/* =========================================================
   26. AROMA FINDER
   ========================================================= */

.aroma-finder {
    background: #181818;

    color: #fff;
}

.finder-inner {
    max-width: 1200px;

    margin: auto;
}

.finder-inner h2 {
    margin-bottom: 18px;
}

.finder-inner > div:first-child p:last-child {
    color: #aaa;

    max-width: 520px;

    line-height: 1.8;
}

.finder-options {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin: 38px 0;
}

.finder-options button {
    background: #222;

    border: 1px solid #333;

    color: #ddd;

    padding: 22px 10px;

    cursor: pointer;

    letter-spacing: 2px;

    font-size: 10px;
}

.finder-options button.active,
.finder-options button:hover {
    border-color: var(--gold);

    color: var(--gold);
}

.finder-result {
    min-height: 30px;

    color: #ddd;
}


/* =========================================================
   27. SECCIÓN PROFESIONAL
   ========================================================= */

.professional {
    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #121212;

    color: #fff;
}

.professional-image {
    min-height: 620px;

    background:
        url("https://images.unsplash.com/photo-1770425616829-61d6912705ad?auto=format&fit=crop&w=1600&q=88")
        center / cover;
}

.professional-content {
    padding: 11%;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.professional-content h2 {
    font:
        600
        clamp(45px, 5vw, 75px)
        / 0.9
        var(--serif);

    margin: 0 0 20px;
}

.professional-content > p:not(.eyebrow) {
    color: #aaa;

    line-height: 1.9;

    max-width: 470px;
}

.applications {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin: 24px 0 32px;
}

.applications span {
    border: 1px solid #333;

    padding: 8px 10px;

    font-size: 8px;

    letter-spacing: 1px;

    color: #aaa;
}


/* =========================================================
   28. VALOR DE LA AROMATIZACIÓN PROFESIONAL
   ========================================================= */

.scent-value {
    background: #f8f6f2;
}

.scent-value-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    align-items: end;
    gap: 50px;
}

.scent-value-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -25px;
}

.scent-value-heading h2 {
    margin: 0;
}

.scent-value-heading > p:not(.eyebrow) {
    max-width: 520px;
    margin: 0 0 8px;
    color: #6f6f6f;
    line-height: 1.9;
}

.scent-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 65px 0 85px;
}

.scent-benefits article {
    display: flex;
    gap: 24px;
    padding: 31px;
    border: 1px solid var(--line);
    background: #fff;
}

.scent-benefits article > span {
    color: var(--gold);
    font: 600 18px var(--serif);
}

.scent-benefits h3 {
    margin: 0 0 10px;
    font: 600 28px var(--serif);
}

.scent-benefits p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.8;
}

.scent-comparison {
    display: grid;
    grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
    gap: clamp(35px, 6vw, 90px);
    padding-top: 65px;
    border-top: 1px solid var(--line);
}

.scent-comparison-title h3 {
    max-width: 330px;
    margin: 0;
    font: 600 clamp(36px, 4vw, 55px) / 1 var(--serif);
}

.comparison-table {
    border-top: 1px solid #222;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--line);
}

.comparison-row > span {
    padding: 20px 30px;
    background: rgba(201, 164, 108, .13);
    color: #777;
    font-size: 11px;
    line-height: 1.75;
}

.comparison-row > span + span {
    background: #e9e7e2;
    border-left: 1px solid var(--line);
}

.comparison-row b {
    color: #222;
    font-weight: 600;
}

.comparison-head > span {
    color: #222;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.comparison-head > span:first-child {
    color: #9a7541;
}

.comparison-head {
    position: relative;
    isolation: isolate;
}

.comparison-head::after {
    content: "VS";
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 4px solid #f8f6f2;
    border-radius: 50%;
    background: #111;
    color: var(--gold);
    font: 700 14px var(--sans);
    letter-spacing: 1px;
    box-shadow: 0 8px 22px rgba(17, 17, 17, .18);
    transform: translate(-50%, -50%);
}


/* =========================================================
   29. PÓLIZAS DE SERVICIO PROFESIONAL
   ========================================================= */

.service-plans {
    background: #eeebe5;
}

.service-plans-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 50px;
    margin-bottom: 58px;
}

.service-plans-heading h2 {
    margin-bottom: 0;
}

.service-plans-heading > p {
    max-width: 470px;
    margin: 0 0 7px auto;
    color: #686868;
    line-height: 1.9;
}

.service-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
}

.service-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: clamp(28px, 3.2vw, 46px);
    border: 1px solid #d9d5cd;
    background: #f8f6f2;
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-plan-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(17, 17, 17, .09);
}

.service-plan-card.featured {
    border-color: #222;
    background: #151515;
    color: #fff;
}

.service-plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 12px;
    background: var(--gold);
    color: #111;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.service-plan-top {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 22px;
    border-bottom: 1px solid #d9d5cd;
}

.featured .service-plan-top {
    border-color: #353535;
}

.service-plan-number {
    color: var(--gold);
    font: 600 19px var(--serif);
}

.service-plan-label {
    color: #777;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 1px;
}

.featured .service-plan-label {
    color: #aaa;
}

.service-plan-card h3 {
    margin: 29px 0 19px;
    font: 600 clamp(29px, 3vw, 40px) / 1 var(--serif);
}

.service-plan-coverage {
    margin: 0;
}

.service-plan-coverage strong {
    display: block;
    font: 600 clamp(39px, 4.2vw, 58px) / .95 var(--serif);
    letter-spacing: -1px;
}

.service-plan-coverage span {
    display: block;
    margin-top: 7px;
    color: #777;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.featured .service-plan-coverage span {
    color: #999;
}

.service-plan-price {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    margin: 31px 0 26px;
    padding: 23px 0;
    border-top: 1px solid #d9d5cd;
    border-bottom: 1px solid #d9d5cd;
}

.featured .service-plan-price {
    border-color: #353535;
}

.service-plan-price small {
    grid-column: 1 / -1;
    margin-bottom: 4px;
    color: var(--gold);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.service-plan-price small del {
    margin-left: 3px;
    color: #8b8b8b;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .4px;
    text-decoration-thickness: 1px;
}

.featured .service-plan-price small del {
    color: #777;
}

.service-plan-price strong {
    font: 600 clamp(32px, 3.5vw, 48px) / 1 var(--serif);
}

.service-plan-price span {
    margin: 0 0 5px 9px;
    color: #777;
    font-size: 9px;
}

.featured .service-plan-price span {
    color: #999;
}

.service-plan-card ul {
    flex: 1;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

.service-plan-card li {
    position: relative;
    margin: 0 0 13px;
    padding-left: 20px;
    color: #666;
    font-size: 11px;
    line-height: 1.6;
}

.service-plan-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.featured li {
    color: #bbb;
}

.service-plan-btn {
    width: 100%;
}

.service-plan-conditions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
}

.service-plan-conditions strong {
    margin-right: 8px;
    font: 600 18px var(--serif);
}

.service-plan-conditions span {
    padding: 8px 11px;
    border: 1px solid #d2cec6;
    color: #6f6f6f;
    font-size: 8px;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.service-plan-note {
    margin: 17px 0 0;
    color: #888;
    font-size: 9px;
    line-height: 1.7;
}


/* =========================================================
   30. DISTRIBUIDORES
   ========================================================= */

.distributors {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    gap: clamp(45px, 7vw, 110px);
    padding: clamp(85px, 10vw, 150px) 7%;
    background:
        radial-gradient(circle at 12% 15%, rgba(201, 164, 108, .13), transparent 30%),
        #f5f3ef;
}

.distributors-intro h2 {
    margin: 0 0 28px;
    font: 600 clamp(45px, 5vw, 76px) / .95 var(--serif);
    letter-spacing: -.8px;
}

.distributors-intro h2 em {
    color: var(--gold);
    font-weight: 500;
}

.distributors-lead {
    max-width: 650px;
    margin: 0;
    color: #666;
    line-height: 1.9;
}

.distributor-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
    margin-top: 55px;
    border-top: 1px solid var(--line);
}

.distributor-benefits article {
    display: flex;
    gap: 17px;
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
}

.distributor-benefits article > span {
    color: var(--gold);
    font: 600 13px var(--serif);
}

.distributor-benefits h3 {
    margin: 0 0 8px;
    font: 600 23px var(--serif);
}

.distributor-benefits p {
    margin: 0;
    color: #777;
    font-size: 11px;
    line-height: 1.7;
}

.distributor-form-wrap {
    align-self: start;
    padding: clamp(30px, 4vw, 58px);
    background: #111;
    color: #fff;
    box-shadow: 0 28px 70px rgba(17, 17, 17, .14);
}

.distributor-form-wrap > h3 {
    margin: 0 0 12px;
    font: 600 clamp(35px, 4vw, 50px) / 1 var(--serif);
}

.distributor-form-wrap > p:not(.eyebrow) {
    margin: 0 0 30px;
    color: #aaa;
    font-size: 12px;
    line-height: 1.8;
}

.distributor-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
}

.distributor-form-grid label {
    display: grid;
    gap: 8px;
}

.distributor-form-grid .field-wide {
    grid-column: 1 / -1;
}

.distributor-form-grid label > span {
    color: #bdbdbd;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.distributor-form-grid input,
.distributor-form-grid select,
.distributor-form-grid textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #3c3c3c;
    border-radius: 0;
    padding: 11px 0;
    background: transparent;
    color: #fff;
    font: 13px var(--sans);
    outline: none;
    transition: border-color .2s ease;
}

.distributor-form-grid select {
    color-scheme: dark;
}

.distributor-form-grid textarea {
    resize: vertical;
}

.distributor-form-grid input:focus,
.distributor-form-grid select:focus,
.distributor-form-grid textarea:focus {
    border-color: var(--gold);
}

.distributor-form-grid textarea::placeholder {
    color: #666;
}

.distributor-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 24px 0;
    color: #999;
    font-size: 9px;
    line-height: 1.6;
}

.distributor-consent input {
    margin-top: 2px;
    accent-color: var(--gold);
}

.distributor-submit {
    width: 100%;
}

#distributorMsg {
    display: block;
    min-height: 18px;
    margin-top: 14px;
    color: #cfcfcf;
    font-size: 10px;
    text-align: center;
}


/* =========================================================
   31. CONTACTO
   ========================================================= */

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 70px;
    align-items: start;
    background: #ece8df;
}

.contact-intro h2 {
    margin: 12px 0 20px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: .94;
}

.contact-intro > p:not(.eyebrow) {
    max-width: 540px;
    color: #666;
    line-height: 1.8;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 38px 0 28px;
    border-top: 1px solid rgba(17,17,17,.16);
}

.contact-detail {
    min-width: 0;
    padding: 22px 20px 22px 0;
    border-bottom: 1px solid rgba(17,17,17,.16);
}

.contact-detail:nth-child(even) {
    padding-left: 22px;
    border-left: 1px solid rgba(17,17,17,.16);
}

.contact-detail-label {
    display: block;
    margin-bottom: 8px;
    color: #88704e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
}

.contact-detail strong {
    display: block;
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 1.5;
}

a.contact-detail:hover strong {
    color: #a57c42;
}

.contact-whatsapp {
    display: inline-flex;
}

.contact-form-card {
    padding: 48px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(17,17,17,.07);
}

.contact-form-card h3 {
    margin: 8px 0 28px;
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 600;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
}

.contact-form-grid label,
.contact-form-grid label > span {
    display: block;
}

.contact-form-grid label > span {
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-form-grid .field-wide {
    grid-column: 1 / -1;
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
    width: 100%;
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid #c9c4ba;
    border-radius: 0;
    background: transparent;
    color: #111;
    font: inherit;
    outline: 0;
}

.contact-form-grid textarea {
    resize: vertical;
}

.contact-form-grid input:focus,
.contact-form-grid select:focus,
.contact-form-grid textarea:focus {
    border-color: var(--gold);
}

.contact-consent {
    display: flex;
    gap: 10px;
    margin: 22px 0;
    color: #666;
    font-size: 11px;
    line-height: 1.6;
}

.contact-consent input {
    margin-top: 2px;
    accent-color: var(--gold);
}

.contact-form-card button {
    width: 100%;
}

.contact-form-card small {
    display: block;
    min-height: 18px;
    margin-top: 14px;
    color: #777;
    text-align: center;
}

.contact-form-card small.is-success { color: #397049; }
.contact-form-card small.is-error { color: #9b3f39; }
.contact-form-card button:disabled { cursor: wait; opacity: .65; }

.contact-trap {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


/* =========================================================
   31.1 NEWSLETTER
   ========================================================= */

.newsletter {
    text-align: center;
}

.newsletter > p:not(.eyebrow) {
    color: #777;

    line-height: 1.8;
}

.newsletter form {
    max-width: 650px;

    margin: 30px auto 0;

    display: flex;

    border-bottom: 1px solid #111;
}

.newsletter input {
    flex: 1;

    background: transparent;

    border: 0;

    padding: 15px 5px;

    outline: 0;
}

.newsletter input + input:not(.newsletter-trap) {
    margin-left: 20px;
}

.newsletter-trap {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.newsletter small {
    display: block;

    margin-top: 14px;

    color: #777;
}

.newsletter small.is-success {
    color: #397049;
}

.newsletter small.is-error {
    color: #9b3f39;
}

.newsletter button:disabled {
    cursor: wait;
    opacity: .65;
}


/* =========================================================
   32. FOOTER
   ========================================================= */

footer {
    background: #111;

    color: #bbb;

    padding: 65px 7% 20px;
}

.footer-main {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 30px;

    padding-bottom: 55px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    display: block;

    width: 190px;
    height: auto;
    max-height: 80px;

    object-fit: contain;

    object-position: left center;
}

.footer-main p {
    font:
        italic
        22px
        var(--serif);

    color: #888;
}

.footer-main h4 {
    color: #fff;

    font-size: 9px;

    letter-spacing: 2px;

    margin: 0 0 17px;
}

.footer-main a {
    display: block;

    font-size: 10px;

    margin: 11px 0;

    color: #888;
}

.footer-bottom {
    border-top: 1px solid #292929;

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    font-size: 8px;

    color: #666;
}


/* =========================================================
   30. MODALES
   ========================================================= */

.search-modal,
.product-modal {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.75);

    z-index: 100;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;
}

.search-modal.show,
.product-modal.show {
    display: flex;
}


/* =========================================================
   31. MODAL DE BÚSQUEDA
   ========================================================= */

.search-modal > button {
    position: absolute;

    right: 5%;
    top: 5%;

    background: none;

    border: 0;

    color: #fff;

    font-size: 35px;

    cursor: pointer;
}

.search-box {
    background: #f5f3ef;

    width: min(800px, 90%);

    padding: 45px;
}

.search-box input {
    width: 100%;

    border: 0;

    border-bottom: 1px solid #aaa;

    background: transparent;

    font:
        36px
        var(--serif);

    padding: 15px 0;

    outline: 0;
}

.search-result {
    padding: 15px 0;

    border-bottom: 1px solid #ddd;

    cursor: pointer;
}


/* =========================================================
   32. CARRITO
   ========================================================= */

.cart-drawer {
    position: fixed;

    z-index: 110;

    right: 0;
    top: 0;

    width: min(450px, 94vw);
    height: 100vh;

    background: #f5f3ef;

    transform: translateX(105%);

    transition: 0.4s;

    display: flex;

    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}


/* =========================================================
   33. CABECERA DEL CARRITO
   ========================================================= */

.drawer-head {
    display: flex;

    justify-content: space-between;

    padding: 30px;

    border-bottom: 1px solid var(--line);
}

.drawer-head h3 {
    font:
        600
        32px
        var(--serif);

    margin: 0;
}

.drawer-head button,
.modal-close {
    background: none;

    border: 0;

    font-size: 28px;

    cursor: pointer;
}


/* =========================================================
   34. MENSAJE DE ENVÍO
   ========================================================= */

.free-shipping {
    padding: 12px 30px;

    background: #ebe7df;

    font-size: 9px;
}

/* Mensaje de envío dentro del carrito */ #shippingMessage { font-size: 13px; font-weight: 500; line-height: 1.5; margin-top: 12px; letter-spacing: 0.1px; }


/* =========================================================
   35. PRODUCTOS DEL CARRITO
   ========================================================= */

.cart-items {
    flex: 1;

    overflow: auto;

    padding: 10px 30px;
}

.cart-item {
    display: grid;

    grid-template-columns: 80px 1fr auto;

    gap: 13px;

    padding: 20px 0;

    border-bottom: 1px solid var(--line);

    align-items: center;
}

.cart-item img {
    width: 80px;
    height: 90px;

    object-fit: cover;
}

.cart-item h4 {
    font:
        600
        19px
        var(--serif);

    margin: 0 0 6px;
}

.cart-item p {
    font-size: 10px;

    margin: 0 0 10px;
}


/* =========================================================
   36. CANTIDAD DEL CARRITO
   ========================================================= */

.qty {
    display: flex;

    align-items: center;

    gap: 10px;
}

.qty button {
    border: 1px solid #bbb;

    background: transparent;

    width: 22px;
    height: 22px;

    cursor: pointer;
}


/* =========================================================
   37. ELIMINAR DEL CARRITO
   ========================================================= */

.remove {
    border: 0;

    background: none;

    font-size: 10px;

    text-decoration: underline;

    cursor: pointer;
}


/* =========================================================
   38. PIE DEL CARRITO
   ========================================================= */

.cart-footer {
    padding: 25px 30px;

    border-top: 1px solid var(--line);
}

.cart-footer > div {
    display: flex;

    justify-content: space-between;

    margin-bottom: 20px;
}

.full {
    width: 100%;
}

.continue-btn {
    background: none;

    border: 0;

    padding: 13px;

    cursor: pointer;

    font-size: 9px;

    letter-spacing: 1px;
}


/* =========================================================
   39. OVERLAY
   ========================================================= */

.overlay {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.35);

    z-index: 105;

    display: none;
}

.overlay.show {
    display: block;
}


/* =========================================================
   40. MODAL DE PRODUCTO
   ========================================================= */

.modal-card {
    background: #f5f3ef;

    width: min(900px, 94vw);

    max-height: 90vh;

    overflow: auto;

    position: relative;

    padding: 45px;
}

.modal-product {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;
}

.modal-product img {
    width: 100%;

    aspect-ratio: 1;

    object-fit: cover;
}

.modal-product h2 {
    font:
        600
        48px
        var(--serif);

    margin: 8px 0;
}

.modal-product p {
    line-height: 1.8;

    color: #666;
}

.modal-price {
    font-size: 18px;

    margin: 20px 0;
}


/* =========================================================
   41. TOAST / NOTIFICACIÓN
   ========================================================= */

.toast {
    position: fixed;

    right: 25px;
    bottom: 25px;

    background: #111;

    color: #fff;

    padding: 15px 20px;

    z-index: 200;

    font-size: 10px;

    transform: translateY(120px);

    transition: 0.35s;
}

.toast.show {
    transform: translateY(0);
}


/* =========================================================
   42. BOTÓN WHATSAPP
   ========================================================= */

.whatsapp {
    position: fixed;

    right: 24px;
    bottom: 85px;

    width: 50px;
    height: 50px;

    border: 0;

    border-radius: 50%;

    background: #111;

    color: #fff;

    z-index: 40;

    cursor: pointer;
}


/* =========================================================
   43. BOTÓN VOLVER ARRIBA
   ========================================================= */

.top-btn {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    border: 1px solid #bbb;

    background: #f5f3ef;

    display: none;

    z-index: 40;

    cursor: pointer;
}

.top-btn.show {
    display: block;
}


/* =========================================================
   44. MENÚ MÓVIL
   ========================================================= */

.mobile-menu {
    position: fixed;

    inset: 0;

    background: #111;

    color: #fff;

    z-index: 120;

    display: none;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 24px;

    padding: 60px 20px 30px;

    overflow-y: auto;
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu a {
    font:
        600
        35px
        var(--serif);
}

.mobile-menu .mobile-submenu-link {
    margin-top: -17px;
    color: var(--gold);
    font: 600 14px var(--sans);
    letter-spacing: 2px;
}

.close-menu {
    position: absolute;

    right: 25px;
    top: 20px;

    color: #fff;

    background: none;

    border: 0;

    font-size: 35px;
}


/* =========================================================
   44.1 LEGIBILIDAD DE TEXTOS PEQUEÑOS
   ========================================================= */

.announcement,
.category-card small,
.pill,
.footer-main h4,
.service-plan-coverage span,
.service-plan-price span,
.service-plan-note,
.distributor-form-grid label > span,
.distributor-consent {
    font-size: 10px;
}

.desktop-nav > a,
.desktop-nav > .nav-dropdown > a,
.eyebrow,
.btn,
.toolbar select,
.finder-options button,
.footer-main a,
.cart-item p,
.remove-item,
#distributorMsg {
    font-size: 11px;
}

.badge,
.product-cat,
.applications span,
.service-plan-badge,
.service-plan-label,
.service-plan-price small,
.service-plan-conditions span,
.footer-bottom {
    font-size: 9px;
}


/* =========================================================
   45. RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1250px) and (min-width: 1001px) {

    .desktop-nav {
        gap: 15px;
    }

    .desktop-nav > a,
    .desktop-nav > .nav-dropdown > a {
        font-size: 10px;
        letter-spacing: 1px;
    }

}


@media (max-width: 1000px) {

    .desktop-nav {
        display: none;
    }

    .promotion-banner {
        grid-template-columns: 1fr;
    }

    .promotion-banner-action {
        grid-template-columns: auto auto;
        align-items: center;
        max-width: 480px;
        padding: 28px 0 0;
        border-top: 1px solid rgba(255, 255, 255, .15);
        border-left: 0;
    }

    .promotion-banner-action > span,
    .promotion-banner-action > strong,
    .promotion-banner-action > small {
        grid-column: 1;
    }

    .promotion-banner-action .btn {
        grid-column: 2;
        grid-row: 1 / 4;
    }

    .menu-btn {
        display: block;
    }

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

    .category-grid {
        height: 470px;
    }

    .intro {
        grid-template-columns: 1fr;

        gap: 30px;
    }

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

    .professional-image {
        min-height: 420px;
    }

    .scent-value-heading,
    .scent-comparison {
        grid-template-columns: 1fr;
    }

    .scent-value-heading .eyebrow {
        margin-bottom: -20px;
    }

    .service-plans-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-plans-heading > p {
        margin-left: 0;
    }

    .service-plans-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin: 0 auto;
    }

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

    .distributor-form-wrap {
        width: 100%;
        max-width: 720px;
    }

    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-main > div:last-child {
        display: none;
    }
}


/* =========================================================
   46. RESPONSIVE — MÓVIL
   ========================================================= */

@media (max-width: 650px) {

    /* Header */

    .mobile-menu {
        gap: 15px;
    }

    .mobile-menu a {
        font-size: 30px;
    }

    .mobile-menu .mobile-submenu-link {
        margin-top: -9px;
        font-size: 12px;
    }

    .site-header {
        padding: 0 20px;
    }

    .brand {
        width: 145px;
    }

    .brand img {
        width: 145px;

        max-height: 58px;
    }


    /* Hero */

    .hero {
        min-height: 620px;
    }

    .hero-content {
        left: 25px;
        right: 25px;
    }

    .hero h1 {
        font-size: 54px;
    }


    /* Banner promociones */

    .promotion-banner {
        gap: 30px;
        min-height: auto;
        padding: 65px 20px;
    }

    .promotion-banner-copy h2 {
        font-size: 45px;
    }

    .promotion-banner-copy > p:not(.eyebrow) {
        font-size: 12px;
    }

    .promotion-banner-action {
        display: grid;
        grid-template-columns: 1fr;
    }

    .promotion-banner-action > span,
    .promotion-banner-action > strong,
    .promotion-banner-action > small,
    .promotion-banner-action .btn {
        grid-column: 1;
        grid-row: auto;
    }

    .promotion-banner-action .btn {
        margin-top: 3px;
    }


    /* Secciones */

    .section {
        padding: 75px 20px;
    }

    .section h2,
    .intro h2,
    .newsletter h2 {
        font-size: 45px;
    }


    /* Categorías */

    .category-grid {
        grid-template-columns: 1fr 1fr;

        height: 520px;
    }

    .category-card.tall {
        grid-row: span 2;
    }

    .category-card span {
        font-size: 25px;
    }


    /* Productos */

    .product-grid {
        grid-template-columns: 1fr 1fr;

        gap: 25px 9px;
    }

    .product-name {
        font-size: 18px;
    }

    .product-actions {
        flex-direction: column;
    }


    /* Toolbar */

    .toolbar {
        align-items: flex-start;

        gap: 15px;

        flex-direction: column;
    }


    /* Aroma Finder */

    .finder-options {
        grid-template-columns: 1fr 1fr;
    }


    /* Profesional */

    .professional-image {
        min-height: 300px;
    }

    .professional-content {
        padding: 70px 20px;
    }


    /* Valor de la aromatización */

    .scent-value-heading .eyebrow {
        margin-bottom: -8px;
    }

    .scent-benefits {
        grid-template-columns: 1fr;
        margin: 45px 0 65px;
    }

    .scent-benefits article {
        padding: 25px 20px;
    }

    .scent-comparison {
        padding-top: 50px;
    }

    .comparison-row,
    .comparison-head {
        grid-template-columns: 1fr;
    }

    .comparison-row > span,
    .comparison-row > span + span {
        padding: 18px 22px;
        border-left: 0;
    }

    .comparison-row > span + span {
        color: #999;
    }

    .comparison-head > span + span {
        padding-top: 18px;
    }

    .comparison-head::after {
        width: 42px;
        height: 42px;
        border-width: 3px;
        font-size: 12px;
    }


    /* Pólizas profesionales */

    .service-plans-heading {
        margin-bottom: 38px;
    }

    .service-plan-card {
        padding: 32px 25px;
    }

    .service-plan-card:hover {
        transform: none;
    }

    .service-plan-conditions {
        align-items: stretch;
        flex-direction: column;
    }

    .service-plan-conditions span {
        line-height: 1.5;
    }


    /* Distribuidores */

    .distributors {
        padding: 75px 20px;
    }

    .distributors-intro h2 {
        font-size: 45px;
    }

    .distributor-benefits {
        grid-template-columns: 1fr;
        margin-top: 38px;
    }

    .distributor-form-wrap {
        padding: 36px 22px;
    }

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

    .distributor-form-grid .field-wide {
        grid-column: auto;
    }


    /* Contacto */

    .contact-section {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .contact-details,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-detail:nth-child(even) {
        padding-left: 0;
        border-left: 0;
    }

    .contact-form-card {
        padding: 34px 22px;
    }

    .contact-form-grid .field-wide {
        grid-column: auto;
    }


    /* Newsletter */

    .newsletter form {
        display: block;

        border: 0;
    }

    .newsletter input {
        border-bottom: 1px solid #111;

        width: 100%;

        margin-bottom: 10px;
    }

    .newsletter input + input:not(.newsletter-trap) {
        margin-left: 0;
    }


    /* Footer */

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }


    /* Modal */

    .modal-card {
        padding: 35px 20px;
    }

    .modal-product {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .modal-product h2 {
        font-size: 40px;
    }
}

/* =========================================================
   AROMAKIA - FORMULARIO DE ENVÍO
   ========================================================= */

#shippingForm,
.shipping-form {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: inherit;
}

/* Encabezado */

#shippingForm .shipping-title,
.shipping-form .shipping-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .8px;
    color: #111;
    margin: 0 0 6px;
    text-transform: uppercase;
}

#shippingForm .shipping-description,
.shipping-form .shipping-description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 18px;
}


/* Contenedor de campos */

#shippingForm .shipping-grid,
.shipping-form .shipping-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 10px;
    width: 100%;
}


/* Cada campo */

#shippingForm .shipping-field,
.shipping-form .shipping-field {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}


/* Campos que ocupan todo el ancho */

#shippingForm .shipping-field.full,
.shipping-form .shipping-field.full {
    grid-column: 1 / -1;
}


/* Labels */

#shippingForm label,
.shipping-form label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    margin: 0 0 5px;
    line-height: 1.3;
}


/* Inputs, select y textarea */

#shippingForm input,
#shippingForm select,
#shippingForm textarea,
.shipping-form input,
.shipping-form select,
.shipping-form textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;

    height: 42px;

    padding: 0 12px;

    border: 1px solid #d8d5cf;
    border-radius: 3px;

    background: #fff;
    color: #222;

    font-family: inherit;
    font-size: 13px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


/* Textarea */

#shippingForm textarea,
.shipping-form textarea {
    height: 78px;
    min-height: 78px;
    padding: 11px 12px;
    resize: vertical;
    line-height: 1.4;
}


/* Select */

#shippingForm select,
.shipping-form select {
    cursor: pointer;
    appearance: auto;
}


/* Placeholder */

#shippingForm input::placeholder,
#shippingForm textarea::placeholder,
.shipping-form input::placeholder,
.shipping-form textarea::placeholder {
    color: #aaa;
}


/* Focus */

#shippingForm input:focus,
#shippingForm select:focus,
#shippingForm textarea:focus,
.shipping-form input:focus,
.shipping-form select:focus,
.shipping-form textarea:focus {
    border-color: #111;
    box-shadow: 0 0 0 2px rgba(0,0,0,.06);
    background: #fff;
}


/* Campos inválidos */

#shippingForm input.shipping-error,
#shippingForm select.shipping-error,
#shippingForm textarea.shipping-error,
.shipping-form input.shipping-error,
.shipping-form select.shipping-error,
.shipping-form textarea.shipping-error {
    border-color: #b3261e;
    background: #fffafa;
}


/* Separación visual */

#shippingForm .shipping-address-title,
.shipping-form .shipping-address-title {
    grid-column: 1 / -1;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: .6px;
    text-transform: uppercase;

    color: #555;

    margin-top: 5px;
    padding-top: 8px;

    border-top: 1px solid #e7e4de;
}


/* =========================================================
   BOTONES DEL CARRITO
   ========================================================= */

#shippingForm button,
.shipping-form button {
    font-family: inherit;
}


/* =========================================================
   RESUMEN DEL PEDIDO
   ========================================================= */

.shipping-summary {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid #dedbd5;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 600px) {

    #shippingForm .shipping-grid,
    .shipping-form .shipping-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    #shippingForm .shipping-field.full,
    .shipping-form .shipping-field.full {
        grid-column: auto;
    }

    #shippingForm .shipping-address-title,
    .shipping-form .shipping-address-title {
        grid-column: auto;
    }

    #shippingForm input,
    #shippingForm select,
    .shipping-form input,
    .shipping-form select {
        height: 44px;
    }

}


/* =========================================================
   SI EL FORMULARIO NO USA GRID
   CORREGIMOS LOS LABELS ANTIGUOS
   ========================================================= */

#shippingForm > label,
.shipping-form > label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

#shippingForm > label input,
#shippingForm > label select,
#shippingForm > label textarea,
.shipping-form > label input,
.shipping-form > label select,
.shipping-form > label textarea {
    margin-top: 5px;
}

/* =========================================================
   AROMAKIA V6.9 — BLOG / JOURNAL
   ========================================================= */
.blog-header{height:86px;padding:0 5vw;background:#111;color:#fff;display:flex;align-items:center;justify-content:space-between;gap:30px;position:sticky;top:0;z-index:30}
.blog-header img{display:block;width:190px;max-height:58px;object-fit:contain;object-position:left center}
.blog-header nav{display:flex;align-items:center;gap:26px}.blog-header nav a{font-size:9px;letter-spacing:1.3px;color:#bbb}.blog-header nav a:hover,.blog-header nav a.active{color:var(--gold)}
.blog-hero{min-height:480px;background:#e8e3da;display:flex;flex-direction:column;justify-content:center}.blog-hero h1{max-width:920px;margin:12px 0 22px;font-size:clamp(58px,8vw,112px);line-height:.84;font-weight:600}.blog-hero>p:last-child{max-width:620px;color:#6f6f6f;font-size:15px;line-height:1.8}
.blog-list{background:#f5f3ef}.blog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:38px 22px}.blog-card{background:#fff;box-shadow:0 14px 40px rgba(17,17,17,.05)}.blog-card-image{display:block;aspect-ratio:1.45/1;overflow:hidden;background:#ded9d0}.blog-card-image img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease}.blog-card:hover .blog-card-image img{transform:scale(1.035)}.blog-card-body{padding:26px}
.blog-meta{display:flex;align-items:center;justify-content:space-between;gap:15px;color:#8c7552;font-size:8px;font-weight:700;letter-spacing:1.1px;text-transform:uppercase}.blog-card h2{margin:18px 0 12px;font:600 31px/1.02 var(--serif)}.blog-card h2 a:hover{color:#9d7743}.blog-card p{min-height:68px;color:#777;font-size:11px;line-height:1.75}.blog-read,.article-back{display:inline-block;margin-top:12px;border-bottom:1px solid #b18b54;padding-bottom:4px;color:#554329;font-size:8px;font-weight:700;letter-spacing:1.1px}.blog-empty{text-align:center;padding:80px 20px}.blog-empty h2{font:600 50px var(--serif)}
.article-page{background:#f5f3ef;padding-bottom:100px}.article-head{max-width:980px;margin:auto;padding:95px 30px 55px;text-align:center}.article-head .article-back{margin:0 0 42px}.article-head .blog-meta{justify-content:center;gap:25px}.article-head h1{margin:22px auto;font-size:clamp(48px,7vw,88px);line-height:.94}.article-head>p{max-width:720px;margin:auto;color:#777;font-size:15px;line-height:1.8}.article-cover{max-width:1180px;height:min(620px,62vw);margin:0 auto 60px;padding:0 30px}.article-cover img{width:100%;height:100%;object-fit:cover}.article-content{max-width:760px;margin:auto;padding:0 30px}.article-content>p{margin:0 0 25px;color:#383838;font:500 16px/1.95 var(--sans)}.article-content>p:first-child:first-letter{float:left;margin:8px 9px 0 0;font:600 68px/.72 var(--serif);color:#a47d45}.article-cta{margin-top:55px;padding:38px;background:#171717;color:#fff}.article-cta h2{margin:8px 0 25px;font:600 36px/1 var(--serif)}
@media(max-width:900px){.blog-grid{grid-template-columns:1fr 1fr}.blog-header nav{gap:14px}}
@media(max-width:620px){.blog-header{height:72px;padding:0 20px}.blog-header img{width:145px}.blog-header nav a:not(.active):not(:last-child){display:none}.blog-grid{grid-template-columns:1fr}.blog-hero{min-height:390px}.blog-card p{min-height:0}.article-head{padding-top:65px}.article-cover{padding:0 16px;margin-bottom:40px}.article-content{padding:0 22px}.article-content>p{font-size:14px}}

.blog-share-mini{display:flex;align-items:center;gap:6px;margin-top:20px;padding-top:15px;border-top:1px solid #ece7de}.blog-share-mini>span{margin-right:auto;color:#999;font-size:7px;font-weight:700;letter-spacing:1px}.blog-share-mini button{width:28px;height:28px;border:1px solid #d8d1c5;border-radius:50%;background:#fff;color:#333;font:700 8px var(--sans);cursor:pointer}.blog-share-mini button:hover{background:#111;color:#fff;border-color:#111}
.article-share{display:flex;align-items:center;justify-content:center;gap:8px;flex-wrap:wrap;margin-top:34px}.article-share>span{width:100%;margin-bottom:4px;color:#8c7552;font-size:8px;font-weight:700;letter-spacing:1.2px}.article-share button{padding:9px 12px;border:1px solid #bfb7aa;background:transparent;color:#333;font:700 8px var(--sans);letter-spacing:.6px;cursor:pointer}.article-share button:hover{background:#111;color:#fff;border-color:#111}
@media(max-width:620px){.article-share button{flex:1 1 calc(50% - 8px)}.blog-share-mini{flex-wrap:wrap}.blog-share-mini>span{width:100%;margin-bottom:4px}}
