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

:root{
  --black:#050505;
  --black-2:#0b0b0b;
  --gold:#c99b5a;
  --gold-light:#e5bd7a;
  --text:#ffffff;
  --muted:#d7d2ca;
  --line:rgba(201,155,90,.34);
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', Arial, sans-serif;
  background:#050505;
  color:var(--text);
  font-size:15px;
  line-height:1.6;
  font-weight:400;
  overflow-x:hidden;
}

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

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

/* HEADER */
.header{
  height:82px;
  background:#030303;
  border-bottom:1px solid rgba(255,255,255,.08);
  display:grid;
  grid-template-columns:320px 1fr 150px;
  align-items:center;
  padding:0 54px;
  position:sticky;
  top:0;
  z-index:50;
}

.brand{
  display:flex;
  align-items:center;
  width:285px;
}

.brand-logo{
  width:270px;
  height:auto;
  object-fit:contain;
}

.nav{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:38px;
}

.nav a{
  height:100%;
  display:flex;
  align-items:center;
  position:relative;
  font-size:13px;
  font-weight:600;
  letter-spacing:.15px;
  color:#fff;
  text-transform:none;
  transition:.2s ease;
}

.nav a span{
  margin-left:6px;
  font-size:12px;
}

.nav a.active,
.nav a:hover{
  color:var(--gold-light);
}

.nav a.active:after,
.nav a:hover:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:20px;
  height:2px;
  background:var(--gold);
}

.icons{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:24px;
}

.ico{
  width:24px;
  height:24px;
  position:relative;
  display:block;
}

.search:before{
  content:"";
  position:absolute;
  width:15px;
  height:15px;
  border:2px solid #fff;
  border-radius:50%;
  left:1px;
  top:1px;
}

.search:after{
  content:"";
  position:absolute;
  width:10px;
  height:2px;
  background:#fff;
  transform:rotate(45deg);
  right:2px;
  bottom:4px;
}

.user:before{
  content:"";
  position:absolute;
  width:8px;
  height:8px;
  border:2px solid var(--gold);
  border-radius:50%;
  left:8px;
  top:0;
}

.user:after{
  content:"";
  position:absolute;
  width:17px;
  height:13px;
  border:2px solid var(--gold);
  border-top:0;
  border-radius:0 0 12px 12px;
  left:3px;
  bottom:1px;
}

.bag:before{
  content:"";
  position:absolute;
  left:4px;
  bottom:1px;
  width:17px;
  height:17px;
  border:2px solid var(--gold);
}

.bag:after{
  content:"";
  position:absolute;
  left:8px;
  top:1px;
  width:8px;
  height:7px;
  border:2px solid var(--gold);
  border-bottom:0;
  border-radius:9px 9px 0 0;
}

.bag b{
  position:absolute;
  right:-8px;
  top:-8px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--gold);
  color:#111;
  font-size:10px;
  line-height:18px;
  text-align:center;
  font-weight:700;
}

.burger{
  display:none;
  background:none;
  border:0;
  width:36px;
  height:30px;
}

.burger span{
  display:block;
  height:2px;
  background:var(--gold);
  margin:6px 0;
}

/* HERO */
.hero{
  min-height:455px;
  position:relative;
  overflow:hidden;
  background:#030303;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(5,5,5,.65) 0%,
      rgba(5,5,5,.45) 34%,
      rgba(5,5,5,.12) 60%,
      rgba(5,5,5,0) 82%
    ),
    url("../assets/hero-clean.jpg?v=clean-final") center right/cover no-repeat;
}

.hero-content{
  position:relative;
  z-index:2;
  padding:72px 0 34px 54px;
  max-width:690px;
}

.overline{
  font-size:25px;
  line-height:1;
  font-weight:500;
  letter-spacing:6px;
  color:#fff;
  margin-bottom:16px;
  text-transform:uppercase;
}

.hero h1{
  font-size:46px;
  line-height:1;
  font-weight:500;
  letter-spacing:4px;
  color:var(--gold);
  margin-bottom:24px;
  text-transform:uppercase;
}

.lead{
  font-size:15px;
  line-height:1.65;
  font-weight:400;
  color:#f2f2f2;
  margin-bottom:26px;
}

.buttons{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:42px;
}

.btn{
  height:48px;
  min-width:180px;
  padding:0 26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:15px;
  border:1px solid var(--line);
  font-size:13px;
  font-weight:600;
  letter-spacing:.2px;
  transition:.2s ease;
}

.btn-primary{
  color:#111;
  background:linear-gradient(135deg,#f0c981,#bd8c4e);
}

.btn-secondary{
  color:#fff;
  background:rgba(0,0,0,.28);
}

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

.features{
  display:flex;
  flex-wrap:wrap;
  gap:34px;
}

.features article{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:185px;
}

.feature-icon{
  width:28px;
  height:28px;
  color:var(--gold-light);
  font-size:26px;
  line-height:1;
  flex:0 0 auto;
  display:grid;
  place-items:center;
}

.features strong{
  display:block;
  font-size:12px;
  font-weight:600;
  color:#fff;
  margin-bottom:3px;
}

.features small{
  display:block;
  font-size:12px;
  font-weight:400;
  color:#d8d8d8;
}

/* CATEGORIES */
.categories{
  background:linear-gradient(180deg,#151515 0%,#080808 100%);
  padding:36px 34px 30px;
}

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

.section-title h2{
  font-size:20px;
  line-height:1.2;
  font-weight:500;
  letter-spacing:6px;
  text-transform:uppercase;
  color:var(--gold-light);
}

.section-title i{
  display:block;
  width:64px;
  height:2px;
  background:var(--gold);
  margin:18px auto 0;
}

.cards{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}

.card{
  height:325px;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(201,155,90,.22);
  border-radius:4px;
  background:#0a0a0a;
}

.card img{
  position:absolute;
  inset:0;
  filter:brightness(.72) contrast(1.06);
  transition:.35s ease;
}

.card:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.02) 0%,rgba(0,0,0,.2) 45%,rgba(0,0,0,.92) 100%);
}

.card-content{
  position:absolute;
  z-index:2;
  left:0;
  right:0;
  bottom:22px;
  text-align:center;
  padding:0 16px;
}

.card-icon{
  display:block;
  color:var(--gold-light);
  font-size:28px;
  line-height:1;
  margin-bottom:16px;
}

.card h3{
  font-size:13px;
  line-height:1.3;
  font-weight:600;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:20px;
}

.card a{
  width:88px;
  height:34px;
  display:grid;
  place-items:center;
  margin:0 auto;
  border:1px solid rgba(201,155,90,.5);
  background:rgba(0,0,0,.45);
  color:var(--gold-light);
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
}

.card:hover img{
  transform:scale(1.05);
  filter:brightness(.9) contrast(1.07);
}

/* ADVANTAGES */
.advantages{
  background:#0b0b0b;
  padding:36px 72px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:46px;
}

.advantages article{
  display:flex;
  align-items:center;
  gap:16px;
}

.adv-icon{
  width:42px;
  height:42px;
  flex:0 0 auto;
  color:var(--gold-light);
  font-size:31px;
  line-height:1;
  display:grid;
  place-items:center;
}

.advantages h3{
  font-size:13px;
  font-weight:600;
  color:var(--gold-light);
  margin-bottom:5px;
  text-transform:uppercase;
}

.advantages p{
  font-size:12px;
  line-height:1.6;
  font-weight:400;
  color:#d7d2ca;
}

.about{
  background:#080808;
  text-align:center;
  padding:58px 24px;
}

.about h2{
  font-size:19px;
  font-weight:500;
  letter-spacing:5px;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:14px;
}

.about p{
  font-size:14px;
  color:#d7d7d7;
}

.footer{
  background:#030303;
  border-top:1px solid rgba(255,255,255,.08);
  color:#999;
  text-align:center;
  padding:22px;
  font-size:12px;
}

/* RESPONSIVE */
@media(max-width:1300px){
  .header{
    grid-template-columns:280px 1fr 130px;
    padding:0 34px;
  }

  .brand{
    width:245px;
  }

  .brand-logo{
    width:235px;
  }

  .nav{
    gap:26px;
  }

  .hero-content{
    padding-left:38px;
  }

  .overline{
    font-size:22px;
    letter-spacing:5px;
  }

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

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

  .advantages{
    grid-template-columns:repeat(2,1fr);
    padding:36px 44px;
  }
}

@media(max-width:900px){
  .header{
    height:auto;
    min-height:76px;
    grid-template-columns:1fr auto;
    padding:12px 20px;
  }

  .brand{
    width:220px;
  }

  .brand-logo{
    width:210px;
  }

  .burger{
    display:block;
  }

  .icons{
    display:none;
  }

  .nav{
    grid-column:1/-1;
    height:auto;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:12px 0 6px;
  }

  .nav.open{
    display:flex;
  }

  .nav a{
    height:auto;
    padding:12px 0;
  }

  .nav a.active:after,
  .nav a:hover:after{
    bottom:4px;
  }

  .hero{
    min-height:auto;
  }

  .hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(5,5,5,.65) 0%,
      rgba(5,5,5,.45) 34%,
      rgba(5,5,5,.12) 60%,
      rgba(5,5,5,0) 82%
    ),
    url("../assets/hero-clean.jpg?v=clean-final") center right/cover no-repeat;
  }
}

@media(max-width:430px){
  .brand{
    width:190px;
  }

  .brand-logo{
    width:180px;
  }

  .overline{
    font-size:16px;
    letter-spacing:3px;
  }

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

  .card{
    height:335px;
  }
}


/* KATALOGO IR VIDINIŲ PUSLAPIŲ STILIAI */
.inner-hero{
  background:linear-gradient(135deg,#090909,#151515);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:72px 54px;
  text-align:center;
}
.inner-hero h1{
  color:var(--gold-light);
  font-size:38px;
  font-weight:500;
  letter-spacing:5px;
  text-transform:uppercase;
  margin-bottom:16px;
}
.inner-hero p{
  max-width:760px;
  margin:0 auto;
  color:#e2ddd5;
  font-size:15px;
}
.inner-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-top:28px;
}
.product-categories{
  padding:46px 36px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
  background:#080808;
}
.product-category{
  background:#0d0d0d;
  border:1px solid rgba(201,155,90,.24);
  border-radius:8px;
  overflow:hidden;
}
.product-category img{
  height:230px;
}
.product-category div{
  padding:20px;
}
.product-category h3{
  font-size:14px;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:10px;
}
.product-category p{
  color:#cfcac2;
  font-size:13px;
  margin-bottom:16px;
}
.product-category a{
  color:var(--gold-light);
  font-size:13px;
  font-weight:600;
}
.product-layout{
  background:#080808;
  display:grid;
  grid-template-columns:300px 1fr;
  gap:30px;
  padding:46px 36px;
}
.product-info{
  background:#0d0d0d;
  border:1px solid rgba(201,155,90,.22);
  border-radius:8px;
  padding:24px;
  align-self:start;
}
.product-info h2{
  color:var(--gold-light);
  font-size:18px;
  margin-bottom:16px;
}
.product-info ul{
  padding-left:18px;
  color:#ddd;
  font-size:14px;
  line-height:1.9;
}
.contact-box{
  margin-top:22px;
  display:block;
  padding:14px 16px;
  border:1px solid rgba(201,155,90,.35);
  color:#111;
  background:linear-gradient(135deg,#f0c981,#bd8c4e);
  font-weight:600;
  text-align:center;
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.product-card{
  background:#0d0d0d;
  border:1px solid rgba(201,155,90,.22);
  border-radius:8px;
  overflow:hidden;
}
.product-card img{
  height:260px;
}
.product-card div{
  padding:16px;
}
.product-card h3{
  font-size:14px;
  color:#fff;
  margin-bottom:6px;
}
.product-card p{
  font-size:13px;
  color:#cfcac2;
}
.text-section{
  padding:56px 22px;
  max-width:900px;
  margin:0 auto;
  color:#ddd;
}
.text-section h2{
  color:var(--gold-light);
  margin-bottom:16px;
}
.service-grid{
  padding:46px 36px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  background:#080808;
}
.service-grid article,
.contact-card,
.contact-form{
  background:#0d0d0d;
  border:1px solid rgba(201,155,90,.22);
  border-radius:8px;
  padding:24px;
}
.service-grid h3,
.contact-card h2{
  color:var(--gold-light);
  margin-bottom:12px;
  font-size:17px;
}
.service-grid p,
.contact-card p{
  color:#d7d2ca;
  font-size:14px;
}
.contact-section{
  background:#080808;
  padding:46px 36px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.contact-form{
  display:grid;
  gap:14px;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  background:#070707;
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  padding:14px;
  font-family:inherit;
}
.contact-form textarea{
  min-height:140px;
}
.contact-form button{
  border:0;
  background:linear-gradient(135deg,#f0c981,#bd8c4e);
  color:#111;
  font-weight:700;
  padding:15px;
  cursor:pointer;
}
@media(max-width:1100px){
  .product-categories{grid-template-columns:repeat(3,1fr)}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .product-layout{grid-template-columns:1fr}
  .product-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:760px){
  .inner-hero{padding:52px 22px}
  .inner-hero h1{font-size:28px;letter-spacing:3px}
  .product-categories,.product-grid,.service-grid,.contact-section{grid-template-columns:1fr}
  .product-categories,.product-layout,.service-grid,.contact-section{padding:32px 18px}
}

/* PRODUKTAI.HTML PROFESIONALUS STILIUS */
.products-hero{
  min-height:310px;
  background:
    linear-gradient(90deg,rgba(5,5,5,.96),rgba(5,5,5,.72),rgba(5,5,5,.96)),
    url("../assets/hero-clean.jpg?v=clean-final") center/cover no-repeat;
  border-bottom:1px solid rgba(255,255,255,.08);
  display:grid;
  place-items:center;
  text-align:center;
  padding:70px 22px;
}
.products-hero-inner{
  max-width:820px;
}
.mini-label{
  display:inline-block;
  color:var(--gold-light);
  font-size:12px;
  font-weight:600;
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:18px;
}
.products-hero h1{
  color:#fff;
  font-size:42px;
  line-height:1.1;
  font-weight:500;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:18px;
}
.products-hero p{
  color:#d8d2ca;
  font-size:15px;
  line-height:1.7;
}
.products-page{
  background:#080808;
  padding:34px 36px 54px;
}
.products-filter{
  max-width:1120px;
  margin:0 auto 34px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
}
.products-filter a{
  height:38px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(201,155,90,.25);
  background:#0d0d0d;
  color:#ddd;
  font-size:13px;
  font-weight:500;
  border-radius:999px;
  transition:.2s ease;
}
.products-filter a.active,
.products-filter a:hover{
  color:#111;
  background:linear-gradient(135deg,#f0c981,#bd8c4e);
  border-color:transparent;
}
.products-showcase{
  max-width:1380px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr;
  grid-auto-rows:300px;
  gap:18px;
}
.showcase-card{
  position:relative;
  overflow:hidden;
  border-radius:10px;
  background:#101010;
  border:1px solid rgba(201,155,90,.24);
  box-shadow:0 18px 45px rgba(0,0,0,.35);
}
.showcase-card.big{
  grid-row:span 2;
}
.showcase-card img{
  position:absolute;
  inset:0;
  filter:brightness(.68) contrast(1.08);
  transition:.45s ease;
}
.showcase-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.06) 0%,rgba(0,0,0,.28) 45%,rgba(0,0,0,.92) 100%);
}
.showcase-card.big:after{
  background:
    linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.35),rgba(0,0,0,.08)),
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.85));
}
.showcase-content{
  position:absolute;
  z-index:2;
  left:0;
  right:0;
  bottom:0;
  padding:28px;
}
.showcase-content span{
  display:inline-block;
  color:var(--gold-light);
  font-size:12px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:12px;
}
.showcase-content h2{
  color:#fff;
  font-size:21px;
  line-height:1.2;
  font-weight:600;
  margin-bottom:10px;
}
.showcase-card.big .showcase-content h2{
  font-size:30px;
}
.showcase-content p{
  color:#d7d2ca;
  font-size:14px;
  line-height:1.6;
  max-width:420px;
  margin-bottom:18px;
}
.showcase-content a{
  width:max-content;
  height:38px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--gold-light);
  border:1px solid rgba(201,155,90,.5);
  background:rgba(0,0,0,.4);
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
}
.showcase-card:hover img{
  transform:scale(1.055);
  filter:brightness(.85) contrast(1.08);
}
.order-strip{
  background:#0d0d0d;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:36px 54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.order-strip h2{
  color:#fff;
  font-size:24px;
  font-weight:500;
  margin-bottom:8px;
}
.order-strip p{
  color:#d7d2ca;
  font-size:14px;
}
.order-strip a{
  min-width:150px;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#111;
  background:linear-gradient(135deg,#f0c981,#bd8c4e);
  font-size:13px;
  font-weight:700;
}
@media(max-width:1100px){
  .products-showcase{
    grid-template-columns:1fr 1fr;
  }
  .showcase-card.big{
    grid-column:span 2;
    grid-row:span 1;
  }
}
@media(max-width:720px){
  .products-hero h1{
    font-size:30px;
  }
  .products-page{
    padding:28px 18px 38px;
  }
  .products-showcase{
    grid-template-columns:1fr;
    grid-auto-rows:280px;
  }
  .showcase-card.big{
    grid-column:span 1;
  }
  .showcase-content{
    padding:22px;
  }
  .showcase-card.big .showcase-content h2{
    font-size:23px;
  }
  .order-strip{
    padding:30px 22px;
    flex-direction:column;
    align-items:flex-start;
  }
}


/* =========================================================
   GALUTINIS STILIUS VISIEMS NAUJIEMS HTML PUSLAPIAMS
   ========================================================= */

.subhero{
  min-height:300px;
  padding:72px 24px;
  display:grid;
  place-items:center;
  text-align:center;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,155,90,.14), transparent 35%),
    linear-gradient(135deg,#080808,#141414 55%,#070707);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.subhero>div{
  max-width:850px;
}
.page-kicker{
  display:inline-block;
  margin-bottom:16px;
  color:var(--gold-light);
  font-size:12px;
  font-weight:600;
  letter-spacing:4px;
  text-transform:uppercase;
}
.subhero h1{
  color:#fff;
  font-size:38px;
  line-height:1.15;
  font-weight:500;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:16px;
}
.subhero p{
  color:#d8d2ca;
  font-size:15px;
  line-height:1.7;
  margin:0 auto;
  max-width:760px;
}
.page-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:26px;
}

.catalog-wrap{
  background:#080808;
  padding:34px 36px 56px;
}
.catalog-tabs{
  max-width:1180px;
  margin:0 auto 34px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.catalog-tabs a{
  height:38px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  background:#0f0f0f;
  border:1px solid rgba(201,155,90,.22);
  color:#ddd;
  font-size:13px;
  font-weight:500;
}
.catalog-tabs a.active,
.catalog-tabs a:hover{
  color:#111;
  background:linear-gradient(135deg,#f0c981,#bd8c4e);
  border-color:transparent;
}
.catalog-grid{
  max-width:1380px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr;
  grid-auto-rows:295px;
  gap:18px;
}
.catalog-card{
  position:relative;
  overflow:hidden;
  border-radius:10px;
  border:1px solid rgba(201,155,90,.24);
  background:#101010;
  box-shadow:0 18px 45px rgba(0,0,0,.35);
}
.catalog-card-large{
  grid-row:span 2;
}
.catalog-card img{
  position:absolute;
  inset:0;
  filter:brightness(.68) contrast(1.06);
  transition:.4s ease;
}
.catalog-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.25) 42%,rgba(0,0,0,.92));
}
.catalog-card-large:after{
  background:
    linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.35),rgba(0,0,0,.08)),
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.82));
}
.catalog-content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:28px;
}
.catalog-content span{
  color:var(--gold-light);
  font-size:12px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  display:inline-block;
  margin-bottom:12px;
}
.catalog-content h2{
  color:#fff;
  font-size:21px;
  line-height:1.2;
  font-weight:600;
  margin-bottom:10px;
}
.catalog-card-large .catalog-content h2{
  font-size:30px;
}
.catalog-content p{
  color:#d7d2ca;
  font-size:14px;
  line-height:1.6;
  max-width:430px;
  margin-bottom:18px;
}
.catalog-content a{
  height:38px;
  width:max-content;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(201,155,90,.5);
  background:rgba(0,0,0,.42);
  color:var(--gold-light);
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
}
.catalog-card:hover img{
  transform:scale(1.055);
  filter:brightness(.86) contrast(1.08);
}
.cta-strip{
  padding:34px 54px;
  background:#0d0d0d;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.cta-strip h2{
  color:#fff;
  font-size:23px;
  font-weight:500;
  margin-bottom:8px;
}
.cta-strip p{
  color:#d7d2ca;
  font-size:14px;
}
.cta-strip a{
  min-width:150px;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#111;
  background:linear-gradient(135deg,#f0c981,#bd8c4e);
  font-size:13px;
  font-weight:700;
}

.category-page{
  background:#080808;
  padding:46px 36px 58px;
  display:grid;
  grid-template-columns:310px 1fr;
  gap:28px;
}
.category-info{
  background:#0f0f0f;
  border:1px solid rgba(201,155,90,.24);
  border-radius:10px;
  padding:24px;
  align-self:start;
  position:sticky;
  top:104px;
}
.category-info h2{
  color:var(--gold-light);
  font-size:18px;
  font-weight:600;
  margin-bottom:16px;
}
.category-info ul{
  padding-left:18px;
  color:#ddd;
  font-size:14px;
  line-height:1.9;
  margin-bottom:22px;
}
.category-info a{
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  background:linear-gradient(135deg,#f0c981,#bd8c4e);
  font-size:13px;
  font-weight:700;
}
.items-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.item-card{
  overflow:hidden;
  background:#0f0f0f;
  border:1px solid rgba(201,155,90,.22);
  border-radius:10px;
  transition:.2s ease;
}
.item-card img{
  height:255px;
  filter:brightness(.86);
}
.item-card div{
  padding:16px;
}
.item-card h3{
  color:#fff;
  font-size:14px;
  font-weight:600;
  margin-bottom:6px;
}
.item-card p{
  color:#cfcac2;
  font-size:13px;
}
.item-card:hover{
  transform:translateY(-3px);
  border-color:rgba(201,155,90,.5);
}

.content-block{
  background:#080808;
  padding:58px 24px;
}
.content-block>div{
  max-width:900px;
  margin:0 auto;
  background:#0f0f0f;
  border:1px solid rgba(201,155,90,.22);
  border-radius:10px;
  padding:34px;
}
.content-block h2{
  color:var(--gold-light);
  font-size:24px;
  margin-bottom:14px;
  font-weight:500;
}
.content-block p{
  color:#d7d2ca;
  font-size:15px;
  line-height:1.8;
}
.service-cards{
  background:#080808;
  padding:46px 36px 58px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.service-cards article,
.contact-panel,
.contact-form{
  background:#0f0f0f;
  border:1px solid rgba(201,155,90,.22);
  border-radius:10px;
  padding:24px;
}
.service-cards h3,
.contact-panel h2{
  color:var(--gold-light);
  font-size:17px;
  font-weight:600;
  margin-bottom:12px;
}
.service-cards p,
.contact-panel p{
  color:#d7d2ca;
  font-size:14px;
  line-height:1.7;
}
.contact-layout{
  background:#080808;
  padding:46px 36px 58px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.contact-form{
  display:grid;
  gap:14px;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  background:#080808;
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  padding:14px;
  font-family:inherit;
  font-size:14px;
  outline:none;
}
.contact-form textarea{
  min-height:145px;
  resize:vertical;
}
.contact-form input:focus,
.contact-form textarea:focus{
  border-color:rgba(201,155,90,.55);
}
.contact-form button{
  border:0;
  height:46px;
  background:linear-gradient(135deg,#f0c981,#bd8c4e);
  color:#111;
  font-weight:700;
  cursor:pointer;
}

@media(max-width:1100px){
  .catalog-grid{grid-template-columns:1fr 1fr}
  .catalog-card-large{grid-column:span 2;grid-row:span 1}
  .category-page{grid-template-columns:1fr}
  .category-info{position:static}
  .items-grid{grid-template-columns:repeat(2,1fr)}
  .service-cards{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:760px){
  .subhero{padding:54px 20px;min-height:250px}
  .subhero h1{font-size:28px;letter-spacing:1px}
  .catalog-wrap,.category-page,.service-cards,.contact-layout{padding:32px 18px}
  .catalog-grid{grid-template-columns:1fr;grid-auto-rows:280px}
  .catalog-card-large{grid-column:span 1}
  .catalog-content{padding:22px}
  .catalog-card-large .catalog-content h2{font-size:23px}
  .items-grid,.service-cards,.contact-layout{grid-template-columns:1fr}
  .cta-strip{padding:30px 22px;flex-direction:column;align-items:flex-start}
}


/* ===== FINAL PAGES STYLE v3 — visi meniu punktai ===== */
.page-hero{
  min-height:310px;
  padding:76px 24px;
  display:grid;
  place-items:center;
  text-align:center;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,155,90,.16), transparent 34%),
    linear-gradient(135deg,#070707 0%,#151515 52%,#070707 100%);
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.page-hero-products{
  background:
    linear-gradient(90deg,rgba(5,5,5,.94),rgba(5,5,5,.78),rgba(5,5,5,.94)),
    url("../assets/hero-clean.jpg?v=clean-final") center/cover no-repeat;
}

.page-hero-inner{
  max-width:860px;
  margin:0 auto;
}

.page-label{
  display:inline-block;
  margin-bottom:16px;
  color:var(--gold-light);
  font-size:12px;
  font-weight:600;
  letter-spacing:4px;
  text-transform:uppercase;
}

.page-hero h1{
  color:#fff;
  font-size:38px;
  line-height:1.16;
  font-weight:500;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:16px;
}

.page-hero p{
  color:#d8d2ca;
  font-size:15px;
  line-height:1.7;
  max-width:760px;
  margin:0 auto;
}

.page-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:26px;
}

.catalog-section{
  background:#080808;
  padding:36px 36px 58px;
}

.catalog-tabs{
  max-width:1180px;
  margin:0 auto 34px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
}

.catalog-tabs a{
  height:38px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  background:#0f0f0f;
  border:1px solid rgba(201,155,90,.24);
  color:#ddd;
  font-size:13px;
  font-weight:500;
}

.catalog-tabs a.active,
.catalog-tabs a:hover{
  color:#111;
  background:linear-gradient(135deg,#f0c981,#bd8c4e);
  border-color:transparent;
}

.catalog-grid{
  max-width:1380px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr;
  grid-auto-rows:300px;
  gap:18px;
}

.catalog-card{
  position:relative;
  overflow:hidden;
  border-radius:10px;
  border:1px solid rgba(201,155,90,.24);
  background:#101010;
  box-shadow:0 18px 45px rgba(0,0,0,.35);
}

.catalog-large{
  grid-row:span 2;
}

.catalog-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.68) contrast(1.07);
  transition:.4s ease;
}

.catalog-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.24) 42%,rgba(0,0,0,.92));
}

.catalog-large:after{
  background:
    linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.34),rgba(0,0,0,.08)),
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.82));
}

.catalog-card-content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:28px;
}

.catalog-card-content span{
  color:var(--gold-light);
  font-size:12px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  display:inline-block;
  margin-bottom:12px;
}

.catalog-card-content h2{
  color:#fff;
  font-size:21px;
  line-height:1.2;
  font-weight:600;
  margin-bottom:10px;
}

.catalog-large .catalog-card-content h2{
  font-size:30px;
}

.catalog-card-content p{
  color:#d7d2ca;
  font-size:14px;
  line-height:1.6;
  max-width:430px;
  margin-bottom:18px;
}

.catalog-card-content a{
  height:38px;
  width:max-content;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(201,155,90,.5);
  background:rgba(0,0,0,.42);
  color:var(--gold-light);
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
}

.catalog-card:hover img{
  transform:scale(1.055);
  filter:brightness(.86) contrast(1.08);
}

.cta-section{
  padding:34px 54px;
  background:#0d0d0d;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.cta-section h2{
  color:#fff;
  font-size:23px;
  font-weight:500;
  margin-bottom:8px;
}

.cta-section p{
  color:#d7d2ca;
  font-size:14px;
}

.cta-section a{
  min-width:150px;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#111;
  background:linear-gradient(135deg,#f0c981,#bd8c4e);
  font-size:13px;
  font-weight:700;
}

.category-section{
  background:#080808;
  padding:46px 36px 58px;
  display:grid;
  grid-template-columns:310px 1fr;
  gap:28px;
}

.category-sidebar{
  background:#0f0f0f;
  border:1px solid rgba(201,155,90,.24);
  border-radius:10px;
  padding:24px;
  align-self:start;
  position:sticky;
  top:104px;
}

.category-sidebar h2{
  color:var(--gold-light);
  font-size:18px;
  font-weight:600;
  margin-bottom:16px;
}

.category-sidebar ul{
  padding-left:18px;
  color:#ddd;
  font-size:14px;
  line-height:1.9;
  margin-bottom:22px;
}

.category-sidebar a{
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  background:linear-gradient(135deg,#f0c981,#bd8c4e);
  font-size:13px;
  font-weight:700;
}

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

.item-card{
  overflow:hidden;
  background:#0f0f0f;
  border:1px solid rgba(201,155,90,.22);
  border-radius:10px;
  transition:.2s ease;
}

.item-card img{
  width:100%;
  height:255px;
  object-fit:cover;
  filter:brightness(.86);
}

.item-card div{
  padding:16px;
}

.item-card h3{
  color:#fff;
  font-size:14px;
  font-weight:600;
  margin-bottom:6px;
}

.item-card p{
  color:#cfcac2;
  font-size:13px;
}

.item-card:hover{
  transform:translateY(-3px);
  border-color:rgba(201,155,90,.5);
}

.content-section{
  background:#080808;
  padding:58px 24px;
}

.content-card{
  max-width:900px;
  margin:0 auto;
  background:#0f0f0f;
  border:1px solid rgba(201,155,90,.22);
  border-radius:10px;
  padding:34px;
}

.content-card h2{
  color:var(--gold-light);
  font-size:24px;
  margin-bottom:14px;
  font-weight:500;
}

.content-card p{
  color:#d7d2ca;
  font-size:15px;
  line-height:1.8;
}

.service-section{
  background:#080808;
  padding:46px 36px 58px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.service-section article,
.contact-card-new,
.contact-form-new{
  background:#0f0f0f;
  border:1px solid rgba(201,155,90,.22);
  border-radius:10px;
  padding:24px;
}

.service-section h3,
.contact-card-new h2{
  color:var(--gold-light);
  font-size:17px;
  font-weight:600;
  margin-bottom:12px;
}

.service-section p,
.contact-card-new p{
  color:#d7d2ca;
  font-size:14px;
  line-height:1.7;
}

.contact-section-new{
  background:#080808;
  padding:46px 36px 58px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.contact-form-new{
  display:grid;
  gap:14px;
}

.contact-form-new input,
.contact-form-new textarea{
  width:100%;
  background:#080808;
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  padding:14px;
  font-family:inherit;
  font-size:14px;
  outline:none;
}

.contact-form-new textarea{
  min-height:145px;
  resize:vertical;
}

.contact-form-new input:focus,
.contact-form-new textarea:focus{
  border-color:rgba(201,155,90,.55);
}

.contact-form-new button{
  border:0;
  height:46px;
  background:linear-gradient(135deg,#f0c981,#bd8c4e);
  color:#111;
  font-weight:700;
  cursor:pointer;
}

@media(max-width:1100px){
  .catalog-grid{grid-template-columns:1fr 1fr}
  .catalog-large{grid-column:span 2;grid-row:span 1}
  .category-section{grid-template-columns:1fr}
  .category-sidebar{position:static}
  .items-grid{grid-template-columns:repeat(2,1fr)}
  .service-section{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:760px){
  .page-hero{padding:54px 20px;min-height:250px}
  .page-hero h1{font-size:28px;letter-spacing:1px}
  .catalog-section,.category-section,.service-section,.contact-section-new{padding:32px 18px}
  .catalog-grid{grid-template-columns:1fr;grid-auto-rows:280px}
  .catalog-large{grid-column:span 1}
  .catalog-card-content{padding:22px}
  .catalog-large .catalog-card-content h2{font-size:23px}
  .items-grid,.service-section,.contact-section-new{grid-template-columns:1fr}
  .cta-section{padding:30px 22px;flex-direction:column;align-items:flex-start}
}


/* CART + PRODUCT BUY BUTTONS v2 */
.product-bottom{
  margin-top:14px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:12px !important;
  border-top:1px solid rgba(201,155,90,.18) !important;
  padding-top:14px !important;
}

.product-bottom strong{
  color:#e5bd7a !important;
  font-size:18px !important;
  font-weight:800 !important;
  white-space:nowrap !important;
}

.product-code{
  display:block !important;
  color:#9f978c !important;
  font-size:12px !important;
  margin-top:4px !important;
}

.add-cart-btn,
.product-bottom button{
  height:34px !important;
  padding:0 14px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:#111 !important;
  background:linear-gradient(135deg,#f2c77f,#bd8c4e) !important;
  font-size:12px !important;
  font-weight:700 !important;
  border:0 !important;
  cursor:pointer !important;
  text-decoration:none !important;
  white-space:nowrap !important;
}

.vision-link{
  margin-top:10px !important;
  display:inline-flex !important;
  color:#e5bd7a !important;
  font-size:12px !important;
  text-decoration:none !important;
}

.catalog-card-content .catalog-actions{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  flex-wrap:wrap !important;
}

.catalog-card-content .catalog-price{
  display:block !important;
  color:#e5bd7a !important;
  font-size:15px !important;
  font-weight:800 !important;
  margin:8px 0 14px !important;
}

.cart-drawer{
  position:fixed;
  inset:0;
  z-index:9999;
  pointer-events:none;
  opacity:0;
  transition:.2s ease;
}

.cart-open .cart-drawer{
  pointer-events:auto;
  opacity:1;
}

.cart-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.62);
}

.cart-panel{
  position:absolute;
  top:0;
  right:0;
  width:min(430px, 100%);
  height:100%;
  background:#0b0b0b;
  border-left:1px solid rgba(201,155,90,.28);
  box-shadow:-20px 0 60px rgba(0,0,0,.55);
  padding:22px;
  overflow:auto;
  transform:translateX(100%);
  transition:.25s ease;
}

.cart-open .cart-panel{
  transform:translateX(0);
}

.cart-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
}

.cart-head h2{
  color:#e5bd7a;
  font-size:22px;
  font-weight:600;
}

.cart-head button,
.cart-line button{
  background:transparent;
  border:0;
  color:#fff;
  font-size:26px;
  cursor:pointer;
}

.cart-items{
  display:grid;
  gap:10px;
  margin-bottom:18px;
}

.cart-empty{
  color:#bbb;
  font-size:14px;
}

.cart-line{
  display:grid;
  grid-template-columns:1fr auto auto;
  align-items:center;
  gap:12px;
  background:#111;
  border:1px solid rgba(201,155,90,.18);
  padding:12px;
}

.cart-line b{
  color:#fff;
  font-size:14px;
  display:block;
}

.cart-line small{
  color:#9f978c;
  font-size:12px;
}

.cart-line strong{
  color:#e5bd7a;
  font-size:14px;
}

.cart-total{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid rgba(201,155,90,.25);
  border-bottom:1px solid rgba(201,155,90,.25);
  padding:15px 0;
  margin-bottom:18px;
  color:#fff;
}

.cart-total strong{
  color:#e5bd7a;
  font-size:20px;
}

.checkout-form{
  display:grid;
  gap:12px;
}

.checkout-form input,
.checkout-form textarea{
  width:100%;
  background:#070707;
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  padding:13px;
  font-family:inherit;
  font-size:14px;
  outline:none;
}

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

.checkout-form button{
  border:0;
  background:linear-gradient(135deg,#f2c77f,#bd8c4e);
  color:#111;
  height:46px;
  font-weight:800;
  cursor:pointer;
}

.clear-cart{
  width:100%;
  margin-top:12px;
  height:40px;
  background:transparent;
  border:1px solid rgba(255,255,255,.16);
  color:#bbb;
  cursor:pointer;
}

@media(max-width:560px){
  .product-bottom{
    flex-direction:column !important;
    align-items:flex-start !important;
  }
  .add-cart-btn,
  .product-bottom button{
    width:100% !important;
  }
}


/* PAYMENT BUTTONS FIX */
.payment-buttons{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.payment-buttons button{
  width:100%;
}

.payment-buttons button[value="paypal"]{
  background:#ffffff !important;
  color:#111 !important;
}

.checkout-form button[name="payment_method"]{
  border:0;
  height:46px;
  font-weight:800;
  cursor:pointer;
}


/* FINAL SHOP EXTRAS */
.file-upload-label{
  display:grid;
  gap:7px;
  color:#e5bd7a;
  font-size:13px;
  font-weight:600;
}
.file-upload-label input{
  background:#070707;
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  padding:12px;
}
.legal-content h2,
.legal-content h3{
  color:#e5bd7a;
  margin:18px 0 10px;
}
.legal-content p{
  color:#d7d2ca;
  line-height:1.8;
  margin-bottom:12px;
}
.site-footer p a{
  color:#e5bd7a;
  text-decoration:none;
}


/* GRAVILITA papildomi patobulinimai */
.card img{filter:brightness(.58) contrast(1.08) saturate(.95)}
.card:hover img{filter:brightness(.72) contrast(1.08) saturate(.98)}
.card-price{font-size:12px;color:var(--gold-light);font-weight:700;margin:-10px 0 14px;text-transform:uppercase;letter-spacing:.7px}
.card a{width:124px;height:36px}
.why-us{background:linear-gradient(180deg,#080808,#111);padding:54px 34px;border-top:1px solid rgba(201,155,90,.16)}
.why-grid{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.why-grid article{border:1px solid rgba(201,155,90,.26);background:rgba(255,255,255,.035);padding:24px;border-radius:8px}
.why-grid strong{display:block;color:var(--gold-light);font-size:14px;text-transform:uppercase;letter-spacing:1.2px;margin-bottom:9px}
.why-grid p{color:#d7d2ca;font-size:13px;line-height:1.65}
.quick-contact{position:fixed;right:18px;bottom:18px;z-index:99;display:flex;gap:8px}
.quick-contact a{background:linear-gradient(135deg,#f0c981,#bd8c4e);color:#111;padding:10px 14px;border-radius:999px;font-weight:800;font-size:12px;box-shadow:0 8px 30px rgba(0,0,0,.35)}
.contact-list a{color:var(--gold-light);font-weight:700}
.contact-form-final button{cursor:pointer}
@media(max-width:760px){.why-grid{grid-template-columns:1fr}.quick-contact{left:14px;right:14px}.quick-contact a{flex:1;text-align:center}.card-price{margin-top:-8px}}

/* PREMIUM APAČIOS SEKCIJOS — pataisyta pagal pavyzdį */
.premium-section{
  position:relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,155,90,.10), transparent 34%),
    linear-gradient(180deg,#070707 0%,#10100f 100%) !important;
  padding:68px 34px 76px !important;
  border-top:1px solid rgba(201,155,90,.12) !important;
  border-bottom:1px solid rgba(201,155,90,.18);
  overflow:hidden;
}
.premium-section:before,
.premium-about:before,
.site-footer:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:radial-gradient(circle at center, rgba(255,255,255,.035), transparent 42%);
}
.premium-title{
  position:relative;
  z-index:1;
  margin-bottom:52px !important;
}
.premium-title h2{
  font-size:24px !important;
  letter-spacing:10px !important;
  font-weight:600 !important;
  color:#e7bd78 !important;
  text-shadow:0 0 18px rgba(201,155,90,.14);
}
.premium-title i{
  width:150px !important;
  height:1px !important;
  margin-top:22px !important;
  background:linear-gradient(90deg,transparent,#c99b5a 22%,#c99b5a 78%,transparent) !important;
  position:relative;
}
.premium-title i:after{
  content:"◇";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  color:#c99b5a;
  background:#090909;
  padding:0 14px;
  font-style:normal;
  font-size:18px;
  line-height:1;
}
.premium-why-grid{
  max-width:1240px !important;
  display:grid !important;
  grid-template-columns:repeat(4,1fr) !important;
  gap:0 !important;
  margin:0 auto !important;
  position:relative;
  z-index:1;
}
.why-card{
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  padding:0 36px !important;
  text-align:center;
  min-height:252px;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.why-card + .why-card{
  border-left:1px solid rgba(255,255,255,.12) !important;
}
.why-icon{
  width:82px;
  height:82px;
  border:1px solid rgba(201,155,90,.72);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#e7bd78;
  font-size:36px;
  line-height:1;
  margin:0 auto 31px;
  box-shadow:0 0 34px rgba(201,155,90,.08), inset 0 0 18px rgba(201,155,90,.04);
}
.why-card strong{
  display:block !important;
  color:#f2f2f2 !important;
  font-size:15px !important;
  letter-spacing:4px !important;
  line-height:1.35;
  text-transform:uppercase;
  margin:0 0 14px !important;
  font-weight:700 !important;
}
.why-card p{
  max-width:250px;
  margin:0 auto;
  color:#cfcac2 !important;
  font-size:15px !important;
  line-height:1.8 !important;
  font-weight:400;
}
.premium-about{
  position:relative;
  background:
    radial-gradient(circle at 50% 30%, rgba(201,155,90,.08), transparent 42%),
    linear-gradient(180deg,#121210 0%,#090909 100%) !important;
  padding:62px 24px 70px !important;
  border-bottom:1px solid rgba(201,155,90,.38);
  text-align:center;
  overflow:hidden;
}
.premium-about .premium-title{
  margin-bottom:20px !important;
}
.premium-about .premium-title i{
  width:92px !important;
  margin-top:18px !important;
}
.premium-about .premium-title i:after{display:none;}
.premium-about p{
  position:relative;
  z-index:1;
  max-width:850px;
  margin:0 auto !important;
  color:#d2d2d2 !important;
  font-size:17px !important;
  line-height:1.75 !important;
  text-align:center;
}
.site-footer{
  position:relative;
  background:linear-gradient(180deg,#050505,#090909);
  padding:36px 20px 40px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.08);
  overflow:hidden;
}
.footer-socials{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  gap:18px;
  margin-bottom:20px;
}
.footer-socials a{
  width:54px;
  height:54px;
  border-radius:50%;
  border:1px solid rgba(201,155,90,.58);
  display:grid;
  place-items:center;
  color:#e7bd78;
  font-weight:800;
  font-size:15px;
  background:rgba(255,255,255,.02);
}
.site-footer p{
  position:relative;
  z-index:1;
  color:#a7a7a7;
  font-size:15px;
  letter-spacing:.2px;
}
.quick-contact{
  gap:10px !important;
}
.quick-contact a + a:before{content:none !important;}
@media(max-width:980px){
  .premium-why-grid{grid-template-columns:repeat(2,1fr) !important; gap:44px 0 !important;}
  .why-card:nth-child(3){border-left:0 !important;}
}
@media(max-width:640px){
  .premium-section{padding:46px 18px 54px !important;}
  .premium-title h2{font-size:19px !important; letter-spacing:5px !important;}
  .premium-why-grid{grid-template-columns:1fr !important; gap:34px !important;}
  .why-card{padding:0 14px !important; min-height:auto;}
  .why-card + .why-card{border-left:0 !important; border-top:1px solid rgba(255,255,255,.10) !important; padding-top:34px !important;}
  .why-card strong{letter-spacing:2.5px !important;}
  .premium-about p{font-size:15px !important;}
  .premium-about p br{display:none;}
}

/* === PREMIUM V4: bendras sutvarkymas === */
body{
  background:
    radial-gradient(circle at 20% 0%, rgba(201,155,90,.055), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.035), transparent 26%),
    #050505;
}
.header{
  backdrop-filter: blur(10px);
  background:rgba(3,3,3,.92);
}
.nav a{letter-spacing:.4px;}
.hero:after,
.about-hero:after,
.contact-hero:after,
.page-hero:after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size:38px 38px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.65), transparent 75%);
}
.why-icon svg,
.footer-socials svg{
  width:35px;
  height:35px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.footer-socials svg{width:23px;height:23px;}
.footer-socials a:first-child svg{fill:currentColor;stroke:none;width:22px;height:22px;}
.why-card{
  transition:transform .28s ease, color .28s ease;
}
.why-card:hover{
  transform:translateY(-6px);
}
.why-card:hover .why-icon{
  border-color:#e7bd78;
  box-shadow:0 0 42px rgba(201,155,90,.18), inset 0 0 22px rgba(201,155,90,.08);
}
.premium-section,
.premium-about,
.site-footer,
.about-hero,
.contact-hero,
.page-hero-products{
  background-image:
    radial-gradient(circle at 50% 15%, rgba(201,155,90,.10), transparent 32%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(180deg,#090909,#050505) !important;
  background-size:auto,42px 42px,42px 42px,auto !important;
}
.categories,
.advantages,
.catalog-section,
.contact-main,
.about-intro,
.about-values,
.services-grid{
  position:relative;
}
.card,.clean-card,.service-card,.about-values article,.contact-info-box,.contact-form-final,.about-highlight{
  box-shadow:0 18px 50px rgba(0,0,0,.28);
}
.card a,.clean-actions a,.clean-actions button,.about-cta a,.contact-form-final button,.btn{
  border-radius:999px;
}
.clean-card,.service-card,.about-values article,.contact-info-box,.contact-form-final,.about-highlight{
  border:1px solid rgba(201,155,90,.22) !important;
  background:linear-gradient(180deg,rgba(255,255,255,.052),rgba(255,255,255,.018)) !important;
}
.service-card span,
.about-values span{
  display:inline-grid;
  place-items:center;
  width:42px;
  height:42px;
  border:1px solid rgba(201,155,90,.55);
  border-radius:50%;
  color:#e7bd78;
  font-weight:800;
  font-size:12px;
  margin-bottom:18px;
}
.premium-services-grid .service-card{
  padding:30px 28px;
  min-height:220px;
  transition:transform .25s ease,border-color .25s ease;
}
.premium-services-grid .service-card:hover,
.about-values article:hover,
.clean-card:hover{
  transform:translateY(-4px);
  border-color:rgba(201,155,90,.48) !important;
}
.premium-services-grid .service-card h3{
  color:#f4d19a;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-size:14px;
  margin-bottom:10px;
}
.premium-services-grid .service-card p{color:#d7d2ca;line-height:1.75;}
.about-cta{
  border-top:1px solid rgba(201,155,90,.14);
  border-bottom:1px solid rgba(201,155,90,.14);
}
.footer-socials a{
  transition:transform .25s ease, background .25s ease, border-color .25s ease;
}
.footer-socials a:hover{
  transform:translateY(-3px);
  background:rgba(201,155,90,.12);
  border-color:#e7bd78;
}
.quick-contact a{
  min-width:105px;
  text-align:center;
}
.quick-contact a:hover{filter:brightness(1.08);transform:translateY(-1px);}
@media(max-width:900px){
  .header{backdrop-filter:none;}
  .nav{width:100%;}
  .nav.open{border-top:1px solid rgba(201,155,90,.18);margin-top:12px;}
}
@media(max-width:640px){
  .quick-contact{bottom:10px !important;}
  .site-footer{padding-bottom:82px;}
}



/* === PREMIUM V8 FIX: reviews + address blocks === */
.premium-extra{
  padding:78px 22px;
  background:
    radial-gradient(circle at 50% 5%, rgba(201,155,90,.10), transparent 30%),
    linear-gradient(180deg,#070707,#040404);
  border-top:1px solid rgba(255,255,255,.07);
}
.testimonial-grid,
.address-grid{
  width:min(1120px,100%);
  margin:34px auto 0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.testimonial,
.address-grid article{
  text-align:center;
  padding:30px 26px;
  min-height:190px;
  border:1px solid rgba(201,155,90,.30);
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  box-shadow:0 22px 55px rgba(0,0,0,.28);
  transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
}
.testimonial:hover,
.address-grid article:hover{
  transform:translateY(-5px);
  border-color:rgba(231,189,120,.65);
  box-shadow:0 28px 70px rgba(0,0,0,.36),0 0 36px rgba(201,155,90,.08);
}
.testimonial .stars{
  color:#e7bd78;
  letter-spacing:4px;
  font-size:18px;
  margin-bottom:18px;
}
.testimonial p,
.address-grid p{
  color:#d8d1c6;
  font-size:16px;
  line-height:1.75;
  margin:0 auto 16px;
}
.testimonial strong,
.address-grid h3{
  color:#fff;
  font-weight:800;
  letter-spacing:1.3px;
}
.address-lead{
  max-width:760px;
  margin:28px auto 0;
  text-align:center;
  color:#ded7ce;
  font-size:17px;
  line-height:1.75;
}
.address-grid article span{
  display:inline-grid;
  place-items:center;
  width:54px;
  height:54px;
  margin-bottom:18px;
  border:1px solid rgba(201,155,90,.58);
  border-radius:50%;
  color:#e7bd78;
  font-weight:800;
}
.address-grid h3{
  color:#f4d19a;
  text-transform:uppercase;
  font-size:15px;
  margin-bottom:10px;
}
.address-cta{
  text-align:center;
  margin-top:34px;
}
@media(max-width:900px){
  .testimonial-grid,
  .address-grid{grid-template-columns:1fr;max-width:560px;}
  .premium-extra{padding:58px 18px;}
}

.cta-premium{padding:70px 20px;text-align:center}.cta-premium h2{margin-bottom:10px}

/* === MOBILE PRODUCTS FIX v10 === */
@media (max-width: 900px){
  html, body{width:100%; max-width:100%; overflow-x:hidden;}
  .categories{padding:34px 16px 28px !important;}
  .cards{display:grid !important; grid-template-columns:1fr 1fr !important; gap:14px !important; width:100% !important;}
  .card{display:block !important; min-height:285px !important; height:auto !important; width:100% !important; opacity:1 !important; visibility:visible !important;}
  .card img{display:block !important; position:absolute !important; width:100% !important; height:100% !important; object-fit:cover !important; opacity:1 !important; visibility:visible !important;}
  .card-content{display:block !important; position:absolute !important; left:0 !important; right:0 !important; bottom:18px !important; padding:0 12px !important; opacity:1 !important; visibility:visible !important;}
  .card-content a{display:grid !important; opacity:1 !important; visibility:visible !important;}

  .catalog-tabs{justify-content:flex-start !important; overflow-x:auto !important; flex-wrap:nowrap !important; padding-bottom:8px !important; -webkit-overflow-scrolling:touch;}
  .catalog-tabs a{flex:0 0 auto !important; white-space:nowrap !important;}

  .clean-grid,
  .catalog-grid,
  .products-showcase{display:grid !important; grid-template-columns:1fr !important; grid-auto-rows:auto !important; gap:18px !important; width:100% !important; max-width:100% !important;}
  .clean-card,
  .catalog-card,
  .showcase-card{display:block !important; min-height:auto !important; height:auto !important; width:100% !important; grid-column:auto !important; grid-row:auto !important; opacity:1 !important; visibility:visible !important;}
  .clean-card img,
  .catalog-card img,
  .showcase-card img{display:block !important; position:relative !important; inset:auto !important; width:100% !important; height:220px !important; object-fit:cover !important; opacity:1 !important; visibility:visible !important;}
  .clean-card:after,
  .catalog-card:after,
  .showcase-card:after{display:none !important;}
  .clean-card-content,
  .catalog-card-content,
  .showcase-content{display:block !important; position:relative !important; left:auto !important; right:auto !important; bottom:auto !important; top:auto !important; padding:20px !important; background:#111 !important; opacity:1 !important; visibility:visible !important;}
  .clean-actions,
  .catalog-actions{display:flex !important; flex-direction:column !important; gap:10px !important; align-items:stretch !important;}
  .clean-actions a,
  .clean-actions button,
  .catalog-actions a,
  .catalog-actions button{width:100% !important; min-height:40px !important; display:flex !important; align-items:center !important; justify-content:center !important;}

  .category-section{display:block !important; padding:30px 16px !important; width:100% !important; max-width:100% !important;}
  .category-sidebar{display:block !important; position:static !important; width:100% !important; margin:0 0 18px !important; opacity:1 !important; visibility:visible !important;}
  .items-grid{display:grid !important; grid-template-columns:1fr !important; gap:18px !important; width:100% !important; max-width:100% !important; opacity:1 !important; visibility:visible !important;}
  .item-card{display:block !important; width:100% !important; min-height:auto !important; height:auto !important; opacity:1 !important; visibility:visible !important; overflow:hidden !important;}
  .item-card img{display:block !important; position:relative !important; width:100% !important; height:220px !important; object-fit:cover !important; opacity:1 !important; visibility:visible !important;}
  .item-card > div{display:flex !important; flex-direction:column !important; padding:18px !important; min-height:auto !important; opacity:1 !important; visibility:visible !important;}
  .product-bottom{display:flex !important; flex-direction:column !important; align-items:stretch !important; gap:10px !important;}
  .product-bottom button,
  .add-cart-btn{width:100% !important; display:flex !important; align-items:center !important; justify-content:center !important; min-height:40px !important;}
  .vision-link{display:inline-flex !important; opacity:1 !important; visibility:visible !important;}
}
@media (max-width: 520px){
  .cards{grid-template-columns:1fr !important;}
  .card{min-height:310px !important;}
  .clean-card img,.catalog-card img,.showcase-card img,.item-card img{height:205px !important;}
}

.nav-login{color:#e8bd74;text-decoration:none;font-weight:800;margin-left:8px}.customer-cart-note{font-size:13px;color:#d8d0c4;background:#111;border:1px solid rgba(221,176,101,.28);border-radius:10px;padding:10px;margin:12px 0}.customer-cart-note a{color:#e8bd74;font-weight:800;text-decoration:none}@media(max-width:760px){.nav-login{display:block;padding:12px 18px}}

/* v13: prisijungimo tekstas pašalintas iš meniu, naudojama esama vartotojo ikonėlė */
.nav-login{display:none!important;}

/* V18 footer policy links */
.footer-links{display:flex;gap:18px;justify-content:center;flex-wrap:wrap;margin-bottom:20px}.footer-links a{color:rgba(255,255,255,.74);text-decoration:none;font-weight:700;font-size:14px;letter-spacing:.02em}.footer-links a:hover{color:#f1bd6a}.product-real-card h3{letter-spacing:-.02em}.category-section-pro{align-items:start}.pro-sidebar{position:sticky;top:96px}.pro-products-grid .item-card{box-shadow:0 24px 80px rgba(0,0,0,.32)}.pro-products-grid .item-card img{filter:saturate(1.06) contrast(1.03)}
@media(max-width:900px){.pro-sidebar{position:relative;top:auto}.footer-links{gap:12px}.footer-links a{font-size:13px}}


.payment-title{color:#e5bd7a;font-weight:700;margin-top:8px;margin-bottom:6px}
.premium-payments{display:flex;flex-direction:column;gap:12px}
.premium-payments button{height:auto!important;padding:18px 20px!important;text-align:left;border-radius:14px}
.premium-payments span{display:block;font-size:20px;font-weight:800}
.premium-payments small{display:block;margin-top:4px;font-size:13px;opacity:.85}
.paysera-btn{background:linear-gradient(135deg,#f2c77f,#bd8c4e)!important;color:#111!important}
.bank-btn{background:#0d0d0d!important;color:#fff!important;border:1px solid rgba(201,155,90,.4)!important}
.paypal-btn{background:#fff!important;color:#111!important}

/* GRAVILITA premium cart v2 */
.cart-panel.premium-cart{
  width:min(1180px, 92vw) !important;
  max-width:1180px !important;
  padding:0 !important;
  background:linear-gradient(145deg,#070707 0%,#0d0d0d 46%,#050505 100%) !important;
  border-left:1px solid rgba(229,189,122,.38) !important;
  box-shadow:-35px 0 90px rgba(0,0,0,.78) !important;
  overflow:auto !important;
}
.premium-cart::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(circle at 72% 10%,rgba(229,189,122,.10),transparent 32%),linear-gradient(90deg,rgba(255,255,255,.025),transparent);
}
.premium-cart-close{
  position:absolute;right:22px;top:18px;z-index:3;background:transparent;border:0;color:#fff;font-size:36px;line-height:1;cursor:pointer;transition:.2s;
}
.premium-cart-close:hover{color:#e9bd73;transform:rotate(90deg)}
.premium-cart-grid{position:relative;z-index:2;display:grid;grid-template-columns:390px 1fr;min-height:100%;}
.premium-cart-summary{padding:38px 34px;border-right:1px solid rgba(255,255,255,.09);background:rgba(0,0,0,.22)}
.premium-cart-form{padding:38px 46px 34px;}
.cart-head.premium-cart-title{justify-content:flex-start;gap:17px;margin-bottom:22px}
.cart-title-icon{width:48px;height:48px;border:1px solid rgba(229,189,122,.65);border-radius:15px;display:grid;place-items:center;color:#e9bd73;font-size:30px;background:rgba(229,189,122,.08)}
.cart-kicker{display:block;color:#e9bd73;font-weight:800;font-size:11px;letter-spacing:5px;margin-bottom:2px}.premium-cart-title h2{font-size:30px!important;color:#fff!important;text-transform:uppercase;letter-spacing:7px;margin:0!important}.premium-cart-form h3{color:#e9bd73;font-size:18px;text-transform:uppercase;letter-spacing:1.2px;margin:0 0 20px;font-weight:900}.premium-cart .cart-items{margin:20px 0 20px;gap:12px}.premium-cart .cart-empty{font-size:17px;color:#e9e2d7}.premium-cart .cart-line{border-radius:14px;background:rgba(255,255,255,.035);border:1px solid rgba(229,189,122,.22);padding:14px}.premium-cart .cart-line button{font-size:22px;color:#e9bd73}.premium-cart .cart-total{margin:0 0 20px;padding:20px 0;border-color:rgba(229,189,122,.32);font-size:18px;font-weight:900}.premium-cart .cart-total strong{font-size:30px;color:#e9bd73}.customer-cart-note{display:flex!important;align-items:center;gap:14px;background:linear-gradient(135deg,rgba(229,189,122,.08),rgba(255,255,255,.02))!important;border:1px solid rgba(229,189,122,.38)!important;border-radius:14px!important;padding:18px!important;margin:18px 0 26px!important;color:#fff!important;font-size:15px!important}.customer-cart-note .note-icon{font-size:24px}.customer-cart-note a{color:#e9bd73!important}.cart-benefits{display:grid;gap:18px;margin-top:24px}.cart-benefits div{display:grid;grid-template-columns:42px 1fr;column-gap:14px;align-items:center}.cart-benefits span{grid-row:1/3;width:40px;height:40px;border:1px solid rgba(229,189,122,.32);border-radius:12px;display:grid;place-items:center;color:#e9bd73;font-size:20px}.cart-benefits b{color:#fff;font-size:16px}.cart-benefits small{color:#a9a39b;font-size:13px;margin-top:2px}.premium-cart .clear-cart{height:44px;border-radius:12px;margin-top:26px;border:1px solid rgba(255,255,255,.13);color:#cfc7bc;background:rgba(255,255,255,.025)}
.premium-cart .checkout-form{gap:14px}.field-row{display:grid;grid-template-columns:48px 1fr;align-items:center;border:1px solid rgba(255,255,255,.13);border-radius:10px;background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.015));overflow:hidden}.field-row span{height:100%;min-height:52px;display:grid;place-items:center;color:#e9bd73;border-right:1px solid rgba(255,255,255,.08);opacity:.9}.premium-cart .checkout-form input,.premium-cart .checkout-form textarea{border:0!important;background:transparent!important;padding:16px 16px!important;font-size:16px!important}.textarea-row{align-items:start}.textarea-row span{min-height:116px}.premium-cart .checkout-form textarea{min-height:116px!important}.premium-file{display:block;color:#fff!important;margin-top:4px}.premium-file strong{display:block;color:#e9bd73;font-size:15px;text-transform:uppercase;letter-spacing:.8px;margin-bottom:10px}.premium-file span{display:grid;grid-template-columns:70px 1fr;align-items:center;border:1px dashed rgba(255,255,255,.18);border-radius:10px;overflow:hidden;background:rgba(255,255,255,.02)}.premium-file em{height:58px;display:grid;place-items:center;font-style:normal;color:#e9bd73;font-size:23px;border-right:1px solid rgba(255,255,255,.09)}.premium-file input{padding:14px!important;color:#fff!important}.payment-title{color:#e9bd73!important;font-size:17px!important;font-weight:900!important;letter-spacing:.3px;margin:12px 0 4px!important}.premium-payments{gap:14px!important}.premium-payments button{position:relative;min-height:78px!important;border-radius:14px!important;padding:18px 62px 18px 22px!important;border:1px solid rgba(229,189,122,.28)!important;box-shadow:0 12px 28px rgba(0,0,0,.22);transition:.2s ease}.premium-payments button:hover{transform:translateY(-1px);filter:brightness(1.06)}.premium-payments button span{font-size:22px!important;display:flex!important;align-items:center;gap:12px}.premium-payments button small{font-size:14px!important;opacity:.86!important;margin-top:5px!important}.premium-payments button i{position:absolute;right:22px;top:50%;transform:translateY(-50%);font-size:36px;font-style:normal}.premium-payments .paysera-btn{background:linear-gradient(135deg,#f5ca7f,#d19a53)!important;color:#0a0a0a!important}.pay-icon{width:38px;height:38px;border-radius:50%;display:inline-grid;place-items:center;background:#111;color:#e9bd73;font-weight:900;font-size:26px}.premium-payments .bank-btn{background:rgba(255,255,255,.025)!important;color:#fff!important}.premium-payments .paypal-btn{background:#fff!important;color:#111!important}.paypal-word{color:#0a64b7;font-size:24px}.cart-security-row{display:flex;justify-content:space-between;gap:16px;margin-top:18px;color:#a9a39b;font-size:14px}.cart-security-row span:first-child{color:#e6dbc9}
@media(max-width:900px){.cart-panel.premium-cart{width:100%!important}.premium-cart-grid{grid-template-columns:1fr}.premium-cart-summary{border-right:0;border-bottom:1px solid rgba(255,255,255,.08);padding:26px 20px}.premium-cart-form{padding:26px 20px}.cart-benefits{grid-template-columns:1fr 1fr}.premium-cart-title h2{font-size:24px!important;letter-spacing:4px}.cart-security-row{flex-direction:column}}
@media(max-width:560px){.cart-benefits{grid-template-columns:1fr}.premium-payments button span{font-size:18px!important}.premium-payments button{padding-right:42px!important}.cart-title-icon{width:42px;height:42px}.premium-cart-close{right:14px;top:12px}}
