/* ========== TOKENS ========== */
  :root{
    --violet:        #5B2E8C;
    --violet-dark:   #3D1F5C;
    --violet-deeper: #2A1442;
    --mustard:       #FFC107;
    --mustard-soft:  #FFD54F;
    --wa:            #25D366;
    --wa-dark:       #128C7E;
    --cream:         #FFFBF5;
    --cream-2:       #FFF4E1;
    --ink:           #1a1a1a;
    --ink-2:         #4a4a4a;
    --ink-3:         #7a7a7a;
    --line:          #ece4d6;
    --line-2:        #e0d4c0;
    --white:         #ffffff;
    --shadow-sm: 0 1px 2px rgba(61,31,92,.06), 0 2px 6px rgba(61,31,92,.05);
    --shadow-md: 0 4px 12px rgba(61,31,92,.08), 0 12px 28px rgba(61,31,92,.08);
    --shadow-lg: 0 10px 30px rgba(61,31,92,.12), 0 24px 60px rgba(61,31,92,.12);
    --radius-sm: 10px;
    --radius:    16px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --header-h:  70px;
    --container: 1240px;
  }

  /* ========== RESET ========== */
  *,*::before,*::after{box-sizing:border-box}
  html,body{margin:0;padding:0}
  html{scroll-behavior:smooth; -webkit-text-size-adjust:100%}
  body{
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.55;
    font-size: 16px;
    overflow-x: hidden;
  }
  img,svg{display:block; max-width:100%}
  button{font:inherit; cursor:pointer; border:0; background:none; color:inherit}
  input,select,textarea{font:inherit; color:inherit}
  a{color:inherit; text-decoration:none}
  h1,h2,h3,h4{font-family:'Poppins', 'Inter', sans-serif; margin:0; line-height:1.15; letter-spacing:-0.02em}
  h1{font-weight:800}
  h2{font-weight:700}
  h3,h4{font-weight:600}
  p{margin:0}
  .container{max-width:var(--container); margin:0 auto; padding: 0 20px}
  @media (min-width: 720px){ .container{ padding: 0 28px } }

  /* ========== HEADER ========== */
  .header{
    position: sticky; top:0; z-index:50;
    background: rgba(255,251,245,.82);
    backdrop-filter: saturate(1.2) blur(12px);
    -webkit-backdrop-filter: saturate(1.2) blur(12px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
  }
  .header.scrolled{
    box-shadow: 0 6px 24px rgba(61,31,92,.08);
    border-bottom-color: var(--line);
    background: rgba(255,251,245,.95);
  }
  .header__inner{
    height: var(--header-h);
    display:flex; align-items:center; gap: 18px;
  }
  .logo{display:flex; align-items:center; gap:10px; font-family:'Poppins'; font-weight:700; color:var(--violet-dark)}
  .logo__badge{
    width:48px; height:48px; border-radius:50%;
    background: transparent;
    display:grid; place-items:center;
    overflow:visible;
  }
  .logo__badge img{ width:100%; height:100%; object-fit:contain; display:block; filter: drop-shadow(0 3px 8px rgba(0,0,0,.25)) }
  .footer .logo__badge{ background: transparent }
  .logo__name{font-size:17px; line-height:1}
  .logo__tag{font-family:'Inter'; font-weight:500; font-size:11px; color:var(--ink-3); display:block; margin-top:2px; letter-spacing:.02em}

  .nav{display:none; margin-left:18px}
  @media (min-width: 960px){ .nav{display:flex; gap:4px} }
  .nav a{
    padding: 10px 14px; border-radius: 10px;
    font-weight:500; font-size:14.5px; color:var(--ink-2);
    transition: color .15s, background .15s;
  }
  .nav a:hover{ color: var(--violet); background: rgba(91,46,140,.06) }

  .header__actions{margin-left:auto; display:flex; align-items:center; gap:6px}
  .icon-btn{
    width:42px; height:42px; border-radius:12px;
    display:grid; place-items:center;
    color: var(--violet-dark);
    position: relative;
    transition: background .15s, transform .15s;
  }
  .icon-btn:hover{ background: rgba(91,46,140,.08) }
  .icon-btn:active{ transform: scale(.96) }
  .icon-btn svg{width:22px; height:22px}
  .cart-badge{
    position:absolute; top:4px; right:4px;
    min-width: 18px; height:18px; padding:0 5px;
    border-radius: 10px;
    background: var(--mustard);
    color: var(--violet-dark);
    font-size: 11px; font-weight:700;
    display:grid; place-items:center;
    border: 2px solid var(--cream);
    transform: scale(0); transition: transform .2s cubic-bezier(.34,1.56,.64,1);
  }
  .cart-badge.show{ transform: scale(1) }

  .burger{display:grid}
  @media (min-width: 960px){ .burger{display:none} }

  /* Mobile menu */
  .mobile-menu{
    position: fixed; inset: var(--header-h) 0 0 0;
    background: var(--cream);
    padding: 24px 20px;
    transform: translateY(-8px); opacity: 0; pointer-events:none;
    transition: transform .25s, opacity .25s;
    z-index: 49;
    display:flex; flex-direction:column; gap:4px;
    border-top: 1px solid var(--line);
  }
  .mobile-menu.open{ opacity:1; pointer-events:auto; transform: translateY(0) }
  .mobile-menu a{ padding:16px 12px; border-radius: 12px; font-size:18px; font-weight:600; color:var(--violet-dark); border-bottom:1px solid var(--line) }
  .mobile-menu a:last-of-type{border-bottom:0}

  /* Search bar */
  .searchbar{
    position: absolute; top: calc(var(--header-h) + 6px); left:0; right:0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    margin: 0 16px;
    padding: 10px 14px;
    display: none; align-items: center; gap: 10px;
    box-shadow: var(--shadow-md);
  }
  .searchbar.open{display:flex}
  .searchbar input{flex:1; border:0; outline:0; padding: 6px 0; font-size:15px}

  /* ========== HERO ========== */
  .hero{
    position: relative;
    color: var(--white);
    padding: 40px 0 80px;
    overflow: hidden;
    isolation: isolate;
    background:
      radial-gradient(1200px 600px at 88% -10%, rgba(255,193,7,.22), transparent 60%),
      radial-gradient(900px 500px at -10% 110%, rgba(255,193,7,.1), transparent 60%),
      linear-gradient(160deg, #6A35A2 0%, var(--violet) 35%, var(--violet-dark) 100%);
  }
  @media (min-width: 960px){ .hero{ padding: 72px 0 120px } }

  /* animated shapes */
  .shape{ position:absolute; border-radius: 50%; filter: blur(2px); opacity:.22; z-index:-1; pointer-events:none }
  .shape--1{ width: 380px; height: 380px; top:-120px; left:-80px; background: radial-gradient(circle at 30% 30%, #9E6CD3, transparent 60%); animation: float 14s ease-in-out infinite }
  .shape--2{ width: 460px; height: 460px; bottom:-180px; right:-120px; background: radial-gradient(circle at 50% 50%, #FFC107, transparent 60%); opacity:.18; animation: float 18s ease-in-out -4s infinite reverse }
  .shape--3{ width: 220px; height: 220px; top: 40%; right: 12%; background: radial-gradient(circle, #FFD54F, transparent 65%); opacity:.14; animation: float 12s ease-in-out -2s infinite }
  .shape--4{
    position:absolute; z-index:-1; top: 22%; left: 8%;
    width: 140px; height: 140px;
    border: 2px dashed rgba(255,255,255,.18);
    border-radius: 22px;
    transform: rotate(14deg);
    animation: spin 40s linear infinite;
  }
  @keyframes float{
    0%,100%{transform: translate(0,0) scale(1)}
    50%{transform: translate(30px, -20px) scale(1.06)}
  }
  @keyframes spin{ to{ transform: rotate(374deg) } }

  .hero__grid{
    display:grid; gap: 48px;
    grid-template-columns: 1fr;
    align-items:center;
  }
  @media (min-width: 980px){ .hero__grid{ grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 60px } }

  .chip{
    display:inline-flex; align-items:center; gap:8px;
    padding: 8px 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    font-size: 13.5px; font-weight:500;
    backdrop-filter: blur(8px);
  }
  .hero h1{
    font-size: clamp(38px, 6.2vw, 68px);
    margin: 18px 0 20px;
    line-height: 1.05;
    text-wrap: balance;
  }
  .hero h1 .hl{
    color: var(--mustard);
    background-image: linear-gradient(180deg, transparent 78%, rgba(255,193,7,.22) 78%, rgba(255,193,7,.22) 92%, transparent 92%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    border-radius: 4px;
  }
  .hero__lede{
    font-size: clamp(16px, 1.6vw, 19px);
    color: rgba(255,255,255,.82);
    max-width: 560px;
    margin-bottom: 30px;
  }

  .cta-row{display:flex; flex-wrap:wrap; gap:12px}
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 600; font-size: 15px;
    transition: transform .15s, box-shadow .2s, background .15s;
    white-space: nowrap;
  }
  .btn:active{ transform: translateY(1px) }
  .btn--primary{ background: var(--mustard); color: var(--violet-dark); box-shadow: 0 10px 22px rgba(255,193,7,.35) }
  .btn--primary:hover{ background: var(--mustard-soft); box-shadow: 0 14px 28px rgba(255,193,7,.45) }
  .btn--wa{ background: var(--wa); color: #fff; box-shadow: 0 10px 22px rgba(37,211,102,.35) }
  .btn--wa:hover{ background: #1fbf5c }
  .btn--ghost{ background: rgba(255,255,255,.08); color:#fff; border:1px solid rgba(255,255,255,.25) }
  .btn--ghost:hover{ background: rgba(255,255,255,.14) }
  .btn--dark{ background: var(--violet-dark); color:#fff }
  .btn--dark:hover{ background: var(--violet-deeper) }
  .btn--outline{ background: transparent; color: var(--violet-dark); border: 1.5px solid var(--violet) }
  .btn--outline:hover{ background: rgba(91,46,140,.06) }
  .btn--block{ width:100% }

  .hero__badges{
    margin-top: 30px;
    display:flex; flex-wrap:wrap; gap: 10px 22px;
    color: rgba(255,255,255,.88);
    font-size: 13.5px; font-weight:500;
  }
  .hero__badges b{color:var(--mustard); font-weight:700}

  /* floating product cards */
  .hero__visual{
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 480px;
    margin: 0 auto;
  }
  @media (min-width: 1200px){ .hero__visual{ max-width: 540px } }
  @media (min-width: 1440px){ .hero__visual{ max-width: 600px } }
  .float-card{
    position: absolute;
    background: var(--white);
    color: var(--ink);
    border-radius: 20px;
    padding: 16px 16px 14px;
    box-shadow: var(--shadow-lg);
    width: 40%;
    animation: floatCard 6s ease-in-out infinite;
  }
  .float-card{ text-decoration:none; color: var(--ink); cursor: pointer; transition: transform .2s, box-shadow .2s }
  .float-card:hover{ transform: translateY(-4px) !important; box-shadow: 0 16px 40px rgba(42,20,66,.28) !important; animation-play-state: paused }
  .float-card__emoji{ font-size: 40px; line-height:1; margin-bottom: 8px }
  .float-card__icon{ width: 48px; height: 48px; margin-bottom: 10px; display:grid; place-items:center }
  .float-card__icon svg{ width:100%; height:100%; display:block }
  .cat__icon svg{ width:32px; height:32px }
  /* Icon style: flat (default) */
  [data-icon-style="badge"] .cat__icon,
  [data-icon-style="badge"] .float-card__icon{
    background: linear-gradient(135deg, rgba(91,46,140,.12), rgba(255,193,7,.12));
    border: 1px solid rgba(91,46,140,.1);
  }
  [data-icon-style="badge"] .cat__icon{ width:64px; height:64px; border-radius:16px }
  .float-card__title{ font-family:'Poppins'; font-weight:700; font-size: 15px; color: var(--violet-dark) }
  .float-card__meta{ font-size: 12px; color: var(--ink-3); margin-top: 2px }
  .float-card--1{ top: 3%; left: 5%; animation-delay: 0s }
  .float-card--2{ top: 28%; right: -2%; animation-delay: -1.5s }
  .float-card--3{ bottom: 28%; left: -2%; animation-delay: -3s }
  .float-card--4{ bottom: 3%; right: 5%; animation-delay: -4.5s }
  @keyframes floatCard{
    0%,100%{transform: translateY(0) rotate(-1.5deg)}
    50%{transform: translateY(-12px) rotate(1deg)}
  }

  /* hero decorative halo */
  .halo{
    position:absolute; inset: 14% 14%;
    background: radial-gradient(circle, rgba(255,193,7,.18), transparent 60%);
    border-radius: 50%;
    z-index: -1;
  }

  /* ========== SECTION HEADERS ========== */
  section{ padding: 72px 0 }
  @media (min-width: 960px){ section{ padding: 96px 0 } }
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-family:'Inter'; font-weight:600; font-size:12.5px;
    color: var(--violet); letter-spacing:.14em; text-transform:uppercase;
    margin-bottom: 12px;
  }
  .eyebrow::before{content:''; width:24px; height:2px; background: var(--mustard); border-radius:2px}
  .section-title{
    font-size: clamp(28px, 3.6vw, 42px);
    color: var(--violet-dark);
    max-width: 720px;
  }
  .section-lede{ color: var(--ink-2); max-width: 620px; margin-top: 12px; font-size: 17px }
  .section-head{ margin-bottom: 40px }

  /* ========== CATEGORIES ========== */
  .cats{
    display:grid; gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
  @media (min-width: 760px){ .cats{ grid-template-columns: repeat(4, 1fr); gap:22px } }
  .cat{
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 22px 26px;
    text-align:left;
    transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, border-color .25s;
    overflow: hidden;
  }
  .cat:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent }
  .cat__icon{
    width: 58px; height:58px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(91,46,140,.1), rgba(91,46,140,.04));
    display:grid; place-items:center;
    font-size: 30px;
    margin-bottom: 16px;
    transition: transform .3s;
  }
  .cat:hover .cat__icon{ transform: scale(1.08) rotate(-4deg) }
  .cat h3{ font-size:19px; color: var(--violet-dark); margin-bottom: 4px }
  .cat p{ font-size:14px; color: var(--ink-3) }
  .cat__arrow{
    position:absolute; right: 18px; bottom: 18px;
    width:34px; height:34px; border-radius:50%;
    background: var(--cream-2); color: var(--violet);
    display:grid; place-items:center;
    transition: background .2s, color .2s, transform .2s;
  }
  .cat:hover .cat__arrow{ background: var(--mustard); color: var(--violet-dark); transform: translate(2px,-2px) }

  /* ========== CATALOG ========== */
  .catalog{ background: var(--white); border-top:1px solid var(--line); border-bottom:1px solid var(--line) }
  .catalog__tools{
    display:grid; gap:14px;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
  @media (min-width: 820px){ .catalog__tools{ grid-template-columns: 1.4fr auto; align-items:center } }
  .search{
    display:flex; align-items:center; gap:10px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 16px;
  }
  .search svg{ width:20px; height:20px; color: var(--ink-3); flex-shrink:0 }
  .search input{ flex:1; border:0; outline:0; background:transparent; font-size:15px }
  .sort-wrap{ position:relative }
  .sort{
    appearance:none; -webkit-appearance:none;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 40px 13px 16px;
    font-size: 14.5px; font-weight:500;
    width: 100%;
  }
  .sort-wrap::after{
    content:''; position:absolute; right:16px; top:50%; width:8px; height:8px;
    border-right:2px solid var(--ink-2); border-bottom:2px solid var(--ink-2);
    transform: translateY(-70%) rotate(45deg); pointer-events:none;
  }
  .filters{
    display:flex; gap:8px; flex-wrap: nowrap;
    overflow-x: auto; padding-bottom: 6px;
    margin-bottom: 22px;
    scrollbar-width: thin;
  }
  .filters::-webkit-scrollbar{height:4px}
  .filters::-webkit-scrollbar-thumb{background: var(--line-2); border-radius:4px}
  .chip-btn{
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--cream);
    border: 1px solid var(--line);
    font-weight: 500; font-size: 13.5px;
    white-space: nowrap;
    transition: background .15s, color .15s, border-color .15s;
    color: var(--ink-2);
  }
  .chip-btn:hover{ border-color: var(--violet); color: var(--violet) }
  .chip-btn.active{ background: var(--violet); color:#fff; border-color: var(--violet) }

  .products{
    display:grid; gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
  @media (min-width: 640px){ .products{ grid-template-columns: repeat(3, 1fr) } }
  @media (min-width: 960px){ .products{ grid-template-columns: repeat(4, 1fr); gap:22px } }

  .product{
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 14px;
    display:flex; flex-direction:column;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    position: relative;
  }
  .product:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent }
  .product__img{
    aspect-ratio: 1/1;
    border-radius: 14px;
    background:
      radial-gradient(circle at 30% 25%, rgba(91,46,140,.07), transparent 55%),
      linear-gradient(135deg, var(--cream-2), var(--cream));
    display:grid; place-items:center;
    font-size: clamp(46px, 6.5vw, 72px);
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
  }
  .product__img::before{
    content:''; position:absolute; inset:0;
    background-image: repeating-linear-gradient(45deg, transparent 0 10px, rgba(91,46,140,.025) 10px 20px);
    pointer-events:none;
  }
  .product__icon{ width: 62%; height: 62%; display:grid; place-items:center; position:relative; z-index:1;
    filter: drop-shadow(0 6px 10px rgba(91,46,140,.12)); transition: transform .3s ease; }
  .product__icon svg{ width:100%; height:100% }
  .product:hover .product__icon{ transform: translateY(-3px) rotate(-2deg) scale(1.04) }
  .cart-item__img svg{ width:100%; height:100% }
  .product__off{
    position:absolute; top: 10px; right: 10px;
    background: var(--mustard); color: var(--violet-dark);
    padding: 4px 10px; border-radius: 999px;
    font-size: 12px; font-weight: 700;
    box-shadow: 0 4px 10px rgba(255,193,7,.35);
  }
  .product__cat{ font-size: 11.5px; font-weight:600; color: var(--violet); text-transform:uppercase; letter-spacing:.08em }
  .product__name{ font-family:'Poppins'; font-weight:600; font-size:15.5px; color:var(--ink); margin: 4px 0 10px; line-height:1.25; min-height: 2.5em }
  .product__price{ display:flex; align-items:baseline; gap:8px; margin-bottom: 12px }
  .product__price b{ font-family:'Poppins'; font-size: 19px; color: var(--violet-dark); font-weight:700 }
  .product__price .was{ font-size: 13px; color: var(--ink-3); text-decoration: line-through }

  .qty{
    display:flex; align-items:center; justify-content:space-between;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 8px;
  }
  .qty button{ width:30px; height:30px; border-radius: 8px; color: var(--violet); font-weight:700; font-size:16px }
  .qty button:hover{ background: var(--cream) }
  .qty input{
    width: 44px; text-align:center; border:0; outline:0; background: transparent;
    font-weight: 600; font-size: 14px;
  }
  .product__add{
    background: var(--violet); color:#fff;
    padding: 10px; border-radius: 10px;
    font-weight:600; font-size: 14px;
    display:flex; align-items:center; justify-content:center; gap:8px;
    transition: background .15s, transform .15s;
    margin-top: auto;
  }
  .product__add:hover{ background: var(--violet-dark) }
  .product__add.added{ background: var(--wa) }

  .empty{
    grid-column: 1/-1;
    text-align:center; padding: 60px 20px;
    color: var(--ink-3);
  }
  .empty__emoji{ font-size: 48px; margin-bottom: 12px; opacity:.6 }

  /* ========== CART DRAWER ========== */
  .drawer-scrim{
    position: fixed; inset:0;
    background: rgba(42,20,66,.4);
    backdrop-filter: blur(3px);
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
    z-index: 80;
  }
  .drawer-scrim.open{ opacity:1; pointer-events:auto }
  .drawer{
    position: fixed; top:0; right:0; bottom:0;
    width: min(420px, 100vw);
    background: var(--cream);
    box-shadow: -20px 0 60px rgba(42,20,66,.25);
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.2,.8,.2,1);
    z-index: 81;
    display:flex; flex-direction:column;
  }
  .drawer.open{ transform: translateX(0) }
  .drawer__head{
    display:flex; align-items:center; justify-content:space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
  }
  .drawer__head h3{ font-size: 20px; color: var(--violet-dark) }
  .drawer__head h3 span{ color: var(--ink-3); font-weight: 500; font-size: 14px; margin-left:6px }
  .drawer__body{ flex:1; overflow-y:auto; padding: 14px 22px 20px }
  .drawer__empty{
    text-align:center; color: var(--ink-3);
    padding: 60px 0;
  }
  .drawer__empty .e{ font-size: 56px; margin-bottom:10px; opacity:.6 }

  .cart-item{
    display:grid;
    grid-template-columns: 58px 1fr auto;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    align-items:center;
  }
  .cart-item__img{
    width:58px; height:58px; border-radius: 12px;
    background: var(--white);
    display:grid; place-items:center;
    font-size: 28px;
    border: 1px solid var(--line);
  }
  .cart-item__name{ font-family:'Poppins'; font-weight:600; font-size: 14px; color: var(--ink); line-height:1.25 }
  .cart-item__meta{ font-size: 12.5px; color: var(--ink-3); margin-top: 2px }
  .cart-item__controls{ display:flex; align-items:center; gap:10px; margin-top:8px }
  .cart-item__qty{ display:flex; align-items:center; border:1px solid var(--line); border-radius:8px; background:var(--white) }
  .cart-item__qty button{ width:26px; height:26px; color:var(--violet); font-weight:700 }
  .cart-item__qty span{ min-width:22px; text-align:center; font-size:13px; font-weight:600 }
  .cart-item__remove{ font-size: 12px; color: var(--ink-3); text-decoration: underline }
  .cart-item__remove:hover{ color: #c0392b }
  .cart-item__price{ font-family:'Poppins'; font-weight:700; color: var(--violet-dark); font-size: 15px; text-align:right }

  .drawer__foot{
    border-top: 1px solid var(--line);
    padding: 18px 22px 22px;
    background: var(--white);
  }
  .drawer__row{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom: 4px; font-size: 14px; color:var(--ink-2) }
  .drawer__total{ font-family:'Poppins'; font-size: 22px; font-weight: 700; color: var(--violet-dark); margin-bottom: 14px }
  .drawer__note{ font-size: 12px; color: var(--ink-3); margin-top: 10px; text-align:center }

  /* ========== VENTAJAS STRIP ========== */
  .ventajas{
    padding: 56px 0;
    background: var(--violet-dark);
    color: #fff;
  }
  .ventajas__grid{
    display:grid; gap: 28px;
    grid-template-columns: repeat(2, 1fr);
  }
  @media (min-width: 860px){ .ventajas__grid{ grid-template-columns: repeat(4, 1fr) } }
  .ventaja{ display:flex; gap: 14px; align-items:flex-start }
  .ventaja__icon{
    width: 46px; height:46px; flex-shrink:0;
    border-radius: 12px;
    background: rgba(255,193,7,.15);
    color: var(--mustard);
    display:grid; place-items:center;
  }
  .ventaja__icon svg{ width: 24px; height: 24px }
  .ventaja h4{ font-size: 16px; color: #fff; margin-bottom: 4px }
  .ventaja p{ font-size: 13.5px; color: rgba(255,255,255,.72); line-height:1.5 }

  /* ========== NOSOTROS ========== */
  .nosotros__grid{
    display:grid; gap: 48px;
    grid-template-columns: 1fr;
    align-items:center;
  }
  @media (min-width: 960px){ .nosotros__grid{ grid-template-columns: 1.05fr .95fr; gap: 72px } }
  .nosotros__copy p{ color: var(--ink-2); font-size: 16.5px; margin-bottom: 14px }
  .nosotros__copy p strong{ color: var(--ink) }
  .stats{
    display:grid; gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 28px;
  }
  .stat{
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 14px;
    text-align:center;
  }
  .stat b{ font-family:'Poppins'; font-weight:800; font-size: clamp(24px, 3vw, 34px); color: var(--violet); display:block; line-height:1 }
  .stat span{ font-size: 12.5px; color: var(--ink-3); margin-top: 6px; display:block; line-height:1.3 }

  /* Historic visual collage */
  .collage{
    position: relative;
    aspect-ratio: 5/6;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background:
      radial-gradient(circle at 20% 10%, rgba(255,193,7,.3), transparent 50%),
      linear-gradient(160deg, #6A35A2, var(--violet-dark));
    padding: 24px;
    color: #fff;
  }
  .collage__stamp{
    position:absolute; top: 22px; right: 22px;
    width: 104px; height: 104px; border-radius: 50%;
    border: 2px dashed rgba(255,193,7,.55);
    display:grid; place-items:center;
    font-family:'Poppins'; font-weight:800;
    color: var(--mustard);
    text-align:center;
    line-height:1;
    font-size: 14px;
    animation: spin 24s linear infinite;
  }
  .collage__stamp b{ font-size: 28px; display:block; margin-bottom: 2px }
  .collage__year{
    position:absolute; bottom: 24px; left: 24px;
    font-family:'Poppins'; font-weight: 800;
    font-size: clamp(72px, 14vw, 150px);
    color: rgba(255,193,7,.15);
    line-height: 0.9;
    letter-spacing: -0.04em;
  }
  .collage__quote{
    position:absolute; bottom: 30px; right: 24px; left: 24px;
    padding: 20px;
    background: rgba(0,0,0,.28);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    border-left: 3px solid var(--mustard);
  }
  .collage__quote p{ font-family:'Poppins'; font-weight:600; font-size: 15px; line-height:1.4 }
  .collage__quote span{ font-size: 12px; color: rgba(255,193,7,.85); font-weight:500; margin-top:8px; display:block }

  /* ========== CONTACTO ========== */
  .contacto{ background: var(--white); border-top:1px solid var(--line) }
  .contacto__grid{
    display:grid; gap: 40px;
    grid-template-columns: 1fr;
  }
  @media (min-width: 900px){ .contacto__grid{ grid-template-columns: 1fr 1fr; gap: 60px } }

  .form{
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--line);
  }
  .field{ margin-bottom: 16px }
  .field label{ display:block; font-size: 13px; font-weight:600; color: var(--ink-2); margin-bottom: 6px }
  .field input, .field textarea{
    width:100%;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 15px;
    outline: 0;
    transition: border-color .15s, box-shadow .15s;
  }
  .field textarea{ resize: vertical; min-height: 120px }
  .field input:focus, .field textarea:focus{ border-color: var(--violet); box-shadow: 0 0 0 3px rgba(91,46,140,.1) }
  .form__sent{
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(37,211,102,.12);
    color: #0f6b3f;
    font-size: 14px;
    display:none;
  }
  .form__sent.show{display:block}

  .info__box{
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px;
    margin-bottom: 18px;
  }
  .info__row{
    display:flex; gap: 14px; padding: 12px 0;
    border-bottom: 1px dashed var(--line-2);
    align-items:flex-start;
  }
  .info__row:last-child{border-bottom:0}
  .info__row svg{ width: 20px; height:20px; color: var(--violet); flex-shrink:0; margin-top:2px }
  .info__row b{ font-family:'Poppins'; font-weight:600; color: var(--ink); font-size:15px; display:block }
  .info__row span{ font-size:14px; color: var(--ink-2) }

  .map{
    display:block;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow:hidden;
    position: relative;
    background: #ede1d3;
    border: 1px solid var(--line);
  }
  .map__cta{
    position:absolute; top: 14px; right: 14px;
    background: var(--violet); color: #fff !important;
    padding: 10px 16px; border-radius: 999px;
    font-family:'Poppins'; font-weight:600; font-size: 12.5px;
    box-shadow: 0 4px 12px rgba(91,46,140,.4);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    z-index: 2;
  }
  .map__cta:hover{ transform: translateY(-2px); box-shadow: 0 8px 20px rgba(91,46,140,.5) }
  }
  .map__grid{
    position:absolute; inset:0;
    background-image:
      linear-gradient(rgba(91,46,140,.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(91,46,140,.08) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .map__road{
    position:absolute; top:50%; left:0; right:0; height:14px;
    background: var(--white);
    transform: translateY(-50%) rotate(-4deg) scaleX(1.3);
    box-shadow: 0 0 0 1px var(--line);
  }
  .map__road--2{ top: auto; bottom: 22%; transform: translateY(0) rotate(6deg) scaleX(1.3) }
  .map__pin{
    position:absolute; top: 44%; left: 48%;
    width: 44px; height: 44px; border-radius: 50% 50% 50% 0;
    background: var(--violet);
    transform: translate(-50%, -100%) rotate(-45deg);
    display:grid; place-items:center;
    box-shadow: 0 8px 18px rgba(91,46,140,.35);
    animation: pinBounce 2.4s ease-in-out infinite;
  }
  .map__pin::after{
    content:''; width: 14px; height: 14px; border-radius:50%;
    background: var(--mustard); transform: rotate(45deg);
  }
  @keyframes pinBounce{
    0%,100%{transform: translate(-50%, -100%) rotate(-45deg)}
    50%{transform: translate(-50%, -108%) rotate(-45deg)}
  }
  .map__label{
    position:absolute; bottom: 14px; left:14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 13px; font-weight:600;
    color: var(--violet-dark);
    box-shadow: var(--shadow-sm);
  }

  /* ========== FAB ========== */
  .fab{
    position: fixed; bottom: 22px; right: 22px;
    z-index: 70;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--wa);
    color: #fff;
    display:grid; place-items:center;
    box-shadow: 0 14px 30px rgba(37,211,102,.45);
    transition: transform .15s;
  }
  .fab:hover{ transform: scale(1.05) }
  .fab svg{ width: 30px; height: 30px }
  .fab::before, .fab::after{
    content:''; position:absolute; inset:0; border-radius:50%;
    background: var(--wa); opacity:.55;
    animation: pulse 2s ease-out infinite;
    z-index:-1;
  }
  .fab::after{ animation-delay: 1s }
  @keyframes pulse{
    0%{ transform: scale(1); opacity:.55 }
    100%{ transform: scale(1.8); opacity: 0 }
  }

  /* ========== FOOTER ========== */
  .footer{
    background: var(--violet-deeper);
    color: rgba(255,255,255,.78);
    padding: 64px 0 24px;
  }
  .footer__grid{
    display:grid; gap: 36px;
    grid-template-columns: 1fr;
  }
  @media (min-width: 720px){ .footer__grid{ grid-template-columns: 1.3fr repeat(3, 1fr) } }
  .footer h5{
    color: var(--mustard);
    font-family:'Poppins'; font-size: 13px; font-weight:600;
    letter-spacing: .14em; text-transform: uppercase;
    margin-bottom: 16px;
  }
  .footer ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px }
  .footer ul a{ font-size:14px; color: rgba(255,255,255,.72) }
  .footer ul a:hover{ color: var(--mustard) }
  .footer__about p{ font-size: 14px; line-height: 1.6; margin: 12px 0 18px; color: rgba(255,255,255,.65) }
  .footer .logo{ color: #fff }
  .social{ display:flex; gap:10px; margin-top: 10px }
  .social a{
    width:36px; height:36px; border-radius:10px;
    background: rgba(255,255,255,.08);
    display:grid; place-items:center;
    color: #fff;
    transition: background .15s, color .15s;
  }
  .social a:hover{ background: var(--mustard); color: var(--violet-dark) }
  .social svg{ width:18px; height:18px }
  .footer__bot{
    margin-top: 40px; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
    font-size: 12.5px; color: rgba(255,255,255,.5);
  }

  /* ========== REVEAL ========== */
  .reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease }
  .reveal.in{ opacity:1; transform: none }

  /* Scroll lock */
  body.lock{ overflow: hidden }
  /* ========== PAGE HERO (catalogo / nosotros / contacto) ========== */
  .page-hero{
    position: relative;
    color: var(--white);
    padding: 80px 0 60px;
    background:
      radial-gradient(1200px 500px at 100% -10%, rgba(255,193,7,.22), transparent 60%),
      linear-gradient(160deg, #6A35A2 0%, var(--violet) 40%, var(--violet-dark) 100%);
    overflow: hidden;
    isolation: isolate;
    margin-top: 0;
  }
  @media (min-width: 960px){ .page-hero{ padding: 110px 0 80px } }
  .page-hero__inner{ max-width: 720px }
  .page-hero .eyebrow{ color: var(--mustard) }
  .page-hero .eyebrow::before{ background: var(--mustard) }
  .page-hero h1{
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4.4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 12px 0 18px;
  }
  .page-hero p{ color: rgba(255,255,255,.85); font-size: 17px; line-height: 1.55; max-width: 620px }

  /* Catalog page version: full-width grid (no hero overlap) */
  .catalog--page{ padding-top: 60px; padding-bottom: 80px }
  @media (min-width: 960px){ .catalog--page{ padding-top: 80px } }

  /* Active nav link (current page) */
  .nav a[aria-current="page"]{ color: var(--violet); font-weight: 700 }
  .nav a[aria-current="page"]::after{
    content:''; display:block; height:2px; background:var(--mustard);
    border-radius:2px; margin-top:4px;
  }
