/* Modern minimal + glassy */
:root{
  --bg: #0b0d12;
  --bg2:#0f1420;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.09);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --line: rgba(255,255,255,.12);
  --accent: #8be9fd;
  --accent2:#a78bfa;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
  --container: 1100px;
}

[data-theme="light"]{
  --bg: #f6f7fb;
  --bg2:#ffffff;
  --card: rgba(10,12,20,.06);
  --card2: rgba(10,12,20,.10);
  --text: rgba(10,12,20,.92);
  --muted: rgba(10,12,20,.70);
  --line: rgba(10,12,20,.14);
  --accent: #0ea5e9;
  --accent2:#7c3aed;
  --shadow: 0 18px 55px rgba(10,12,20,.16);
}
[data-theme="light"] body,
html[data-theme="light"] {
  background-image: url('attached_assets/ChatGPT_Image_6_ene_2026,_03_02_54_a.m._1767691535187.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background-image: url('attached_assets/image_1767685112950.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text);
}

.container{
  max-width: var(--container);
  width: 100%;
  padding: 0 clamp(12px, 3vw, 24px);
  margin: 0 auto;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,0));
  border-bottom: 1px solid var(--line);
}
[data-theme="light"] .topbar{
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.35));
}

.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 8px 0;
  gap: 12px;
  min-height: 50px;
}

.brand{ display:flex; align-items:center; gap: 2px; min-width: 0; flex-shrink: 0;}
.brand__logo{
  width: 42px; height: 42px; border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.brand__combined{ height: clamp(55px, 11vw, 70px); width: auto; object-fit: contain; margin-top: -8px; }
.brand__character{ height: clamp(45px, 8vw, 50px); width: auto; object-fit: contain; }
.brand__name{ font-weight: 800; letter-spacing:.3px; font-size: clamp(14px, 3vw, 18px); }
.brand__name-img{ height: clamp(55px, 10vw, 70px); width: auto; object-fit: contain; }
.brand__tag{ font-size: clamp(10px, 2vw, 12px); color: var(--muted); margin-top: 1px; }

.topbar__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
  margin-right: 15px;
}
.topbar__contact-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.topbar__email {
  color: var(--fg);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}
.topbar__email:hover {
  color: var(--accent);
}

.topbar__actions{ display:flex; gap: clamp(6px, 1.5vw, 10px); align-items:center; flex-wrap: wrap; }

.btn{
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  padding: clamp(8px, 2vw, 12px) clamp(10px, 2.5vw, 14px);
  border-radius: 14px;
  display:inline-flex;
  gap: 8px;
  align-items:center;
  text-decoration:none;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
  min-height: 44px;
  font-size: clamp(12px, 2.5vw, 14px);
}
.btn:hover{ transform: translateY(-1px); background: var(--card2); border-color: rgba(255,255,255,.22); }
[data-theme="light"] .btn:hover{ border-color: rgba(10,12,20,.22); }
.btn:active{ transform: translateY(0px); }

.btn__icon{ font-size: 16px; line-height: 1; }
.btn__label{ font-weight: 600; font-size: 13px; }

.btn--primary{
  background: linear-gradient(135deg, rgba(139,233,253,.30), rgba(167,139,250,.28));
  border-color: rgba(139,233,253,.25);
}
[data-theme="light"] .btn--primary{ border-color: rgba(14,165,233,.30); }

.btn--ghost{
  background: transparent;
}

.hero{
  padding: 34px 0 22px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 920px){
  .hero__inner{ grid-template-columns: 1fr; }
}

.hero__copy{
  padding: 24px 10px 10px 0;
}
.hero__main-logo {
  text-align: center;
  margin-bottom: 20px;
}
.hero__main-logo-img {
  width: clamp(200px, 35vw, 320px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.5));
}
@media (max-width: 768px) {
  .hero__main-logo-img {
    width: clamp(160px, 50vw, 250px);
  }
}
.hero__branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 10px;
}
.hero__logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}
@media (max-width: 768px) {
  .hero__branding {
    flex-direction: column;
    text-align: center;
  }
  .hero__logo {
    width: clamp(120px, 30vw, 160px);
    height: clamp(120px, 30vw, 160px);
  }
  .hero h1 {
    font-size: clamp(22px, 5vw, 32px);
  }
  .topbar__inner {
    flex-wrap: nowrap;
    padding: 8px 0;
  }
  .brand {
    flex-shrink: 1;
    justify-content: flex-start;
  }
  .brand__combined {
    height: clamp(40px, 12vw, 55px);
  }
  .topbar__actions {
    flex-shrink: 0;
  }
}
@media (max-width: 480px) {
  .hero__logo {
    width: 100px;
    height: 100px;
  }
  .btn__label {
    font-size: 11px;
  }
  .stat {
    padding: 10px 12px;
  }
  .stat__num {
    font-size: 16px;
  }
  .sectionHead h2 {
    font-size: 18px;
  }
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing:-.6px;
  line-height:1.05;
}
.hero p{
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 58ch;
}
.hero code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .95em;
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--card);
}

.hero__cta{ display:flex; gap: 10px; flex-wrap:wrap; margin: 14px 0 10px; }
.hero__stats{ display:flex; gap: 12px; flex-wrap:wrap; margin-top: 14px; }

.stat{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card);
}
.stat__num{ font-size: 18px; font-weight: 800; }
.stat__lbl{ font-size: 12px; color: var(--muted); margin-top: 4px; }

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 16px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.card__title{ font-weight: 800; letter-spacing:.2px; margin-bottom: 14px; }
.card__foot{ display:flex; justify-content:space-between; align-items:center; gap: 10px; margin-top: 14px; }
.muted{ color: var(--muted); }
.kicker{ color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing:.12em; }

.field{ display:grid; gap: 6px; margin-bottom: 12px; }
.field__label{ font-size: 12px; color: var(--muted); font-weight: 600; }

.input{
  width:100%;
  padding: clamp(10px, 2vw, 12px);
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
  font-size: 16px;
}
[data-theme="light"] .input{ background: rgba(255,255,255,.55); }
.input:focus{
  border-color: rgba(139,233,253,.35);
  background: rgba(0,0,0,.24);
}
.select{ appearance: none; }

.grid2{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 560px){ .grid2{ grid-template-columns: 1fr; } }

.pills{ display:flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.pill{
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  cursor:pointer;
  font-weight: 700;
  font-size: 12px;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.pill:hover{ transform: translateY(-1px); background: var(--card); color: var(--text); }
.pill[aria-pressed="true"]{
  background: linear-gradient(135deg, rgba(139,233,253,.22), rgba(167,139,250,.20));
  border-color: rgba(139,233,253,.28);
  color: var(--text);
}

.catalog{ padding: 14px 0 46px; }
.sectionHead{
  display:flex; align-items:end; justify-content:space-between; gap: 14px;
  margin: 12px 0 14px;
}
.sectionHead h2{ margin:0; font-size: 22px; letter-spacing:-.3px; }
.sectionHead__right{ display:flex; gap: 10px; }

.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(10px, 2vw, 16px);
}
.grid.compact{ 
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: clamp(8px, 1.5vw, 12px); 
}
@media (max-width: 640px){ 
  .grid{ grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); } 
  .grid.compact{ grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); } 
}
@media (max-width: 400px){ 
  .grid, .grid.compact { grid-template-columns: 1fr; } 
}

.item{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: var(--card);
  overflow:hidden;
  box-shadow: var(--shadow);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
  display:flex;
  flex-direction: column;
}
.item:hover{ transform: translateY(-2px); border-color: rgba(139,233,253,.22); background: var(--card2); }

.item__imgWrap{
  aspect-ratio: 1/1;
  min-height: 180px;
  max-height: 280px;
  width: 100%;
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(139,233,253,.16), transparent 60%),
    radial-gradient(500px 240px at 30% 120%, rgba(167,139,250,.14), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,0));
  display:flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
[data-theme="light"] .item__imgWrap{
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(14,165,233,.10), transparent 60%),
    radial-gradient(500px 240px at 30% 120%, rgba(124,58,237,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.30), rgba(255,255,255,0));
}
.item__img{
  width: auto;
  height: auto;
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.35));
}
[data-theme="light"] .item__img{ filter: drop-shadow(0 14px 30px rgba(10,12,20,.20)); }

.item__body{ padding: clamp(10px, 2vw, 14px); display:grid; gap: 8px; text-align: center; justify-items: center; }
.item__title{
  font-weight: 800;
  letter-spacing: -.2px;
  line-height: 1.2;
  font-size: clamp(12px, 2.5vw, 14px);
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
  min-height: 32px;
}
.item__meta{ display:flex; gap: 8px; flex-wrap:wrap; align-items:center; justify-content: center; }
.badge{
  font-size: 11px;
  font-weight: 800;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(0,0,0,.20);
  padding: 6px 9px;
  border-radius: 999px;
}
[data-theme="light"] .badge{ background: rgba(255,255,255,.55); }

.price{
  font-size: clamp(14px, 3vw, 17px);
  font-weight: 900;
  letter-spacing: -.2px;
}
.metaSmall{ font-size: 12px; color: var(--muted); font-weight: 650; }

.item__actions{
  display:flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.item__actions .btn{ flex: 1; justify-content:center; padding: clamp(8px, 2vw, 10px); border-radius: 14px; min-width: 44px; }
@media (max-width: 640px) {
  .item__actions .btn__label{ display:none; }
}
.grid.compact .item__actions .btn__label{ display:none; }
.grid.compact .item__actions .btn{ padding: 10px; }

.pager{
  margin-top: 16px;
  display:flex; justify-content:space-between; align-items:center; gap: 8px;
  flex-wrap: wrap;
}
.pager__meta{ text-align:center; flex:1; font-size: clamp(12px, 2.5vw, 14px); min-width: 100px; }
@media (max-width: 480px) {
  .pager {
    justify-content: center;
  }
  .pager__meta {
    width: 100%;
    order: -1;
    margin-bottom: 8px;
  }
}

.footer{
  border-top: 1px solid var(--line);
  padding: clamp(16px, 3vw, 22px) 0;
  background: rgba(0,0,0,.08);
}
[data-theme="light"] .footer{ background: rgba(255,255,255,.55); }
.footer__inner{ 
  display:flex; 
  justify-content:space-between; 
  gap: 14px; 
  flex-wrap:wrap; 
  font-size: clamp(12px, 2.5vw, 14px);
}
@media (max-width: 480px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Modal */
.modal{
  position: fixed; inset: 0;
  display:none;
}
.modal[aria-hidden="false"]{ display:block; }
.modal__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.62);
}
.modal__panel{
  position: relative;
  width: min(100vw - 24px, 980px);
  max-height: 90vh;
  margin: 5vh auto;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal__panel,
.category-menu {
  background: var(--card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.modal__close{
  position:absolute; top: 12px; right: 12px;
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  cursor:pointer;
}
.modal__body{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: min(520px, 70vh);
  max-height: 85vh;
  overflow-y: auto;
}
@media (max-width: 768px){
  .modal__panel{ margin: 2vh 10px; width: calc(100vw - 20px); }
  .modal__body{ grid-template-columns: 1fr; min-height: auto; }
}
.modal__imgWrap{
  display:grid;
  place-items:center;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(700px 300px at 50% 10%, rgba(139,233,253,.16), transparent 60%),
    radial-gradient(600px 340px at 30% 110%, rgba(167,139,250,.14), transparent 55%);
}
@media (max-width: 920px){
  .modal__imgWrap{ border-right:none; border-bottom: 1px solid var(--line); }
}
.modal__img{
  width:100%;
  height:100%;
  max-height: 520px;
  object-fit: contain;
  padding: 18px;
  filter: drop-shadow(0 18px 38px rgba(0,0,0,.38));
}
.modal__info{ padding: 18px; display:grid; gap: 10px; align-content:start; }
.modal__info h3{ margin: 0; font-size: 22px; letter-spacing:-.4px; line-height:1.1; }
.priceRow{ display:flex; align-items:baseline; justify-content:space-between; gap: 12px; flex-wrap:wrap; }
.actionsRow{ display:flex; gap: 10px; flex-wrap:wrap; }
.note{ font-size: 12px; line-height: 1.35; }

.category-dropdown {
  position: relative;
  margin: 20px 0;
  display: inline-block;
}
.cat-dropdown-toggle {
  padding: 12px 20px;
}
.category-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 100;
  min-width: 200px;
  max-width: calc(100vw - 40px);
  margin-top: 10px;
}
@media (max-width: 480px) {
  .category-menu {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 20px;
    margin-top: 0;
  }
}
.category-menu[aria-hidden="true"] {
  display: none;
}
.cat-btn {
  background: transparent;
  border: none;
  color: var(--text);
  padding: clamp(10px, 2.5vw, 14px) 15px;
  border-radius: 10px;
  font-size: clamp(13px, 3vw, 15px);
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  width: 100%;
  min-height: 44px;
}
.cat-btn:hover {
  background: var(--card);
}
.cat-btn.active {
  background: var(--accent);
  color: #000;
}

/* Cart Styles */
.cart-btn {
  position: relative;
}
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-count:empty, .cart-count[data-count="0"] {
  display: none;
}

.modal__panel--cart {
  width: min(100vw - 24px, 450px);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  margin-top: clamp(80px, 12vh, 100px);
}
.modal__panel--checkout {
  width: min(100vw - 24px, 500px);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  margin-top: clamp(80px, 12vh, 100px);
}
.modal__panel--contact {
  width: min(100vw - 24px, 400px);
  position: relative;
  margin-top: clamp(80px, 12vh, 100px);
}
@media (max-width: 480px) {
  .modal__panel--cart,
  .modal__panel--checkout,
  .modal__panel--contact {
    margin-top: 90px;
    max-height: 75vh;
  }
}

.contact-content {
  padding: clamp(20px, 5vw, 30px);
  padding-top: 55px;
  text-align: center;
}
.contact-header {
  margin-bottom: 20px;
}
.contact-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.3));
}
.contact-tagline {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin: 0;
  letter-spacing: 0.5px;
}
.contact-divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}
.contact-info-minimal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-link-minimal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--line);
  transition: all 0.2s ease;
}
.contact-link-minimal:hover {
  background: var(--card);
  border-color: var(--accent);
  color: var(--accent);
}
.contact-wa {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
}
.contact-wa:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.5);
  color: #25d366;
}
.contact-icon-min {
  font-size: 16px;
}
.contact-owner {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cart-content h3 {
  margin: 0 0 15px;
  font-size: 20px;
}

.cart-item {
  display: flex;
  gap: clamp(8px, 2vw, 12px);
  padding: clamp(10px, 2vw, 12px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.cart-item__img {
  width: clamp(50px, 12vw, 60px);
  height: clamp(50px, 12vw, 60px);
  object-fit: contain;
  border-radius: 10px;
  background: var(--card2);
  flex-shrink: 0;
}
.cart-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-item__name {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
}
.cart-item__price {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
}
.cart-item__remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 18px;
  padding: 5px;
}
.cart-item__remove:hover {
  color: #ef4444;
}

.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 20px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 15px;
}
.cart-total span:last-child {
  color: var(--accent);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* Add to cart button */
.btn--add-cart {
  background: linear-gradient(135deg, rgba(34,197,94,.30), rgba(16,185,129,.28));
  border-color: rgba(34,197,94,.25);
  font-size: 12px;
  padding: 8px 12px;
}
.btn--add-cart:hover {
  background: linear-gradient(135deg, rgba(34,197,94,.45), rgba(16,185,129,.42));
}

/* Checkout Styles */
.checkout-content h3 {
  margin: 0 0 15px;
  font-size: 20px;
}
.checkout-summary {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px;
  margin-bottom: 20px;
  max-height: 150px;
  overflow-y: auto;
}
.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 5px 0;
  border-bottom: 1px solid var(--line);
}
.checkout-summary-item:last-child {
  border-bottom: none;
  font-weight: 800;
  font-size: 15px;
  padding-top: 10px;
}
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.checkout-form textarea {
  resize: none;
}

.cart-buttons, .checkout-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-group {
  display: flex;
  gap: 15px;
  margin-top: 8px;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: all 0.2s;
  flex: 1;
}
.radio-option:hover {
  border-color: var(--accent);
}
.radio-option input[type="radio"] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
}
.radio-option input[type="radio"]:checked + .radio-label {
  color: var(--accent);
  font-weight: 600;
}
.radio-label {
  font-size: 13px;
}

.delivery-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-top: 5px;
}
.delivery-fields .field__label {
  margin-bottom: 5px;
}

.pickup-info {
  margin-top: 5px;
}
.pickup-card {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.03));
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
}
.pickup-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 10px;
  font-style: italic;
}
.pickup-location {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 5px;
}
.pickup-hours {
  font-size: 13px;
  color: var(--accent);
  margin: 0;
}

.payment-installments {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  padding: 12px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
}
.installments-icon {
  font-size: 18px;
}
.installments-text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg);
}
.installments-text strong {
  color: var(--accent);
}
.installments-note {
  color: var(--muted);
  font-size: 11px;
}

.cat-btn-wrapper {
  position: static;
}
.brand-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 5px;
  min-width: 180px;
  max-height: 400px;
  overflow-y: auto;
  background: var(--card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  flex-direction: column;
  gap: 2px;
  z-index: 1001;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.brand-submenu.visible {
  display: flex;
}
.brand-btn {
  background: transparent;
  border: none;
  color: var(--text);
  padding: clamp(10px, 2.5vw, 14px) 15px;
  border-radius: 10px;
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.brand-btn:hover {
  background: var(--card);
}
.brand-btn.active {
  background: var(--accent);
  color: #000;
}
@media (max-width: 768px) {
  .brand-submenu {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: 0;
    max-width: none;
    max-height: 50vh;
    border-radius: 20px 20px 0 0;
    padding: 15px;
  }
}

/* Circular close buttons - fixed position */
.modal__close--circle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.15);
  backdrop-filter: blur(10px);
  color: #ef4444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.2s ease;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}
.modal__close--circle:hover {
  background: rgba(239, 68, 68, 0.3);
  border-color: rgba(239, 68, 68, 0.7);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
}

/* Cancel button */
.btn--cancel {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}
.btn--cancel:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.5);
}

/* Scrollable modal content */
.checkout-content {
  padding: 20px;
  padding-top: 60px;
  flex: 1;
  overflow-y: auto;
}
.checkout-content::-webkit-scrollbar {
  width: 6px;
}
.checkout-content::-webkit-scrollbar-track {
  background: var(--card);
  border-radius: 3px;
}
.checkout-content::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}
.checkout-content::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

.cart-content {
  padding: 20px;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.cart-items {
  flex: 1;
  min-height: 80px;
  max-height: 35vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding-right: 5px;
}
.cart-items::-webkit-scrollbar {
  width: 6px;
}
.cart-items::-webkit-scrollbar-track {
  background: var(--card);
  border-radius: 3px;
}
.cart-items::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}
.cart-items::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

.cart-footer {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}

