/* ==========================================================================
   Buddy Beauty Works — recreación del tema Shopify "Aarau" (qx-aarau-demo-1)
   Tokens tomados de config/settings_data.json + secciones del theme export.
   ========================================================================== */

:root {
    --g-font-1: 'Poppins', sans-serif;
    --g-font-2: 'Poppins', sans-serif;
    --g-container: 1400px;

    --g-color-heading: #000000;
    --g-color-text: #5a5a5a;

    /* Paleta de marca (dorados del tema) */
    --gold: #ae7f25;
    --gold-2: #b88a1e;
    --gold-3: #997023;
    --gold-4: #a87c00;
    --gold-light: #d7a63b;
    --gold-line: #d4af37;
    --gold-form: #b8913d;

    --cream: #ffead5;
    --cream-2: #fdeedb;
    --cream-3: #fff8e1;

    --header-bg: #ffffff;
    --header-text: #042436;
    --header-menu: #58492d;
    --announce-bg: #cb9c42;
    --announce-text: #042436;

    --footer-bg: #ffffff;
    --footer-text: #042436;
    --copyright-bg: #252525;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
    margin: 0;
    font-family: var(--g-font-1);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--g-color-text);
    background: #ffffff;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--g-font-2);
    color: var(--g-color-heading);
    margin: 0 0 1rem;
    line-height: 1.3;
    font-weight: 500;
}
.h1, h1 { font-size: 50px; }
.h2, h2 { font-size: 40px; }
.h3, h3 { font-size: 30px; }
.h4, h4 { font-size: 24px; }
.h5, h5 { font-size: 20px; }

/* .container replica los breakpoints del tema (Bootstrap 5 + tier 1400 propio) */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
@media (min-width: 576px)  { .container { max-width: 540px; } }
@media (min-width: 768px)  { .container { max-width: 720px; } }
@media (min-width: 992px)  { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: var(--g-container); } }
.container-fluid { width: 100%; padding: 0 30px; }
.section-full { width: 100%; }

.visually-hidden {
    position: absolute !important; width: 1px; height: 1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announcement-bar {
    background: var(--announce-bg);
    color: var(--announce-text);
    padding: 0.6rem 0;
    font-size: 13px;
    text-align: center;
    letter-spacing: .02em;
}
.announcement-bar .text-body { color: #fff !important; margin: 0; }

/* ==========================================================================
   Header — layout "logo-center-navigation-split", sticky, altura small (75px)
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--header-bg);
    color: var(--header-text);
    border-bottom: 1px solid #f1f1f1;
}
.site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 75px;
    padding: 0 30px;
    gap: 10px;
}
.site-nav {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.site-nav--right { justify-content: flex-end; }
.site-nav__item { position: relative; }
.site-nav__link {
    display: block;
    padding: 26px 12px;
    font-family: var(--g-font-2);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--header-menu);
    white-space: nowrap;
    position: relative;
}
.site-nav__link::after {
    content: '';
    position: absolute;
    left: 12px; right: 12px; bottom: 20px;
    height: 1px;
    background: var(--header-menu);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .3s ease;
}
.site-nav__item:hover > .site-nav__link::after,
.site-nav__item.is-active > .site-nav__link::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.site-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    min-width: 280px;
    background: #ffffff;
    border: 1px solid #f1f1f1;
    padding: 18px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    list-style: none;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.site-nav--right .site-nav__dropdown { left: auto; right: 0; }
.site-nav__item:hover > .site-nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.site-nav__dropdown a {
    display: block;
    padding: 6px 25px;
    font-size: 13px;
    color: #252525;
    text-transform: capitalize;
    letter-spacing: .02em;
}
.site-nav__dropdown a:hover { color: var(--gold); }

.col-logo { text-align: center; }
.site-header__logo { margin: 0; line-height: 0; font-size: 0; }
.site-header__logo-link { display: inline-block; }
.site-header__logo-link img { width: 150px; max-width: 150px; height: auto; margin: 0 auto; }

.header__icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}
.site-header__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--header-text);
    position: relative;
    background: none;
    border: 0;
    cursor: pointer;
}
.site-header__link svg { width: 22px; height: 22px; }
.site-header__cart-indicator {
    position: absolute;
    top: 2px; right: 0;
    min-width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    line-height: 18px;
    text-align: center;
    font-weight: 600;
}

/* Burger: sólo móvil a la izquierda; el toggle de sidebar va a la derecha en ambos */
.header__burger { display: none; }
.sidebar-toogle { display: inline-flex; }

@media (max-width: 1024px) {
    .site-header__inner { grid-template-columns: 1fr auto 1fr; padding: 0 15px; min-height: 64px; }
    .site-nav { display: none; }
    .header__burger {
        display: inline-flex; align-items: center; justify-content: center;
        width: 42px; height: 42px; background: none; border: 0; cursor: pointer;
        color: var(--header-text);
    }
    .sidebar-toogle { display: none; }
    .site-header__logo-link img { width: 110px; }
}

/* Menú móvil */
.mobile-nav {
    position: fixed;
    inset: 0 auto 0 0;
    width: 320px;
    max-width: 85vw;
    background: #fff;
    z-index: 120;
    transform: translateX(-100%);
    transition: transform .35s ease;
    padding: 24px;
    overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--header-menu);
    border-bottom: 1px solid #f1f1f1;
}
.mobile-nav .mobile-nav__sub a { padding-left: 16px; font-weight: 400; text-transform: none; letter-spacing: 0; }
.site-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.45);
    opacity: 0; visibility: hidden; transition: all .3s ease; z-index: 110;
}
.site-overlay.is-open { opacity: 1; visibility: visible; }

/* ==========================================================================
   Botones del tema
   ========================================================================== */
.btn-theme,
.btn-outline-theme {
    display: inline-block;
    padding: 13px 34px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 0;
}
.btn-theme { background: #ffffff; color: #202025; border: 2px solid #ffffff; }
.btn-theme:hover { background: #eeeeee; }
.btn-outline-theme { background: transparent; color: #ffffff; border: 2px solid #ffffff; }
.btn-outline-theme:hover { background: #ffffff; color: #2f2f40; }

/* Variante redondeada dorada usada en los banners de Buddy */
.btn-pill {
    display: inline-block;
    border-radius: 20px;
    padding: 10px 28px;
    border: 2px solid currentColor;
    background: transparent;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
}

/* ==========================================================================
   Slideshow (hero)
   ========================================================================== */
.slideshow { position: relative; overflow: hidden; }
.slideshow__slide { position: relative; }
.slideshow__media img { width: 100%; display: block; object-fit: cover; }
.slideshow__media .img-mobile { display: none; }
.slideshow__caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}
.slideshow__caption > .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    text-align: center;
}
.slideshow__inner { text-align: center; margin-right: 30px; max-width: 640px; }
.slideshow__title {
    font-size: 70px;
    line-height: 1;
    color: #ffffff;
    margin: 0 0 1rem;
    font-weight: 500;
}
.slideshow__subtitle { font-size: 24px; color: #ffffff; margin: 0 0 1.5rem; }
.slideshow__btn-wrapper { display: flex; justify-content: center; gap: 12px; }

@media (max-width: 760px) {
    .slideshow__media .img-desktop { display: none; }
    .slideshow__media .img-mobile { display: block; height: 400px; object-fit: cover; }
    .slideshow__title { font-size: 26px; }
    .slideshow__subtitle { font-size: 15px; margin-bottom: 180px; }
    .slideshow__caption > .container { justify-content: center; }
    .slideshow__inner { margin-right: 0; max-width: none; }
    .slideshow__btn-wrapper { font-size: 10px; margin-top: 40px; }
}

/* ==========================================================================
   Grid banner (banner-theme)
   ========================================================================== */
.grid-banner { position: relative; }
.grid-banner__row { display: flex; flex-wrap: wrap; }
.grid-banner__col { position: relative; padding: 0; }
.grid-banner__col--12 { width: 100%; }
.grid-banner__col--4 { width: 33.3333%; }

.banner-theme { position: relative; overflow: hidden; margin: 0; }
.banner-theme img { width: 100%; display: block; object-fit: cover; }
.banner-theme .img-mobile { display: none; }
/* enable_height_banner: altura fija con recorte (equivale a promo_banner_height) */
.banner-theme--fixed img { height: var(--banner-h, 520px); }
.banner-theme__overlay {
    position: absolute; inset: 0; pointer-events: none;
}
.banner-theme figcaption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}
.banner-theme figcaption.pos-left  { align-items: flex-start; }
.banner-theme figcaption.pos-right { align-items: flex-end; }
.banner-theme figcaption.pos-center{ align-items: center; }
.banner-theme figcaption.vert-bottom { justify-content: flex-end; }
.banner-theme figcaption.vert-mid    { justify-content: center; }
.banner-theme .position-relative { position: relative; text-align: center; max-width: 720px; }
.banner-theme .h2 { margin-bottom: .5rem; }
.banner-theme p { margin: 0 0 1.2rem; }

@media (max-width: 991px) {
    .grid-banner__col--4 { width: 100%; }
}
@media (max-width: 760px) {
    .banner-theme .img-desktop { display: none; }
    .banner-theme .img-mobile { display: block; }
    .banner-theme figcaption { padding: 20px; }
}

/* ==========================================================================
   Rich text
   ========================================================================== */
.rich-text { text-align: center; }
.rich-text .section-title-1 { margin-bottom: .5rem; }

/* ==========================================================================
   Service (Icon & Text, layout style-2)
   ========================================================================== */
.service-section { padding: 0; }
.service-heading { text-align: center; }
.service-heading .subtop { display: block; margin-bottom: 8px; }
.service-heading .h2 { margin-bottom: 48px; }
/* Rejilla estilo Bootstrap del tema: col-6 en móvil, reparto equitativo en desktop */
.service-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px;
}
.service-row > * { flex: 1 1 0; min-width: 0; padding: 0 15px; }
.service-block { text-align: center; padding: 48px 0; }
.service-block__icon { margin-bottom: 16px; }
.service-block__icon img { margin: 0 auto; width: 100px; height: auto; object-fit: contain; }
.service-block .h5 { margin: 0 0 8px; }
.service-block p { margin: 0; }
@media (max-width: 768px) {
    .service-row > * { flex: 0 0 50%; max-width: 50%; margin-bottom: 24px; }
}

/* ==========================================================================
   Scrolling text (marquee)
   ========================================================================== */
.scrolling-text { overflow: hidden; }
.scrolling-text__track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: buddy-marquee 15s linear infinite;
}
.scrolling-text__item {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    font-size: 30px;
    line-height: 1.3;
    white-space: nowrap;
}
.scrolling-text__item::after {
    content: '';
    width: 16px; height: 16px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
    flex: 0 0 auto;
}
@keyframes buddy-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .scrolling-text__item { font-size: 20px; gap: 24px; }
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-section { }
.faq-section .h2 { color: var(--gold); text-align: center; }
.faq-item { border-bottom: 1px solid #ececec; }
.faq-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-family: var(--g-font-2);
    font-size: 20px;
    font-weight: 400;
    color: #5a5a5a;
}
.faq-heading .faq-icon {
    color: var(--gold);
    font-size: 24px;
    line-height: 1;
    flex: 0 0 auto;
    transition: transform .3s ease;
}
.faq-item.is-open .faq-heading .faq-icon { transform: rotate(45deg); }
.faq-body {
    display: none;
    padding: 0 0 20px;
    font-size: 15px;
    color: #6c747b;
}
.faq-item.is-open .faq-body { display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 64px 30px 32px;
}
/* 4 columnas iguales, como el .row de Bootstrap del tema */
.site-footer__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.site-footer__block { padding: 0 15px; }
.site-footer__block--brand { width: 25%; }
.site-footer__block--menu  { width: 25%; }
.site-footer__block--news  { width: 25%; }
.site-footer__logo img { width: 180px; }
.site-footer p { margin: .75rem 0 0; font-size: 14px; line-height: 1.8; }
.site-footer__title {
    font-family: var(--g-font-2);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--footer-text);
    margin: 0 0 32px;
    letter-spacing: 0;
    line-height: 1.4;
}
.site-footer__menu { list-style: none; margin: 0; padding: 0; }
.site-footer__menu li { margin-bottom: 7px; line-height: 1.8; }
.site-footer__menu a { font-size: 14px; transition: color .25s ease; }
.site-footer__menu a:hover { color: #202025; }

/* Newsletter del footer: label + input y botón apilados (form-vertical del tema) */
.footer-newsletter__label { margin-bottom: 16px; }
.footer-newsletter h3 { font-size: 36px; margin: 0 0 .5rem; line-height: 1.3; }
.footer-newsletter p { margin: 0; }
.footer-newsletter__form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.footer-newsletter__form input {
    width: 100%;
    height: 48px;
    border: 1px solid #042436;
    background: transparent;
    padding: 0 16px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}
.footer-newsletter__form button {
    width: 100%;
    height: 48px;
    background: #042436;
    color: #ffffff;
    border: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
}
.footer-social { list-style: none; display: flex; align-items: center; gap: 20px; padding: 0; margin: 0; min-height: 39px; }
.footer-social a { display: inline-flex; }
.footer-social svg { width: 18px; height: 18px; }

.site-footer__copyright {
    background: var(--copyright-bg);
    color: #ffffff;
    text-align: center;
    padding: 24px 30px;
    font-size: 14px;
}
.site-footer__copyright p { margin: 0; color: #fff; }

.site-footer__acc-ico { display: none; }

@media (max-width: 991px) {
    .site-footer { padding: 32px 15px 0; }
    .site-footer__block { width: 100%; }
    .site-footer__block--brand,
    .site-footer__block--news { margin-bottom: 28px; }

    /* acc_mobile: los menús se colapsan en acordeón */
    .site-footer__block--menu .site-footer__title {
        display: flex; align-items: center; justify-content: space-between;
        margin: 0; padding: 18px 0; border-bottom: 1px solid #e9e3dd; cursor: pointer;
    }
    .site-footer__block--menu .site-footer__menu { display: none; padding: 8px 0 16px; }
    .site-footer__block--menu.is-open .site-footer__menu { display: block; }
    .site-footer__acc-ico {
        display: block; width: 10px; height: 10px; position: relative; flex: 0 0 auto;
    }
    .site-footer__acc-ico::before,
    .site-footer__acc-ico::after {
        content: ''; position: absolute; background: currentColor; transition: transform .25s ease;
    }
    .site-footer__acc-ico::before { top: 4px; left: 0; width: 10px; height: 2px; }
    .site-footer__acc-ico::after  { left: 4px; top: 0; width: 2px; height: 10px; }
    .site-footer__block--menu.is-open .site-footer__acc-ico::after { transform: scaleY(0); }
}

/* ==========================================================================
   Cart drawer
   ========================================================================== */
.cart-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 420px;
    max-width: 90vw;
    background: #fff;
    z-index: 130;
    transform: translateX(100%);
    transition: transform .35s ease;
    display: flex;
    flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid #eee;
}
.cart-drawer__head h3 { margin: 0; font-size: 18px; text-transform: uppercase; letter-spacing: .08em; }
.cart-drawer__close { background: none; border: 0; font-size: 26px; line-height: 1; cursor: pointer; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-drawer__foot { border-top: 1px solid #eee; padding: 20px 24px; }
.cart-line { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f4f4f4; }
.cart-line img { width: 76px; height: 92px; object-fit: contain; background: #fafafa; }
.cart-line__info { flex: 1; font-size: 14px; }
.cart-line__title { font-weight: 600; color: #202025; }
.cart-line__remove { background: none; border: 0; color: #999; cursor: pointer; font-size: 12px; padding: 0; text-decoration: underline; }
.cart-total { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: 14px; }
.cart-drawer .btn-checkout,
.btn-gold {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gold-2);
    color: #fff;
    border: 2px solid var(--gold-2);
    border-radius: 25px;
    padding: 12px 20px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-gold-outline {
    display: inline-block;
    background: transparent;
    color: var(--gold-2);
    border: 2px solid var(--gold-2);
    border-radius: 25px;
    padding: 10px 24px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s ease;
    text-align: center;
}
.btn-gold-outline:hover { background: var(--gold-2); color: #fff; }

/* ==========================================================================
   Página de producto
   ========================================================================== */
.pdp { padding: 40px 0 20px; }
.pdp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.pdp__media img { width: 100%; object-fit: contain; background: #fff; }
.pdp__title { font-size: 34px; color: var(--gold-2); margin: 0 0 .5rem; }
.pdp__vendor { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #999; margin: 0 0 .5rem; }
.pdp__price { font-size: 24px; color: #202025; font-weight: 500; margin: 0 0 1rem; }
.pdp__price small { display: block; font-size: 12px; color: #999; font-weight: 400; letter-spacing: .06em; text-transform: uppercase; }
.pdp__variant { margin: 0 0 1.4rem; font-size: 14px; }
.pdp__variant .swatch {
    display: inline-block; border: 1px solid var(--gold-2); color: var(--gold-2);
    padding: 6px 18px; border-radius: 20px; margin-right: 8px; font-size: 13px;
}
.pdp__qty { display: flex; align-items: center; gap: 0; margin-bottom: 18px; border: 1px solid #ddd; width: max-content; }
.pdp__qty button { width: 42px; height: 44px; background: none; border: 0; font-size: 18px; cursor: pointer; }
.pdp__qty input { width: 54px; height: 44px; text-align: center; border: 0; border-left: 1px solid #ddd; border-right: 1px solid #ddd; font-family: inherit; }
.pdp__actions { display: flex; flex-direction: column; gap: 12px; max-width: 420px; }
.pdp__desc { margin-top: 28px; font-size: 15px; line-height: 1.9; color: #5a5a5a; }
.pdp__desc p { margin: 0 0 1rem; }

@media (max-width: 900px) {
    .pdp__grid { grid-template-columns: 1fr; gap: 24px; }
    .pdp__title { font-size: 26px; }
}

/* ==========================================================================
   Grid de colección / listado
   ========================================================================== */
.collection-head { text-align: center; padding: 40px 0 10px; }
.collection-head h1 { color: var(--gold-2); font-size: 36px; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 0 60px;
}
@media (max-width: 991px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }

.pcard { text-align: center; }
.pcard__media { position: relative; overflow: hidden; }
.pcard__media::before { content: ''; display: block; padding-top: 120%; }
.pcard__media img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: contain; transition: opacity .4s ease;
}
.pcard__media .img-hover { opacity: 0; }
.pcard__media:hover .img-default { opacity: 0; }
.pcard__media:hover .img-hover { opacity: 1; }
.pcard__vendor { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #a0a0a0; margin: 12px 0 4px; }
.pcard__title { font-size: 16px; color: #202025; margin: 0 0 6px; font-weight: 500; }
.pcard__price { font-size: 15px; color: var(--gold-2); font-weight: 500; }

/* ==========================================================================
   Carrito / checkout
   ========================================================================== */
.cart-page { padding: 50px 0 80px; }
.cart-page h1 { color: var(--gold-2); text-align: center; margin-bottom: 30px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
    text-align: left; font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
    color: #999; font-weight: 600; padding: 12px 10px; border-bottom: 1px solid #eee;
}
.cart-table td { padding: 18px 10px; border-bottom: 1px solid #f2f2f2; vertical-align: middle; }
.cart-table img { width: 80px; height: 96px; object-fit: contain; }
.cart-summary { max-width: 420px; margin-left: auto; margin-top: 30px; }
.cart-summary__row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 15px; }
.cart-summary__row--total { font-size: 20px; font-weight: 600; color: #202025; border-top: 1px solid #eee; padding-top: 14px; margin-top: 6px; }

.checkout-form { max-width: 720px; margin: 0 auto; }
.checkout-form label { display: block; font-size: 13px; margin-bottom: 6px; color: #6b5a2e; }
.checkout-form input, .checkout-form select, .checkout-form textarea {
    width: 100%; padding: 13px 16px; border: 1px solid var(--gold-form);
    border-radius: 6px; font-family: inherit; font-size: 14px; color: #6b5a2e;
    background: transparent; outline: none; margin-bottom: 18px;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 25px; }
@media (max-width: 768px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ==========================================================================
   Páginas legales (rte)
   ========================================================================== */
.legal-page { padding: 50px 0 80px; }
.legal-page h1 { color: var(--gold-2); text-align: center; margin-bottom: 30px; font-size: 36px; }
.legal-page .rte { max-width: 900px; margin: 0 auto; font-size: 15px; line-height: 1.9; color: #4a4a4a; }
.legal-page .rte p { margin: 0 0 1rem; }
.legal-page .rte b, .legal-page .rte strong { color: #202025; }
.legal-page .rte ul, .legal-page .rte ol { padding-left: 22px; }
.legal-page .rte a { color: var(--gold-2); text-decoration: underline; }
.legal-page .rte table { width: 100%; border-collapse: collapse; margin: 0 0 1.2rem; }
.legal-page .rte td, .legal-page .rte th { border: 1px solid #e8e8e8; padding: 8px 12px; }

/* ==========================================================================
   Cookie banner (style-2)
   ========================================================================== */
.cookie-banner {
    position: fixed; left: 20px; bottom: 20px; z-index: 140;
    max-width: 380px; background: #202025; color: #fff;
    padding: 24px; font-size: 14px; line-height: 1.7;
}
.cookie-banner .subtop { display: block; font-size: 16px; font-weight: 600; margin-bottom: .75rem; }
.cookie-banner a { text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.cookie-banner__actions button {
    flex: 1; padding: 10px 14px; font-size: 12px; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
    border: 2px solid #fff;
}
.cookie-banner .btn-accept { background: #fff; color: #202025; }
.cookie-banner .btn-decline { background: transparent; color: #fff; }
@media (max-width: 560px) { .cookie-banner { left: 10px; right: 10px; max-width: none; } }

/* ==========================================================================
   Utilidades de espaciado usadas por las secciones
   ========================================================================== */
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: .5rem !important; }
.text-center { text-align: center; }
.d-none { display: none !important; }
@media (min-width: 769px) { .d-md-none { display: none !important; } }
@media (max-width: 768px) { .d-md-block-only { display: none !important; } }
