:root {
  --void: #070a14;
  --ink: #0d1426;
  --panel: #121b33;
  --chrome: #c7d0dc;
  --muted: #7c8798;
  --cyan: #33d6e8;
  --bronze: #c9a15a;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--void);
  color: var(--chrome);
  font-family: Manrope, system-ui, sans-serif;
  background-image: radial-gradient(
    ellipse 80% 50% at 50% -10%,
    rgba(51, 214, 232, 0.1),
    transparent 60%
  );
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 3rem));
  margin: auto;
}
.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 10, 20, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(199, 208, 220, 0.1);
}
.brand {
  font-family: Unbounded, sans-serif;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.08em;
}
.brand b {
  color: var(--cyan);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.nav a:hover,
.nav a.active {
  color: #fff;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--cyan);
  color: #061016;
  font-weight: 800;
  padding: 0.86rem 1.3rem;
  cursor: pointer;
}
.button.alt {
  background: transparent;
  border: 1px solid rgba(199, 208, 220, 0.35);
  color: #fff;
}
.menu {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.4rem;
}
.hero {
  min-height: calc(80vh - 76px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem 0;
}
.eyebrow {
  font:
    500 0.68rem "IBM Plex Mono",
    monospace;
  letter-spacing: 0.18em;
  color: var(--cyan);
}
h1,
h2,
h3 {
  font-family: Unbounded, sans-serif;
  color: #fff;
  letter-spacing: -0.06em;
}
h1 {
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 1.08;
  margin: 0.8rem 0 1.3rem;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}
.lead {
  line-height: 1.75;
  color: var(--muted);
  max-width: 34rem;
}
.actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.product-stage {
  height: 510px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(199, 208, 220, 0.18);
  border-radius: 2rem;
  background:
    radial-gradient(
      circle at 65% 20%,
      rgba(201, 161, 90, 0.22),
      transparent 25%
    ),
    linear-gradient(135deg, #18233e, #090d1b 72%);
}
.product-stage:after {
  content: "";
  position: absolute;
  inset: auto 9% 6%;
  height: 15%;
  background: #0008;
  filter: blur(25px);
  border-radius: 50%;
}
.orbit {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.orbit.dragging {
  cursor: grabbing;
}
.orbit-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(82px, 14vw, 135px);
  aspect-ratio: 4/5;
  transform: translate(-50%, -50%) rotateY(var(--a))
    translateZ(clamp(170px, 24vw, 270px));
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #ffffff44;
  box-shadow: 0 16px 35px #0008;
  backface-visibility: hidden;
}
.orbit-item:nth-child(3n) {
  width: clamp(96px, 16vw, 150px);
  border-radius: 1.5rem;
}
.orbit-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
}
.stage-label {
  position: absolute;
  z-index: 3;
  left: 1.5rem;
  top: 1.5rem;
  font:
    500 0.66rem "IBM Plex Mono",
    monospace;
  letter-spacing: 0.15em;
  color: #fff;
}
.drag-note {
  position: absolute;
  z-index: 3;
  right: 1.5rem;
  bottom: 1.3rem;
  font:
    500 0.6rem "IBM Plex Mono",
    monospace;
  letter-spacing: 0.12em;
  color: #fff9;
}
.trust {
  border-block: 1px solid rgba(199, 208, 220, 0.12);
  padding: 1.35rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.trust strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
}
.trust small {
  color: var(--muted);
}
section {
  padding: 6rem 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.grid {
  display: grid;
  gap: 1.25rem;
}
.categories {
  grid-template-columns: repeat(3, 1fr);
}
.category {
  padding: 1.5rem;
  border-top: 1px solid rgba(51, 214, 232, 0.45);
  background: linear-gradient(150deg, rgba(22, 33, 61, 0.7), transparent);
  min-height: 145px;
}
.category p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.gallery {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
}
.tile {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--panel);
}
.tile.tall {
  grid-row: span 2;
  min-height: 485px;
}
.tile.wide {
  grid-column: span 2;
}
.tile img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.5s;
}
.tile:hover img {
  transform: scale(1.06);
}
.tile-info {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  background: linear-gradient(transparent, #070a14e8);
  transform: translateY(45%);
  transition: transform 0.3s;
}
.tile:hover .tile-info {
  transform: none;
}
.tile-info span {
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
  margin-top: 0.3rem;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.check {
  border-left: 2px solid var(--cyan);
  padding-left: 1rem;
  color: #fff;
}
.check small {
  display: block;
  color: var(--muted);
  margin-top: 0.35rem;
}
.photo {
  min-height: 360px;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--panel);
  position: relative;
}
.photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.steps {
  grid-template-columns: repeat(3, 1fr);
}
.step {
  border-top: 1px solid rgba(199, 208, 220, 0.22);
  padding-top: 1.2rem;
}
.step b {
  font:
    500 0.72rem "IBM Plex Mono",
    monospace;
  color: var(--cyan);
}
.step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.panel {
  padding: 1.5rem;
  border: 1px solid rgba(199, 208, 220, 0.15);
  border-radius: 1rem;
  background: linear-gradient(
    145deg,
    rgba(22, 33, 61, 0.7),
    rgba(13, 20, 38, 0.45)
  );
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: grid;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--chrome);
}
.field.full {
  grid-column: 1/-1;
}
input,
select,
textarea {
  background: #0d1426;
  border: 1px solid #7c879844;
  border-radius: 0.7rem;
  padding: 0.85rem;
  color: #fff;
  font: inherit;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.reviews {
  grid-template-columns: repeat(3, 1fr);
}
.review-shot {
  height: 180px;
  border-radius: 1rem;
  overflow: hidden; /* Taşmaları gizle */
  background: none; /* Arka plan artık gerekmiyor */
  padding: 0;
}

.review-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Tamamını gösterir */
  display: block;
}
.footer {
  border-top: 1px solid rgba(199, 208, 220, 0.12);
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.float-wa {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #4fe083;
  color: #071015;
  font-size: 1.5rem;
  box-shadow: 0 15px 35px #0008;
  z-index: 30;
}
.muted {
  color: var(--muted);
}
@media (max-width: 800px) {
  .container {
    width: min(100% - 2rem, 1180px);
  }
  .menu {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #0d1426;
    padding: 1.3rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid #ffffff1c;
  }
  .nav.open {
    display: flex;
  }
  .hero,
  .split {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 2rem 0 2.8rem;
  }
  .product-stage {
    height: 390px;
  }
  .trust-grid,
  .categories,
  .steps,
  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .tile.tall {
    min-height: 360px;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  section {
    padding: 4rem 0;
  }
}
@media (max-width: 480px) {
  .trust-grid,
  .categories,
  .steps,
  .reviews,
  .checks {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .tile.tall,
  .tile.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 180px;
  }
  .gallery-group .tile {
    min-height: 180px;
  }
  .product-stage {
    height: 390px;
  }
  .orbit-item {
    width: 82px;
    transform: translate(-50%, -50%) rotateY(var(--a)) translateZ(145px);
  }
  .orbit-item:nth-child(3n) {
    width: 95px;
  }
}
header.site-header {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 10, 20, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(199, 208, 220, 0.1);
}
header.site-header > .container {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
/* Final visual details shared by every page */
.product-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(51, 214, 232, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 214, 232, 0.13) 1px, transparent 1px);
  background-size: 28px 14px;
  mask-image: linear-gradient(
    135deg,
    transparent 3%,
    #000 48%,
    transparent 94%
  );
}
.category h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.category-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--cyan);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
}
.footer-grid > div,
.footer .social-link {
  min-width: 0;
}
.footer h4 {
  color: #fff;
  font:
    700 0.72rem "IBM Plex Mono",
    monospace;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}
.footer li a:hover {
  color: var(--cyan);
}
.footer-bottom {
  border-top: 1px solid rgba(199, 208, 220, 0.12);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-wrap: anywhere;
}
.social-dot {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(199, 208, 220, 0.3);
  border-radius: 50%;
  font-size: 0.7rem;
  color: var(--cyan);
}
@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 0.55rem;
}
.brand-logo-only .brand-logo {
  width: auto;
  height: 42px;
  max-width: min(180px, 52vw);
}
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 0.5rem;
}
.product-filters button {
  border: 1px solid rgba(199, 208, 220, 0.22);
  border-radius: 999px;
  background: rgba(18, 27, 51, 0.55);
  color: var(--chrome);
  font: inherit;
  font-size: 0.82rem;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
}
.product-filters button:hover,
.product-filters button.active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(51, 214, 232, 0.1);
}
.product-rail {
  display: flex !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: 1rem;
  padding-bottom: 0.4rem;
  cursor: grab;
}
.product-rail::-webkit-scrollbar {
  display: none;
}
.product-rail.dragging {
  cursor: grabbing;
}
.product-rail .tile {
  flex: 0 0 min(330px, 78vw);
  height: 290px;
  scroll-snap-align: start;
}
.product-rail .tile.tall,
.product-rail .tile.wide {
  grid-column: auto;
  grid-row: auto;
  min-height: 290px;
}
.step {
  min-height: 235px;
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background-image:
    linear-gradient(135deg, rgba(7, 10, 20, 0.85), rgba(7, 10, 20, 0.52)),
    var(--step-image);
  background-position: center;
  background-size: cover;
}
.step > * {
  position: relative;
  z-index: 1;
}
.contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact-links .panel {
  min-height: 115px;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.contact-links .panel.full {
  grid-column: 1/-1;
}
.contact-icon,
.social-svg {
  width: 25px;
  height: 25px;
  color: var(--cyan);
  flex: 0 0 auto;
}
.review-rail {
  display: flex !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.review-rail::-webkit-scrollbar {
  display: none;
}
.review-rail > div {
  flex: 0 0 min(320px, 80vw);
  scroll-snap-align: start;
}
.social-dot {
  border: 0 !important;
  width: 22px !important;
  height: 22px !important;
}
.social-dot svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
@media (max-width: 480px) {
  .contact-links {
    grid-template-columns: 1fr;
  }
  .contact-links .panel.full {
    grid-column: auto;
  }
}
.product-rail .tile-info {
  transform: none !important;
  background: linear-gradient(transparent, rgba(7, 10, 20, 0.94)) !important;
  color: #fff;
}
.rail-controls {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin: -1.25rem 0 1rem;
}
.rail-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(199, 208, 220, 0.3);
  background: #121b33;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}
.rail-button:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.social-svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.video-preview {
  min-height: 390px;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  background: #121b33;
}
.video-preview img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: brightness(0.55);
}
.video-preview .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font:
    700 0.72rem "IBM Plex Mono",
    monospace;
  letter-spacing: 0.14em;
  text-align: center;
}
.play span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cyan);
  color: #071015;
  font-size: 1.5rem;
  margin: auto;
}
.video-preview p {
  margin: 1rem 0 0;
}
.float-wa .contact-icon {
  color: #071015;
}
.brand b {
  color: inherit !important;
  font: inherit;
}
.footer-grid > div:first-child .muted {
  max-width: 18rem;
  line-height: 1.7;
}
.footer-grid h4 {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
}
.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-grid li + li {
  margin-top: 0.35rem;
}
.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .footer-grid {
    gap: 1.25rem;
  }
  .footer-grid > div:first-child .muted {
    max-width: none;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.product-rail {
  overflow-x: scroll !important;
  scroll-snap-type: none !important;
  scroll-behavior: smooth !important;
}
.product-rail .tile {
  scroll-snap-align: none !important;
}
.faq-section {
  padding-top: 1rem;
}
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 850px;
}
.faq-list details {
  border: 1px solid rgba(199, 208, 220, 0.16);
  border-radius: 0.8rem;
  background: rgba(18, 27, 51, 0.55);
  padding: 0 1.1rem;
}
.faq-list summary {
  padding: 1rem 1.8rem 1rem 0;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.faq-list p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}
.form-legal {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}
.form-legal a,
.policy-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.policy-page section {
  max-width: 860px;
}
.policy-page .brand {
  margin-bottom: 2.5rem;
}
.policy-content {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(199, 208, 220, 0.15);
  border-radius: 1rem;
  background: linear-gradient(
    145deg,
    rgba(22, 33, 61, 0.7),
    rgba(13, 20, 38, 0.45)
  );
}
.policy-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}
.policy-content p {
  color: var(--chrome);
  line-height: 1.75;
}
.policy-content .muted {
  color: var(--muted);
  font-size: 0.86rem;
}
a.category {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 220px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(51, 214, 232, 0.25);
  transition:
    border-color 0.25s,
    transform 0.25s;
}
a.category::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 10, 20, 0.95));
}
a.category > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
a.category > div {
  padding: 1rem 1.1rem;
}
a.category h3 {
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  line-height: 1.2;
}
a.category h3,
a.category p {
  margin: 0;
}
a.category p {
  margin-top: 0.5rem;
  color: #dce3ec;
}
a.category span {
  display: inline-block;
  margin-top: 1rem;
  color: var(--cyan);
  font:
    500 0.72rem "IBM Plex Mono",
    monospace;
  letter-spacing: 0.08em;
}
a.category:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
}
a.category:hover > img {
  transform: scale(1.06);
}
.gallery-group {
  padding: 1.75rem 0 3.5rem;
  scroll-margin-top: 96px;
}
.gallery-group h2 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}
.gallery-group .gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gallery-group .tile {
  min-height: 300px;
}
.product-dropdown {
  position: relative;
}
.product-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  padding: 0;
  color: var(--muted);
  font: inherit;
  background: transparent;
  cursor: pointer;
}
.product-dropdown-toggle:hover,
.product-dropdown-toggle.active,
.product-dropdown.open .product-dropdown-toggle {
  color: #fff;
}
.product-dropdown-toggle span {
  width: 0.52rem;
  height: 0.52rem;
  margin: -0.22rem 0 0 0.15rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition:
    transform 0.2s ease,
    margin 0.2s ease;
}
.product-dropdown.open .product-dropdown-toggle span {
  margin-top: 0.18rem;
  transform: rotate(225deg);
}
.product-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: -1rem;
  display: none;
  min-width: 190px;
  padding: 0.5rem;
  border: 1px solid rgba(199, 208, 220, 0.2);
  border-radius: 0.8rem;
  background: #10182d;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}
.product-dropdown.open .product-dropdown-menu {
  display: grid;
}
.product-dropdown-menu a {
  padding: 0.65rem 0.75rem;
  border-radius: 0.45rem;
  color: var(--chrome);
}
.product-dropdown-menu a:hover {
  background: rgba(51, 214, 232, 0.12);
  color: var(--cyan);
}
@media (max-width: 800px) {
  .product-dropdown,
  .product-dropdown-toggle {
    width: 100%;
    text-align: left;
  }
  .product-dropdown-toggle {
    justify-content: space-between;
  }
  .product-dropdown-menu {
    position: static;
    margin-top: 0.6rem;
    width: 100%;
    box-shadow: none;
  }
}
@media (max-width: 480px) {
  .gallery-group .gallery {
    grid-template-columns: 1fr;
  }
}
