 :root{
  --dark:#050700;
  --olive:#161a0d;
  --gold:#d6b88b;
  --cream:#f5ead7;
  --text:#ffffff;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family:Arial,sans-serif;
  background:var(--dark);
  color:var(--text);
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

/* TOP BAR */

.top-bar{
  background:#000;
  color:var(--gold);
  text-align:center;
  padding:6px;
  font-size:13px;
  border-bottom:1px solid rgba(214,184,139,.08);
}

/* HEADER */

header{
  background:rgba(5,7,0,.96);
  border-bottom:1px solid rgba(214,184,139,.15);
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(8px);
}

.nav{
  max-width:1400px;
  margin:auto;

  display:grid;
  grid-template-columns:auto 1fr auto;

  align-items:center;
  gap:20px;

  min-height:82px;

  padding:0 14px;
}

/* LOGO */

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  height:150px;
  width:auto;
  display:block;
}

/* MENU */

.menu{
  display:flex;
  justify-content:center;
  align-items:center;

  gap:42px;

  font-weight:800;
  text-transform:uppercase;

  font-size:17px;
  letter-spacing:1px;
}

.menu a{
  position:relative;
  transition:.25s;
}

.menu a:hover{
  color:var(--gold);
}

.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;

  width:0;
  height:2px;

  background:var(--gold);
  transition:.25s;
}

.menu a:hover::after{
  width:100%;
}

/* ICONS */

.icons{
  display:flex;
  align-items:center;
  gap:18px;

  color:var(--gold);
}

.icons span{
  display:flex;
  align-items:center;
  justify-content:center;

  width:42px;
  height:42px;

  font-size:28px;
  cursor:pointer;

  transition:.25s;
}

.icons span:hover{
  transform:translateY(-2px) scale(1.05);
}

/* HERO */

.hero{
  min-height:760px;

  background:
    linear-gradient(90deg,
      rgba(0,0,0,.92) 0%,
      rgba(0,0,0,.72) 35%,
      rgba(0,0,0,.28) 100%
    ),
    url("hero.jpg") right center/cover no-repeat;

  display:flex;
  align-items:center;
}

.hero-inner{
  max-width:1400px;
  margin:auto;
  width:100%;

  padding:70px 40px;
}

.eyebrow{
  color:var(--gold);

  text-transform:uppercase;
  letter-spacing:5px;

  margin-bottom:20px;

  font-weight:700;
  font-size:15px;
}

h1{
  max-width:760px;

  font-size:84px;
  line-height:.95;

  color:#fff;

  margin-bottom:30px;
}

.hero p{
  max-width:620px;

  color:#ddd1bd;

  font-size:22px;
  line-height:1.6;

  margin-bottom:40px;
}

/* BUTTONS */

.btns{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn{
  padding:18px 34px;

  border-radius:999px;

  font-weight:800;
  text-transform:uppercase;

  font-size:15px;
  letter-spacing:.5px;

  transition:.25s;
}

.btn.gold{
  background:var(--gold);
  color:#111;
}

.btn.gold:hover{
  transform:translateY(-2px);
}

.btn.outline{
  border:1px solid var(--gold);
  color:var(--gold);
}

.btn.outline:hover{
  background:var(--gold);
  color:#111;
}

/* SECTIONS */

.section{
  max-width:1400px;
  margin:auto;

  padding:90px 30px;
}

.section-title{
  text-align:center;
  margin-bottom:45px;
}

.section-title h2{
  font-size:52px;
  color:var(--cream);
  margin-bottom:12px;
}

.section-title p{
  color:#c8baa0;
  font-size:18px;
}

/* CATEGORIES */

.cats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.cat{
  background:#101308;

  border:1px solid rgba(214,184,139,.16);

  border-radius:28px;

  padding:34px;

  min-height:220px;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  transition:.25s;
}

.cat:hover{
  transform:translateY(-6px);
  border-color:var(--gold);
}

.cat span{
  color:var(--gold);

  font-size:13px;

  text-transform:uppercase;
  letter-spacing:2px;
}

.cat h3{
  margin-top:14px;

  font-size:30px;
  color:var(--cream);
}

/* PRODUCTS */

.products{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.product{
  background:#f6ead7;
  color:#111;

  border-radius:30px;

  overflow:hidden;

  box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.product-img{
  height:260px;

  background:#e1c8a2;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#5a4a2d;
  font-weight:800;
}

.product-body{
  padding:24px;
}

.product h3{
  font-size:20px;
  margin-bottom:14px;
}

.price{
  color:#24230b;

  font-size:26px;
  font-weight:900;

  margin-bottom:18px;
}

.add{
  display:block;
  width:100%;

  border:none;

  background:#111407;
  color:var(--gold);

  padding:15px;

  border-radius:999px;

  font-weight:800;

  cursor:pointer;

  transition:.25s;
}

.add:hover{
  background:#1b1f10;
}

/* BANNER */

.banner{
  background:linear-gradient(135deg,#12160b,#000);

  border:1px solid rgba(214,184,139,.16);

  border-radius:36px;

  padding:56px;

  display:grid;
  grid-template-columns:1.2fr .8fr;

  gap:40px;
  align-items:center;
}

.banner h2{
  font-size:48px;

  color:var(--cream);

  margin-bottom:18px;
}

.banner p{
  color:#c8baa0;
  line-height:1.8;

  font-size:18px;
}

.banner-box{
  background:var(--gold);

  color:#111;

  border-radius:28px;

  padding:38px;

  text-align:center;

  font-weight:900;
  font-size:30px;
}

/* FOOTER */

footer{
  border-top:1px solid rgba(214,184,139,.12);

  padding:40px 20px;

  text-align:center;

  color:#b9aa90;

  background:#000;
}

/* RESPONSIVE */

@media(max-width:1100px){

  h1{
    font-size:64px;
  }

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

  .banner{
    grid-template-columns:1fr;
  }
}

@media(max-width:900px){

  .menu{
    display:none;
  }

  .hero{
    min-height:620px;
    background-position:center;
  }

  h1{
    font-size:52px;
  }

  .hero p{
    font-size:18px;
  }

  .logo img{
    height:72px;
  }

  .nav{
    min-height:72px;
  }
}

@media(max-width:520px){

  .cats,
  .products{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:560px;
  }

  h1{
    font-size:42px;
  }

  .hero-inner{
    padding:40px 20px;
  }

  .btn{
    width:100%;
    text-align:center;
  }

  .section{
    padding:60px 20px;
  }
}
/* FIXNE BOČNE AKCIJE */

.fixed-promo{
  position:fixed;
  top:180px;
  z-index:90;

  width:150px;

  background:rgba(5,7,0,.88);
  border:1px solid var(--gold);
  color:var(--cream);

  border-radius:26px;

  padding:22px 16px;

  text-align:center;

  box-shadow:0 20px 50px rgba(0,0,0,.45);
  backdrop-filter:blur(8px);
}

.fixed-left{
  left:18px;
}

.fixed-right{
  right:18px;
}

.fixed-promo h3{
  color:var(--cream);
  font-size:22px;
  line-height:1.2;
  text-transform:uppercase;
  margin-bottom:18px;
}

.fixed-promo p{
  color:#d8c6a9;
  font-size:14px;
  line-height:1.4;
  margin:10px 0;
}

.fixed-promo strong{
  display:block;
  color:var(--gold);
  font-size:23px;
  margin:10px 0 18px;
}

.fixed-promo span{
  display:block;
  height:1px;
  background:rgba(214,184,139,.45);
  margin:18px 0;
}

.fixed-promo b{
  display:block;
  color:var(--gold);
  font-size:46px;
  line-height:1;
  margin:12px 0;
}

.fixed-promo small{
  display:inline-block;
  margin-top:12px;
  padding:8px 12px;
  border:1px solid var(--gold);
  border-radius:999px;
  color:var(--gold);
  font-weight:800;
}

.fixed-promo a{
  display:inline-block;
  margin-top:16px;
  padding:12px 16px;
  border-radius:999px;
  background:var(--gold);
  color:#111;
  font-weight:900;
  text-transform:uppercase;
  font-size:13px;
}

.promo-icon{
  width:64px;
  height:64px;
  margin:0 auto 16px;

  border:1px solid var(--gold);
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:30px;
}

/* da ne smeta na manjim ekranima */
@media(max-width:1300px){
  .fixed-promo{
    display:none;
  }
}
/* MOBILE MENU */

.mobile-toggle{
  display:none;

  background:none;
  border:none;

  color:var(--gold);

  font-size:34px;
  cursor:pointer;
}

/* MOBILNI */

@media(max-width:900px){

  .mobile-toggle{
    display:block;
    justify-self:end;
  }

  .menu{
    position:fixed;

    top:78px;
    left:-100%;

    width:280px;
    height:100vh;

    background:#050700;

    flex-direction:column;
    justify-content:flex-start;
    align-items:flex-start;

    padding:40px 30px;

    gap:28px;

    transition:.35s;

    border-right:1px solid rgba(214,184,139,.18);

    z-index:999;
  }

  .menu.active{
    left:0;
  }

  .menu a{
    font-size:20px;
    width:100%;
  }

  .icons{
    margin-left:auto;
  }
}
@media(max-width:900px){

  .menu{
    position:fixed;
    top:78px;
    left:-100%;

    width:280px;
    height:100vh;

    background:#050700;

    display:flex;
    flex-direction:column;

    padding:40px 30px;

    gap:28px;

    transition:left .35s ease;

    z-index:9999;
  }

  .menu.active{
    left:0;
  }

}
.hero{
  position:relative;

  min-height:760px;

  overflow:hidden;

  display:flex;
  align-items:center;
}

.hero-bg{
  position:absolute;
  inset:0;
  z-index:1;
}

.hero-bg img{
  width:100%;
  height:100%;

  object-fit:cover;
  object-position:center;
}

.hero-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.88) 0%,
      rgba(0,0,0,.55) 35%,
      rgba(0,0,0,.15) 100%
    );

  z-index:2;
}

.hero-inner{
  position:relative;
  z-index:3;

  max-width:1400px;
  margin:auto;
  width:100%;

  padding:80px 40px;
}

.eyebrow{
  color:var(--gold);

  text-transform:uppercase;
  letter-spacing:5px;

  margin-bottom:22px;

  font-weight:700;
  font-size:15px;
}

.hero h1{
  max-width:760px;

  font-size:48px;
  line-height:.95;

  color:#fff;

  margin-bottom:30px;
}

.hero p{
  max-width:620px;

  color:#e7dcc9;

  font-size:22px;
  line-height:1.7;

  margin-bottom:42px;
}

/* MOBILE */

@media(max-width:900px){

  .hero{
    min-height:620px;
  }

  .hero h1{
    font-size:52px;
  }

  .hero p{
    font-size:18px;
  }

  .hero-inner{
    padding:50px 24px;
  }
}

@media(max-width:520px){

  .hero{
    min-height:540px;
  }

  .hero h1{
    font-size:40px;
  }

  .hero-inner{
    padding:40px 20px;
  }
}
.hero-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.45) 0%,
      rgba(0,0,0,.18) 38%,
      rgba(0,0,0,.10) 100%
    );

  z-index:2;
}
.hero-inner{
  position:relative;
  z-index:3;

  max-width:1400px;
  margin:auto;
  width:100%;

  min-height:760px;

  display:flex;
  align-items:center;
  justify-content:flex-end;

  padding:60px 80px;
}

.hero-content{
  width:100%;
  max-width:560px;

  margin-left:auto;
  margin-right:0;

  transform:translateX(120px);
}
.hero h1{
  text-align:left;
}

.hero p{
  text-align:left;
}

.btns{
  justify-content:flex-start;
}
/* MOBILE HERO */

@media(max-width:900px){

  .hero{
    min-height:720px;
  }

  .hero-inner{
    min-height:720px;

    justify-content:center;
    align-items:flex-end;

    padding:40px 20px 60px;
  }

  .hero-content{
    max-width:100%;

    transform:none;

    margin:0;

    text-align:center;

    background:rgba(0,0,0,.42);

    backdrop-filter:blur(4px);

    padding:26px 22px;

    border-radius:26px;
  }

  .hero h1{
    font-size:48px;
    line-height:.95;

    text-align:center;

    margin-bottom:18px;
  }

  .hero p{
    font-size:18px;
    line-height:1.6;

    text-align:center;

    margin-bottom:28px;
  }

  .eyebrow{
    text-align:center;
    font-size:13px;
    letter-spacing:3px;
  }

  .btns{
    justify-content:center;
  }

  .hero-bg img{
    object-position:center right;
  }
}

@media(max-width:520px){

  .hero{
    min-height:660px;
  }

  .hero-inner{
    min-height:660px;

    padding:30px 16px 40px;
  }

  .hero-content{
    padding:22px 18px;
    border-radius:22px;
  }

  .hero h1{
    font-size:20px;
  }

  .hero p{
    font-size:16px;
  }

  .btns{
    flex-direction:column;
    gap:14px;
  }

  .btn{
    width:100%;
    text-align:center;
  }

  .hero-bg img{
    object-position:62% center;
  }
}
.fixed-promo{
  position:fixed;
  top:180px;
  z-index:90;

  width:140px;

  border-radius:26px;

  overflow:visible;

  background:rgba(0,0,0,.72);

  border:1px solid var(--gold);

  backdrop-filter:blur(6px);

  box-shadow:0 20px 60px rgba(0,0,0,.55);
}

.fixed-right{
  right:18px;
}

.promo-food-image{
  width:100%;
  height:170px;

  margin-top:18px;
  margin-bottom:18px;

  overflow:hidden;

  border-top:1px solid rgba(214,184,139,.28);
  border-bottom:1px solid rgba(214,184,139,.28);
}

.promo-food-image img{
  width:100%;
  height:100%;

  object-fit:cover;

  display:block;
}

.fixed-right h3{
  color:var(--gold);

  font-size:19px;
  line-height:1.2;

  text-transform:uppercase;

  margin:26px 0 20px;

  font-weight:900;
}

.fixed-right p{
  color:#f3e3ca;

  font-size:14px;
  line-height:1.45;

  margin:10px 0;
}

.fixed-right b{
  display:block;

  color:var(--gold);

  font-size:38px;

  line-height:1;

  margin:14px 0 18px;

  font-weight:900;
}

.promo-food-image{
  width:100%;
  height:185px;

  margin-top:18px;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.12) 100%
    ),
    url("food.webp") center/cover no-repeat;

  border-top:1px solid rgba(214,184,139,.28);
  border-bottom:1px solid rgba(214,184,139,.28);
}

.fixed-right a{
  display:inline-block;

  margin:0 auto 38px;

  padding:14px 16px;

  border-radius:18px;

  background:linear-gradient(135deg,#f0c681,#d6a85f);

  color:#111;

  font-weight:900;

  text-transform:uppercase;

  font-size:13px;
  line-height:1.2;

  transition:.25s;
}

.fixed-right a:hover{
  transform:translateY(-2px);
}

.promo-paw{
  position:absolute;

  left:50%;
  bottom:-26px;

  transform:translateX(-50%);

  width:56px;
  height:56px;

  border-radius:50%;

  border:1px solid var(--gold);

  background:#050700;

  display:flex;
  align-items:center;
  justify-content:center;

  color:var(--gold);

  font-size:26px;

  box-shadow:0 10px 25px rgba(0,0,0,.4);
}

@media(max-width:1300px){
  .fixed-promo{
    display:none;
  }
}
.fixed-right .promo-bottom{
  margin-top:auto;
}
.fixed-promo{
  position:fixed;
  top:180px;
  right:18px;

  z-index:90;

  width:140px;

  border-radius:26px;

  overflow:visible;

  background:rgba(0,0,0,.78);

  border:1px solid var(--gold);

  backdrop-filter:blur(6px);

  box-shadow:0 20px 60px rgba(0,0,0,.55);
}

.promo-inner{
  position:relative;

  display:flex;
  flex-direction:column;

  min-height:560px;

  text-align:center;

  color:var(--cream);
}

.promo-top{
  padding:28px 12px 0;
}

.fixed-right h3{
  color:var(--gold);

  font-size:19px;
  line-height:1.2;

  text-transform:uppercase;

  margin-bottom:24px;

  font-weight:900;
}

.fixed-right p{
  color:#f3e3ca;

  font-size:14px;
  line-height:1.45;

  margin:10px 0;
}

.fixed-right b{
  display:block;

  color:var(--gold);

  font-size:54px;
  line-height:1;

  margin:14px 0 18px;

  font-weight:900;
}

.promo-bottom{
  margin-top:auto;
}

.promo-food-image{
  width:100%;
  height:175px;

  margin-top:18px;
  margin-bottom:18px;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.12) 100%
    ),
    url("food.webp") center/cover no-repeat;

  border-top:1px solid rgba(214,184,139,.28);
  border-bottom:1px solid rgba(214,184,139,.28);

  flex-shrink:0;
}

.fixed-right a{
  display:inline-block;

  margin:0 auto 38px;

  padding:14px 16px;

  border-radius:18px;

  background:linear-gradient(135deg,#f0c681,#d6a85f);

  color:#111;

  font-weight:900;

  text-transform:uppercase;

  font-size:13px;
  line-height:1.2;

  transition:.25s;
}

.fixed-right a:hover{
  transform:translateY(-2px);
}

.promo-paw{
  position:absolute;

  left:50%;
  bottom:-26px;

  transform:translateX(-50%);

  width:56px;
  height:56px;

  border-radius:50%;

  border:1px solid var(--gold);

  background:#050700;

  display:flex;
  align-items:center;
  justify-content:center;

  color:var(--gold);

  font-size:26px;

  box-shadow:0 10px 25px rgba(0,0,0,.4);
}

@media(max-width:1300px){
  .fixed-promo{
    display:none;
  }
}
  
/* =========================
   SOKO FINAL FIX - ZLATNE IKONICE I FIXNI SLAJDERI
   ========================= */

.icons{
  color:var(--gold) !important;
}

.icons span{
  color:var(--gold) !important;
}

.icon-heart{
  color:var(--gold) !important;
  font-size:36px !important;
  line-height:1;
}

.icon-cart svg{
  width:38px;
  height:38px;
  display:block;
  fill:none;
  stroke:var(--gold);
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.fixed-promo{
  position:fixed !important;
  top:180px !important;
  z-index:90 !important;
  width:140px !important;
  padding:0 !important;
  overflow:visible !important;
  background:rgba(0,0,0,.78) !important;
  border:1px solid var(--gold) !important;
  border-radius:26px !important;
  color:var(--cream) !important;
  text-align:center !important;
  box-shadow:0 20px 60px rgba(0,0,0,.55) !important;
  backdrop-filter:blur(6px);
}

.fixed-left{
  left:18px !important;
  right:auto !important;
}

.fixed-right{
  right:18px !important;
  left:auto !important;
}

.promo-inner{
  position:relative !important;
  min-height:560px !important;
  display:flex !important;
  flex-direction:column !important;
  text-align:center !important;
}

.promo-top{
  padding:26px 12px 0 !important;
}

.fixed-promo h3{
  color:var(--gold) !important;
  font-size:19px !important;
  line-height:1.2 !important;
  text-transform:uppercase !important;
  margin:0 0 22px !important;
  font-weight:900 !important;
}

.fixed-promo p{
  color:#f3e3ca !important;
  font-size:14px !important;
  line-height:1.45 !important;
  margin:10px 0 !important;
}

.fixed-promo strong{
  display:block !important;
  color:var(--gold) !important;
  font-size:23px !important;
  margin:12px 0 18px !important;
}

.fixed-promo b{
  display:block !important;
  color:var(--gold) !important;
  font-size:54px !important;
  line-height:1 !important;
  margin:14px 0 18px !important;
  font-weight:900 !important;
}

.fixed-left b{
  font-size:46px !important;
}

.fixed-promo small{
  display:inline-block !important;
  margin-top:12px !important;
  padding:8px 12px !important;
  border:1px solid var(--gold) !important;
  border-radius:999px !important;
  color:var(--gold) !important;
  font-weight:900 !important;
}

.promo-line{
  width:86%;
  height:1px;
  background:rgba(214,184,139,.45);
  margin:18px auto;
}

.promo-icon{
  width:66px !important;
  height:66px !important;
  margin:0 auto 18px !important;
  border:1px solid var(--gold) !important;
  border-radius:50% !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:var(--gold) !important;
}

.truck-icon svg{
  width:42px;
  height:42px;
  fill:none;
  stroke:var(--gold);
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.promo-bottom{
  margin-top:auto !important;
}

.promo-food-image{
  width:100% !important;
  height:175px !important;
  margin:18px 0 !important;
  background:
    linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,.12) 100%),
    url("food.webp") center/cover no-repeat !important;
  border-top:1px solid rgba(214,184,139,.28) !important;
  border-bottom:1px solid rgba(214,184,139,.28) !important;
  flex-shrink:0 !important;
}

.fixed-promo a{
  display:inline-block !important;
  margin:0 auto 38px !important;
  padding:14px 16px !important;
  border-radius:18px !important;
  background:linear-gradient(135deg,#f0c681,#d6a85f) !important;
  color:#111 !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  font-size:13px !important;
  line-height:1.2 !important;
  transition:.25s !important;
}

.promo-paw{
  position:absolute !important;
  left:50% !important;
  bottom:-26px !important;
  transform:translateX(-50%) !important;
  width:56px !important;
  height:56px !important;
  border-radius:50% !important;
  border:1px solid var(--gold) !important;
  background:#050700 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:var(--gold) !important;
  box-shadow:0 10px 25px rgba(0,0,0,.4) !important;
}

.promo-paw svg{
  width:34px;
  height:34px;
  fill:var(--gold);
  display:block;
}

@media(max-width:1300px){
  .fixed-promo{
    display:none !important;
  }
}
.promo-percent{
  display:block;

  color:var(--gold);

  font-size:38px;

  line-height:1;

  margin:14px 0 18px;

  font-weight:900;
}
.promo-food-image{
  width:100%;
  height:175px;

  margin-top:18px;
  margin-bottom:18px;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.12) 100%
    ),
    url("food.webp") center/cover no-repeat;

  border-top:1px solid rgba(214,184,139,.28);
  border-bottom:1px solid rgba(214,184,139,.28);
}
.cat{
  position:relative;
  overflow:hidden;
}

.cat-icon{
  width:100%;
  max-width:180px;

  margin:0 auto 24px;

  display:block;

  object-fit:contain;
}
.cats{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:nowrap;
}

.cat{
  width:220px;

  padding:18px;

  border-radius:22px;
}

.cat-icon{
  width:100%;
  max-width:150px;

  margin:auto;

  display:block;
}
@media(max-width:768px){

  .cats{
    flex-direction:column;
    align-items:center;

    gap:16px;
  }

  .cat{
    width:100%;
    max-width:260px;
  }

}
@media(max-width:768px){

  .cats{
    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:14px;

    justify-content:center;
  }

  .cat{
    width:100%;
    padding:12px;
  }

  .cat-icon{
    max-width:110px;
  }

}
@media(max-width:768px){

  .hero-bg img{
    object-fit:cover;

    object-position:center center;
  }

}
/* INFO */

.info-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.info-box{
  background:#101308;

  border:1px solid rgba(214,184,139,.16);

  border-radius:28px;

  padding:40px;
}

.info-box h2{
  color:var(--gold);

  font-size:34px;

  margin-bottom:20px;
}

.info-box p{
  color:#d8c6a9;

  line-height:1.8;

  font-size:17px;
}

/* BLOG */

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.blog-card{
  overflow:hidden;

  border-radius:28px;

 background:#f6ead7;

  border:1px solid rgba(214,184,139,.16);
}

.blog-image{
  height:240px;

  background:url("food.png") center/cover no-repeat;
}

.blog-body{
  padding:26px;
  background:#f6ead7;
}

.blog-body span{
  color:var(--gold);

  text-transform:uppercase;

  font-size:12px;

  letter-spacing:2px;
}

.blog-body h3{
  font-size:24px;

  color:var(--cream);

  margin:16px 0 22px;

  line-height:1.4;
}

.blog-body a{
  display:inline-block;

  padding:12px 18px;

  border-radius:999px;

  background:var(--gold);

  color:#111;

  font-weight:800;
}

/* FAQ */

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.faq-column{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.faq-item{
  background:#101308;

  border:1px solid rgba(214,184,139,.16);

  border-radius:22px;

  overflow:hidden;
}

.faq-question{
  width:100%;

  background:none;
  border:none;

  color:var(--cream);

  text-align:left;

  padding:22px;

  font-size:18px;
  font-weight:700;

  cursor:pointer;
}

.faq-answer{
  display:none;

  padding:0 22px 22px;

  color:#d8c6a9;

  line-height:1.7;
}

.faq-item.active .faq-answer{
  display:block;
}

/* MOBILE */

@media(max-width:768px){

  .info-grid,
  .blog-grid,
  .faq-grid{
    grid-template-columns:1fr;
  }

}
.blog-image{
  height:240px;
  overflow:hidden;
}

.blog-image img{
  width:100%;
  height:100%;

  object-fit:cover;

  display:block;
}
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:28px;
}

.blog-card{
  background:#fff;

  border-radius:0;

  overflow:hidden;

  box-shadow:0 10px 35px rgba(0,0,0,.12);

  transition:.25s;
}

.blog-card:hover{
  transform:translateY(-6px);
}

.blog-image{
  height:420px;

  overflow:hidden;
}

.blog-image img{
  width:100%;
  height:100%;

  object-fit:cover;

  display:block;

  transition:.35s;
}

.blog-card:hover .blog-image img{
  transform:scale(1.05);
}

.blog-body{
  padding:34px 34px 38px;

  background:#f7f5f1;
}

.blog-body span{
  display:block;

  color:#b8863b;

  text-transform:uppercase;

  letter-spacing:2px;

  font-size:14px;

  font-weight:700;

  margin-bottom:18px;
}

.blog-body h3{
  font-size:28px;

  line-height:1.3;

  color:#111;

  margin-bottom:22px;

  font-weight:900;
}

.blog-body p{
  color:#444;

  font-size:18px;

  line-height:1.8;

  margin-bottom:28px;
}

.blog-body a{
  display:inline-flex;
  align-items:center;
  gap:10px;

  color:#b8863b;

  font-weight:800;

  font-size:18px;

  transition:.25s;
}

.blog-body a:hover{
  transform:translateX(4px);
}

@media(max-width:1100px){

  .blog-grid{
    grid-template-columns:1fr;
  }

  .blog-image{
    height:320px;
  }

}
/* PRODUCTS PAGE */

.layout{
    display:flex;
    gap:30px;
    padding:40px;
    align-items:flex-start;
}

.sidebar{
    width:280px;
    background:#090909;
    border:1px solid rgba(212,175,55,0.15);
    border-radius:20px;
    padding:25px;
    position:sticky;
    top:20px;
}

.logo-title{
    color:#fff;
    font-size:34px;
    margin-bottom:25px;
}

.side-menu{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.side-menu a{
    color:#ddd;
    text-decoration:none;
    padding:12px 14px;
    border-radius:12px;
    transition:0.3s;
    font-weight:600;
    border:1px solid transparent;
}

.side-menu a:hover,
.side-menu a.active{
    background:##d6b88b;
    color:#000;
}

.help-box{
    margin-top:30px;
    padding:20px;
    border-radius:16px;
    background:#111;
    border:1px solid rgba(212,175,55,0.15);
}

.help-box h3{
    color:#fff;
    margin-bottom:10px;
}

.help-box p{
    color:#bbb;
    margin-bottom:15px;
}

.help-box button{
    width:100%;
    height:45px;
    border:none;
    border-radius:10px;
    background:##d6b88b;
    color:#000;
    font-weight:700;
    cursor:pointer;
}

.main-card{
    flex:1;
}

.breadcrumb{
    color:#999;
    margin-bottom:20px;
    font-size:14px;
}

.top-row h1{
    font-size:58px;
    color:#fff;
    margin-bottom:10px;
}

.top-row p{
    color:#aaa;
    margin-bottom:30px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:24px;
}

.product-card{
    background:#0b0b0b;
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,0.12);
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-4px);
    border-color:##d6b88b;
}

.product-card a{
    text-decoration:none;
}

.product-img{
    background:#d8c29d;
    height:260px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.product-img img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.card-body{
    padding:20px;
}

.product-title{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
    min-height:52px;
}

.price{
    color:##d6b88b;
    font-size:28px;
    font-weight:800;
    margin-bottom:18px;
}

.btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:50px;
    border-radius:12px;
    background:##d6b88b;
    color:#000;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

/* MOBILE */

@media(max-width:991px){

    .layout{
        flex-direction:column;
        padding:20px;
    }

    .sidebar{
        width:100%;
        position:relative;
        top:auto;
    }

    .top-row h1{
        font-size:42px;
    }

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

@media(max-width:600px){

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

    .top-row h1{
        font-size:34px;
    }
}
/* MOBILE ACCORDION SIDEBAR */

@media(max-width:991px){

    .sidebar{
        padding:0;
        overflow:hidden;
    }

    .logo-title{
        margin:0;
        padding:18px 20px;
        font-size:26px;
        cursor:pointer;
        display:flex;
        align-items:center;
        justify-content:space-between;
        background:#111;
        border-bottom:1px solid rgba(212,175,55,0.15);
    }

    .logo-title::after{
        content:"+";
        color:##d6b88b;
        font-size:28px;
        font-weight:700;
        transition:0.3s;
    }

    .sidebar.active .logo-title::after{
        content:"−";
    }

    .side-menu{
        max-height:0;
        overflow:hidden;
        transition:max-height 0.35s ease;
        padding:0 15px;
    }

    .sidebar.active .side-menu{
        max-height:1000px;
        padding:15px;
    }

    .help-box{
        display:none;
    }

    .side-menu a{
        margin-bottom:10px;
    }
}
/* PRODUCT DETAIL PAGE */

.detail-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
}

.gallery{
    display:grid;
    grid-template-columns:90px 1fr;
    gap:18px;
}

.thumbs{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.thumbs img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:14px;
    border:1px solid rgba(212,175,55,.25);
    background:#111;
}

.main-photo{
    background:#f6ead7;
    border-radius:26px;
    padding:25px;
    min-height:480px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.main-photo img{
    width:100%;
    max-height:520px;
    object-fit:contain;
}

.detail-info h1{
    color:#fff;
    font-size:46px;
    line-height:1.1;
    margin-bottom:18px;
}

.stars{
    color:##d6b88b;
    margin-bottom:18px;
    font-size:18px;
}

.detail-info .price{
    color:##d6b88b;
    font-size:42px;
    font-weight:900;
    margin:20px 0;
}

.detail-info p{
    color:#d8c6a9;
    font-size:18px;
    line-height:1.7;
    margin-bottom:14px;
}

.qty{
    display:flex;
    align-items:center;
    gap:14px;
    margin:25px 0;
    color:#fff;
}

.qty button{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid ##d6b88b;
    background:#111;
    color:##d6b88b;
    font-size:22px;
    cursor:pointer;
}

.qty b{
    font-size:22px;
}

.benefits{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:40px;
}

.benefit{
    background:#101308;
    border:1px solid rgba(212,175,55,.18);
    border-radius:20px;
    padding:22px;
    color:#d8c6a9;
    text-align:center;
    line-height:1.6;
}

.benefit b{
    color:#fff;
}

.article-content,
.product-description{
    margin-top:40px;
    color:#d8c6a9;
    font-size:18px;
    line-height:1.8;
}

.product-description h2,
.product-description h3{
    color:#fff;
    margin:25px 0 12px;
}

.product-description ul{
    padding-left:24px;
    margin:15px 0;
}

.product-description li{
    margin-bottom:8px;
}

@media(max-width:991px){

    .detail-grid{
        grid-template-columns:1fr;
    }

    .gallery{
        grid-template-columns:1fr;
    }

    .thumbs{
        flex-direction:row;
        order:2;
        overflow-x:auto;
    }

    .main-photo{
        min-height:320px;
    }

    .detail-info h1{
        font-size:34px;
    }

    .benefits{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){

    .benefits{
        grid-template-columns:1fr;
    }

    .detail-info h1{
        font-size:28px;
    }

    .detail-info .price{
        font-size:34px;
    }
}
.product-detail-page{
    padding:40px;
}

.product-detail-card{
    max-width:1500px;
    margin:0 auto;
}

.product-detail-card .breadcrumb{
    margin-bottom:25px;
}

.product-detail-card .detail-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:48px;
    align-items:start;
}

.product-detail-card .gallery{
    display:grid;
    grid-template-columns:80px 1fr;
    gap:18px;
}

.product-detail-card .thumbs img{
    width:80px;
    height:80px;
    object-fit:contain;
    background:#f6ead7;
    border-radius:14px;
    border:1px solid rgba(214,184,139,.35);
    padding:8px;
}

.product-detail-card .main-photo{
    background:#f6ead7;
    border-radius:26px;
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:35px;
}

.product-detail-card .main-photo img{
    max-width:100%;
    max-height:500px;
    object-fit:contain;
}

.product-detail-card .detail-info h1{
    font-size:44px;
    line-height:1.15;
    color:#fff;
    margin-bottom:18px;
}

.product-detail-card .stars{
    color:##d6b88b;
    margin-bottom:20px;
}

.product-detail-card .price{
    color:##d6b88b;
    font-size:44px;
    font-weight:900;
    margin:18px 0 24px;
}

.product-detail-card .detail-info p{
    color:#e7dcc9;
    font-size:17px;
    margin-bottom:14px;
}

.product-detail-card .qty{
    display:flex;
    align-items:center;
    gap:14px;
    color:#fff;
    margin:26px 0;
}

.product-detail-card .qty button{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#050700;
    border:1px solid ##d6b88b;
    color:##d6b88b;
    font-size:20px;
}

.product-detail-card .btn{
    max-width:100%;
    background:##d6b88b;
    color:#050700;
    border:none;
}

.product-description{
    margin-top:50px;
    color:#e7dcc9;
    font-size:18px;
    line-height:1.8;
}

.product-description h2{
    color:##d6b88b;
    font-size:34px;
    margin-bottom:20px;
}

.product-description h3{
    color:#fff;
    margin:24px 0 12px;
}

.product-description p{
    margin-bottom:16px;
}

.product-description ul{
    padding-left:24px;
    margin:16px 0;
}

.product-description li{
    margin-bottom:8px;
}

.product-detail-card .benefits{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:45px;
}

.product-detail-card .benefit{
    background:#101308;
    border:1px solid rgba(214,184,139,.18);
    border-radius:20px;
    padding:22px;
    color:#d8c6a9;
    text-align:center;
}

.product-detail-card .benefit b{
    color:#fff;
}

@media(max-width:991px){
    .product-detail-page{
        padding:22px;
    }

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

    .product-detail-card .gallery{
        grid-template-columns:1fr;
    }

    .product-detail-card .thumbs{
        display:none;
    }

    .product-detail-card .main-photo{
        min-height:330px;
    }

    .product-detail-card .detail-info h1{
        font-size:32px;
    }

    .product-detail-card .benefits{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .product-detail-page{
        padding:16px;
    }

    .product-detail-card .detail-info h1{
        font-size:28px;
    }

    .product-detail-card .price{
        font-size:34px;
    }

    .product-detail-card .benefits{
        grid-template-columns:1fr;
    }
}
/* FINAL WIDTH FIX */

.page{
    width:100%;
}

.product-detail-page{
    padding:40px 20px !important;
}

.product-detail-card{
    width:100% !important;
    max-width:1400px !important;
    margin:0 auto !important;
    padding:0 20px !important;
}

.product-detail-card .detail-grid{
    max-width:1400px !important;
    margin:0 auto !important;
}

.product-detail-card .product-description,
.product-detail-card .benefits,
.product-detail-card .breadcrumb{
    max-width:1400px !important;
    margin-left:auto !important;
    margin-right:auto !important;
}

@media(max-width:768px){
    .product-detail-page{
        padding:20px 12px !important;
    }

    .product-detail-card{
        padding:0 !important;
    }
}
.product-detail-card .btn{
    width:auto;
    min-width:260px;
    height:58px;
    padding:0 34px;
    border-radius:14px;
    background:##d6b88b;
    color:#050700;
    border:none;
    font-size:18px;
    font-weight:800;
    letter-spacing:.5px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    cursor:pointer;
    transition:.25s;
    box-shadow:0 8px 24px rgba(212,175,55,.18);
}

.product-detail-card .btn:hover{
    transform:translateY(-2px);
    background:#e5c04a;
    box-shadow:0 10px 30px rgba(212,175,55,.28);
}
.cart-page{
    padding:45px 20px;
}

.cart-card{
    max-width:1250px;
    margin:0 auto;
}

.cart-card h1{
    color:#fff;
    font-size:64px;
    margin-bottom:35px;
}

.cart-layout{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:35px;
    align-items:start;
}

.cart-row{
    display:grid;
    grid-template-columns:120px 1fr auto;
    gap:22px;
    align-items:center;
    background:#101308;
    border:1px solid rgba(214,184,139,.18);
    border-radius:22px;
    padding:18px;
    margin-bottom:16px;
}

.cart-img{
    width:120px;
    height:120px;
    background:#f6ead7;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.cart-img img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.cart-info h3{
    color:#fff;
    font-size:20px;
    margin-bottom:10px;
}

.cart-info p{
    color:#d8c6a9;
    margin:5px 0;
}

.cart-price{
    text-align:right;
    color:##d6b88b;
    font-size:22px;
}

.remove-btn{
    display:inline-block;
    margin-top:12px;
    color:#ff7b7b;
    font-size:14px;
    text-decoration:none;
}

.cart-total{
    text-align:right;
    color:##d6b88b;
    font-size:30px;
    font-weight:900;
    margin-top:25px;
}

.checkout-form{
    background:#101308;
    border:1px solid rgba(214,184,139,.18);
    border-radius:24px;
    padding:28px;
}

.checkout-form h2{
    color:#fff;
    margin-bottom:20px;
}

.checkout-form input,
.checkout-form textarea{
    width:100%;
    background:#050700;
    border:1px solid rgba(214,184,139,.22);
    color:#fff;
    padding:15px;
    border-radius:12px;
    margin-bottom:14px;
}

.checkout-form input::placeholder,
.checkout-form textarea::placeholder{
    color:rgba(255,255,255,.55);
}

.checkout-form textarea{
    min-height:110px;
}

.cart-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:0 30px;
    border-radius:14px;
    background:##d6b88b;
    color:#050700;
    font-weight:900;
    text-transform:uppercase;
    border:none;
    cursor:pointer;
    text-decoration:none;
}

.cart-empty{
    color:#fff;
    font-size:20px;
    margin-bottom:20px;
}

@media(max-width:900px){
    .cart-layout{
        grid-template-columns:1fr;
    }

    .cart-row{
        grid-template-columns:90px 1fr;
    }

    .cart-price{
        grid-column:1 / -1;
        text-align:left;
    }

    .cart-card h1{
        font-size:44px;
    }
}
/* SIDEBAR FINAL POLISH */

.sidebar{
    background:linear-gradient(180deg,#070806,#030403) !important;
    border:1px solid rgba(214,184,139,.22) !important;
    border-radius:20px !important;
    padding:26px 20px !important;
}

.logo-title{
    color:#fff !important;
    font-size:34px !important;
    margin:0 0 28px !important;
    padding:0 !important;
}

.side-menu{
    display:flex !important;
    flex-direction:column !important;
    gap:8px !important;
}

.side-menu a{
    display:flex !important;
    align-items:center !important;
    gap:10px !important;
    min-height:46px !important;
    padding:12px 14px !important;
    border-radius:14px !important;
    color:#f5ead7 !important;
    background:transparent !important;
    border:1px solid transparent !important;
    font-size:16px !important;
    font-weight:800 !important;
    line-height:1.25 !important;
    transition:.25s ease !important;
}

.side-menu a .paw,
.side-menu a:first-child::first-letter{
    color:#d6b88b !important;
}

.side-menu a:hover{
    background:rgba(214,184,139,.12) !important;
    border-color:rgba(214,184,139,.45) !important;
    color:#d6b88b !important;
    transform:translateX(4px);
}

.side-menu a.active{
    background:linear-gradient(135deg,#c6a15d,#8d6a2f) !important;
    color:#050700 !important;
    border-color:#d6b88b !important;
    box-shadow:0 10px 28px rgba(214,184,139,.18);
}

.side-menu a.active .paw{
    color:#050700 !important;
}

.paw{
    color:#d6b88b !important;
    flex:0 0 auto;
    font-size:15px;
}

.help-box{
    margin-top:28px !important;
    background:rgba(214,184,139,.08) !important;
    border:1px solid rgba(214,184,139,.22) !important;
    border-radius:18px !important;
    padding:18px !important;
}

.help-box h3{
    color:#d6b88b !important;
}

.help-box p{
    color:#e7dcc9 !important;
}
/* PRODUCT CARD BUTTON FIX */

.product-card .btn,
.product-card .add,
.product-card span.btn{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-height:46px !important;
    padding:0 18px !important;
    margin-top:18px !important;
    border-radius:14px !important;
    background:#d6b88b !important;
    color:#050700 !important;
    font-weight:900 !important;
    font-size:14px !important;
    letter-spacing:.7px !important;
    text-transform:uppercase !important;
    opacity:1 !important;
    visibility:visible !important;
}

.product-card .btn:hover,
.product-card .add:hover,
.product-card span.btn:hover{
    background:#b8914f !important;
    color:#050700 !important;
}

.product-card .price{
    color:#d6b88b !important;
    opacity:1 !important;
}
@media(max-width:991px){
    .sidebar .side-menu{
        max-height:0 !important;
        overflow:hidden !important;
        transition:max-height .35s ease !important;
    }

    .sidebar.active .side-menu{
        max-height:1200px !important;
    }
}
/* DETAIL PRICE + BUTTON FINAL FIX */

.product-detail-card .detail-info .price{
    color:#d6b88b !important;
    opacity:1 !important;
    visibility:visible !important;
    text-shadow:none !important;
}

.product-detail-card .add-cart-btn,
.product-detail-card button.btn{
    background:#d6b88b !important;
    color:#050700 !important;
    border:1px solid #d6b88b !important;
    box-shadow:none !important;
}

.product-detail-card .add-cart-btn:hover,
.product-detail-card button.btn:hover{
    background:#b8914f !important;
    color:#050700 !important;
    border-color:#b8914f !important;
    transform:translateY(-2px);
}

.product-detail-card .qty button:hover{
    background:#b8914f !important;
    color:#050700 !important;
    border-color:#b8914f !important;
}
/* QTY BUTTONS FIX */

.product-detail-card .qty button{
    width:44px !important;
    height:44px !important;
    border-radius:50% !important;
    border:1px solid #d6b88b !important;
    background:#0b0d07 !important;
    color:#d6b88b !important;
    font-size:26px !important;
    font-weight:700 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    line-height:1 !important;
    cursor:pointer;
    transition:.25s;
}

.product-detail-card .qty button:hover{
    background:#b8914f !important;
    border-color:#b8914f !important;
    color:#050700 !important;
}

.product-detail-card .qty b{
    color:#fff !important;
    font-size:28px !important;
    min-width:28px;
    text-align:center;
}
/* FINAL CART */
/* PERFECT CART BADGE */

/* CART LIKE MOCKUP */

.icon-cart{
    position:relative !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:46px !important;
    height:46px !important;

    font-size:34px !important;

    color:#d6b88b !important;
    fill:#d6b88b !important;

    text-decoration:none !important;
}

.icon-cart svg,
.icon-cart i{
    color:#d6b88b !important;
    fill:#d6b88b !important;
}

.cart-count{
    position:absolute !important;

    top:-2px !important;
    right:-8px !important;

    width:28px !important;
    height:28px !important;

    border-radius:50% !important;

    background:#ffffff !important;
    color:#000000 !important;

    font-size:16px !important;
    font-weight:900 !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    box-shadow:0 4px 12px rgba(0,0,0,.25) !important;

    z-index:9999 !important;
}
/* NAVIGATION FIX */

.menu{
    gap:34px !important;
}

.menu a{
    font-size:15px !important;
    line-height:1.1 !important;
    white-space:nowrap !important;
    letter-spacing:.4px;
}

/* CART GOLD FIX */

.icon-cart{
    color:#d6b88b !important;
    font-size:34px !important;
}

.icon-cart svg,
.icon-cart i{
    color:#d6b88b !important;
    fill:#d6b88b !important;
}

/* MOBILE */

@media(max-width:1200px){

    .menu{
        gap:24px !important;
    }

    .menu a{
        font-size:14px !important;
    }

}
.remove-btn{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:36px !important;
    height:36px !important;

    border-radius:12px !important;

    background:rgba(214,184,139,.10) !important;
    border:1px solid rgba(214,184,139,.25) !important;

    color:#d6b88b !important;
    font-size:18px !important;

    text-decoration:none !important;

    transition:.25s !important;
}

.remove-btn:hover{
    background:#b8914f !important;
    color:#050700 !important;
}
.checkout-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-bottom:16px;
}

.checkout-form input,
.checkout-form textarea{
    width:100%;
}

@media(max-width:768px){

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

}
/* CONTACT PAGE */

.contact-page{
    max-width:1400px;
    margin:0 auto;
    padding:70px 30px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-info{
    padding-right:30px;
}

.contact-label{
    color:#b8914f;
    font-size:13px;
    letter-spacing:2px;
    font-weight:700;
}

.contact-info h1{
    color:#fff;
    font-size:64px;
    line-height:1;
    margin:18px 0 26px;
}

.contact-text{
    color:#d7d2c8;
    font-size:18px;
    line-height:1.8;
    margin-bottom:40px;
    max-width:580px;
}

.contact-box{
    background:#0b0d07;
    border:1px solid rgba(214,184,139,.16);
    border-radius:22px;
    padding:24px;
    margin-bottom:18px;
}

.contact-box b{
    display:block;
    color:#d6b88b;
    margin-bottom:10px;
    font-size:18px;
}

.contact-box span{
    color:#fff;
    font-size:17px;
}

.contact-form{
    background:#0b0d07;
    border:1px solid rgba(214,184,139,.16);
    border-radius:28px;
    padding:40px;
}

.contact-form h2{
    color:#fff;
    font-size:36px;
    margin:0 0 30px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    background:#050700;
    border:1px solid rgba(214,184,139,.15);
    border-radius:18px;
    padding:18px 20px;
    color:#fff;
    font-size:16px;
    margin-bottom:18px;
    outline:none;
}

.contact-form textarea{
    height:180px;
    resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#b8914f;
}

.contact-btn{
    width:100%;
    height:62px;
    border:none;
    border-radius:18px;
    background:#d6b88b;
    color:#050700;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
    transition:.25s;
}

.contact-btn:hover{
    background:#b8914f;
    color:#fff;
}

@media(max-width:900px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-info h1{
        font-size:46px;
    }

    .contact-page{
        padding:40px 18px;
    }

    .contact-form{
        padding:28px;
    }

}
.fake-field{
    position:absolute;
    left:-9999px;
    opacity:0;
    pointer-events:none;
}
@media (max-width: 991px) {
  .sidebar li ul,
  .sidebar .subgroup,
  .sidebar .submenu {
    display: none;
  }

  .sidebar li.open > ul,
  .sidebar .open > .subgroup,
  .sidebar .open > .submenu {
    display: block;
  }

  .sidebar .plus,
  .sidebar .cat-plus,
  .sidebar .submenu-plus,
  .sidebar .toggle-plus {
    cursor: pointer;
    position: relative;
    z-index: 10;
  }
}
@media (max-width:768px){

.cart-row{
    display:flex !important;
    align-items:flex-start !important;
    gap:12px !important;

    padding:14px !important;
    border-radius:24px !important;

    position:relative !important;
}

.cart-img{
    width:90px !important;
    min-width:90px !important;
}

.cart-img img{
    width:90px !important;
    height:90px !important;

    object-fit:contain !important;

    border-radius:18px !important;
    background:#fff !important;
    padding:8px !important;

    display:block !important;
}

.cart-info{
    flex:1 !important;
    min-width:0 !important;
}

.cart-info h3{
    font-size:24px !important;
    line-height:1.1 !important;

    margin:0 0 10px !important;

    font-weight:700 !important;

    display:-webkit-box !important;
    -webkit-line-clamp:2 !important;
    -webkit-box-orient:vertical !important;

    overflow:hidden !important;
}

.cart-info p{
    margin:4px 0 !important;
    font-size:16px !important;
    color:#d8c59d !important;
}

.cart-price{
    width:100% !important;

    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;

    margin-top:14px !important;
}

.cart-price strong{
    font-size:28px !important;
    line-height:1 !important;
}

.remove-btn{
    width:42px !important;
    height:42px !important;

    border-radius:14px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    text-decoration:none !important;
    font-size:18px !important;
}

.cart-total{
    font-size:28px !important;
    text-align:center !important;
    margin-top:25px !important;
    font-weight:700 !important;
}

}
/* SEARCH ISPOD MENIJA */

.nav-search-wrap{
    width:100%;
    display:flex;
    justify-content:center;
    margin-top:30px;
    margin-bottom:10px;
}

.header-search{
    display:flex;
    align-items:center;
    gap:14px;
}

.header-search input{
    width:420px;
    height:56px;

    border:none;
    outline:none;

    border-radius:18px;

    padding:0 22px;

    background:#f3f3f3;

    font-size:16px;
}

.header-search button{
    width:56px;
    height:56px;

    border:none;
    cursor:pointer;

    border-radius:18px;

    background:#d0b07a;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
}

.header-search button:hover{
    transform:translateY(-2px);
}

.header-search button i{
    font-size:20px;
    color:#111;
}

/* MOBILE */

@media(max-width:768px){

.nav-search-wrap{
    padding:0 15px;
    margin-top:20px;
}

.header-search{
    width:100%;
}

.header-search input{
    width:100%;
    font-size:15px;
}

}
.nav-search-wrap{
    width:100% !important;
    display:flex !important;
    justify-content:center !important;
    margin-top:8px !important;
    margin-bottom:0 !important;
    padding:0 !important;
}

.header-search{
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
}

.header-search input{
    width:280px !important;
    height:42px !important;
    border-radius:13px !important;
    padding:0 15px !important;
    font-size:14px !important;
}

.header-search button{
    width:42px !important;
    height:42px !important;
    border-radius:13px !important;
    background:#d0b07a !important;
}

.header-search button i{
    font-size:17px !important;
    color:#111 !important;
}
header{
    padding-bottom:10px !important;
}

.nav{
    padding-bottom:0 !important;
}
/* HEADER */

header{
    background:#050505;
    padding:25px 40px 18px;
    border-bottom:1px solid rgba(201,165,92,.35);
    position:relative;
    z-index:100;
}

/* TOP NAV */

.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

/* LOGO */

.logo img{
    width:140px;
    height:auto;
}

/* MENU */

.menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:42px;
    flex:1;
}

.menu a{
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    text-transform:uppercase;
    transition:.3s;
}

.menu a:hover{
    color:#c9a55c;
}

/* ICONS */

.header-icons{
    display:flex;
    align-items:center;
    gap:22px;
}

.header-icons a{
    color:#c9a55c;
    font-size:34px;
    text-decoration:none;
}

/* SEARCH */

.nav-search-wrap{
    width:100%;
    display:flex;
    justify-content:center;

    margin-top:14px;
}

.header-search{
    display:flex;
    align-items:center;
    gap:12px;
}

.header-search input{
    width:560px;
    height:66px;

    background:#090909;

    border:1px solid rgba(201,165,92,.7);
    border-radius:18px;

    padding:0 24px;

    color:#fff;
    font-size:18px;

    outline:none;
}

.header-search input::placeholder{
    color:#9f9f9f;
}

.header-search button{
    width:66px;
    height:66px;

    border:none;
    border-radius:18px;

    background:#c9a55c;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
}

.header-search button:hover{
    transform:translateY(-2px);
}

.header-search button i{
    font-size:24px;
    color:#111;
}

/* MOBILE */

@media(max-width:991px){

header{
    padding:18px 15px;
}

.nav{
    flex-wrap:wrap;
    gap:15px;
}

.logo{
    width:100%;
    text-align:center;
}

.logo img{
    width:110px;
}

.menu{
    width:100%;
    flex-wrap:wrap;
    gap:18px;
}

.menu a{
    font-size:14px;
}

.header-icons{
    width:100%;
    justify-content:center;
}

.nav-search-wrap{
    margin-top:12px;
}

.header-search{
    width:100%;
}

.header-search input{
    width:100%;
    height:54px;
    font-size:15px;
}

.header-search button{
    width:54px;
    height:54px;
}

}
@media (max-width: 768px){

header{
    padding:12px 14px 14px !important;
}

.nav{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    flex-wrap:wrap !important;
    gap:10px !important;
}

.logo img{
    width:90px !important;
}

.mobile-toggle{
    display:block !important;
    font-size:28px !important;
    background:none !important;
    border:none !important;
    color:#d0b07a !important;
}

.menu{
    width:100% !important;
    display:none !important;
    flex-direction:column !important;
    gap:0 !important;
    padding:12px 0 !important;
}

.menu.active{
    display:flex !important;
}

.menu a{
    padding:12px 0 !important;
    font-size:15px !important;
    border-bottom:1px solid rgba(208,176,122,.18) !important;
}

.icons{
    display:flex !important;
    align-items:center !important;
    gap:14px !important;
}

.nav-search-wrap{
    width:100% !important;
    margin-top:10px !important;
    display:flex !important;
    justify-content:center !important;
}

.header-search{
    width:100% !important;
    display:flex !important;
    gap:8px !important;
}

.header-search input{
    flex:1 !important;
    width:auto !important;
    height:46px !important;
    border-radius:14px !important;
    padding:0 14px !important;
    font-size:14px !important;
}

.header-search button{
    width:46px !important;
    height:46px !important;
    min-width:46px !important;
    border-radius:14px !important;
    background:#d0b07a !important;
}

.header-search button i{
    font-size:18px !important;
    color:#111 !important;
}

}
.product-brand{
    color:#c9a55c;
    font-size:13px;
    font-weight:700;
    margin-bottom:6px;
    text-transform:uppercase;
}
.brand-menu{
    display:none;
}

.brand-sidebar.active .brand-menu{
    display:flex;
    flex-direction:column;
}

.brand-toggle{
    cursor:pointer;
    user-select:none;
}
.logo img{
    width:160px !important;
    max-width:none !important;
    height:auto !important;
}
.brand-logo-box{
    margin:15px 0;
    padding:12px;
    background:#15110b;
    border:1px solid rgba(212,175,55,.25);
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.brand-logo{
    max-width:140px;
    max-height:60px;
    object-fit:contain;
    display:block;
}
.brand-menu a{
    display:flex;
    align-items:center;
    gap:12px;
}

.brand-menu-logo{
    width:90px;
    height:38px;
    object-fit:contain;
    flex-shrink:0;
    filter:brightness(1.05);
}

.brand-name{
    flex:1;
}
.product-img{
    width:100%;
    height:260px;
    background:#fff;
    border-radius:16px 16px 0 0;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    padding:18px;
}

.product-img img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}
.product-img{
    width:100%;
    height:260px;
    background:#fff;
    border-radius:16px 16px 0 0;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    padding:20px;
}

.product-img img{
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;

    object-fit:contain;
    display:block;

    image-rendering:auto;
    backface-visibility:hidden;
    transform:translateZ(0);

    filter:contrast(1.02) saturate(1.03);
}
.brand-menu a{
    display:flex !important;
    align-items:center !important;
    gap:12px !important;
    min-height:52px;
    padding:10px 12px !important;
}

.brand-menu-logo{
    width:82px !important;
    max-width:82px !important;
    height:36px !important;
    object-fit:contain !important;
    background:#fff;
    border-radius:6px;
    padding:4px;
    flex-shrink:0;
}

.brand-name{
    font-size:15px;
    line-height:1.15;
    color:#f7ead2;
    font-weight:700;
    word-break:break-word;
}
.brand-sidebar{
    margin-top:25px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.08);
}

.brand-menu{
    max-height:420px;
    overflow-y:auto;
    overflow-x:hidden;
    padding-right:6px;
}

/* SCROLLBAR */

.brand-menu::-webkit-scrollbar{
    width:6px;
}

.brand-menu::-webkit-scrollbar-track{
    background:rgba(255,255,255,.05);
    border-radius:20px;
}

.brand-menu::-webkit-scrollbar-thumb{
    background:#c9a15d;
    border-radius:20px;
}

.brand-menu::-webkit-scrollbar-thumb:hover{
    background:#e0b46a;
}
.sidebar{
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}

.sidebar::-webkit-scrollbar{
    width: 6px;
}

.sidebar::-webkit-scrollbar-track{
    background: rgba(255,255,255,.05);
    border-radius: 20px;
}

.sidebar::-webkit-scrollbar-thumb{
    background: #c9a15d;
    border-radius: 20px;
}

.brand-sidebar{
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.brand-menu{
    max-height: none;
    overflow: visible;
}
@media (max-width: 768px){

    .sidebar{
        position: static !important;
        top: auto !important;
        max-height: none !important;
        overflow: visible !important;
        padding-right: 0 !important;
    }

    .brand-menu{
        max-height: none !important;
        overflow: visible !important;
        padding-right: 0 !important;
    }

}
.single-gallery{
    display:flex;
    align-items:center;
    justify-content:center;
}

.single-gallery .main-photo{
    width:100%;
    max-width:520px;
    min-height:520px;

    background:#fff;

    border-radius:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:40px;
}

.single-gallery .main-photo img{
    width:100%;
    height:100%;

    max-width:420px;
    max-height:420px;

    object-fit:contain;
    display:block;
}

/* DETAIL GRID */

.detail-grid{
    display:grid;
    grid-template-columns:520px 1fr;
    gap:70px;
    align-items:start;
}

/* MOBILE */

@media(max-width:991px){

    .detail-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .single-gallery .main-photo{
        min-height:340px;
        max-width:100%;
        padding:25px;
    }

    .single-gallery .main-photo img{
        max-width:280px;
        max-height:280px;
    }

}
.product-detail-card .gallery.single-gallery{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:100% !important;
}

.product-detail-card .single-gallery .main-photo{
    width:100% !important;
    max-width:560px !important;
    min-height:560px !important;

    background:#fff !important;

    border-radius:28px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    padding:40px !important;

    overflow:hidden !important;
}

.product-detail-card .single-gallery .main-photo img{
    width:auto !important;
    height:auto !important;

    max-width:100% !important;
    max-height:460px !important;

    object-fit:contain !important;

    display:block !important;
}

.product-detail-card .detail-grid{
    display:grid !important;
    grid-template-columns:560px 1fr !important;
    gap:70px !important;
    align-items:start !important;
}

@media(max-width:991px){

    .product-detail-card .detail-grid{
        grid-template-columns:1fr !important;
        gap:30px !important;
    }

    .product-detail-card .single-gallery .main-photo{
        min-height:340px !important;
        max-width:100% !important;
        padding:25px !important;
    }

    .product-detail-card .single-gallery .main-photo img{
        max-height:280px !important;
    }

}
body{
    background:
    linear-gradient(
        180deg,
        #2b1b10 0%,
        #3B2414 40%,
        #4b2e1b 100%
    );
}
.col-md-6{
    color:#fff;
}
.paw{
    color:#d6b36a;
    text-shadow:0 0 10px rgba(214,179,106,0.4);
}
.blog-main .blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

.blog-card{
    background:#050505;
    border:1px solid rgba(214,179,106,.35);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.35);
}

.blog-card a{
    color:#fff;
    text-decoration:none;
    display:block;
}

.blog-card-img{
    width:100%;
    height:260px;
    background:#111;
    overflow:hidden;
}

.blog-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.blog-card .card-body{
    padding:24px;
}

.blog-card .tag{
    display:inline-block;
    background:#d6b36a;
    color:#000;
    font-weight:800;
    padding:7px 13px;
    border-radius:999px;
    font-size:12px;
    margin-bottom:14px;
}

.blog-card h3{
    color:#fff;
    font-size:24px;
    line-height:1.25;
    margin:0 0 12px;
}

.blog-card p{
    color:#d8d8d8;
    line-height:1.7;
    margin:0 0 18px;
}

.blog-meta{
    display:flex;
    justify-content:space-between;
    gap:12px;
    color:#d6b36a;
    font-size:13px;
    font-weight:700;
}
.article-layout{
    max-width:1450px;
    margin:40px auto;
    display:grid;
    grid-template-columns:minmax(0,1fr) 240px;
    gap:28px;
    align-items:start;
}
.article-layout article{
    background:#050505;
    border:1px solid rgba(214,179,106,.35);
    border-radius:24px;
    padding:35px;
    color:#fff;
      width:100%;
}

.article-layout h1{
    font-size:46px;
    line-height:1.1;
    margin:18px 0;
}

.article-hero{
    width:100%;
    max-height:520px;
    object-fit:cover;
    border-radius:22px;
    margin:28px 0;
    display:block;
}

.article-content{
    color:#f5f5f5;
    font-size:18px;
    line-height:1.8;
}

.article-content h2,
.article-content h3{
    color:#d6b36a;
    margin-top:32px;
}

.article-content strong{
    color:#d6b36a;
}

.article-content ul{
    padding-left:22px;
}

.right-box{
    background:#050505;
    border:1px solid rgba(214,179,106,.35);
    border-radius:22px;
    padding:24px;
    color:#fff;
}

.mini-post{
    display:flex;
    gap:12px;
    color:#fff;
    text-decoration:none;
    margin-top:18px;
}

.mini-post img{
    width:78px;
    height:78px;
    object-fit:cover;
    border-radius:12px;
}

@media(max-width:991px){
    .article-layout{
        grid-template-columns:1fr;
        margin:20px 12px;
    }

    .article-layout article{
        padding:22px;
    }

    .article-layout h1{
        font-size:34px;
    }
}
.blog-body{
    background:#050505;
    padding:26px;
    color:#fff;
}

.blog-body span{
    color:#d6b36a;
    font-weight:800;
    letter-spacing:4px;
    text-transform:uppercase;
}

.blog-body h3{
    color:#fff;
    font-size:24px;
    line-height:1.25;
    margin:18px 0 14px;
}

.blog-body p{
    color:#d8d8d8;
    line-height:1.7;
}

.blog-body a{
    background:#d6b36a;
    color:#000;
    font-weight:800;
    text-decoration:none;
    display:inline-block;
    padding:14px 24px;
    border-radius:999px;
    margin-top:14px;
}

.blog-body a:hover{
    background:#e7c982;
}