/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #00ff41;
    --green-dim: rgba(0, 255, 65, 0.15);
    --green-border: rgba(0, 255, 65, 0.6);
    --bg-header: #1C1C1C;
    --bg-dark: #111;
    --bg-black: #000;
    --white: #fff;
    --transition: 0.25s ease;
    --radius: 12px;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0d0d0d;
    color: white;
}

body.mobile-menu-open { overflow: hidden; }

/* =============================================
   HEADER
   ============================================= */
.header {
    background: var(--bg-header);
    border-radius: 5px;
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 1800px;
    width: calc(100% - 28px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 54px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    /* pointer-events: none;  ← elimina esta línea */
    text-decoration: none;
}

.logo img {
    height: 30px;
    width: 400px;
    display: block;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    color: white;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 14px;
    position: relative;
    cursor: pointer;
    transition: color var(--transition);
    user-select: none;
}

.nav-item:hover { color: var(--green); }

.nav-item::after {
    content: '▾';
    font-size: 14px;
    margin-left: 6px;
    opacity: 0.7;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon {
    width: 20px;
    height: 20px;
    color: white;
    cursor: pointer;
    transition: color var(--transition);
    display: block;
    flex-shrink: 0;
}

.icon:hover { color: var(--green); }

.icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}
.icon-wrap:hover .icon { color: var(--green); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    width: 32px;
    height: 32px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: white;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) { transform: rotate(-45deg) translate(-4px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(45deg) translate(-4px, -5px); }

/* =============================================
   DESKTOP DROPDOWNS — mismo estilo que menú móvil
   ============================================= */
.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #1C1C1C;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all var(--transition);
    z-index: 1001;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Etiqueta SHOP arriba del dropdown */
.dropdown::before {
    content: 'CATEGORÍAS';
    display: block;
    padding: 12px 20px 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green);
    opacity: 1;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dropdown-item {
    display: block;
    padding: 13px 20px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color var(--transition), background var(--transition), padding-left var(--transition);
    position: relative;
}

.dropdown-item:hover {
    background: var(--green-dim);
    color: var(--green);
    padding-left: 24px;
}

.dropdown-item:first-child { border-radius: 0; }
.dropdown-item:last-child  { border-bottom: none; border-radius: 0; }

/* Flecha indicadora de submenu */
.has-submenu {
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.has-submenu::after {
    content: '▶';
    font-size: 8px;
    color: rgba(255,255,255,0.25);
    transition: color var(--transition), transform var(--transition);
    margin-left: 8px;
    flex-shrink: 0;
}

.has-submenu:hover::after {
    color: var(--green);
    transform: translateX(2px);
}

.has-submenu:hover {
    color: var(--green);
    background: var(--green-dim);
    padding-left: 24px;
}

.submenu {
    position: absolute;
    top: 0;
    left: calc(100% + 6px);
    background: #1C1C1C;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-6px);
    transition: all var(--transition);
    z-index: 1100;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}



.has-submenu:hover .submenu { opacity: 1; visibility: visible; transform: translateX(0); }

.submenu a {
    display: block;
    padding: 11px 20px 11px 24px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-left: 2px solid transparent;
    transition: color var(--transition), padding-left var(--transition), border-left-color var(--transition);
}

.submenu a span { display: inline-block; transition: transform var(--transition); }

.submenu a:hover {
    color: var(--green);
    padding-left: 34px;
    border-left-color: var(--green);
    background: var(--green-dim);
}

.submenu a:hover span { transform: translateX(0); }

/* =============================================
   SEARCH OVERLAY
   ============================================= */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease;
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 999;
}

.search-overlay.show { opacity: 1; visibility: visible; transform: translateY(0); }

.search-header { display: flex; align-items: center; padding: 16px 30px; background: white; }

.search-input-container { flex: 1; position: relative; margin-right: 16px; }

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #aaa;
    font-size: 16px;
    padding: 10px 44px 10px 8px;
    color: #111;
    outline: none;
    transition: border-color .2s;
}

.search-input:focus { border-bottom-color: #111; }
.search-input::placeholder { color: #888; }

.search-icon-input {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #888;
}

.close-search {
    width: 30px;
    height: 30px;
    color: #111;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: background .2s;
    flex-shrink: 0;
}

.close-search:hover { background: #eee; }

/* =============================================
   MOBILE MENU — DROPDOWN TOP TO BOTTOM
   ============================================= */

/* Overlay oscuro debajo del menú */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1400;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active { opacity: 1; }

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-height: 0;
    overflow: hidden;
    background: #1C1C1C;
    z-index: 1500;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-direction: column;
    border-radius: 0 0 var(--radius) var(--radius);
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.mobile-menu.active {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    border-color: rgba(0,255,65,0.55);
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    border-radius: 5px;
}

/* Header del panel — oculto porque el menú ya está bajo el nav */
.mobile-menu-header { display: none; }
.mobile-menu-close { display: none; }

/* Contenido */
.mobile-menu-content {
    flex: 1;
    padding: 4px 0 12px;
    display: flex;
    flex-direction: column;
}

/* Search */
.mobile-search {
    padding: 8px 18px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 2px;
}

.mobile-search input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 8px;
    color: white;
    font-size: 12px;
    padding: 9px 13px;
    outline: none;
    transition: border-color var(--transition);
    letter-spacing: 0.5px;
}

.mobile-search input:focus { border-color: rgba(0,255,65,0.35); }
.mobile-search input::placeholder { color: rgba(255,255,255,0.28); font-size: 11px; }

/* Título de sección */
.mobile-nav-title {
    padding: 8px 18px 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--green);
    text-transform: uppercase;
    opacity: 0.85;
}

/* Item categoría */
.mobile-item { border-bottom: none; }

.mobile-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 18px;
    color: rgba(255,255,255,0.78);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color var(--transition), background var(--transition);
}

.mobile-item-header:hover { color: white; background: rgba(255,255,255,0.04); }
.mobile-item.open .mobile-item-header { color: var(--green); }

/* Flecha */
.mobile-item-header .arrow {
    font-size: 9px;
    color: rgba(255,255,255,0.25);
    transition: transform 0.25s ease, color 0.25s ease;
    margin-left: 8px;
    flex-shrink: 0;
}

.mobile-item.open .mobile-item-header .arrow {
    transform: rotate(90deg);
    color: var(--green);
}

/* Submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, opacity 0.25s ease;
    opacity: 0;
    background: rgba(0,0,0,0.25);
}

.mobile-item.open .mobile-submenu { max-height: 900px; opacity: 1; }

.mobile-submenu a {
    display: block;
    padding: 6px 18px 6px 30px;
    color: rgba(255,255,255,0.42);
    text-decoration: none;
    font-size: 10.5px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: color var(--transition), padding-left var(--transition), border-left-color var(--transition);
    border-left: 2px solid transparent;
    margin-left: 16px;
}

.mobile-submenu a:hover {
    color: rgba(255,255,255,0.9);
    padding-left: 34px;
    border-left-color: var(--green);
}

/* =============================================
   DRAWERS — CARRITO & AUTH
   ============================================= */
 
/* Overlay */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}
 
/* Base drawer */
.cart-drawer,
.auth-drawer,
.fav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: #111;
    z-index: 1999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255,255,255,0.08);
}
.cart-drawer.active,
.auth-drawer.active,
.fav-drawer.active {
    transform: translateX(0);
}
 
/* Fav icon badge */
.fav-count {
    position: relative;
    cursor: pointer;
}
.fav-count.has-favs {
    color: #ff4444;
    fill: rgba(255,68,68,0.15);
    stroke: #ff4444;
}
.fav-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
 
/* Fav empty state */
.fav-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 24px;
    text-align: center;
    color: rgba(255,255,255,0.3);
}
.fav-empty svg { width: 52px; height: 52px; }
.fav-empty p { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.5); margin: 0; }
.fav-empty span { font-size: 13px; }
 
/* Fav items */
.fav-items { display: flex; flex-direction: column; gap: 0; }
 
.fav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
}
.fav-item:hover { background: rgba(255,255,255,0.03); }
 
.fav-item-img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fav-item-img img { width: 100%; height: 100%; object-fit: cover; }
 
.fav-item-info { flex: 1; min-width: 0; }
.fav-item-nombre {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fav-item-precio { font-size: 14px; font-weight: 900; color: var(--green); margin: 0; }
 
.fav-item-actions { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; }
 
.fav-item-cart {
    background: rgba(0,255,65,0.1);
    border: 1px solid rgba(0,255,65,0.2);
    color: var(--green);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
    white-space: nowrap;
}
.fav-item-cart:hover { background: var(--green); color: #000; }
 
.fav-item-remove {
    background: none;
    border: none;
    color: rgba(255,255,255,0.25);
    cursor: pointer;
    font-size: 11px;
    text-align: center;
    padding: 2px;
    transition: color 0.2s;
    font-family: inherit;
}
.fav-item-remove:hover { color: #ff4444; }
 
 
/* Header */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.drawer-title {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}
.drawer-close {
    width: 22px;
    height: 22px;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: color 0.2s;
    flex-shrink: 0;
}
.drawer-close:hover { color: #fff; }
 
/* Body */
.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.drawer-body::-webkit-scrollbar { width: 4px; }
.drawer-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }
 
/* ---- CARRITO ---- */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 0;
    color: rgba(255,255,255,0.3);
}
.cart-empty svg { width: 56px; height: 56px; stroke: rgba(255,255,255,0.15); }
.cart-empty p { font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.5); }
.cart-empty span { font-size: 13px; text-align: center; }
 
.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    align-items: center;
}
.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    background: #1e1e1e;
    flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item-price { font-size: 13px; color: var(--green); font-weight: 700; }
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    line-height: 1;
}
.qty-btn:hover { border-color: var(--green); background: var(--green-dim); color: var(--green); }
.qty-num { font-size: 13px; color: #fff; min-width: 20px; text-align: center; }
.cart-item-remove {
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    transition: color 0.2s;
    flex-shrink: 0;
}
.cart-item-remove:hover { color: #ff4444; }
 
/* Footer carrito */
.drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff;
}
#cart-total-price { color: var(--green); font-size: 20px; }
.cart-checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--green);
    color: #000;
    padding: 14px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 10px;
}
.cart-checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,255,65,0.3); }
.cart-clear-btn {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.4);
    padding: 10px;
    border-radius: 50px;
    font-size: 12px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    letter-spacing: 0.5px;
}
.cart-clear-btn:hover { border-color: #ff4444; color: #ff4444; }
 
/* ---- AUTH ---- */
.auth-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 28px;
    gap: 0;
}
.auth-tab {
    flex: 1;
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 12px 0;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    text-transform: uppercase;
}
.auth-tab.active { color: var(--green); border-bottom-color: var(--green); }
 
.auth-form { display: none; }
.auth-form.active { display: block; }
 
.auth-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
 
.auth-field { margin-bottom: 16px; }
.auth-field label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.auth-field input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
    box-sizing: border-box;
}
.auth-field input:focus { border-color: var(--green); }
 
.pass-wrap { position: relative; }
.pass-wrap input { padding-right: 42px; }
.toggle-pass {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    opacity: 0.4;
    transition: opacity 0.2s;
    user-select: none;
}
.toggle-pass:hover { opacity: 0.8; }
 
.auth-forgot {
    display: block;
    text-align: right;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    margin-bottom: 20px;
    margin-top: -8px;
    transition: color 0.2s;
}
.auth-forgot:hover { color: var(--green); }
 
.auth-error {
    font-size: 12px;
    color: #ff4444;
    min-height: 16px;
    margin-bottom: 12px;
}
 
.auth-submit-btn {
    width: 100%;
    background: var(--green);
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}
.auth-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,255,65,0.3); }
 
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: rgba(255,255,255,0.2);
    font-size: 12px;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}
 
.auth-google-btn {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    padding: 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, border-color 0.2s;
}
.auth-google-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
 
.auth-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}
.auth-check input { width: auto; margin-top: 2px; accent-color: var(--green); }
.auth-check a { color: var(--green); text-decoration: none; }
 
/* Logged in */
.user-welcome {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(0,255,65,0.06);
    border-radius: 12px;
    border: 1px solid rgba(0,255,65,0.15);
    margin-bottom: 24px;
}
.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: #000;
    font-size: 20px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.user-welcome-name { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.user-welcome-email { font-size: 12px; color: rgba(255,255,255,0.4); }
 
.user-nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 24px; }
.user-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 10px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.user-nav a svg { width: 18px; height: 18px; flex-shrink: 0; }
.user-nav a:hover { background: rgba(255,255,255,0.06); color: #fff; }
 
.auth-logout-btn {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    padding: 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-transform: uppercase;
}
.auth-logout-btn:hover { border-color: #ff4444; color: #ff4444; }
 
/* Counter badge */
.cart-count { position: relative; }
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--green);
    color: #000;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: transform 0.2s;
}

.auth-required { color: #ff4444; font-size: 10px; }
 
/* Select */
.auth-select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 13px;
    outline: none;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s;
}
.auth-select:focus { border-color: var(--green); }
.auth-select option { background: #1a1a1a; }
 
/* Avatar upload */
.auth-avatar-upload {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 14px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.auth-avatar-upload:hover { border-color: var(--green); }
 
.auth-avatar-preview {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.auth-avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.auth-avatar-info { display: flex; flex-direction: column; gap: 4px; }
 
.auth-avatar-btn {
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    cursor: pointer;
}
 
.auth-avatar-hint {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
}
 
/* Back button */
.auth-back-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    padding: 0 0 16px;
    text-align: left;
    font-family: inherit;
    transition: color 0.2s;
    display: block;
    width: 100%;
}
.auth-back-btn:hover { color: var(--green); }
 
/* Success message */
.auth-success {
    font-size: 13px;
    color: var(--green);
    text-align: center;
    margin: 0;
    min-height: 18px;
}

/* ── Botón admin panel ── */
.auth-admin-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px 16px;
    background: rgba(255,200,0,0.08);
    border: 1px solid rgba(255,200,0,0.25);
    border-radius: 10px;
    color: #ffc800;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.auth-admin-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.auth-admin-btn:hover { background: rgba(255,200,0,0.15); border-color: rgba(255,200,0,0.4); }

/* =============================================
   HERO
   ============================================= */
.hero {
    width: 100%;
    aspect-ratio: 1920 / 600;
    min-height: 260px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-background {
    background: url("../FOTOS/main/PORTADA.PNG") center center / 100% 100% no-repeat;
    position: absolute;
    inset: 0;
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Hero páginas internas */
.hero--page {
    aspect-ratio: 1920 / 500;
    min-height: 200px;
}

.hero--page .hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--green);
    text-transform: uppercase;
    background: rgba(0,255,65,0.1);
    border: 1px solid rgba(0,255,65,0.25);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.05;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-sub {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}

/* =============================================
   CAROUSEL CATEGORIAS
   ============================================= */
.carousel-categorias {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 24px 20px;
    width: 100%;
    background: #ffffff;
}

.contenido {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-carousel {
    width: 100%;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-main img { width: 100%; height: 100%; object-fit: cover; display: block; }

.carousel {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 14px;
    width: 100%;
    overflow: visible !important;
}

.carousel::-webkit-scrollbar { display: none; }

.card {
    width: 100% !important;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
    flex: unset !important;
}

.card:hover { transform: scale(1.03); }
.card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =============================================
   CATÁLOGO SECTION
   ============================================= */
.catalogo-section {
    background: #111;
    padding: 70px 40px;
    width: 100%;
    box-sizing: border-box;
}
 
.catalogo-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}
 
.catalogo-header {
    text-align: center;
    margin-bottom: 48px;
}
 
.catalogo-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
 
.catalogo-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
    margin: 10px auto 0;
}
 
.catalogo-subtitle {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 14px;
}
 
/* Grid — 5 por fila en desktop */
.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* Card */
.catalogo-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}
 
.catalogo-card:hover {
    transform: translateY(-6px);
    border-color: var(--green-border);
    box-shadow: 0 12px 32px rgba(0,255,65,0.12);
}
 
/* Image wrap */
.catalogo-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
 
.catalogo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
 
.catalogo-card:hover .catalogo-img-wrap img {
    transform: scale(1.07);
}
 
.catalogo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    pointer-events: none;
}
 
/* Info & button */
.catalogo-info {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    background: #141414;
}
 
.catalogo-name {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.3;
}
 
.catalogo-btn {
    display: block;
    text-align: center;
    background: transparent;
    border: 1.5px solid var(--green-border);
    color: var(--green);
    padding: 11px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-top: auto;
}
 
.catalogo-btn:hover {
    background: var(--green);
    color: #000;
    box-shadow: 0 4px 16px rgba(0,255,65,0.3);
}
 
/* =============================================
   OUR STORY
   ============================================= */
.our-story-wrapper {
    background: #f3f3f3;
    width: 100%;
}

.our-story-section {
    display: flex;
    min-height: 80vh;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
    gap: 80px;

}

.image-container { flex: 1; position: relative; }

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    display: block;
}

.content-container { flex: 1; padding-left: 20px; }

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 28px;
    letter-spacing: -1px;
    line-height: 1;
}

.section-description {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.75;
    color: #666;
    margin-bottom: 36px;
    max-width: 500px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #c4ff00, #9ee600);
    color: #000;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(196,255,0,0.3);
}

.cta-button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(196,255,0,0.4); }
.cta-button::after { content: '→'; margin-left: 10px; font-size: 15px; transition: transform 0.3s ease; }
.cta-button:hover::after { transform: translateX(5px); }

/* =============================================
   REVIEWS SECTION
   ============================================= */
.reviews-section {
    background: #0d0d0d;
    padding: 60px 40px;
    width: 100%;
    box-sizing: border-box;
}

.reviews-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.reviews-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-stars-header {
    color: #ffa41c;
    font-size: 22px;
    letter-spacing: 3px;
}

.reviews-count-label {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.add-review-btn {
    background: var(--green);
    color: #000;
    border: none;
    padding: 10px 22px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.add-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,255,65,0.3);
}

/* Masonry real — 4 columnas flex independientes */
.reviews-grid {
    display: flex;
    gap: 14px;
    width: 100%;
    align-items: flex-start;
}

.reviews-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.reviews-dynamic {
    margin-top: 14px;
}

.review-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
}

.review-card:nth-child(1) .review-image { height: 220px; }
.review-card:nth-child(2) .review-image { height: 280px; }
.review-card:nth-child(3) .review-image { height: 180px; }
.review-card:nth-child(4) .review-image { height: 260px; }
.review-card:nth-child(5) .review-image { height: 200px; }
.review-card:nth-child(6) .review-image { height: 240px; }

.review-card:hover {
    transform: translateY(-3px);
    border-color: var(--green-border);
}

.review-image {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
}

.review-content { padding: 14px 16px; }

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.reviewer-name {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--green);
}

.verified-icon {
    width: 13px;
    height: 13px;
    stroke: var(--green);
}

.review-date {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 6px;
}

.review-stars {
    color: #ffa41c;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.review-text {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 6px;
}

.review-meta {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
}

/* =============================================
   MODAL RESEÑA
   ============================================= */
.review-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    padding: 20px;
}

.review-modal.active { display: flex; }

.review-box {
    background: #111;
    color: white;
    padding: 36px 32px 28px;
    width: 100%;
    max-width: 440px;
    border-radius: 16px;
    border: 1px solid rgba(0,255,65,0.2);
    position: relative;
    animation: slideUp 0.25s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.modal-close-btn {
    position: absolute;
    top: 14px; right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close-btn:hover { color: white; }

/* Dots indicadores */
.step-indicators {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.step-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: background 0.3s, transform 0.3s;
}

.step-dot.active {
    background: var(--green);
    transform: scale(1.3);
}

/* Pasos */
.review-step { display: none; }
.review-step.active { display: block; }

.review-step h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.step-hint {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 18px;
}

/* Estrellas */
.star-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.star-rating span {
    font-size: 36px;
    cursor: pointer;
    color: rgba(255,255,255,0.2);
    transition: color 0.15s, transform 0.15s;
    line-height: 1;
}

.star-rating span:hover,
.star-rating span.active { color: #ffa41c; transform: scale(1.15); }

.star-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    min-height: 18px;
}

/* Upload */
.file-upload-label {
    display: inline-block;
    background: rgba(255,255,255,0.06);
    border: 1px dashed rgba(255,255,255,0.2);
    padding: 14px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
}

.file-upload-label:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-dim);
}

.image-preview img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 4px;
}

/* Inputs */
.review-step textarea,
.review-step input[type="text"],
.review-step input[type="email"] {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: white;
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
    resize: none;
}

.review-step textarea { min-height: 110px; }

.review-step textarea:focus,
.review-step input:focus { border-color: var(--green); }

.review-error {
    color: #ff4444;
    font-size: 12px;
    min-height: 16px;
    margin: 8px 0 4px;
}

/* Acciones */
.review-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    gap: 12px;
}

.btn-prev, .btn-next {
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    flex: 1;
}

.btn-prev {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
}

.btn-prev:hover { background: rgba(255,255,255,0.13); }

.btn-next {
    background: var(--green);
    color: #000;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,255,65,0.35);
}

/* =============================================
   BENEFITS
   ============================================= */
.benefits-banner { background: #1a1a1a; color: white; padding: 22px 40px; width: 100%; }

.benefits-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 16px;
}

.benefit-item {
    flex: 1;
    text-align: left;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.benefits-container > .arrow {
    color:  var(--green);
    font-size: 26px;
    font-weight: bold;
    flex-shrink: 0;
    padding: 0 12px;
}

.benefit-label { font-size: 10px; letter-spacing: 1.2px; color: #666; font-weight: 500; text-transform: uppercase; }
.benefit-description { font-size: 12px; font-weight: 700; letter-spacing: 0.3px; line-height: 1.3; text-transform: uppercase; color: white; }

/* =============================================
   FOOTER
   ============================================= */
footer { background: var(--bg-black); color: white; position: relative; overflow: hidden; }

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green);
}

.footer-container { max-width: 1200px; margin: 0 auto; padding: 60px 30px 30px; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 { font-size: 18px; font-weight: 700; margin-bottom: 24px; position: relative; display: inline-block; }

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -7px; left: 0;
    width: 100%; max-width: 200px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 6px; }

.footer-section ul li a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 16px;
    padding: 4px 0;
    display: inline-block;
    position: relative;
    transition: color 0.3s, transform 0.3s;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--green);
    transition: width 0.3s;
}

.footer-section ul li a:hover { color: white; transform: translateX(8px); }
.footer-section ul li a:hover::after { width: 100%; }

.footer-bottom { border-top: 1px solid #2a2a2a; padding-top: 28px; text-align: center; }
.footer-bottom p { color: #888; font-size: 13px; margin-top: 12px; }

.social { display: flex; justify-content: center; margin-bottom: 16px; }
.social img { height: 180px; transition: transform 0.25s ease; cursor: pointer; }
.social img:hover { transform: scale(1.04); }

    /* ── FLOATING WHATSAPP ── */
    .wa-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 200;
      width: 56px; height: 56px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      text-decoration: none;
      transition: transform 0.2s;
      animation: bounceIn 1s 2s both;
    }

    .wa-float:hover { transform: scale(1.1); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    @keyframes bounceIn {
      0% { opacity: 0; transform: scale(0.5); }
      80% { transform: scale(1.1); }
      100% { opacity: 1; transform: scale(1); }
    }

/* ── FLOATING INSTAGRAM ── */
.ig-float {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    z-index: 200;
    width: 56px; height: 56px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s;
    animation: bounceIn 1s 2.3s both;
}

.ig-float:hover { transform: scale(1.1); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .header { width: 95%; }
    .our-story-section { gap: 48px; }
    .main-image { height: 420px; }
}
 
@media (max-width: 992px) {
    .header-container { padding: 0 18px; }
    .nav-item { font-size: 11px; padding: 8px 10px; }
    .logo { font-size: 18px; }
    .banner-carousel { height: 170px; }
    .carousel { grid-template-columns: repeat(2, 1fr); }
    .our-story-section { flex-direction: column; text-align: center; padding: 44px 20px; gap: 32px; }
    .content-container { padding-left: 0; }
    .section-description { margin: 0 auto 32px; }
    .main-image { height: 380px; }
    .benefits-container { flex-wrap: wrap; gap: 18px; }
    .benefit-item { text-align: center; }
    .benefits-container > .arrow { display: none; }
    .logo img { height: 30px; width: 300px;}
}
 
@media (max-width: 768px) {
    .header { width: calc(100% - 20px); border-radius: var(--radius); }
    .header-container { height: 50px; }
    .nav-left { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
    .logo { font-size: 16px; letter-spacing: 1.5px; }
    .nav-right { gap: 12px; }
    #search-icon { display: none; }
    .hero { margin-top: 60px; }
    .banner-carousel { height: 150px; }
    .carousel { display: flex !important; flex-wrap: nowrap !important; overflow-x: auto !important; grid-template-columns: unset !important; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
    .card { flex: 0 0 auto !important; width: 200px !important; height: 250px; scroll-snap-align: start; }
    .our-story-section { padding: 36px 16px; }
    .benefits-container { flex-direction: column; padding: 0 16px; }
    .benefit-item { border-bottom: 1px solid #2a2a2a; padding: 14px 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-section ul li a { font-size: 15px; }
    .social img { height: 140px; }
    .logo img { height: 30px; width: 200px;}
    .catalogo-section { padding: 50px 16px; }
    .catalogo-header { margin-bottom: 32px; }
    .wa-float, .ig-float {width: 46px; height: 46px; right: 1rem;}
    .wa-float {bottom: 1.2rem;}
    .ig-float {bottom: 4.8rem;}
    .wa-float svg, .ig-float svg {width: 22px; height: 22px;}    
    .catalogo-section { padding: 50px 16px; }
    .catalogo-header { margin-bottom: 32px; }
}
 
@media (max-width: 480px) {
    .header { width: calc(100% - 20px); }
    .header-container { padding: 0 12px; height: 46px; }
    .mobile-menu { top: 52px; }
    .logo { font-size: 13px; letter-spacing: 1px; }
    .nav-right { gap: 10px; }
    .icon { width: 16px; height: 16px; }
    .banner-carousel { height: 130px; }
    .card { width: 170px; height: 220px; }
    .main-image { height: 260px; }
    .cta-button { padding: 14px 26px; font-size: 12px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; justify-items: center; text-align: center; }
    .footer-container { padding: 40px 18px 24px; }
    .footer-section h3::after { left: 50%; transform: translateX(-50%); }
    .footer-section ul li a:hover { transform: translateX(0); }
    .social img { height: 110px; }
    .logo img { height: 30px; width: 160px;}
    .reviews-section { padding: 40px 14px; }
    .review-box { padding: 28px 18px 22px; }
    .star-rating span { font-size: 30px; }
    .cart-drawer, .auth-drawer { width: 100vw; }
    .auth-row { grid-template-columns: 1fr; }
    .wa-float,.ig-float {width: 42px; height: 42px; right: 0.8rem;}
    .wa-float {bottom: 1rem;}
    .ig-float {bottom: 4.2rem;}
    .wa-float svg, .ig-float svg {width: 20px; height: 20px;} 
    .cart-drawer, .auth-drawer, .fav-drawer { width: 100vw; }
    .auth-row { grid-template-columns: 1fr; }
}

@media (max-width: 1200px) { .reviews-grid { --cols: 3; } }
@media (max-width: 900px)  { .reviews-grid { --cols: 2; } }
@media (max-width: 560px)  { .reviews-grid { --cols: 1; } }
@media (max-width: 1200px) { .catalogo-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px)  { .catalogo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .catalogo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px)  { .catalogo-grid { grid-template-columns: 1fr; } }