:root{
  --gm-accent:#af8455;
  --gm-dark:#2b0b39;
  --gm-neutral:#6a6670;
  --gm-line:rgba(43,11,57,.08);
  --gm-line-strong:rgba(43,11,57,.12);
  --gm-card-bg:rgba(255,255,255,.96);
  --gm-soft:#f6f3f0;
  --gm-shadow:0 16px 40px rgba(0,0,0,.05);
  --gm-shadow-soft:0 10px 24px rgba(0,0,0,.04);
}

/* BUTTONS */

.gm-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(43,11,57,.10);
  text-decoration:none;
  font:inherit;
  font-weight:650;
  font-size:.95rem;
  cursor:pointer;
  transition:.18s ease;
}

.gm-btn--primary,
.gm-btn-primary{
  background:#2b0b39;
  color:#fff;
  border-color:#2b0b39;
}

.gm-btn--primary:hover,
.gm-btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(43,11,57,.14);
}

.gm-btn--secondary,
.gm-btn-secondary{
  background:#fff;
  color:#2b0b39;
  border-color:rgba(43,11,57,.12);
}

.gm-btn--secondary:hover,
.gm-btn-secondary:hover{
  background:rgba(43,11,57,.04);
}

/* CART BADGE */

.shop-cart-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:var(--gm-dark);
}

.gm-cart-badge{
  display:none;
  align-items:center;
  justify-content:center;
  min-width:20px;
  height:20px;
  padding:0 6px;
  border-radius:999px;
  font-size:12px;
  background:var(--gm-dark);
  color:#fff;
}

.cart-link{
  position:relative;
  width:32px;
  height:32px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(255,255,255,.78);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--brand);
  box-shadow:0 1px 0 rgba(255,255,255,.65) inset, 0 10px 24px rgba(0,0,0,.06);
  text-decoration:none;
}

.cart-link:hover{
  background:#fff;
  text-decoration:none;
  transform:translateY(-1px);
}

.cart-icon{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.cart-count{
  position:absolute;
  top:-5px;
  right:-5px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  font-size:11px;
  font-weight:800;
  line-height:18px;
  text-align:center;
  box-shadow:0 4px 10px rgba(0,0,0,.18);
}

.cart-count.is-empty{
  display:none;
}




/* SHOP PAGE */

.shop-page{
  padding:clamp(20px,3vw,40px) 0 36px;
  background:
    radial-gradient(circle at top right, rgba(175,132,85,.08), transparent 24%),
    radial-gradient(circle at top left, rgba(43,11,57,.05), transparent 26%);
}

.shop-shell{
  display:grid;
  gap:14px;
}

.shop-head{
  max-width:760px;
  margin-bottom:10px;
}

.shop-kicker{
  margin:0 0 10px;
  font-size:.7rem;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:#9a7a58;
  font-weight:700;
}

.shop-head h1{
  margin:6px 0 0;
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.01em;
  color:rgba(43,11,57,.38);
  line-height:1.5;
}

.shop-lead{
  margin:0;
  max-width:44ch;
  font-size:1.05rem;
  font-weight:700;
  line-height:1.55;
  letter-spacing:-.01em;
  color:#2b0b39;
}

#shop-discount-banner{ margin-bottom:14px; }
#shop-discount-banner span{ font-size:12px; }

.shop-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
  padding:0;
}

@media (max-width:640px){
  .shop-grid{
    grid-template-columns:1fr;
  }
}

.shop-product{
  background:#fff;
  border:1px solid rgba(43,11,57,.07);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 4px 18px rgba(43,11,57,.07), 0 1px 4px rgba(43,11,57,.04);
  transition:transform .3s ease, box-shadow .3s ease;
  position:relative;
  display:flex;
  flex-direction:row;
  align-items:stretch;
  transform:translateZ(0);
}

.shop-product:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 40px rgba(0,0,0,.09);
}

.shop-product-img-link{
  width:38%;
  flex-shrink:0;
  display:block;
  text-decoration:none;
}

.shop-product-image{
  width:100%;
  height:100%;
  min-height:150px;
  background:#fff;
  border-radius:20px 0 0 20px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 8px;
  position:relative;
}

.shop-product-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  transition:transform .35s ease;
}

.shop-product:hover .shop-product-image img{
  transform:scale(1.04);
}

.shop-product-content{
  flex:1;
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:12px 12px 10px;
  position:relative;
}

.shop-product-text-link{
  display:block;
  text-decoration:none;
  color:inherit;
  margin-bottom:auto;
}

.shop-product-foot{
  margin-top:8px;
}

.shop-product-variants{
  display:flex;
  gap:.4rem;
  margin-bottom:.45rem;
}

.shop-product-variants .variant-btn{
  font-size:.76rem;
  padding:0 10px;
  min-height:28px;
}

.shop-product-price-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:.45rem;
}

.shop-product-price-row [data-price-wrap]{
  font-size:1.1rem;
  font-weight:800;
  line-height:1.2;
  color:#2b0b39;
}

.shop-product-price-row [data-stock-wrap]{
  margin-top:0;
}

.shop-add-btn{
  width:100%;
  font-size:.88rem;
  min-height:36px;
  border-radius:12px;
}

.product-species{
  margin:0 0 4px;
  color:#9a7a58;
  font-size:.68rem;
  letter-spacing:.09em;
  text-transform:uppercase;
  font-weight:700;
}

.shop-product h2{
  margin:0;
  color:#2b0b39;
  font-size:1.05rem;
  letter-spacing:-.02em;
  line-height:1.2;
}

.product-desc{
  display:none;
}

.product-price{
  margin:16px 0 0;
  color:#2b0b39;
  font-size:1.2rem;
  font-weight:850;
}

.product-link{
  display:inline-flex;
  margin-top:14px;
  color:#2b0b39;
  font-weight:750;
  border-bottom:1px solid rgba(43,11,57,.25);
}

.shop-manifesto{
  padding:16px 0 4px;
}

.shop-manifesto-intro{
  margin-bottom:22px;
}

.shop-manifesto-label{
  font-size:.66rem;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:#9a7a58;
  font-weight:700;
  margin:0 0 10px;
}

.shop-manifesto-title{
  font-size:clamp(1.9rem,6vw,2.8rem);
  font-weight:800;
  color:#2b0b39;
  letter-spacing:-.04em;
  line-height:.95;
  margin:0 0 14px;
}

.shop-manifesto-text{
  font-size:.88rem;
  color:rgba(43,11,57,.58);
  line-height:1.65;
  max-width:40ch;
  margin:0;
}

.shop-process{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  border-radius:18px;
  overflow:hidden;
  background:
    radial-gradient(ellipse at 88% 14%, rgba(175,132,85,.11) 0%, transparent 56%),
    rgba(43,11,57,.06);
  box-shadow:0 2px 16px rgba(43,11,57,.05), 0 1px 4px rgba(43,11,57,.03);
}

.shop-process-item{
  background:rgba(255,255,255,.88);
  padding:14px 16px;
  display:block;
  text-decoration:none;
  color:inherit;
}

.shop-process-item--link{
  transition:background .2s ease, transform .22s ease;
  cursor:pointer;
}

.shop-process-item--link:hover{
  background:rgba(255,255,255,.78);
  transform:translateY(-1px);
}

}

.shop-process-item strong{
  display:block;
  font-size:.84rem;
  color:#2b0b39;
  font-weight:700;
  margin-bottom:3px;
}

.shop-process-item span{
  font-size:.76rem;
  color:rgba(43,11,57,.52);
  line-height:1.45;
}

.shop-seo-text{
  font-size:.72rem;
  color:rgba(43,11,57,.32);
  line-height:1.7;
  margin:0;
}

/* PRODUCT PAGE */

.product-page{
  padding:clamp(28px,4vw,56px) 0 72px;
  background:
    radial-gradient(circle at top right, rgba(175,132,85,.10), transparent 24%),
    radial-gradient(circle at top left, rgba(43,11,57,.06), transparent 26%);
}

.product-shell{
  display:grid;
  gap:24px;
}

.product-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,460px);
  gap:24px;
  align-items:start;
}

.product-card{
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.91));
  border:1px solid rgba(43,11,57,.08);
  border-radius:28px;
  box-shadow:var(--gm-shadow);
}

.product-copy{
  padding:clamp(26px,4vw,42px);
}

.product-kicker{
  margin:0 0 12px;
  font-size:.82rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#8a6a48;
  font-weight:800;
}

.product-title{
  margin:0 0 18px;
  font-size:clamp(2.4rem,5vw,4.6rem);
  line-height:.98;
  color:#2b0b39;
  letter-spacing:-.05em;
}

.product-sub{
  margin:0;
  max-width:58ch;
  font-size:1rem;
  line-height:1.82;
  color:rgba(43,11,57,.74);
}

.product-sub + .product-sub{
  margin-top:14px;
}

.product-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:26px;
}

.product-buy{
  padding:14px;
  position:sticky;
  top:96px;
}

.product-buy-inner{
  display:grid;
  gap:14px;
}

.product-image-wrap{
  display:block;
  width:100%;
  aspect-ratio:4/5;
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(43,11,57,.06);
}

.product-image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease, filter .35s ease;
}

.product-image-wrap:hover img{
  transform:scale(1.035);
  filter:brightness(1.03) contrast(1.03);
}

.hero-buy{
  padding:20px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(43,11,57,.08);
  box-shadow:var(--gm-shadow-soft);
}

.variant-picker{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
}

.variant-btn{
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(43,11,57,.12);
  background:#fff;
  color:#2b0b39;
  font-weight:650;
  font-size:.95rem;
  cursor:pointer;
  transition:.18s ease;
}

.variant-btn.is-active{
  background:#2b0b39;
  color:#fff;
  border-color:#2b0b39;
}

.variant-current{
  margin:0 0 8px;
  color:rgba(43,11,57,.56);
  font-size:.8rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:800;
}

.hero-buy .price{
  margin:0 0 4px;
  font-size:2.05rem;
  line-height:1;
  color:#2b0b39;
  font-weight:850;
  letter-spacing:-.03em;
}

.hero-buy .price-note{
  margin:0;
  color:rgba(43,11,57,.56);
  font-size:.98rem;
}

.product-bullets{
  margin:16px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:9px;
}

.product-bullets li{
  position:relative;
  padding-left:22px;
  color:rgba(43,11,57,.78);
  line-height:1.55;
  font-size:.95rem;
}

.product-bullets li::before{
  content:"";
  position:absolute;
  left:0;
  top:.58em;
  width:7px;
  height:7px;
  border-radius:999px;
  background:#af8455;
}

.product-actions-buy{
  margin-top:18px;
}

.mini-note{
  margin:12px 0 0;
  font-size:.9rem;
  color:rgba(43,11,57,.58);
  line-height:1.6;
}

.product-meta{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:rgba(43,11,57,.08);
  border-radius:22px;
  overflow:hidden;
}

.product-meta-item{
  background:#fff;
  padding:16px 18px;
}

.product-meta-label{
  display:block;
  margin-bottom:6px;
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(43,11,57,.55);
}

.product-meta-value{
  color:#2b0b39;
  font-weight:750;
  line-height:1.4;
}

.product-grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.info-tile{
  padding:22px;
  border:1px solid rgba(43,11,57,.08);
  border-radius:22px;
  background:rgba(255,255,255,.92);
  box-shadow:var(--gm-shadow-soft);
}

.info-tile h3{
  margin:0 0 10px;
  color:#2b0b39;
}

.info-tile p{
  margin:0;
  color:rgba(43,11,57,.72);
  line-height:1.65;
}

/* STORY SECTIONS (Surovina / Kakovost) */

.product-story{
  padding:clamp(26px,4vw,42px);
}

.product-story-grid{
  display:grid;
  grid-template-columns:200px 1fr;
  gap:2rem 3rem;
  align-items:start;
}

.product-story-grid h2{
  margin:0 0 .35rem;
  font-size:1.65rem;
  color:#2b0b39;
  letter-spacing:-.03em;
  line-height:1.15;
}

.product-story p{
  color:rgba(43,11,57,.74);
  line-height:1.82;
  margin:0;
}

.product-story p+p{
  margin-top:14px;
}

@media(max-width:760px){
  .product-story-grid{
    grid-template-columns:1fr;
    gap:.75rem;
  }
}

/* ACCORDION ON PRODUCT PAGE */

.product-accordion{
  padding:8px;
}

.acc-item{
  border-top:1px solid rgba(43,11,57,.08);
}

.acc-item:first-child{
  border-top:0;
}

.acc-btn{
  width:100%;
  padding:18px 14px;
  border:0;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  cursor:pointer;
  text-align:left;
  color:#2b0b39;
  font-size:1rem;
  font-weight:800;
}

.acc-btn::after{
  content:"+";
  width:28px;
  height:28px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(175,132,85,.12);
  color:#af8455;
  font-size:1.15rem;
  line-height:1;
  flex:0 0 auto;
}

.acc-item.is-open .acc-btn::after{
  content:"–";
}

.acc-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .28s ease;
}

.acc-content-inner{
  padding:0 14px 18px;
  color:rgba(43,11,57,.76);
  line-height:1.7;
}

.acc-content-inner p{
  margin:0;
}

.acc-content-inner p + p{
  margin-top:12px;
}

.acc-content-inner ul{
  margin:10px 0 0;
  padding-left:18px;
}

/* RESPONSIVE */

@media (max-width:1100px){
  .product-hero{
    grid-template-columns:1fr;
  }

  .product-buy{
    position:static;
    top:auto;
    padding:0;
  }

  .product-buy-inner{
    grid-template-columns:1fr 1fr;
    align-items:start;
  }
}

@media (max-width:980px){
  .product-grid-3{
    grid-template-columns:1fr;
  }

  .shop-product{
    max-width:520px;
  }

  .product-meta{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:760px){
  .product-buy-inner{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .shop-page,
  .product-page{
    padding-top:24px;
  }

  .shop-product-body,
  .product-copy,
  .hero-buy,
  .info-tile{
    padding:20px;
  }

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

  .product-title{
    font-size:clamp(2rem,11vw,3rem);
  }

  .product-sub{
    font-size:.98rem;
    line-height:1.74;
  }
}
/* DISCOUNT BADGE */
.gm-discount-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 2;
  background: rgba(175,132,85,.10);
  color: #7a5530;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .18rem .45rem;
  border-radius: 5px;
  border: 1px solid rgba(175,132,85,.22);
  pointer-events: none;
}

/* Badge pozicija na kartici (ne na sliki) */
.gm-shop-card {
  position: relative;
}

/*kosarica*/


.shop-head--left{
  text-align:left;
  margin:0 0 10px;
}

.cart-page .shop-head{
  max-width:760px;
}

.gm-cart-summary__row--total{
  padding-top:14px;
  margin-top:4px;
  border-top:1px solid rgba(43,11,57,.08);
  font-size:1.1rem;
}

.gm-cart-summary__row--total strong{
  font-size:1.35rem;
}

.gm-cart-summary__actions{
  display:grid;
  gap:10px;
  margin-top:6px;
}

.gm-cart-summary__actions .gm-btn{
  width:100%;
}

.gm-cart-empty[hidden]{
  display:none;
}
/* SHOP HEADER MOBILE */
@media (max-width:767px){
  #shop-header nav{
    position:absolute;
    top:100%;
    left:-14px;
    right:-14px;
    display:none;
    flex-direction:column;
    gap:8px;
    padding:10px 14px 14px;
    background:rgba(255,255,255,.92);
    backdrop-filter:saturate(160%) blur(10px);
    border-bottom:1px solid rgba(43,11,57,.08);
    z-index:100;
  }

  #shop-header.nav-open nav{
    display:flex;
  }

  #shop-header nav a{
    padding:10px 12px;
    border-radius:12px;
    border:1px solid rgba(0,0,0,.06);
    background:rgba(255,255,255,.78);
    font-size:15px;
    color:#2b0b39;
    text-decoration:none;
  }

  #shop-header nav a::after{
    display:none;
  }
}

