/*
  Kirisha Fashion webshop UI layer
  Scoped to shop-* and ecommerce component classes to avoid CMS/admin regressions.
*/

:root{
  --shop-accent:#c9a96a;
  --shop-accent-strong:#b58c43;
  --shop-surface:rgba(255,255,255,.04);
  --shop-surface-2:rgba(255,255,255,.06);
  --shop-border:rgba(255,255,255,.12);
  --shop-muted:rgba(251,247,239,.72);
  --shop-success:#77d39e;
  --shop-danger:#ef8a8a;
  --shop-warning:#f2d08a;
}

.shop-page,
.product-page,
.cart-page,
.checkout-page,
.favorites-page{
  padding:28px 0 64px;
}

.shop-shell{
  max-width:1180px;
  margin:0 auto;
  padding:0 18px;
}

.shop-hero{
  border:1px solid var(--shop-border);
  border-radius:20px;
  padding:24px;
  background:
    radial-gradient(560px 280px at 88% 0%, rgba(201,169,106,.16), transparent 60%),
    linear-gradient(170deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:0 20px 55px rgba(0,0,0,.35);
}

.shop-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(201,169,106,.28);
  background:rgba(201,169,106,.10);
  color:#f4dfb8;
  font-weight:800;
}

.shop-hero h1,
.product-title{
  margin:12px 0 10px;
  font-size:clamp(30px,4.2vw,46px);
  line-height:1.05;
  letter-spacing:.01em;
  font-family:Georgia,"Times New Roman",serif;
}

.shop-subtitle,
.product-subtitle,
.shop-muted{
  margin:0;
  color:var(--shop-muted);
  line-height:1.7;
  font-size:14px;
}

.shop-toolbar{
  margin-top:18px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr auto;
  gap:10px;
  align-items:center;
}

.shop-toolbar input,
.shop-toolbar select,
.currency-switcher select,
.shop-select,
.qty-input,
.checkout-form input,
.checkout-form textarea,
.checkout-form select{
  width:100%;
  border-radius:12px;
  border:1px solid var(--shop-border);
  background:rgba(0,0,0,.26);
  color:#fbf7ef;
  min-height:46px;
  padding:10px 12px;
  outline:none;
}

.shop-toolbar input:focus,
.shop-toolbar select:focus,
.currency-switcher select:focus,
.shop-select:focus,
.qty-input:focus,
.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus{
  border-color:rgba(201,169,106,.42);
  box-shadow:0 0 0 3px rgba(201,169,106,.16);
}

.currency-switcher{
  display:flex;
  align-items:center;
  gap:8px;
}

.currency-switcher label{
  font-size:12px;
  color:var(--shop-muted);
  white-space:nowrap;
}

.shop-grid,
.favorites-grid,
.recommend-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.product-card{
  position:relative;
  display:flex;
  flex-direction:column;
  border-radius:18px;
  border:1px solid var(--shop-border);
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  box-shadow:0 14px 35px rgba(0,0,0,.28);
  transition:transform .14s ease, border-color .14s ease, background .14s ease;
}

.product-card:hover{
  transform:translateY(-2px);
  border-color:rgba(201,169,106,.36);
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
}

.product-media{
  position:relative;
  overflow:hidden;
  background:rgba(255,255,255,.03);
}

.product-media img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  display:block;
}

.product-badge-row{
  position:absolute;
  top:10px;
  left:10px;
  right:10px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  pointer-events:none;
}

.product-badge{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:5px 9px;
  font-size:11px;
  font-weight:800;
  border:1px solid transparent;
  background:rgba(12,12,14,.78);
  color:#f7efe0;
}

.product-badge.is-sale{
  border-color:rgba(119,211,158,.45);
  color:#d5f5e5;
}

.product-badge.is-new{
  border-color:rgba(201,169,106,.42);
  color:#f4dfb8;
}

.product-badge.is-low-stock{
  border-color:rgba(242,208,138,.45);
  color:#ffe9c4;
}

.product-badge.is-out{
  border-color:rgba(239,138,138,.45);
  color:#ffd0d0;
}

.product-body{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:14px;
  flex:1;
}

.product-title-sm{
  margin:0;
  font-size:17px;
  line-height:1.25;
}

.product-title-sm a:hover{
  color:#f2d9aa;
}

.product-meta-line{
  margin:0;
  color:var(--shop-muted);
  font-size:12px;
}

.price-row{
  display:flex;
  align-items:baseline;
  gap:8px;
  flex-wrap:wrap;
}

.price-main{
  font-size:20px;
  font-weight:900;
  letter-spacing:.01em;
  color:#fff4de;
}

.price-compare{
  font-size:13px;
  color:rgba(251,247,239,.45);
  text-decoration:line-through;
}

.stock-line{
  font-size:12px;
  font-weight:700;
}

.stock-line.is-in{color:var(--shop-success)}
.stock-line.is-low{color:var(--shop-warning)}
.stock-line.is-out{color:var(--shop-danger)}

.product-actions{
  margin-top:auto;
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px;
}

.shop-btn,
.shop-btn-secondary,
.shop-icon-btn,
.qty-btn{
  border-radius:12px;
  border:1px solid var(--shop-border);
  min-height:42px;
  padding:9px 12px;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
  color:#fbf7ef;
  background:rgba(255,255,255,.05);
}

.shop-btn{
  background:linear-gradient(180deg,var(--shop-accent),var(--shop-accent-strong));
  border-color:transparent;
  color:#241a0e;
}

.shop-btn:hover,
.shop-btn-secondary:hover,
.shop-icon-btn:hover,
.qty-btn:hover{
  filter:brightness(1.05);
}

.shop-icon-btn{
  width:42px;
  padding:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.shop-icon-btn.is-active{
  border-color:rgba(201,169,106,.42);
  color:#f6ddb0;
  background:rgba(201,169,106,.14);
}

.shop-notice,
.shop-alert,
.shop-empty{
  margin-top:16px;
  border-radius:14px;
  border:1px solid var(--shop-border);
  background:rgba(255,255,255,.04);
  padding:12px 14px;
  font-size:13px;
}

.shop-alert.is-success{border-color:rgba(119,211,158,.42);color:#d4f4e3}
.shop-alert.is-error{border-color:rgba(239,138,138,.42);color:#ffd3d3}
.shop-alert.is-info{border-color:rgba(201,169,106,.38);color:#f6e0b9}

.product-layout{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:18px;
  margin-top:18px;
}

.product-gallery,
.product-panel,
.cart-panel,
.checkout-panel,
.order-summary,
.recommend-panel{
  border:1px solid var(--shop-border);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}

.product-gallery{overflow:hidden}
.product-gallery img{width:100%;display:block;aspect-ratio:4/5;object-fit:cover}
.product-panel{padding:18px}

.product-price-block{
  display:flex;
  align-items:baseline;
  gap:10px;
  margin:8px 0 14px;
}

.product-description{
  color:var(--shop-muted);
  line-height:1.74;
  font-size:14px;
}

.product-cta-row{
  display:grid;
  grid-template-columns:122px 1fr auto;
  gap:8px;
  margin-top:14px;
}

.qty-control{
  display:grid;
  grid-template-columns:36px 1fr 36px;
  gap:0;
  overflow:hidden;
  border:1px solid var(--shop-border);
  border-radius:12px;
}

.qty-control .qty-btn,
.qty-control .qty-input{
  border:0;
  border-radius:0;
  min-height:42px;
}

.qty-control .qty-input{
  text-align:center;
  appearance:textfield;
  -moz-appearance:textfield;
}

.qty-control .qty-input::-webkit-outer-spin-button,
.qty-control .qty-input::-webkit-inner-spin-button{
  -webkit-appearance:none;
  margin:0;
}

.recommend-panel{
  margin-top:16px;
  padding:16px;
}

.recommend-panel h2,
.cart-panel h2,
.checkout-panel h2,
.order-summary h2{
  margin:0 0 10px;
  font-size:20px;
}

.cart-layout,
.checkout-layout{
  margin-top:18px;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:16px;
}

.cart-panel,
.checkout-panel,
.order-summary{
  padding:16px;
}

.cart-table{
  width:100%;
  border-collapse:collapse;
  font-size:13px;
}

.cart-table th,
.cart-table td{
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:10px 8px;
  text-align:left;
  vertical-align:middle;
}

.cart-table th{
  color:var(--shop-muted);
  font-weight:700;
  font-size:12px;
}

.cart-item-meta{
  display:flex;
  align-items:center;
  gap:10px;
}

.cart-thumb{
  width:52px;
  height:64px;
  object-fit:cover;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.14);
}

.cart-summary-list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
}

.cart-summary-row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:14px;
}

.cart-summary-row.total{
  border-top:1px solid rgba(255,255,255,.14);
  padding-top:9px;
  font-size:17px;
  font-weight:900;
  color:#fff0cf;
}

.coupon-row{
  margin-top:10px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px;
}

.checkout-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.checkout-form .field-full{
  grid-column:1 / -1;
}

.checkout-form textarea{
  min-height:116px;
  resize:vertical;
}

.checkout-actions{
  margin-top:12px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.checkout-trust{
  margin-top:10px;
  color:var(--shop-muted);
  font-size:12px;
}

/* Order success + checkout summary helpers */
.order-summary .currency-switcher{
  justify-content:space-between;
  align-items:center;
}

.order-summary .currency-switcher select{
  max-width:150px;
}

.checkout-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:9px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:14px;
}

.checkout-item span{
  color:var(--shop-muted);
}

.checkout-item strong{
  font-weight:800;
  color:#fbf7ef;
  text-align:right;
}

.checkout-item.total{
  border-bottom:0;
  border-top:1px solid rgba(255,255,255,.14);
  margin-top:2px;
  padding-top:12px;
  font-size:17px;
}

.checkout-item.total span,
.checkout-item.total strong{
  color:#fff0cf;
}

.order-success-page .recommend-panel{
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
  padding:20px 22px;
}

.order-success-page .list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:8px;
}

.order-success-page .list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--shop-muted);
  font-size:13px;
}

.order-success-page .tick{
  width:18px;
  height:18px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(119,211,158,.18);
  border:1px solid rgba(119,211,158,.42);
  color:#d5f5e5;
  font-size:11px;
  font-weight:900;
  flex:0 0 auto;
}

.order-number{
  display:inline-flex;
  border:1px solid rgba(201,169,106,.35);
  background:rgba(201,169,106,.10);
  color:#f5dfb7;
  border-radius:999px;
  padding:5px 10px;
  font-size:12px;
  font-weight:800;
}

.empty-state{
  text-align:center;
  padding:34px 20px;
  border:1px dashed rgba(255,255,255,.2);
  border-radius:16px;
  background:rgba(255,255,255,.03);
}

.empty-state h2{
  margin:0 0 8px;
  font-size:22px;
}

.empty-state p{
  margin:0;
  color:var(--shop-muted);
}

@media (max-width: 1080px){
  .shop-grid,
  .favorites-grid,
  .recommend-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .shop-toolbar{
    grid-template-columns:1fr 1fr;
  }
  .product-layout,
  .cart-layout,
  .checkout-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width: 780px){
  .shop-page,
  .product-page,
  .cart-page,
  .checkout-page,
  .favorites-page{
    padding:18px 0 44px;
  }

  .shop-shell{padding:0 14px}
  .shop-hero{padding:16px}

  .shop-grid,
  .favorites-grid,
  .recommend-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }

  .product-actions{
    grid-template-columns:1fr 42px;
  }

  .product-cta-row{
    grid-template-columns:1fr;
  }

  .cart-table thead{
    display:none;
  }

  .cart-table,
  .cart-table tbody,
  .cart-table tr,
  .cart-table td{
    display:block;
    width:100%;
  }

  .cart-table tr{
    border:1px solid rgba(255,255,255,.1);
    border-radius:12px;
    margin-bottom:10px;
    overflow:hidden;
    background:rgba(255,255,255,.03);
  }

  .cart-table td{
    border-bottom:1px solid rgba(255,255,255,.07);
    padding:10px;
  }

  .cart-table td:last-child{
    border-bottom:0;
  }

  .checkout-form{
    grid-template-columns:1fr;
  }

  .order-summary .currency-switcher{
    width:100%;
  }

  .order-summary .currency-switcher select{
    max-width:none;
  }

  .checkout-item{
    font-size:13px;
  }

  .checkout-item.total{
    font-size:15px;
  }

  .order-success-page .recommend-panel{
    padding:16px;
  }

  .order-success-page .checkout-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
  }

  .order-success-page .checkout-actions .shop-btn,
  .order-success-page .checkout-actions .shop-btn-secondary{
    width:100%;
  }
}

@media (max-width: 520px){
  .shop-grid,
  .favorites-grid,
  .recommend-grid{
    grid-template-columns:1fr;
  }

  .coupon-row{
    grid-template-columns:1fr;
  }

  .shop-toolbar{
    grid-template-columns:1fr;
  }
}

/* ===== Kirisha Fashion premium webshop refresh ===== */
:root{
  --shop-bg-ink:#06070a;
  --shop-bg-panel:#0d1016;
  --shop-bg-panel-2:#10141b;
  --shop-text:#fbf7ef;
  --shop-text-soft:rgba(251,247,239,.76);
  --shop-line:rgba(255,255,255,.10);
  --shop-line-strong:rgba(201,169,106,.24);
  --shop-gold-1:#ead39c;
  --shop-gold-2:#bf9444;
  --shop-gold-3:#8a6422;
  --shop-shadow-deep:0 24px 80px rgba(0,0,0,.48);
  --shop-shadow-card:0 18px 45px rgba(0,0,0,.30);
}

body{
  color:var(--shop-text);
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  font-feature-settings:"kern" 1, "liga" 1, "ss01" 1;
}

.shop-page,
.product-page,
.cart-page,
.checkout-page,
.favorites-page{
  background:
    radial-gradient(1000px 420px at 50% 0%, rgba(201,169,106,.12), transparent 58%),
    radial-gradient(900px 360px at 0% 18%, rgba(255,255,255,.05), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,0));
}

.shop-shell{
  position:relative;
}

.shop-hero,
.product-panel,
.product-gallery,
.cart-panel,
.checkout-panel,
.order-summary,
.recommend-panel,
.empty-state,
.shop-alert,
.shop-notice{
  box-shadow:var(--shop-shadow-card);
}

.shop-hero{
  padding:28px;
  border-radius:24px;
  background:
    radial-gradient(800px 360px at 100% 0%, rgba(201,169,106,.14), transparent 56%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  backdrop-filter:blur(8px);
}

.shop-hero h1,
.product-title,
.recommend-panel h2,
.cart-panel h2,
.checkout-panel h2,
.order-summary h2,
.empty-state h2{
  font-family:"Palatino Linotype","Book Antiqua",Georgia,serif;
  letter-spacing:.01em;
}

.shop-hero h1{
  text-wrap:balance;
}

.shop-subtitle,
.product-subtitle,
.product-description,
.shop-muted,
.product-meta-line,
.checkout-trust{
  color:var(--shop-text-soft);
}

.shop-toolbar{
  gap:12px;
}

.shop-toolbar input,
.shop-toolbar select,
.currency-switcher select,
.shop-select,
.qty-input,
.checkout-form input,
.checkout-form textarea,
.checkout-form select{
  min-height:48px;
  border-radius:14px;
  border-color:rgba(255,255,255,.12);
  background:rgba(6,7,10,.55);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.shop-toolbar input::placeholder,
.checkout-form input::placeholder,
.checkout-form textarea::placeholder{
  color:rgba(251,247,239,.42);
}

.shop-toolbar input:focus,
.shop-toolbar select:focus,
.currency-switcher select:focus,
.shop-select:focus,
.qty-input:focus,
.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus{
  border-color:rgba(201,169,106,.45);
  box-shadow:0 0 0 3px rgba(201,169,106,.14), inset 0 1px 0 rgba(255,255,255,.03);
}

.shop-btn,
.shop-btn-secondary,
.shop-icon-btn,
.qty-btn{
  min-height:44px;
  border-radius:13px;
  border-color:rgba(255,255,255,.10);
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
}

.shop-btn{
  background:linear-gradient(180deg, var(--shop-gold-1), var(--shop-gold-2));
  color:#23190e;
  box-shadow:0 14px 32px rgba(191,148,68,.20);
}

.shop-btn:hover,
.shop-btn-secondary:hover,
.shop-icon-btn:hover,
.qty-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(201,169,106,.30);
}

.shop-btn:active,
.shop-btn-secondary:active,
.shop-icon-btn:active,
.qty-btn:active{
  transform:translateY(0);
}

.shop-btn-secondary{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  color:var(--shop-text);
}

.shop-alert,
.shop-notice,
.shop-empty{
  border-radius:16px;
  border-color:rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  backdrop-filter:blur(8px);
}

.product-card{
  border-radius:20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(12,14,18,.98), rgba(9,10,14,.96));
  border-color:rgba(255,255,255,.10);
}

.product-card:hover{
  box-shadow:var(--shop-shadow-deep);
  border-color:rgba(201,169,106,.28);
}

.product-media{
  background:
    radial-gradient(300px 180px at 50% 0%, rgba(201,169,106,.12), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}

.product-media img{
  transition:transform .34s ease, filter .34s ease;
}

.product-card:hover .product-media img{
  transform:scale(1.02);
  filter:saturate(1.03) contrast(1.03);
}

.product-body{
  padding:15px;
}

.product-title-sm{
  font-size:16px;
  letter-spacing:.01em;
}

.price-main{
  font-size:19px;
}

.price-compare{
  color:rgba(251,247,239,.48);
}

.stock-line{
  display:inline-flex;
  align-self:flex-start;
  align-items:center;
  min-height:24px;
  padding:4px 9px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.stock-line.is-in{
  background:rgba(119,211,158,.10);
  border-color:rgba(119,211,158,.25);
}

.stock-line.is-low{
  background:rgba(242,208,138,.10);
  border-color:rgba(242,208,138,.25);
}

.stock-line.is-out{
  background:rgba(239,138,138,.10);
  border-color:rgba(239,138,138,.25);
}

.product-actions{
  gap:10px;
}

.shop-icon-btn{
  width:44px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.shop-icon-btn.is-active{
  background:rgba(201,169,106,.14);
  color:#f6ddb0;
  border-color:rgba(201,169,106,.40);
}

.product-layout{
  align-items:start;
}

.product-gallery{
  overflow:hidden;
  position:relative;
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(201,169,106,.12), transparent 56%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}

.product-gallery img{
  aspect-ratio:4/5;
  object-fit:cover;
}

.product-gallery-main,
.product-gallery-frame{
  display:block;
  border-radius:0;
}

.product-gallery-thumbs,
.product-thumbs,
.gallery-thumbs{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(66px,1fr));
  gap:10px;
  margin-top:12px;
}

.product-gallery-thumb,
.product-thumb,
.gallery-thumb{
  position:relative;
  overflow:hidden;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  cursor:pointer;
  transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.product-gallery-thumb img,
.product-thumb img,
.gallery-thumb img{
  display:block;
  width:100%;
  aspect-ratio:1 / 1.15;
  object-fit:cover;
}

.product-gallery-thumb:hover,
.product-thumb:hover,
.gallery-thumb:hover{
  transform:translateY(-1px);
  border-color:rgba(201,169,106,.32);
}

.product-gallery-thumb.is-active,
.product-thumb.is-active,
.gallery-thumb.is-active{
  border-color:rgba(201,169,106,.62);
  box-shadow:0 0 0 3px rgba(201,169,106,.14);
}

.product-gallery-thumb.is-active::after,
.product-thumb.is-active::after,
.gallery-thumb.is-active::after{
  content:"";
  position:absolute;
  inset:auto 8px 8px 8px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--shop-gold-1), var(--shop-gold-2));
}

.qty-control{
  border-radius:14px;
  border-color:rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.qty-control .qty-btn{
  background:rgba(255,255,255,.04);
  color:var(--shop-text);
}

.qty-control .qty-input{
  background:rgba(6,7,10,.40);
  font-weight:800;
  letter-spacing:.01em;
}

.cart-panel,
.checkout-panel,
.order-summary{
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(12,14,18,.98), rgba(8,9,12,.98));
  border-color:rgba(255,255,255,.10);
}

.cart-table{
  overflow:hidden;
}

.cart-table th{
  padding:12px 8px;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(251,247,239,.56);
}

.cart-table td{
  border-bottom-color:rgba(255,255,255,.08);
  padding:12px 8px;
}

.cart-table tr:last-child td{
  border-bottom:0;
}

.cart-item-meta{
  gap:12px;
}

.cart-thumb{
  border-radius:10px;
  border-color:rgba(255,255,255,.12);
  box-shadow:0 10px 24px rgba(0,0,0,.20);
}

.cart-summary-list{
  gap:10px;
}

.cart-summary-row{
  font-size:14px;
}

.cart-summary-row strong{
  font-weight:800;
}

.cart-summary-row.total{
  padding-top:12px;
  margin-top:2px;
  color:#fff1d1;
}

.cart-summary-row.total strong{
  color:#fff1d1;
}

.coupon-row{
  margin-top:14px;
}

.coupon-row input{
  min-height:46px;
}

.checkout-actions{
  gap:10px;
}

.checkout-actions .shop-btn,
.checkout-actions .shop-btn-secondary{
  min-width:160px;
}

.checkout-item{
  padding:10px 0;
}

.checkout-item.total{
  color:#fff1d1;
}

.empty-state{
  background:
    radial-gradient(640px 220px at 50% 0%, rgba(201,169,106,.11), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
}

.order-number{
  box-shadow:0 10px 24px rgba(0,0,0,.14);
}

.recommend-panel h2{
  margin-bottom:14px;
}

.recommend-grid,
.shop-grid,
.favorites-grid{
  gap:16px;
}

.currency-switcher{
  gap:10px;
}

.currency-switcher label{
  color:rgba(251,247,239,.68);
}

.nav a .nav-count,
.nav a .count-badge,
.nav a .badge-count,
.nav a .mini-badge,
.topbar .nav-count,
.topbar .count-badge,
.topbar .badge-count,
.topbar .mini-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:22px;
  height:22px;
  padding:0 7px;
  margin-left:8px;
  border-radius:999px;
  border:1px solid rgba(201,169,106,.28);
  background:linear-gradient(180deg, rgba(201,169,106,.18), rgba(201,169,106,.08));
  color:#f7e0b4;
  font-size:11px;
  line-height:1;
  font-weight:800;
  vertical-align:middle;
}

.nav a:hover .nav-count,
.nav a:hover .count-badge,
.nav a:hover .badge-count,
.nav a:hover .mini-badge{
  border-color:rgba(201,169,106,.42);
}

.shop-eyebrow{
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.product-description{
  font-size:14px;
}

.product-panel .checkout-actions{
  margin-top:16px;
}

.recommend-panel,
.cart-panel,
.checkout-panel,
.order-summary{
  border-radius:20px;
}

.shop-toolbar .shop-btn-secondary,
.product-cta-row .shop-btn-secondary,
.checkout-actions .shop-btn-secondary{
  background:rgba(255,255,255,.04);
}

.shop-toolbar .shop-btn-secondary:hover,
.product-cta-row .shop-btn-secondary:hover,
.checkout-actions .shop-btn-secondary:hover{
  background:rgba(255,255,255,.06);
}

@media (max-width: 1080px){
  .shop-hero{
    padding:24px;
  }
  .product-layout,
  .cart-layout,
  .checkout-layout{
    gap:14px;
  }
  .product-gallery-thumbs,
  .product-thumbs,
  .gallery-thumbs{
    grid-template-columns:repeat(auto-fit,minmax(58px,1fr));
  }
}

@media (max-width: 780px){
  .shop-hero{
    padding:18px;
    border-radius:20px;
  }
  .shop-hero h1{
    font-size:clamp(30px,8vw,40px);
  }
  .product-body{
    padding:14px;
  }
  .product-title-sm{
    font-size:15px;
  }
  .cart-table tr{
    box-shadow:0 12px 28px rgba(0,0,0,.18);
  }
  .cart-table td{
    padding:11px 10px;
  }
  .cart-item-meta{
    align-items:flex-start;
  }
  .cart-thumb{
    width:56px;
    height:70px;
  }
  .checkout-actions .shop-btn,
  .checkout-actions .shop-btn-secondary{
    min-width:0;
    width:100%;
  }
}

@media (max-width: 520px){
  .shop-toolbar input,
  .shop-toolbar select,
  .currency-switcher select,
  .qty-input,
  .checkout-form input,
  .checkout-form textarea,
  .checkout-form select{
    min-height:46px;
  }
  .product-actions{
    grid-template-columns:1fr 44px;
  }
  .product-cta-row{
    gap:10px;
  }
  .qty-control{
    grid-template-columns:40px 1fr 40px;
  }
  .cart-table tr{
    margin-bottom:12px;
  }
  .cart-table td{
    padding:10px;
  }
  .cart-summary-row{
    font-size:13px;
  }
  .nav a .nav-count,
  .nav a .count-badge,
  .nav a .badge-count,
  .nav a .mini-badge{
    min-width:20px;
    height:20px;
    margin-left:6px;
    padding:0 6px;
    font-size:10px;
  }
}
