* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --surface: #171717;
  --surface-2: #202020;
  --text: #f8f8f8;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #ff5a0a;
  --accent-2: #ff7a1a;
  --accent-dark: #d93d00;
  --radius: 14px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --glow: 0 18px 44px rgba(255, 90, 10, 0.22);
}
body {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 90, 10, 0.12), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(255, 120, 26, 0.08), transparent 25%),
    linear-gradient(180deg, #0b0b0b 0%, var(--bg) 42%, #070707 100%);
  color: var(--text);
  overflow-x: hidden;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  border-radius: 15px;
  color: #000;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 400px;
}

.modal-content h2 {
  margin-bottom: 20px;
  font-size: 20px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

button {
  padding: 10px 25px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#yesBtn {
  background: #4caf50;
  color: #fff;
}

#yesBtn:hover {
  background: #3e8e41;
}

#noBtn {
  background: #f44336;
  color: #fff;
}

#noBtn:hover {
  background: #d32f2f;
}
.warn {
  font-size: 16px;
  background-color: #000;
  color: white;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
}
.nav-bar {
  position: relative;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  min-height: 120px;
}
.nav-bar div {
  position: absolute;
  top: 10px;
  left: 30px;
}
.nav-bar a {
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 28px;
}
.nav-bar img {
  height: 70px;
  margin-right: 20px;
  vertical-align: middle;
}
.slider-item video {
  width: 100%;
  height: auto;
}
.mobile-nav-bar {
  display: none;
}
.hamburger-content {
  display: flex;
  z-index: 1000;
  background-color: white;
  color: black;
  width: 70%;
  position: absolute;
  height: 100vh;
  top: 0;
  left: -100%;
  gap: 20px;
  font-size: 26px;
  flex-direction: column;
  text-align: left;
  padding-top: 50px;
  padding-left: 30px;
  box-shadow: inset 4px 0 15px #717171;
}
.hamburger-content.active {
  left: 0;
  transition: left 0.8s ease-in-out;
}
.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}
.hamburger-content a {
  color: black;
  text-decoration: none;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: 0.4s;
  border-radius: 10%;
}
.dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 95%;
  margin: 0 auto;
  display: flex;
}
.dots .active {
  background-color: #bbb;
}
.dots div {
  height: 15px;
  width: 15px;
  background-color: #717171;
  margin: 0 5px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
}
.slider-arrow div {
  font-size: 80px;
  aspect-ratio: 1;
  color: white;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}
.slider-inner {
  display: flex;
  height: max-content;
  width: 200%;
  transition: all 0.8s ease-in-out;
}
.to-left {
  margin-left: -100%;
}
.to-right {
  margin-left: 0;
}
.slider-item {
  width: 100%;
}
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: max-content;
}

.slider-item a {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff4500;
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  font-size: 70px;
  border-radius: 15px;
  transition: transform 0.5s ease;
}
.slider-item a:hover {
  transform: scale(1.2) translateX(-40%);
  background-color: #e03e00;
}
.product-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 30px #ff4500;
}

.product-item:hover img {
  transform: scale(1.1);
}

.products {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap;
}
.product-item {
  background-color: #2c2b2b;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 320px;
  opacity: 0;
  transform: translateX(120px);
  transition: all 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.product-item.active {
  opacity: 1;
  transform: translateX(0);
}
.product-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.product-item p {
  font-size: 14px;
  color: #ccc;
}
.product-item a {
  margin-top: 10px;
  background-color: #ff4500;
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 10px;
}
.product-item img {
  transition: transform 0.5s ease;
  width: 250px;
  height: auto;
  border-radius: 10px;
}
.desc-title {
  font-size: 36px;
  text-align: center;
  margin: 40px 0 20px 0;
  color: #ff4500;
  font-weight: 900;
}
.desc-cont p {
  font-weight: 700;
  font-size: 26px;
}
.desc-cont h1 {
  font-weight: 700;
  font-size: 26px;
}
.desc-cont {
  box-shadow: 4px 4px 15px #717171;
  padding: 20px;
  border-radius: 10px;
  display: none;
  max-width: 500px;
  min-height: 400px;
  transition: all 0.6s ease-out;
}
.description {
  margin: 40px auto;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
  color: #ddd;
  padding: 40px 30px;
}
.desc-cont:first-child {
  display: block;
}

.more {
  margin-top: 20px;
  font-size: 16px;
  color: #ff4500;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  user-select: none;
}
.desc-cont.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.smaki-cont {
  width: 80%;
  margin: 0 auto;
  background-color: rgb(113, 113, 113, 0.2);
  padding: 20px;
  border-radius: 10px;
}
.smaki-cont h1,
.smaki-cont h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  color: #ff4500;
}
.smaki {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.smaki p {
  background-color: #717171;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 0 15px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.smaki p.active {
  opacity: 1;
  transform: translateY(0);
}
footer {
  position: relative;
  width: 100%;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
  padding: 40px 100px;
}
footer a {
  text-decoration: none;
  color: inherit;
}
.footer-logo {
  padding: 35px 20px;
  padding-top: 20px;
  margin-right: 40px;
}
.footer-logo img {
  width: 100px;
  height: auto;
}
.footer-cont {
  width: 100%;
  display: flex;
  color: white;
  font-size: 26px;
  gap: 80px;
  padding-bottom: 35px;
  border-bottom: 2px solid gray;
  position: relative;
}
.foot-cont-one {
  display: flex;
  gap: 80px;
}
.copyright {
  width: 100%;
  text-align: center;
  padding-top: 35px;
  border-top: 2px solid gray;

  color: rgb(168, 167, 167);
}
footer svg {
  fill: rgba(255, 255, 255, 0.842);
  stroke-miterlimit: 10;
  stroke-width: 1px;
  width: 40px;
}
.city {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
}
.cont-col {
  display: flex;
  flex-direction: column;
}
.cont-col:first-child {
  color: rgb(168, 167, 167);
}
.cont-col:first-child a:first-child {
  color: white;
}
.foot-cont-two {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.foot-cont-two div {
  align-items: center;
  display: flex;
  gap: 20px;
}
.foot-cont-three {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: white;
  font-size: 20px;
}
.foot-cont-three p:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.foot-cont-three p {
  position: relative;
  padding-right: 16px;
}
.foot-cont-three p::after {
  content: "▼";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}
.foot-cont-three p.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.foot-cont-three a {
  display: none;
}
.city-note {
  width: 100%;
  color: rgb(168, 167, 167);
  text-align: center;
}
.faq-section {
  margin-bottom: 40px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background-color: #2c2b2b;
  border-radius: 10px;
  color: #ddd;
  padding: 16px;
  text-align: left;
}
.faq-item h3 {
  color: #ff4500;
  font-size: 18px;
  margin-bottom: 8px;
}
.faq-item p {
  line-height: 1.5;
}
.faq-item a {
  color: inherit;
}
.social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  border-bottom: 2px solid gray;
}
@media (max-width: 768px) and (min-width: 320px) {
  .nav-bar {
    display: none;
  }
  .footer-info {
    flex-direction: column;
  }
  header img {
    height: 40px;
    margin-right: 20px;
  }
  .mobile-nav-bar {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-align: center;
  }
  .mobile-nav-bar .logo img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15%;
  }
  .dots {
    top: 85%;
  }
  .slider-item a {
    font-size: 16px;
    bottom: 20%;
  }
  .hamburger {
    margin-right: auto;
  }
  .warn {
    font-size: 10px;
    padding: 8px 0;
  }
  .slider-item video {
    width: 100%;
    height: auto;
  }
  .slider-arrow div {
    font-size: 30px;
  }
  footer {
    align-items: center;
    padding: 40px 40px;
  }
  .footer-logo {
    margin-right: 0;
  }
  .social {
    gap: 0;
  }
  .footer-logo img {
    object-fit: cover;
    width: 90px;
  }
  .footer-cont {
    font-size: 18px;
    flex-direction: column;
  }
  .foot-cont-two {
    padding-top: 35px;
    border-top: 2px solid gray;
  }
  .foot-cont-three {
    flex-direction: column;
  }
}
@media (min-width: 769px) and (max-width: 1440px) {
  .nav-bar a {
    font-size: 20px;
  }
  .slider-arrow div {
    font-size: 60px;
  }
  .slider-item a {
    font-size: 45px;
  }
}

/* Premium visual refresh based on the provided dark/orange ecommerce reference. */
header {
  background: rgba(13, 13, 13, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
}

.warn {
  background: linear-gradient(90deg, #000, #151515, #000);
  color: #fff3ec;
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-bar {
  min-height: 82px;
  padding: 14px clamp(24px, 5vw, 86px);
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  background: rgba(19, 19, 19, 0.94);
}

.nav-bar div {
  left: clamp(22px, 6vw, 110px);
  top: 50%;
  transform: translateY(-50%);
}

.nav-bar img,
.mobile-nav-bar .logo img,
.footer-logo img {
  filter: drop-shadow(0 8px 18px rgba(255, 90, 10, 0.24));
}

.nav-bar img {
  height: 54px;
  margin-right: 0;
}

.nav-bar a {
  position: relative;
  padding: 10px 4px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-bar > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-bar > a:hover,
.nav-bar > a.active {
  color: var(--accent-2);
  transform: translateY(-1px);
}

.nav-bar > a:hover::after,
.nav-bar > a.active::after {
  transform: scaleX(1);
}

main {
  background:
    radial-gradient(circle at 50% 4%, rgba(255, 90, 10, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 20%);
}

.slider {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 90, 10, 0.26), transparent 24%),
    #030303;
  border-bottom: 1px solid var(--line);
}

.slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 28%, rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 50% 46%, transparent 0 23%, rgba(255, 90, 10, 0.18) 24%, transparent 36%);
}

.slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
}

.slider-inner {
  position: relative;
  z-index: 0;
  min-height: clamp(460px, 64vw, 760px);
}

.slider-item {
  position: relative;
  min-height: clamp(460px, 64vw, 760px);
  background: #050505;
}

.slider-item video {
  width: 100%;
  height: clamp(460px, 64vw, 760px);
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(1.08) contrast(1.05);
}

.slider-item a {
  z-index: 3;
  bottom: clamp(42px, 8vw, 86px);
  left: clamp(26px, 12vw, 178px);
  transform: none;
  padding: 16px 26px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #090909;
  font-size: clamp(15px, 1.55vw, 20px);
  font-weight: 900;
  letter-spacing: 0.04em;
  border-radius: 999px;
  box-shadow: var(--glow);
}

.slider-item a:hover {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(255, 90, 10, 0.34);
}

.dots {
  z-index: 4;
  top: auto;
  bottom: 22px;
}

.dots div {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.dots .active {
  background: var(--accent);
}

.slider-arrow {
  z-index: 4;
  padding: 0 clamp(18px, 4vw, 54px);
}

.slider-arrow div {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.68);
  color: var(--accent-2);
  font-size: 36px;
  backdrop-filter: blur(10px);
}

.slider-arrow div:hover {
  background: var(--accent);
  color: #090909;
}

.products,
.description,
.smaki-cont,
.faq-section {
  max-width: 1180px;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
  margin: 0 auto;
  padding: 72px 24px 58px;
}

.product-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  min-height: 100%;
  padding: 22px;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.product-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255, 90, 10, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--glow), var(--shadow);
  border-color: rgba(255, 90, 10, 0.52);
}

.product-item:hover::before {
  opacity: 1;
}

.product-item img {
  width: min(100%, 230px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 14px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 12px;
}

.product-item h3 {
  color: var(--text);
  font-size: 18px;
  line-height: 1.22;
  min-height: 3.66em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-item span {
  color: var(--accent-2);
  font-weight: 800;
  min-height: 3.2em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.35;
}

.product-item p {
  color: var(--muted);
  line-height: 1.45;
  min-height: 2.9em;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.product-item a,
.more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #080808;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 14px 32px rgba(255, 90, 10, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.product-item a {
  margin-top: auto;
}

.product-item a:hover,
.more:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 18px 42px rgba(255, 90, 10, 0.34);
}

.smaki-cont {
  width: calc(100% - 48px);
  margin: 18px auto 0;
  padding: 34px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.smaki-cont h1,
.smaki-cont h2,
.desc-title {
  color: var(--text);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
}

.smaki-cont h2::first-letter,
.desc-cont h1::first-letter,
.faq-item h3::first-letter {
  color: var(--accent);
}

.smaki {
  gap: 12px;
}

.smaki p {
  height: auto;
  min-height: 42px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 90, 10, 0.2);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.description {
  max-width: 1240px;
  margin: 0 auto;
  padding: 66px 24px;
  display: grid;
  gap: 22px;
}

.description-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

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

.desc-cont {
  display: none;
  min-height: 0;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  color: var(--muted);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.desc-intro {
  display: block;
  min-height: 100%;
}

.desc-cont.show {
  display: block;
}

.desc-intro::after,
.description-side-panel::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 90, 10, 0.18), transparent 68%);
  pointer-events: none;
}

.desc-cont h1,
.desc-cont p {
  color: var(--text);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.18;
  margin-bottom: 14px;
}

.description-side {
  min-height: 100%;
}

.description-side-panel {
  position: relative;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background:
    linear-gradient(160deg, rgba(255, 90, 10, 0.12), rgba(255, 255, 255, 0.02) 38%, rgba(255, 255, 255, 0.01)),
    #151515;
  border: 1px solid rgba(255, 90, 10, 0.22);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.description-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 90, 10, 0.12);
  border: 1px solid rgba(255, 90, 10, 0.24);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.description-side-panel h2 {
  color: var(--text);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.description-side-panel p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 34ch;
}

.description-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.description-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.desc-cont span,
.faq-item p {
  color: var(--muted);
  line-height: 1.7;
}

.more {
  width: fit-content;
  flex: 0 0 auto;
  align-self: center;
  min-height: 44px;
  line-height: 1;
  margin: 8px auto 0;
  user-select: none;
}

.description-side-panel .more {
  width: 100%;
  margin: auto 0 0;
  min-height: 56px;
  font-size: 18px;
}

.faq-section {
  margin-top: 0;
  margin-bottom: 62px;
}

.faq-list {
  gap: 14px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}

.faq-item h3 {
  color: var(--text);
  font-size: 18px;
}

footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    #0b0b0b;
  border-top: 1px solid var(--line);
  gap: 28px;
  padding: 48px clamp(22px, 7vw, 100px);
}

.social,
.footer-cont,
.copyright {
  border-color: var(--line);
}

.social {
  justify-content: center;
  gap: 18px;
}

footer svg {
  width: 34px;
  fill: var(--text);
  transition: fill 0.25s ease, transform 0.25s ease;
}

footer a:hover svg,
footer a:hover {
  color: var(--accent-2);
  fill: var(--accent-2);
}

.footer-cont {
  max-width: 1180px;
  gap: clamp(28px, 5vw, 80px);
  justify-content: center;
  font-size: 18px;
}

.foot-cont-one {
  gap: clamp(28px, 5vw, 80px);
}

.cont-col,
.foot-cont-two,
.foot-cont-three {
  gap: 12px;
}

.cont-col:first-child,
.city-note,
.copyright {
  color: var(--muted);
}

.foot-cont-two div {
  color: var(--text);
}

.foot-cont-two .footer-contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    #0b0b0b;
}

.footer-contact-card h2 {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--text);
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  line-height: 1.35;
}

.footer-contact-row strong {
  color: var(--text);
  font-weight: 900;
}

.footer-contact-row a {
  font-weight: 900;
}

.footer-contact-row a[href^="mailto:"] {
  color: var(--text);
}

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: currentColor;
}

.foot-cont-three {
  max-width: 1180px;
  justify-content: center;
  font-size: 15px;
}

.city {
  color: var(--text);
  font-size: 22px;
}

.foot-cont-three p::after {
  content: "\25be";
  color: var(--accent);
}

.foot-cont-three a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.modal {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  width: 100%;
}

.modal-content {
  background: var(--surface);
  color: var(--text);
  border: 1px solid rgba(255, 90, 10, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

button {
  border-radius: 999px;
  font-weight: 800;
}

#yesBtn {
  background: var(--accent);
  color: #080808;
}

#yesBtn:hover {
  background: var(--accent-2);
}

#noBtn {
  background: #2a2a2a;
  color: var(--text);
}

#noBtn:hover {
  background: #3a3a3a;
}

@media (max-width: 1100px) {
  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .description-hero,
  .description-grid {
    grid-template-columns: 1fr;
  }

  .footer-cont {
    flex-wrap: wrap;
  }
}

.product-item {
  opacity: 0;
  transform: translateY(24px);
}

.product-item.active {
  opacity: 1;
  transform: translateY(0);
}

.product-item.active:hover {
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .warn {
    padding: 9px 12px;
    font-size: 9px;
    line-height: 1.35;
  }

  .mobile-nav-bar {
    min-height: 70px;
    padding: 14px 18px;
    background: rgba(19, 19, 19, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-bar .logo img {
    height: 44px;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .hamburger {
    display: grid;
    gap: 5px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hamburger div {
    margin: 0;
    background-color: var(--accent-2);
  }

  .hamburger-content {
    position: fixed;
    width: min(84vw, 340px);
    padding: 82px 26px 30px;
    background: #0d0d0d;
    color: var(--text);
    border-right: 1px solid rgba(255, 90, 10, 0.28);
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.48);
    transition: left 0.45s ease;
  }

  .hamburger-content a {
    color: var(--text);
    font-size: 22px;
    font-weight: 800;
  }

  .close {
    color: var(--accent-2);
  }

  .slider-inner,
  .slider-item,
  .slider-item video {
    min-height: 430px;
    height: 430px;
  }

  .slider-item a {
    left: 50%;
    bottom: 58px;
    transform: translateX(-50%);
    min-width: 172px;
    text-align: center;
  }

  .slider-item a:hover {
    transform: translateX(-50%) translateY(-2px);
  }

  .slider-arrow {
    padding: 0 12px;
  }

  .slider-arrow div {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .products {
    grid-template-columns: 1fr;
    padding: 42px 16px;
    gap: 16px;
  }

  .product-item {
    padding: 18px;
  }

  .product-item img {
    width: min(100%, 210px);
  }

  .smaki-cont {
    width: calc(100% - 32px);
    padding: 28px 18px;
  }

  .description {
    padding: 42px 16px;
  }

  .description-side-panel {
    padding: 24px 20px;
  }

  .description-side-panel h2 {
    font-size: 28px;
  }

  .description-grid,
  .description-hero {
    gap: 16px;
  }

  .desc-cont {
    padding: 22px;
  }

  footer {
    padding: 36px 18px;
  }

  .social {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-cont,
  .foot-cont-one {
    width: 100%;
    gap: 24px;
  }

  .foot-cont-one {
    flex-direction: column;
  }

  .foot-cont-three {
    align-items: center;
    text-align: center;
  }

  .foot-cont-three a {
    width: 100%;
  }
}
