*{
  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}}
