:root {
    --cream: #FDFAF6;
    --white: #FFFFFF;
    --lila: #C9B8E8;
    --lila-light: #f0ecfa;
    --lila-deep: #9D85C5;
    --rose: #F2C4CE;
    --rose-light: #FAE5EA;
    --rose-deep: #D9849A;
    --yellow: #F7E8B0;
    --yellow-light: #FDF5D9;
    --yellow-deep: #D4B84A;
    --text-dark: #3D2B4E;
    --text-mid: #6B5578;
    --text-light: #A08DB5;
    --border: rgba(201,184,232,0.35);
    --shadow-soft: 0 4px 24px rgba(157,133,197,0.12);
    --shadow-hover: 0 8px 40px rgba(157,133,197,0.22);
    --radius: 20px;
    --radius-sm: 12px;
    --header-h: 72px;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }
  h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; }

  /* ── HEADER ── */
  #header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--header-h);
    background: rgba(253,250,246,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 28px;
    transition: box-shadow .3s;
  }
  #header.scrolled { box-shadow: var(--shadow-soft); }

  .logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
  }
  .logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--lila) 0%, var(--rose) 100%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    overflow: hidden;
  }
  .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  .logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 600; color: var(--text-dark); line-height: 1; }
  .logo-sub { font-size: 0.62rem; color: var(--text-light); letter-spacing: 2px; text-transform: uppercase; display: block; }

  nav.main-nav { display: flex; align-items: center; gap: 4px; }
  nav.main-nav a, .nav-dropdown-btn {
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem; font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    padding: 7px 14px; border-radius: 30px;
    transition: background .2s, color .2s;
    background: none; border: none; cursor: pointer; position: relative;
  }
  nav.main-nav a:hover, .nav-dropdown-btn:hover { background: var(--lila-light); color: var(--text-dark); }

  .dropdown { position: relative; }
  .dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 8px;
  }
  .dropdown-menu {
    display: none; position: absolute; top: 100%; left: 0;
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
    box-shadow: var(--shadow-hover); min-width: 190px; padding: 8px 0; z-index: 200;
  }
  .dropdown:hover .dropdown-menu { display: block; animation: fadeDown .2s ease; }
  .dropdown-menu a {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 18px; font-size: 0.8rem; color: var(--text-mid);
    text-decoration: none; transition: background .15s;
  }
  .dropdown-menu a:hover { background: var(--rose-light); color: var(--text-dark); border-radius: 0; }
  .dropdown-menu a .sub-icon { font-size: 14px; }
  @keyframes fadeDown { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }

  .header-actions { display: flex; align-items: center; gap: 10px; }

  .search-wrap { position: relative; display: flex; align-items: center; }
  #searchInput {
    width: 0; padding: 0; border: none; outline: none;
    background: var(--lila-light); border-radius: 30px;
    font-size: 0.8rem; color: var(--text-dark);
    transition: width .3s, padding .3s;
    overflow: hidden;
  }
  #searchInput.open { width: 160px; padding: 6px 14px; }
  .icon-btn {
    background: none; border: none; cursor: pointer;
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--text-mid); transition: background .2s;
  }
  .icon-btn:hover { background: var(--lila-light); }

  .currency-sel {
    background: var(--yellow-light); border: 1px solid var(--yellow);
    border-radius: 30px; padding: 5px 12px; font-size: 0.75rem;
    color: var(--text-mid); cursor: pointer; font-weight: 600;
  }
  .btn-account {
    background: linear-gradient(135deg, var(--lila) 0%, var(--rose) 100%);
    color: var(--white); border: none; border-radius: 30px;
    padding: 7px 18px; font-size: 0.78rem; font-weight: 600;
    cursor: pointer; transition: opacity .2s, transform .2s;
  }
  .btn-account:hover { opacity: .88; transform: translateY(-1px); }
  .btn-login {
    border: 1px solid var(--lila-deep); background: transparent; color: var(--lila-deep);
    border-radius: 30px; padding: 4px; font-size: 0.78rem; font-weight: 700; cursor: pointer;
  }
  .account-avatar {
    width: 36px; height: 36px; border-radius: 50%; border: none;
    background: linear-gradient(135deg, var(--lila-deep) 0%, var(--rose-deep) 100%);
    color: #fff; font-weight: 700; font-size: 0.72rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
  }
  .account-dropdown {
    position: absolute; top: calc(100% + 10px); right: 0;
    min-width: 220px; background: var(--white);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    box-shadow: var(--shadow-hover); padding: 10px;
    display: none; z-index: 2200;
  }
  .account-dropdown.open { display: block; }
  .account-name { font-size: 0.84rem; font-weight: 700; color: var(--text-dark); }
  .account-mail { font-size: 0.72rem; color: var(--text-light); margin-top: 3px; }
  .account-logout {
    margin-top: 10px; width: 100%; border: none;
    background: var(--rose-light); color: var(--rose-deep);
    border-radius: 10px; padding: 8px 10px;
    font-size: 0.78rem; font-weight: 700; cursor: pointer;
    text-decoration: none; display: inline-block; text-align: center;
  }
  .cart-btn {
    position: relative; background: var(--white);
    border: 1px solid var(--border); border-radius: 30px;
    padding: 7px 16px; display: flex; align-items: center; gap: 6px;
    font-size: 0.8rem; color: var(--text-mid); cursor: pointer;
    transition: box-shadow .2s;
  }
  .cart-btn:hover { box-shadow: var(--shadow-soft); }
  .cart-count {
    background: var(--rose-deep); color: #fff;
    border-radius: 50%; width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 700;
  }
  .hamburger {
    display: none;
    background: none;
    border: none;
    width: 28px;
    height: 22px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .hamburger span {
    width: 100%;
    height: 2.5px;
    background: var(--text-mid);
    border-radius: 2px;
    transition: all .3s ease;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 10px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  /* ── CART DRAWER ── */
  #cartDrawer {
    position: fixed; top: 0; right: -420px; width: 380px; height: 100vh;
    background: var(--white); z-index: 2000;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    transition: right .35s cubic-bezier(.4,0,.2,1);
    display: flex; flex-direction: column;
  }
  #cartDrawer.open { right: 0; }
  .cart-drawer-overlay {
    display: none; position: fixed; inset: 0; background: rgba(61,43,78,.35);
    z-index: 1999; backdrop-filter: blur(2px);
  }
  .cart-drawer-overlay.open { display: block; }
  .cart-drawer-header {
    padding: 24px; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
  }
  .cart-drawer-header h3 { font-size: 1.3rem; }
  .cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
  .cart-item {
    display: flex; gap: 12px; margin-bottom: 16px; padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }
  .cart-item img { width: 68px; height: 68px; object-fit: cover; border-radius: var(--radius-sm); }
  .cart-item-info { flex: 1; }
  .cart-item-info h4 { font-size: 0.88rem; margin-bottom: 4px; }
  .cart-item-price { color: var(--lila-deep); font-weight: 700; font-size: 0.85rem; }
  .cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
  .qty-btn { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border); background: var(--cream); cursor: pointer; font-size: 14px; }
  .cart-drawer-footer { padding: 20px; border-top: 1px solid var(--border); }
  .cart-total { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
  .btn-whatsapp {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px; border-radius: var(--radius);
    background: #25D366; color: #fff; font-weight: 700; font-size: 0.95rem;
    border: none; cursor: pointer; transition: opacity .2s, transform .2s;
  }
  .btn-whatsapp:hover { opacity: .9; transform: translateY(-1px); }
  .cart-empty { text-align: center; padding: 40px 20px; color: var(--text-light); }
  .cart-empty .cart-empty-icon { font-size: 48px; margin-bottom: 12px; }

  /* ── LAYOUT ── */
  #pageWrap { display: flex; padding-top: var(--header-h); min-height: 100vh; }

  /* ── SIDEBAR ── */
  #sidebar {
    width: 230px; flex-shrink: 0;
    padding: 32px 0;
    position: sticky; top: var(--header-h);
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
    border-right: 1px solid var(--border);
    background: var(--white);
    transition: transform .3s;
  }
  .sidebar-title { font-family: 'Cormorant Garamond',serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); padding: 0 24px 12px; }
  .sidebar-item {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 24px; font-size: 0.82rem; font-weight: 500;
    color: var(--text-mid); text-decoration: none; cursor: pointer;
    transition: background .15s, color .15s;
    border-radius: 0;
    position: relative;
  }
  .sidebar-item:hover, .sidebar-item.active {
    background: var(--lila-light); color: var(--text-dark);
  }
  .sidebar-item.active::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: linear-gradient(180deg, var(--lila-deep), var(--rose-deep));
    border-radius: 0 3px 3px 0;
  }
  .sidebar-icon { font-size: 17px; width: 22px; text-align: center; }
  .sidebar-badge {
    margin-left: auto; background: var(--rose-deep);
    color: #fff; font-size: 0.62rem; font-weight: 700;
    padding: 2px 7px; border-radius: 30px;
  }
  .sidebar-badge.new { background: var(--lila-deep); }
  .sidebar-badge.sale { background: var(--yellow-deep); }
  .sidebar-divider { height: 1px; background: var(--border); margin: 12px 24px; }

  /* ── MAIN CONTENT ── */
  #mainContent { flex: 1; padding: 40px 36px; min-width: 0; }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, var(--lila-light) 0%, var(--rose-light) 50%, var(--yellow-light) 100%);
    border-radius: 28px; padding: 60px 56px;
    margin-bottom: 52px; position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(201,184,232,.45) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero::after {
    content: ''; position: absolute; bottom: -30px; left: 20%;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(242,196,206,.4) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-content { position: relative; z-index: 1; max-width: 560px; }
  .hero-tag {
    display: inline-block; background: var(--white);
    color: var(--lila-deep); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 30px; margin-bottom: 18px;
    border: 1px solid var(--lila);
  }
  .hero h1 { font-size: 3.2rem; font-weight: 300; line-height: 1.18; color: var(--text-dark); margin-bottom: 16px; }
  .hero h1 em { font-style: italic; color: var(--lila-deep); }
  .hero p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; max-width: 420px; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: linear-gradient(135deg, var(--lila-deep) 0%, var(--rose-deep) 100%);
    color: #fff; padding: 12px 28px; border-radius: 30px;
    font-size: 0.88rem; font-weight: 600; text-decoration: none;
    border: none; cursor: pointer; transition: transform .2s, box-shadow .2s;
    display: inline-block;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(157,133,197,.35); }
  .btn-outline {
    background: transparent; border: 1.5px solid var(--lila-deep);
    color: var(--lila-deep); padding: 11px 28px; border-radius: 30px;
    font-size: 0.88rem; font-weight: 600; text-decoration: none;
    cursor: pointer; transition: background .2s, color .2s;
    display: inline-block;
  }
  .btn-outline:hover { background: var(--lila-light); }
  .hero-floats {
    position: absolute; right: 56px; top: 50%; transform: translateY(-50%);
    display: flex; gap: 16px; z-index: 1;
  }
  .hero-float-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    width: 145px;
    height: 210px;
    animation: floatY 4s ease-in-out infinite;
  }
  .hero-float-card:nth-child(2) { animation-delay: 1.4s; margin-top: 30px; }
  .hero-float-card .float-icon {     font-size: 34px; margin-bottom: 10px; margin-top: 10px;}
  .hero-float-card p { font-size: 0.82rem; color: var(--text-light); font-weight: 700; }
  @keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

  /* ── SECTION TITLE ── */
  .section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
  .section-title { font-size: 2rem; font-weight: 400; color: var(--text-dark); }
  .section-title span { color: var(--lila-deep); font-style: italic; }
  .view-all { font-size: 0.78rem; color: var(--lila-deep); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--lila); padding-bottom: 2px; }

  /* ── FILTER BAR ── */
  .filter-bar { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; align-items: center; }
  .filter-chip {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 30px; padding: 7px 18px; font-size: 0.78rem;
    color: var(--text-mid); cursor: pointer; transition: all .2s;
    font-weight: 500;
  }
  .filter-chip:hover, .filter-chip.active { background: var(--lila-deep); color: #fff; border-color: var(--lila-deep); }
  .filter-price { margin-left: auto; display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-mid); }
  .filter-price select { border: 1px solid var(--border); border-radius: 30px; padding: 6px 12px; font-size: 0.78rem; background: var(--white); cursor: pointer; }

  /* ── PRODUCT GRID ── */
  .product-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 24px; margin-bottom: 56px;
  }
  .product-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-soft);
    transition: transform .3s, box-shadow .3s;
    cursor: default;
  }
  .product-open-area { cursor: pointer; }
  .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
  .product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1/1.1; }
  .product-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
  }
  .product-card-fallback {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px; color: rgba(255,255,255,.95);
    text-shadow: 0 2px 10px rgba(0,0,0,.25);
    pointer-events: none;
  }
  .product-card:hover .product-img-wrap img { transform: scale(1.07); }
  .product-badge {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 10px; border-radius: 30px;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .badge-new { background: var(--lila-deep); color: #fff; }
  .badge-hot { background: var(--rose-deep); color: #fff; }
  .badge-sale { background: var(--yellow-deep); color: #fff; }
  .product-wishlist {
    position: absolute; top: 10px; right: 10px;
    background: rgba(255,255,255,.85); border: none; border-radius: 50%;
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    font-size: 15px; cursor: pointer; transition: transform .2s;
  }
  .product-wishlist:hover { transform: scale(1.2); }
  .product-card-body { padding: 16px 18px 18px; }
  .product-category { font-size: 0.65rem; color: var(--text-light); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 5px; font-weight: 600; }
  .product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--text-dark); margin-bottom: 6px; line-height: 1.3; }
  .product-price-row { display: flex; align-items: center; justify-content: space-between; }
  .product-price { font-weight: 700; color: var(--lila-deep); font-size: 1rem; }
  .stars { font-size: 11px; color: var(--yellow-deep); letter-spacing: -1px; }
  .product-card-footer { padding: 0 18px 18px; display: flex; gap: 8px; }
  .btn-ver {
    flex: 1; padding: 9px; border-radius: var(--radius-sm);
    background: var(--lila-light); border: none; color: var(--lila-deep);
    font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: background .2s;
  }
  .btn-ver:hover { background: var(--lila); }
  .btn-cart-quick {
    width: 36px; height: 36px; border-radius: var(--radius-sm);
    background: var(--rose-light); border: none; font-size: 16px;
    cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center;
  }
  .btn-cart-quick:hover { background: var(--rose); }

  /* ── PRODUCT MODAL ── */
  #productModal {
    display: none; position: fixed; inset: 0; z-index: 3000;
    background: rgba(61,43,78,.5); backdrop-filter: blur(4px);
    overflow-y: auto; padding: 24px;
    align-items: center; justify-content: center;
  }
  #productModal.open { display: flex; }
  .modal-box {
    background: var(--white); border-radius: 28px;
    width: 100%; max-width: 920px; overflow: hidden;
    box-shadow: 0 24px 80px rgba(61,43,78,.22);
    animation: modalIn .3s ease;
  }
  @keyframes modalIn { from{opacity:0;transform:scale(.96)} to{opacity:1;transform:scale(1)} }
  .modal-inner { display: grid; grid-template-columns: 1fr 1fr; }
  .modal-gallery { background: var(--lila-light); padding: 32px; position: relative; }
  .main-img { border-radius: 20px; width: 100%; aspect-ratio: 1; object-fit: cover; cursor: zoom-in; transition: transform .3s; }
  .main-img:hover { transform: scale(1.02); }
  .gallery-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.92); border: none;
    font-size: 22px; color: var(--text-dark); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  .gallery-nav.prev { left: 16px; }
  .gallery-nav.next { right: 16px; }
  .gallery-nav:hover { background: #fff; }
  .thumbs { display: flex; gap: 8px; margin-top: 12px; }
  .thumbs img { width: 60px; height: 60px; object-fit: cover; border-radius: 10px; cursor: pointer; border: 2px solid transparent; transition: border-color .2s; }
  .thumbs img.active, .thumbs img:hover { border-color: var(--lila-deep); }
  .modal-info { padding: 36px 32px; overflow-y: auto; max-height: 85vh; }
  .modal-category { font-size: 0.65rem; color: var(--lila-deep); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
  .modal-name { font-size: 2rem; font-weight: 400; line-height: 1.2; margin-bottom: 12px; }
  .modal-stars { margin-bottom: 14px; }
  .rating-star {
    display: inline-block;
    font-size: 24px;
    cursor: pointer;
    color: rgba(255, 209, 102, 0.45);
    transition: color .2s, transform .15s;
    margin-right: 3px;
  }
  .rating-star:hover,
  .rating-star.selected {
    color: var(--yellow-deep);
    transform: scale(1.05);
  }
  .modal-price-block { background: var(--cream); border-radius: var(--radius-sm); padding: 16px; margin-bottom: 20px; }
  .price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
  .price-label { font-size: 0.75rem; color: var(--text-light); font-weight: 600; }
  .price-val { font-size: 1.3rem; font-weight: 700; color: var(--lila-deep); }
  .price-wholesale { font-size: 1rem; font-weight: 600; color: var(--rose-deep); }
  .price-wholesale.disabled { color: var(--text-light); text-decoration: line-through; }
  .wholesale-note { font-size: 0.72rem; color: var(--text-light); margin-top: 4px; }
  .modal-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
  .chars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
  .char-item { background: var(--cream); border-radius: var(--radius-sm); padding: 12px; display: flex; gap: 8px; align-items: flex-start; }
  .char-icon { font-size: 16px; }
  .char-label { font-size: 0.65rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; display: block; font-weight: 600; }
  .char-value { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }
  .modal-actions { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
  .qty-control { display: flex; align-items: center; gap: 12px; background: var(--cream); border-radius: 30px; padding: 8px 16px; }
  .qty-control button { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--text-mid); }
  .qty-control span { font-weight: 700; min-width: 20px; text-align: center; }
  .btn-add-cart {
    flex: 1; background: linear-gradient(135deg, var(--lila) 0%, var(--rose) 100%);
    color: var(--text-dark); border: none; border-radius: 30px;
    padding: 12px 22px; font-weight: 700; font-size: 0.88rem; cursor: pointer;
    transition: opacity .2s, transform .2s;
  }
  .btn-add-cart:hover { opacity: .88; transform: translateY(-1px); }
  .btn-wa-modal {
    display: flex; align-items: center; gap: 7px;
    background: #25D366; color: #fff; border: none; border-radius: 30px;
    padding: 12px 20px; font-weight: 700; font-size: 0.88rem; cursor: pointer;
    transition: opacity .2s;
  }
  .btn-wa-modal:hover { opacity: .88; }
  .modal-close {
    position: absolute; top: 14px; right: 14px;
    background: rgba(255,255,255,.8); border: none; border-radius: 50%;
    width: 34px; height: 34px; font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
  }
  .modal-close:hover { background: var(--rose-light); }

  /* Comments */
  .comments-section { border-top: 1px solid var(--border); padding-top: 20px; margin-top: 4px; }
  .comments-section h4 { font-size: 1.1rem; margin-bottom: 16px; }
  .comment { background: var(--cream); border-radius: var(--radius-sm); padding: 14px; margin-bottom: 10px; }
  .comment-head { display: flex; justify-content: space-between; margin-bottom: 4px; }
  .comment-author { font-size: 0.8rem; font-weight: 700; }
  .comment p { font-size: 0.8rem; color: var(--text-mid); line-height: 1.5; }
  .review-form { margin-top: 14px; }
  .review-form textarea {
    width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 12px; font-size: 0.82rem; resize: vertical; min-height: 80px;
    font-family: 'Nunito', sans-serif; color: var(--text-dark);
    background: var(--cream); outline: none;
  }
  .review-form textarea:focus { border-color: var(--lila-deep); }
  .btn-review {
    margin-top: 8px; background: var(--lila-light);
    border: none; border-radius: 30px; padding: 9px 20px;
    font-size: 0.8rem; font-weight: 600; color: var(--lila-deep); cursor: pointer;
  }
  .btn-review:hover { background: var(--lila); }

  /* Related */
  .related-section { padding: 36px 0 20px; }
  .related-title { font-size: 1.5rem; margin-bottom: 18px; text-align: center; }
  .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .related-card { background: var(--cream); border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; transition: box-shadow .2s; }
  .related-card:hover { box-shadow: var(--shadow-soft); }
  .related-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
  .related-card-body { padding: 10px 12px 12px; }
  .related-card-body h5 { font-size: 0.85rem; margin-bottom: 3px; }
  .related-card-body .price { font-size: 0.82rem; color: var(--lila-deep); font-weight: 700; }

  /* ── ABOUT ── */
  #sobre { margin-bottom: 64px; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .about-img-block { position: relative; }
  .about-img-main { border-radius: 24px; width: 78%; aspect-ratio: 1; object-fit: cover; margin: 0 auto; display: block; }
  .about-img-float {
    position: absolute; bottom: -20px; right: -20px;
    width: 130px; height: 130px; border-radius: 20px;
    object-fit: cover; border: 4px solid var(--white);
    box-shadow: var(--shadow-soft);
  }
  .about-badge {
    position: absolute; top: 20px; left: 12%;
    background: var(--white); border-radius: 16px;
    padding: 12px 16px; box-shadow: var(--shadow-soft);
    font-size: 0.72rem; font-weight: 600; color: var(--text-mid);
    text-align: center; line-height: 1.4;
  }
  .about-badge strong { display: block; font-size: 1.3rem; color: var(--lila-deep); }
  .about-content { padding: 12px 0; }
  .about-content .section-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--lila-deep); font-weight: 700; margin-bottom: 10px;
  }
  .about-content .section-tag-icon {
    width: 0.72rem; height: 0.72rem;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.68rem; line-height: 1;
  }
  .about-content .section-tag-icon img {
    width: 100%; height: 100%; object-fit: contain;
  }
  .about-content h2 { font-size: 2.4rem; font-weight: 300; line-height: 1.25; margin-bottom: 18px; }
  .about-content p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
  .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
  .about-feature { display: flex; gap: 12px; align-items: flex-start; }
  .about-feature-icon {
    width: 54px; height: 54px; flex-shrink: 0;
    background: var(--lila-light); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 26px;
  }
  .about-feature h4 { font-size: 1.05rem; margin-bottom: 3px; }
  .about-feature p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }

  /* ── CONTACT ── */
  #contacto { margin-bottom: 64px; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-info h2 { font-size: 2.2rem; font-weight: 300; margin-bottom: 16px; }
  .contact-info p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 28px; }
  .contact-links { display: flex; flex-direction: column; gap: 14px; }
  .contact-link {
    display: flex; align-items: center; gap: 14px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 14px 18px;
    text-decoration: none; color: var(--text-dark);
    transition: box-shadow .2s, border-color .2s; font-size: 0.85rem;
  }
  .contact-link:hover { box-shadow: var(--shadow-soft); border-color: var(--lila); }
  .contact-link-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
  /* Ensure feather SVGs use the page color and look consistent */
  .contact-link-icon svg {
    width: 20px; height: 20px; display: block;
    color: var(--text-dark); /* icon color (stroke uses currentColor) */
    stroke: currentColor;
    fill: none;
  }
  .cl-wa { background: #dcf8e0; }
  .cl-ig { background: var(--lila-light); }
  /* Force dark icon color for specific network badges (override inline parent colors) */
  .cl-ig svg, .cl-fb svg, .cl-loc svg { color: var(--text-dark); stroke: currentColor; }
  .cl-fb { background: #e7f0ff; }
  .cl-loc { background: var(--rose-light); }
  .contact-form { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-soft); }
  .contact-form h3 { font-size: 1.5rem; margin-bottom: 22px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
  .form-group input, .form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    font-size: 0.85rem; font-family: 'Nunito', sans-serif;
    color: var(--text-dark); background: var(--cream);
    outline: none; transition: border-color .2s;
  }
  .form-group input:focus, .form-group textarea:focus { border-color: var(--lila-deep); background: #fff; }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .btn-send {
    width: 100%; background: linear-gradient(135deg, var(--lila-deep) 0%, var(--rose-deep) 100%);
    color: #fff; border: none; border-radius: 30px; padding: 14px;
    font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: opacity .2s, transform .2s;
  }
  .btn-send:hover { opacity: .88; transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: var(--text-dark); color: rgba(255,255,255,.75);
    padding: 56px 40px 32px; margin-left: 230px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  footer .logo-text { color: #fff; }
  footer .logo-sub { color: rgba(255,255,255,.45); }
  .footer-desc { font-size: 0.82rem; line-height: 1.75; margin-top: 14px; }
  .footer-col h4 { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px; }
  .footer-col a { display: block; font-size: 0.82rem; color: rgba(255,255,255,.7); text-decoration: none; margin-bottom: 8px; transition: color .2s; }
  .footer-col a:hover { color: var(--lila-light); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; font-size: 0.75rem; color: rgba(255,255,255,.35); }

  /* ── FLOATING WA BUTTON ── */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 900;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,.45);
    cursor: pointer; text-decoration: none;
    animation: waPulse 2.5s infinite;
    transition: transform .2s;
  }
  .wa-float:hover { transform: scale(1.08); }
  @keyframes waPulse {
    0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.45)}
    50%{box-shadow:0 4px 32px rgba(37,211,102,.7), 0 0 0 12px rgba(37,211,102,.08)}
  }

  /* ── TOAST ── */
  #toast {
    position: fixed; bottom: 100px; right: 28px; z-index: 5000;
    background: var(--text-dark); color: #fff; border-radius: var(--radius-sm);
    padding: 12px 22px; font-size: 0.82rem; font-weight: 500;
    box-shadow: var(--shadow-hover); opacity: 0; transform: translateY(10px);
    transition: all .3s; pointer-events: none;
  }
  #toast.show { opacity: 1; transform: translateY(0); }

  /* ── ACCOUNT MODAL ── */
  #accountModal {
    display: none; position: fixed; inset: 0; z-index: 4000;
    background: rgba(61,43,78,.5); backdrop-filter: blur(4px);
    padding: 24px; align-items: center; justify-content: center;
  }
  #accountModal.open { display: flex; }
  #loginModal {
    display: none; position: fixed; inset: 0; z-index: 4000;
    background: rgba(61,43,78,.5); backdrop-filter: blur(4px);
    padding: 24px; align-items: center; justify-content: center;
  }
  #loginModal.open { display: flex; }
  .account-box {
    width: 100%; max-width: 560px; background: var(--white);
    border-radius: 24px; box-shadow: 0 24px 80px rgba(61,43,78,.22);
    overflow: hidden;
  }
  .account-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; border-bottom: 1px solid var(--border);
  }
  .account-head h3 { font-size: 1.45rem; }
  .account-form {
    padding: 20px 22px 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  }
  .account-form .full { grid-column: 1 / -1; }
  .account-form label {
    display: block; font-size: 0.72rem; color: var(--text-light);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; font-weight: 600;
  }
  .account-form input, .account-form select {
    width: 100%; border: 1px solid var(--border); border-radius: 12px;
    background: var(--cream); padding: 11px 13px; font-size: 0.84rem; color: var(--text-dark);
    outline: none;
  }
  .account-form input:focus, .account-form select:focus { border-color: var(--lila-deep); background: #fff; }
  .check-row {
    display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; color: var(--text-mid);
  }
  .check-row input { width: auto; margin-top: 2px; }
  .account-actions {
    grid-column: 1 / -1; display: flex; gap: 10px; margin-top: 4px;
  }
  .btn-cancel {
    flex: 1; border: 1px solid var(--border); background: var(--white); color: var(--text-mid);
    border-radius: 30px; padding: 11px 16px; font-weight: 600; cursor: pointer;
  }
  .btn-register {
    flex: 1; border: none; background: linear-gradient(135deg, var(--lila-deep) 0%, var(--rose-deep) 100%);
    color: #fff; border-radius: 30px; padding: 11px 16px; font-weight: 700; cursor: pointer;
  }

  /* ── MOBILE MENU ── */
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(61,43,78,.4);
    z-index: 1001;
    backdrop-filter: blur(4px);
  }

  .mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 280px;
    background: var(--white);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 2px 0 20px rgba(61,43,78,.15);
    overflow-y: auto;
    animation: slideIn .3s ease;
    transform: translateX(-100%);
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  @keyframes slideIn { from { transform: translateX(-100%); } to { transform: translateX(0); } }

  .mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-mid);
    cursor: pointer;
    padding: 10px 20px;
    transition: color .2s;
  }
  .mobile-menu-close:hover { color: var(--text-dark); }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    background: var(--white);
    position: sticky;
    top: 0;
  }

  .mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex: 1;
  }
  .mobile-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--lila) 0%, var(--rose) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .mobile-logo .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  .mobile-logo .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1;
  }
  .mobile-logo .logo-sub {
    font-size: 0.6rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
  }

  .mobile-menu a {
    display: block;
    padding: 14px 20px;
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background .2s, color .2s;
    flex-shrink: 0;
  }
  .mobile-menu a:hover { background: var(--lila-light); color: var(--text-dark); }

  .mobile-menu-dropdown-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    background: none;
    border: none;
    color: var(--text-mid);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s, color .2s;
    flex-shrink: 0;
  }
  .mobile-menu-dropdown-btn:hover { background: var(--lila-light); color: var(--text-dark); }

  .mobile-dropdown-menu {
    display: none;
    background: var(--lila-light);
    flex-direction: column;
    flex-shrink: 0;
  }
  .mobile-dropdown-menu.open { display: flex; }
  .mobile-dropdown-menu a {
    padding: 12px 20px 12px 40px;
    font-size: 0.88rem;
    color: var(--text-mid);
    background: var(--lila-light);
  }
  .mobile-dropdown-menu a:hover { background: var(--lila); }

  .mobile-menu-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
  }

  .mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px;
    margin-top: auto;
    flex-shrink: 0;
    border-top: 1px solid var(--border);
  }

  .mobile-btn-register,
  .mobile-btn-login {
    padding: 12px 16px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all .2s;
  }

  .mobile-btn-register {
    background: linear-gradient(135deg, var(--lila-deep) 0%, var(--rose-deep) 100%);
    color: #fff;
  }
  .mobile-btn-register:active { transform: scale(0.98); }

  .mobile-btn-login {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-mid);
  }
  .mobile-btn-login:active { transform: scale(0.98); }

  .mobile-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    margin-bottom: 12px;
  }

  .mobile-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lila) 0%, var(--rose) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .mobile-user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
  }

  .mobile-user-email {
    font-size: 0.75rem;
    color: var(--text-light);
  }

  .mobile-user-admin {
    font-size: 0.7rem;
    color: var(--lila-deep);
    font-weight: 600;
    margin-top: 4px;
  }

  .mobile-btn-logout {
    display: block;
    text-align: center;
    padding: 12px 16px;
    background: var(--rose-light);
    color: var(--rose-deep);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all .2s;
  }
  .mobile-btn-logout:active { transform: scale(0.98); }

  /* ── SEARCH MODAL ── */
  .search-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(61,43,78,.4);
    z-index: 2001;
    backdrop-filter: blur(4px);
  }
  .search-modal-overlay.open { display: block; }

  .search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2002;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
    animation: slideDown .3s ease;
  }
  .search-modal.open { display: block; }
  @keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

  .search-modal-header {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  #searchModalInput {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 0.9rem;
    background: var(--cream);
    color: var(--text-dark);
    outline: none;
    transition: border-color .2s;
  }
  #searchModalInput:focus {
    border-color: var(--lila-deep);
    background: #fff;
  }

  .search-modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-mid);
    cursor: pointer;
    padding: 0;
    transition: color .2s;
  }
  .search-modal-close:hover { color: var(--text-dark); }

  .search-modal-results {
    display: none;
    max-height: 400px;
    overflow-y: auto;
  }
  .search-modal-results.show { display: block; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    #sidebar { display: none; }
    footer { margin-left: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (min-width: 769px) {
    .mobile-menu { display: none !important; }
    .mobile-menu-overlay { display: none !important; }
    .hamburger { display: none !important; }
    .search-modal { display: none !important; }
    .search-modal-overlay { display: none !important; }
  }
  @media (max-width: 768px) {
    .logo { display: none; }
    #header { height: 60px; padding: 0 12px; }
    .header-actions {
      gap: 8px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
    .account-dropdown {
      position: fixed !important;
      right: 12px;
      top: 68px;
      left: auto !important;
      min-width: 200px;
    }
    .search-wrap {
      position: relative;
      display: flex;
      align-items: center;
    }
    #searchInput {
      display: none;
    }
    .icon-btn {
      padding: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .btn-login { display: none; }
    .cart-btn {
      padding: 6px 12px;
      font-size: 0.75rem;
    }
    .cart-btn span { display: none; }
    #mainContent { padding: 24px 18px; }
    .hero { padding: 36px 28px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-floats { display: none; }
    nav.main-nav { display: none; }
    .hamburger { display: flex; }
    .btn-account { display: none; }
    .modal-inner { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .chars-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .account-form { grid-template-columns: 1fr; }
    
    /* Estilos móviles del menú */
    .mobile-menu-overlay { display: none; z-index: 1001; }
    .mobile-menu { display: none; z-index: 1002; }
    .mobile-menu.open { display: flex; }
    .mobile-menu-overlay.open { display: block; }
    
    /* Modal de búsqueda móvil */
    .search-modal { top: var(--header-h); }
  }
  @media (max-width: 480px) {
    #header { padding: 0 16px; }
    .product-grid { grid-template-columns: repeat(1, 1fr); gap: 12px; }
    .hero h1 { font-size: 1.75rem; }
  }

  /* Decorative floral accents */
  .floral { opacity: .18; pointer-events: none; user-select: none; font-size: 80px; position: absolute; }

  /* Css propio */
  .fueguitos{
    width: 60px;
  }
  .corazonkora{
    width: 90px;
  }
  .corazonkoraflotante{
    width: 100px;
  }