:root{
  --bg:#0b0c10;

  --card:#14161b;
  --card2:#101217;

  --text:#ffffff;
  --muted:rgba(255,255,255,.66);

  --gold:#ffd778;
  --goldSoft: rgba(255,215,120,.16);
  --goldLine: rgba(255,215,120,.18);

  --line:rgba(255,255,255,.10);

  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius:22px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  overflow-x:hidden;
  background: #0b0c10;
  position: relative;
}

.bg-orbs{ display:none !important; }

body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events:none;


  background:
    radial-gradient(900px 520px at 60% 20%,
      rgba(255,255,255,.03),
      transparent 55%
    ),
    radial-gradient(900px 520px at 90% 90%,
      rgba(255,215,120,.05),
      transparent 65%
    ),
    linear-gradient(180deg, #0b0c10 0%, #0e1016 55%, #0a0b0f 100%);

  opacity: 1;
}

body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events:none;

  background:
    
    linear-gradient(
      to right,
      transparent 0%,
      transparent 72%,
      rgba(255,215,120,.00) 73%,
      rgba(255,215,120,.14) 80%,
      rgba(255,215,120,.22) 92%,
      transparent 100%
    ),

  
    linear-gradient(
      135deg,
      transparent 0%,
      transparent 76%,
      rgba(255,215,120,.22) 77%,
      transparent 78%
    ),

    linear-gradient(
      45deg,
      transparent 0%,
      transparent 82%,
      rgba(255,215,120,.16) 83%,
      transparent 84%
    );

  opacity: .95;
  filter: blur(.1px);
}

body > *{
  position: relative;
  z-index: 2;
}

a{ color:inherit; text-decoration:none; }

.container{
  width:min(1150px, 92%);
  margin-inline:auto;
}


.header{
  position:sticky;
  top:0;
  z-index:50;

  border-bottom:1px solid rgba(255,255,255,.10);
  background: rgba(10,10,12,.75);
  backdrop-filter: blur(18px);
}

.header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand__logo{
  width:42px;
  height:42px;
  border-radius:16px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
}

.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brand__name{
  font-weight:900;
  letter-spacing:2px;
  font-size:16px;
}

.brand__tag{
  color:rgba(255,255,255,.55);
  font-size:12px;
  margin-top:2px;
}

.nav{
  display:flex;
  gap:18px;
  color:rgba(255,255,255,.65);
  font-size:14px;
}
.nav a{
  padding:8px 10px;
  border-radius:12px;
  transition: background .15s ease, color .15s ease;
}
.nav a:hover{
  color:#fff;
  background: rgba(255,255,255,.06);
}

.cart-btn{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:#fff;
  padding:10px 12px;
  border-radius:16px;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:10px;
  transition: transform .12s ease, background .12s ease;
}
.cart-btn:hover{
  background: rgba(255,255,255,.06);
}
.cart-btn:active{
  transform: scale(.98);
}

.badge{
  background: rgba(255,215,120,.14);
  border:1px solid rgba(255,215,120,.22);
  padding:2px 9px;
  border-radius:999px;
  font-size:12px;
  color: rgba(255,255,255,.95);
}

.hero{
  padding:58px 0 26px;
}

.hero .container{
  border-radius: 22px;
  border: 1px solid rgba(255,215,120,.20);
  background: rgba(10,10,12,.35);
  box-shadow:
    0 30px 120px rgba(0,0,0,.65),
    inset 0 0 0 1px rgba(255,255,255,.06);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.hero .container::before{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  z-index: 0;

  background:
    radial-gradient(900px 420px at 50% 0%,
      rgba(255,215,120,.08),
      transparent 55%
    ),
    radial-gradient(900px 520px at 10% 110%,
      rgba(255,255,255,.03),
      transparent 60%
    );
  opacity: .9;
}


.hero .container > *{
  position: relative;
  z-index: 1;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  align-items:stretch;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,215,120,.22);
  background: rgba(255,255,255,.03);
  color:rgba(255,255,255,.92);
  margin-bottom:14px;
  width:fit-content;
}

.hero__text h1{
  margin:0 0 12px;
  font-size:44px;
  line-height:1.04;
  letter-spacing:-.4px;
  color:#fff;
}

.hero__text p{
  margin:0 0 18px;
  color:var(--muted);
  max-width:58ch;
  line-height:1.55;
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  background: linear-gradient(180deg, rgba(255,215,120,.95), rgba(255,215,120,.55));
  border:none;
  color:#0b0c10;
  padding:12px 16px;
  border-radius:16px;
  cursor:pointer;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition: transform .12s ease, filter .12s ease;
}
.btn:hover{ filter:brightness(1.07); }
.btn:active{ transform: scale(.98); }

.btn--ghost{
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
}

.btn--wide{ width:100%; }

.hero__card{
  background: rgba(14,16,20,.50);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 20px 70px rgba(0,0,0,.55);
}

.hero__mini-title{
  color: rgba(255,215,120,.92);
  font-weight:900;
  margin-bottom:10px;
}

.hero__mini-list{
  color:rgba(255,255,255,.70);
  line-height:1.6;
  font-size:14px;
}

.hero__hint{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.55);
  font-size:13px;
}

.hero__mini-list--anim{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:16px;
}

.mini-line{
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(14,16,20,.45);
  color: rgba(255,255,255,.92);
  line-height:1.25;

  opacity: 0;
  transform: translateY(10px);
  animation: miniFadeUp .7s ease forwards;
}
.mini-line span{
  display:block;
  margin-top:6px;
  color: rgba(255,255,255,.60);
  font-size:13px;
}

.mini-line:nth-child(1){ animation-delay: .15s; }
.mini-line:nth-child(2){ animation-delay: .35s; }
.mini-line:nth-child(3){ animation-delay: .55s; }

@keyframes miniFadeUp{
  to{ opacity: 1; transform: translateY(0); }
}

.mini-line:hover{
  border-color: rgba(255,215,120,.24);
  box-shadow: 0 18px 60px rgba(255,215,120,.08);
}

.hero__socials{
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.hero__socials-label{
  color: rgba(255,255,255,.55);
  font-size: 13px;
  margin-right: 4px;
}

.social-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:#fff;
  font-weight:700;
  font-size:13px;
  transition: transform .12s ease, background .12s ease;
}
.social-chip:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
}
.social-chip span{
  color: rgba(255,255,255,.75);
  font-weight:700;
}

.section{
  padding:46px 0;
}

.section--alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}

h2{
  margin:0;
  font-size:26px;
  color:#fff;
}

.muted{ color:var(--muted); }

.filters{
  display:flex;
  gap:10px;
  align-items:center;
}

input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:#fff;
  outline:none;
}

input:focus, select:focus, textarea:focus{
  border-color: rgba(255,215,120,.28);
  box-shadow: 0 0 0 4px rgba(255,215,120,.08);
}

#searchInput{ min-width:240px; }
#sortSelect{ min-width:200px; }

.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}


.card{
  background: rgba(14,16,20,.45);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 70px rgba(0,0,0,.60);
}

.card__img{
  height:200px;
  position:relative;
  overflow:hidden;
  background: rgba(255,255,255,.04);
}

.card__img img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
  transition: transform .25s ease;
}

.card:hover .card__img img{
  transform: scale(1.08);
}

.card__img::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,.62) 100%);
  pointer-events:none;
}

.card__body{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.card__title{
  font-weight:850;
  font-size:16px;
}

.card__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:rgba(255,255,255,.70);
  font-size:13px;
}

.price{
  font-weight:950;
  font-size:16px;
  color:#fff;
}

.tag{
  border:1px solid rgba(255,255,255,.14);
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  color:rgba(255,255,255,.70);
  background: rgba(255,255,255,.03);
}

.tracking{
  display:flex;
  gap:10px;
  max-width:540px;
  margin-top:14px;
}

.track-result{
  margin-top:12px;
  max-width:540px;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(14,16,20,.45);
  display:none;
}

.contacts{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:14px;
}

.contact-card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(14,16,20,.45);
  border-radius: var(--radius);
  padding:16px;
}

.contact-title{
  color:rgba(255,255,255,.62);
  font-size:13px;
  margin-bottom:6px;
}

.contact-value{
  font-weight:900;
  font-size:18px;
}

.contact-note{
  color:rgba(255,255,255,.62);
  margin-top:8px;
  font-size:13px;
}

.footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding:18px 0;
  color:rgba(255,255,255,.62);
}

.footer__row{
  display:flex;
  justify-content:space-between;
  gap:14px;
}

.overlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  z-index:90;
  display:none;
}

.cart{
  position:fixed;
  right:0;
  top:0;
  height:100vh;
  width:min(420px, 92vw);
  background: rgba(12,13,16,.96);
  border-left:1px solid rgba(255,255,255,.12);
  z-index:100;
  transform: translateX(105%);
  transition: transform .25s ease;
  display:flex;
  flex-direction:column;
}
.cart.open{ transform: translateX(0); }

.cart__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.icon-btn{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:#fff;
  border-radius:14px;
  padding:8px 10px;
  cursor:pointer;
}

.cart__items{
  padding:14px 16px;
  overflow:auto;
  flex:1;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.cart-item{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(14,16,20,.45);
  border-radius:16px;
  padding:12px;
  display:flex;
  gap:12px;
  align-items:center;
}

.cart-item__img{
  width:52px;
  height:52px;
  border-radius:14px;
  background: rgba(255,255,255,.05);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.cart-item__info{ flex:1; }

.cart-item__title{
  font-weight:800;
  font-size:14px;
}

.cart-item__sub{
  color:rgba(255,255,255,.60);
  font-size:13px;
  margin-top:2px;
}

.qty{
  display:flex;
  align-items:center;
  gap:8px;
}

.qty button{
  width:34px;
  height:34px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:#fff;
  cursor:pointer;
}

.cart__footer{
  padding:16px;
  border-top:1px solid rgba(255,255,255,.12);
}

.cart__total{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}


.modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:200;
  padding:18px;
}

.modal.open{ display:flex; }

.modal__content{
  width:min(560px, 96vw);
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(14,16,20,.97);
  box-shadow: var(--shadow);
}

.modal__head{
  padding:16px;
  border-bottom:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.form{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.form label{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:13px;
  color:rgba(255,255,255,.66);
}

.order-result{
  padding:0 16px 16px;
  display:none;
  color:rgba(255,255,255,.70);
  line-height:1.5;
}

.faq{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:14px;
}

.faq-item{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(14,16,20,.45);
  border-radius: var(--radius);
  overflow:hidden;
}

.faq-q{
  width:100%;
  text-align:left;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
  border:none;
  background: transparent;
  color:#fff;
  font-weight:850;
  font-size:14px;
}

.faq-icon{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  transition: transform .15s ease;
}

.faq-a{
  display:none;
  padding:0 16px 16px;
  color:rgba(255,255,255,.70);
  line-height:1.55;
  font-size:14px;
}

.faq-item.open .faq-a{ display:block; }
.faq-item.open .faq-icon{ transform: rotate(45deg); }


.img-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 18px;
}

.img-modal.open{ display:flex; }

.img-modal__content{
  position: relative;
  width: min(920px, 96vw);
  max-height: 92vh;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(14,16,20,.95);
  box-shadow: 0 18px 60px rgba(0,0,0,.6);
}

.img-modal__content img{
  width: 100%;
  height: auto;
  max-height: 92vh;
  object-fit: contain;
  display: block;
  background: #000;
}

.img-modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.45);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}
.img-modal__close:hover{
  background: rgba(0,0,0,.60);
}


@media (max-width: 980px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .hero__grid{ grid-template-columns:1fr; }
  .contacts{ grid-template-columns:1fr; }
  .section__head{ flex-direction:column; align-items:flex-start; }
  #searchInput, #sortSelect{ min-width: unset; }
  .filters{ width:100%; }

   #searchInput, #sortSelect{ min-width: unset; }

  .filters{
    width:100%;
    display: flex;
  }

  .filters input,
  .filters select{
    flex: 1;
  }
  
  .hero .container{
    padding: 20px;
  }
}

@media (max-width: 520px){
  .nav{ display:none; }
}


.btn{
  color:#fff !important;
}


.btn, .btn *{
  color:#fff !important;
}


.reviews-strip{
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.reviews-strip .section-title{
  width: min(1100px, 92%);
  margin: 0 auto 18px auto;
}

.reviews-strip .section-title h2{
  margin: 0;
  font-size: 26px;
  font-weight: 800;
}

.reviews-strip .section-title p{
  margin: 6px 0 0 0;
  opacity: .75;
}
.marquee{
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 6px 0;
}
.marquee__track{
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  will-change: transform;


  animation: reviewsScroll var(--reviews-speed, 12s) linear infinite;
}


.review-card{
  width: 210px;
  height: 310px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

.review-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.marquee:hover .marquee__track{
  animation-play-state: paused;
}

@keyframes reviewsScroll{
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-1px * var(--reviews-shift, 0))); }
}


@media (max-width: 520px){
  .marquee__track{
    --reviews-speed: 9s;
    gap: 10px;
  }

  .review-card{
    width: 155px;
    height: 230px;
  }
}

