:root {
    --primary: #111111;
    --accent: #f5c518;
    --whatsapp: #25d366;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    background: #fafafa;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Topbar ---------- */
.topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 16px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.topbar__search {
    position: relative;
    flex: 1;
    max-width: 480px;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 8px 8px 8px 16px;
}
.topbar__search input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 15px;
    min-width: 0;
}
.topbar__search-btn {
    border: none;
    background: none;
    font-size: 16px;
    line-height: 1;
    padding: 6px 8px;
    flex: none;
    border-radius: 50%;
}
.topbar__search-btn:hover { background: #f2f2f2; }

/* ---------- Search suggestions (autocompletado) ---------- */
.search-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    overflow: hidden;
    z-index: 45;
}
.search-suggestions.open { display: block; }
.search-suggestions__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f0f0f0;
}
.search-suggestions__item:last-child { border-bottom: none; }
.search-suggestions__item:hover { background: #fafafa; }
.search-suggestions__item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: #f0f0f0;
    flex: none;
}
.search-suggestions__item-name { font-size: 14px; font-weight: 600; }
.search-suggestions__item-price { font-size: 13px; color: #666; }
.search-suggestions__item--out .search-suggestions__item-name { color: #999; }
.search-suggestions__more {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    background: #fafafa;
    border: none;
    width: 100%;
    cursor: pointer;
}
.search-suggestions__more:hover { background: #f0f0f0; }
.search-suggestions__empty { padding: 14px; font-size: 13px; color: #888; text-align: center; }

/* ---------- Search results modal (popup al "buscar") ---------- */
.search-modal {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
    padding: 24px;
    position: relative;
}
.search-modal__title { font-size: 18px; font-weight: 800; margin: 0 0 16px; padding-right: 24px; }
.search-modal__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    max-height: 65vh;
    overflow-y: auto;
}
.search-modal__empty { text-align: center; color: #888; padding: 30px 0; }
.search-result-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.search-result-card:hover { border-color: #ccc; }
.search-result-card__img {
    aspect-ratio: 1/1;
    background: #f0f0f0;
}
.search-result-card__img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-card__body { padding: 10px; }
.search-result-card__name { font-size: 13px; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.search-result-card__price { font-size: 14px; font-weight: 800; }
.search-result-card--out .search-result-card__name { color: #999; }
.search-result-card__stock-badge { font-size: 11px; color: #c0392b; font-weight: 700; }
@media (max-width: 640px) {
    .search-modal__grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}
.cart-fab {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 2px solid #111;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.cart-fab__badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ---------- Store header ---------- */
.store-header {
    background: linear-gradient(rgba(0,0,0,.8) 0%, rgba(255,255,255,0) 89%);
    color: #fff;
    padding: 28px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.store-header__logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.store-header__logo img { width: 100%; height: 100%; object-fit: cover; }
.store-header__logo .default-logo { width: 60%; height: 60%; }
.store-header h1 { margin: 0 0 4px; font-size: 22px; }
.store-header p { margin: 2px 0; opacity: .85; font-size: 14px; }
.store-header a.maps-link { color: var(--accent); text-decoration: none; font-size: 14px; }

/* ---------- Banner slider ---------- */
.slider {
    position: relative;
    max-width: 1100px;
    margin: 20px auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 1;
    background: #eee;
}
.slider__track {
    display: flex;
    height: 100%;
    transition: transform .5s ease;
}
.slider__track a, .slider__track div { min-width: 100%; height: 100%; }
.slider__track img { width: 100%; height: 100%; object-fit: cover; }
.slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.85);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    z-index: 2;
}
.slider__arrow--prev { left: 12px; }
.slider__arrow--next { right: 12px; }
.slider__dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.slider__dots span {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,.6);
}
.slider__dots span.active { background: #fff; }

/* ---------- Category bubbles ---------- */
.bubbles {
    max-width: 1100px;
    margin: 24px auto 0;
    padding: 0 44px;
    position: relative;
}
.bubbles__scroll {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 2px 8px;
    scrollbar-width: none;
}
.bubbles__scroll::-webkit-scrollbar { display: none; }
.bubble {
    flex: none;
    width: 84px;
    text-align: center;
    background: none;
    border: none;
    padding: 0;
}
.bubble__img {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 2px solid #eee;
    overflow: hidden;
    margin: 0 auto 6px;
    background: #fff;
}
.bubble__img img { width: 100%; height: 100%; object-fit: cover; }
.bubble span {
    font-size: 12px;
    font-weight: 600;
    display: block;
    line-height: 1.2;
}
.bubbles__arrow {
    position: absolute;
    top: 38px;
    background: #fff;
    border: 1px solid #ddd;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
.bubbles__arrow--prev { left: 0; }
.bubbles__arrow--next { right: 0; }
.bubble.active .bubble__img { border-color: #111; }
.bubble.active span { text-decoration: underline; }

/* ---------- Hero product (destacado) ---------- */
.hero-product {
    max-width: 1100px;
    margin: 20px auto 0;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.hero-product__img {
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #f0f0f0;
    cursor: pointer;
}
.hero-product__img img { width: 100%; height: 100%; object-fit: cover; }
.hero-product__body { display: flex; flex-direction: column; }
.hero-product__body h3 { font-size: 22px; margin: 0 0 10px; cursor: pointer; }
.hero-product__desc { font-size: 14px; color: #444; line-height: 1.5; flex: 1; }
.hero-product__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.hero-product__price { font-size: 24px; font-weight: 800; }
.hero-product__footer .btn-add.hero-product__add {
    width: 52px; height: 52px; border-radius: 50%; font-size: 22px; flex: none; padding: 0;
}
@media (max-width: 640px) {
    .hero-product { grid-template-columns: 1fr; }
}

/* ---------- Sticky pills nav ---------- */
.pills-nav {
    position: sticky;
    top: 66px;
    z-index: 30;
    background: #fafafa;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}
.pills-nav__inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}
.pills-nav__scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.pills-nav__scroll::-webkit-scrollbar { display: none; }
.pills-nav__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    z-index: 1;
}
.pills-nav__arrow--prev { left: 0; }
.pills-nav__arrow--next { right: 0; }
.pill {
    flex: none;
    border: 2px solid #111;
    border-radius: 999px;
    background: #fff;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}
.pill.active { background: #111; color: #fff; }

/* ---------- Product sections/grid ---------- */
.category-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px 8px;
    scroll-margin-top: 130px;
}
.category-section h2 { font-size: 20px; margin: 0 0 14px; }
.search-no-results {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 16px;
    text-align: center;
    color: #888;
}
.search-no-results__icon { font-size: 40px; margin: 0 0 8px; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
.product-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
}
.product-card__img {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f0f0f0;
    cursor: pointer;
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.product-card__top-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--accent);
    color: #111;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 999px;
}
.product-card__body { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card__name {
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    min-height: 34px;
}
.product-card__sku { font-size: 11px; color: #888; }
.product-card__price-old { font-size: 12px; color: #999; text-decoration: line-through; }
.product-card__price { font-size: 17px; font-weight: 800; }
.product-card__cta { margin-top: auto; }
.product-card--out .product-card__img img { opacity: .45; }
.product-card__stock-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 999px;
}
.btn-add {
    width: 100%;
    border: 2px solid #111;
    background: #fff;
    border-radius: 999px;
    padding: 8px;
    font-weight: 800;
    font-size: 18px;
}
.btn-add:disabled, .btn-black:disabled {
    border-color: #ccc;
    color: #999;
    background: #f5f5f5;
    cursor: not-allowed;
}
.qty-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #111;
    border-radius: 999px;
    overflow: hidden;
}
.qty-stepper button {
    background: #111;
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    font-size: 16px;
    font-weight: 700;
}
.qty-stepper__value {
    font-weight: 700;
    text-align: center;
    border: none;
    background: transparent;
    width: 34px;
    font-size: 15px;
    font-family: inherit;
    color: inherit;
    -moz-appearance: textfield;
}
.qty-stepper__value::-webkit-outer-spin-button,
.qty-stepper__value::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ---------- Modal ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 16px;
    overflow-y: auto;
    z-index: 100;
}
.modal-overlay.open { display: flex; }
.modal {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 760px;
    width: 100%;
    padding: 24px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 16px;
}
.modal__main-img {
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #f0f0f0;
}
.modal__main-img img { width: 100%; height: 100%; object-fit: cover; }
.modal__thumbs { display: flex; gap: 8px; margin-top: 10px; }
.modal__thumbs img {
    width: 52px; height: 52px; object-fit: cover; border-radius: var(--radius-sm);
    border: 2px solid transparent; cursor: pointer;
}
.modal__thumbs img.active { border-color: #111; }
.modal__thumb-video {
    width: 52px; height: 52px; border-radius: var(--radius-sm);
    border: 2px solid transparent; cursor: pointer;
    background: #222; color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.modal__thumb-video.active { border-color: #111; }
.modal__title { font-size: 20px; font-weight: 800; margin: 0 0 6px; }
.modal__price-old { text-decoration: line-through; color: #999; font-size: 13px; }
.modal__price { font-size: 26px; font-weight: 800; margin: 4px 0; }
.modal__sku { font-size: 12px; color: #888; margin-bottom: 10px; }
.modal__desc { font-size: 14px; line-height: 1.5; color: #444; margin-bottom: 16px; }
.modal__qty-label { font-weight: 700; font-size: 13px; margin-bottom: 8px; }
.modal .qty-stepper { max-width: 140px; margin-bottom: 16px; }
.btn-black {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px;
    font-weight: 800;
    font-size: 16px;
}
@media (max-width: 640px) {
    .modal { grid-template-columns: 1fr; }
}

/* ---------- Product / category pages (SEO) ---------- */
.product-page, .category-page {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 16px 40px;
}
.breadcrumb { font-size: 13px; color: #888; margin-bottom: 16px; }
.category-page__description { color: #555; font-size: 14px; margin: -8px 0 20px; max-width: 700px; }
.breadcrumb a { color: #888; }
.product-page__grid {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.product-page__main-img {
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #f0f0f0;
}
.product-page__main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-page__thumbs { display: flex; gap: 8px; margin-top: 10px; }
.product-page__thumbs img {
    width: 52px; height: 52px; object-fit: cover; border-radius: var(--radius-sm);
    border: 2px solid transparent; cursor: pointer;
}
.product-page__thumbs img.active { border-color: #111; }
.product-page__video { width: 100%; border-radius: var(--radius-md); margin-top: 12px; background: #000; }
.product-page__info h1 { font-size: 22px; font-weight: 800; margin: 0 0 6px; }
.product-page__sku { font-size: 12px; color: #888; margin-bottom: 10px; }
.product-page__price-old { text-decoration: line-through; color: #999; font-size: 13px; }
.product-page__price { font-size: 26px; font-weight: 800; margin: 4px 0 16px; }
.product-page__desc { font-size: 14px; line-height: 1.6; color: #444; margin-bottom: 20px; white-space: pre-line; }
.product-page__view-all { display: block; margin-top: 10px; text-align: center; }
@media (max-width: 640px) {
    .product-page__grid { grid-template-columns: 1fr; }
}

/* ---------- Upsell modal (checkout) ---------- */
.upsell-modal {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 420px;
    width: 100%;
    padding: 24px;
    position: relative;
}
.upsell-modal__title { font-size: 18px; font-weight: 800; margin: 0 0 16px; padding-right: 24px; }
.upsell-modal__slider { aspect-ratio: unset; background: none; max-width: none; margin: 0; }
.upsell-modal__slider .slider__track { align-items: stretch; }
.upsell-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 36px; }
.upsell-card__img {
    width: 140px; height: 140px; border-radius: var(--radius-md);
    overflow: hidden; background: #f0f0f0; margin-bottom: 12px;
}
.upsell-card__img img { width: 100%; height: 100%; object-fit: cover; }
.upsell-card__name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.upsell-card__price { font-weight: 800; font-size: 16px; margin-bottom: 12px; }
.upsell-card__btn {
    width: 100%; border-radius: 999px; padding: 10px; font-weight: 700; font-size: 14px;
    border: 1px solid #111; background: #fff; color: #111;
}
.upsell-card__btn.added { background: #111; color: #fff; }
.upsell-modal__slider .slider__dots { bottom: -18px; }
.upsell-modal__slider .slider__dots span { background: rgba(0,0,0,.2); }
.upsell-modal__slider .slider__dots span.active { background: #111; }
.upsell-modal #upsell-continue-btn { margin-top: 28px; }

/* ---------- Cart drawer ---------- */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    display: none;
    z-index: 90;
}
.drawer-overlay.open { display: block; }
.drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: #fff;
    z-index: 95;
    transition: right .3s ease;
    display: flex;
    flex-direction: column;
}
.drawer.open { right: 0; }
.drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    font-weight: 800;
}
.drawer__close { border: none; background: none; font-size: 20px; }
.drawer__items { flex: 1; overflow-y: auto; padding: 14px 20px; }
.drawer__empty { text-align: center; color: #777; margin-top: 40px; }
.drawer__notice { margin: 14px 20px 0; padding: 10px 12px; background: #fff8e1; border: 1px solid #f5c518; border-radius: var(--radius-sm); font-size: 13px; color: #6b5900; }
.cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px dashed #eee; align-items: center; }
.cart-item img { width: 52px; height: 52px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-item__info { flex: 1; }
.cart-item__name { font-weight: 700; font-size: 14px; }
.cart-item__line { font-size: 13px; color: #555; }
.cart-item__remove { color: #c0392b; font-size: 12px; border: none; background: none; padding: 0; }
.cart-item .qty-stepper { max-width: 100px; }
.drawer__footer { padding: 16px 20px 20px; border-top: 1px solid #eee; }
.drawer__total { display: flex; justify-content: space-between; font-weight: 800; font-size: 17px; margin-bottom: 12px; }
.btn-outline {
    width: 100%; background: #fff; border: 2px solid #111; border-radius: 999px;
    padding: 12px; font-weight: 700;
}
.drawer__clear { width: 100%; background: none; border: none; color: #c0392b; font-size: 13px; padding: 10px 0 0; text-align: center; }

/* ---------- Checkout ---------- */
.checkout {
    max-width: 700px;
    margin: 40px auto;
    padding: 0 16px;
    /* El topbar es sticky (74px) — sin esto, "Ir al checkout" deja el título y el campo
       Nombre tapados detrás del topbar y el scroll parece pasarse de largo. */
    scroll-margin-top: 84px;
}
.checkout h2 { font-size: 20px; }
.checkout__field { margin-bottom: 18px; }
.checkout__field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.checkout__field input, .checkout__field select, .checkout__field textarea {
    width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: var(--radius-sm); font-size: 15px;
    font-family: inherit; resize: vertical;
}
.checkout__field input[type="file"] { border: none; padding: 0; }
#checkout-address-wrap { position: relative; }
/* Dropdown propio de sugerencias (Places API New, AutocompleteSuggestion): a diferencia del
   viejo widget clásico (que armaba su propio .pac-container) o del elemento nuevo de Google
   (PlaceAutocompleteElement, que en mobile tapa toda la pantalla), este es un <ul> chico
   posicionado por nosotros, para tener control total del layout en cualquier tamaño de pantalla. */
.address-suggestions {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 20;
    background: #fff; border: 1px solid #ddd; border-top: none; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    max-height: 220px; overflow-y: auto; list-style: none; margin: 0; padding: 4px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
}
.address-suggestions li {
    padding: 10px 14px; font-size: 14px; cursor: pointer;
}
.address-suggestions li:hover, .address-suggestions li.is-active {
    background: var(--color-bg-soft, #f5f5f5);
}
.checkout__field-hint { font-size: 12px; color: #888; margin: 6px 0 0; }
.checkout__field-error { font-size: 12px; color: #c0392b; margin: 6px 0 0; }
.map-pin-wrap { position: relative; height: 260px; border-radius: var(--radius-sm); overflow: hidden; }
#checkout-map { width: 100%; height: 100%; }
.map-pin-fixed {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
    font-size: 34px; pointer-events: none; filter: drop-shadow(0 2px 3px rgba(0,0,0,.4));
}
.coupon-row { display: flex; gap: 8px; }
.coupon-row input { flex: 1; }
.coupon-row button {
    border: none; background: #111; color: #fff; border-radius: var(--radius-sm); padding: 0 20px; font-weight: 700;
}
.checkout__summary-line { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 6px; color: #444; }
.checkout__total { display: flex; justify-content: space-between; font-size: 22px; font-weight: 800; margin: 18px 0; }
.checkout__hint { font-size: 12px; color: #888; text-align: center; margin-bottom: 12px; }
.checkout__error { color: #c0392b; font-size: 14px; margin-bottom: 12px; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,.25);
    z-index: 80;
}
.whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; }

footer.site-footer {
    text-align: center;
    padding: 30px 16px 50px;
    color: #999;
    font-size: 13px;
}
