:root {
  --bg: #0b0b0c;
  --muted: #9aa0a6;
  --accent-1: #6b43ff;
  --accent-2: #4bc3ff;
  --glass: rgba(255, 255, 255, 0.04);
  --card: rgba(255, 255, 255, 0.02);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  opacity: 0;
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: radial-gradient(
      1200px 600px at 10% 10%,
      rgba(107, 67, 255, 0.06),
      transparent 8%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.45)), var(--bg);
  color: #e9eef2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}
body.loaded {
  opacity: 1;
}

.topbar {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  position: relative; 
  padding: 0 36px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 34px;
  cursor: pointer;
  z-index: 1001;
}

.brand {
  font-family: "Oswald", sans-serif;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 28px;
  color: #fff;
}

nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

nav.main-nav a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.9;
  transition: 0.2s;
}
nav.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: -4px;
  height: 2px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

.obleceni-filters {
  width: 100%;
  display: flex;
  gap: 2%;
}

.top-right {
    position: absolute;
  display: flex;
  align-items: center;
  gap: 18px;
  right: 36px;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.horizontal-flip{
  transform: scaleX(-1);
}


.obr-faq{
  position: fixed;
  bottom: -10%;
  right: -2%;
  rotate: -18deg;
  z-index: 0;
}
.obr-faq img, .obr-faq-left img{
  width: 30vw;
}
.obr-faq-left{
  position: fixed;
  bottom: -10%;
  left: -2%;
  rotate: 18deg;
  z-index: 0;
}


@media (max-width: 1400px) {
  .obr-faq {
    scale: 0.7;
    bottom: -12%;
    right: -8%;
  }
  .obr-faq-left {
    scale: 0.7;
    bottom: -12%;
    left: -8%;
  }
}
@media (max-width: 1000px) {
  .obr-faq {
    display: none;
  }
  .obr-faq-left {
    display: none;
  }
}


.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #e6eef4;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
}
.lang-toggle option {
  color: rgba(255, 255, 255, 0.9);
  background: radial-gradient(
      1200px 600px at 10% 10%,
      rgba(107, 67, 255, 0.06),
      transparent 8%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.45)), var(--bg);
  border: none;
}

option:first-of-type {
  border-radius: 8px 8px 0 0;
}

option:last-of-type {
  border-radius: 0 0 8px 8px;
}

::picker(select) {
  border-radius: 8px;
}

option:not(option:last-of-type) {
  border-bottom: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(100vh - 88px);
  padding: 60px 6vw 80px 6vw;
  overflow: hidden;
}

.hero-left {
  z-index: 2;
  max-width: 820px;
}
.hero-title {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  font-size: 96px;
  margin: 0;
  letter-spacing: 2px;
  color: #f6f8fa;
  text-transform: uppercase;
  text-shadow: 0 6px 40px rgba(107, 67, 255, 0.06);
}
body.lang-en .hero-title {
  line-height: 0.95;
}
body.lang-cs .hero-title {
  line-height: 1.11;
}

.subtext {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  border: none;
  padding: 16px 28px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  color: white;
  box-shadow: 0 8px 30px rgba(75, 195, 255, 0.12);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.btn-primary-navbar {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  border: none;
  padding: 10px 18px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  color: white;
  box-shadow: 0 8px 30px rgba(75, 195, 255, 0.12);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 26px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.hero-right {
  position: absolute;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.hero-card {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1005 / 892;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1425px) {
  h1.hero-title {
    font-size: 72px;
  }
}
@media (max-width: 1210px) {
  .hero-card img {
    transform: scale(0.9);
  }
}
@media (max-width: 1200px) {
  aside.hero-right{
    display: none;
  }
  .hero{
    justify-content: center;
  }
}
@media (max-width: 1120px) {
  .hero-card img {
    width: 40vw;
  }
  .hero-left .hero-title,
  #faq-faq,
  #tracking-tracking,
  #talbe-table {
    font-size: clamp(2.2rem, 6vw, 96px);
  }
  .hero-left .subtext {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-top: clamp(10px, 1.8vw, 18px);
  }
  .cta-row {
    gap: clamp(8px, 2vw, 22px);
    margin-top: clamp(14px, 3vw, 28px);
  }
  button.btn-primary,
  button.btn-secondary {
    font-size: clamp(0.95rem, 2vw, 1.08rem);
    padding: clamp(10px, 2vw, 16px) clamp(16px, 5vw, 28px);
    border-radius: clamp(8px, 2vw, 16px);
}
  button.btn-primary-navbar {
    font-size: clamp(0.85rem, 1.8vw, 0.8rem);
    padding: clamp(8px, 1.8vw, 12px) clamp(12px, 4vw, 13px);
    border-radius: clamp(8px, 2vw, 16px);
  }
  .hero-left {
    padding-left: 0;
    border-width: clamp(1px, 0.22vw, 3px);
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 420px;
  }
  .hero-title {
    font-size: 74px;
  }
}

@media (max-width: 1120px) {
    button.btn-primary-navbar {
        font-size: clamp(0.55rem, 1.8vw, 0.4rem);
        padding: clamp(8px, 1.8vw, 12px) clamp(9px, 4vw, 10px);
        border-radius: clamp(8px, 2vw, 14px);
    }
}


.product-info .title {
  font-weight: 800;
  font-size: 17px;
  color: #fff;
}
.product-info .price {
  font-weight: 900;
  color: #ffd46b;
  font-size: 18px;
  white-space: nowrap; 
  display: inline-block;
  max-width: 100%;
}

@media (max-width: 930px) {
  
  .menu-toggle {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .hero-right {
    position: relative;
    order: -1;
    right: auto;
    top: auto;
    transform: none;
    margin-bottom: 24px;
  }
  .hero-card img {
    width: 80%;
    max-width: 320px;
    height: auto;
  }
  .hero-left {
    max-width: 100%;
  }
  .cta-row {
    justify-content: center;
  }
  .hero-title {
    font-size: 48px;
  }
  .topbar {
    padding: 12px 18px;
  }
  .brand {
    font-size: 20px;
  }
  .topbar .main-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 18, 0.97);
    backdrop-filter: blur(10px);
    padding: 80px 0 40px;
    gap: 24px;
    transform: translateY(-100%);
    transition: transform 0.35s ease-in-out;
    z-index: 1000;
  }
  nav.main-nav.show {
    transform: translateY(0);
  }
  nav.main-nav a {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .product-info .price, .product-info .title{
    font-size: 13px;
  }


  .top-right .btn-primary-navbar{
    display: none;
  }

  #registrace-navbar-mobile {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
}

@media (max-width: 810px) {
  .time-duration {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 535px) {
  .cta-row {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-card {
    max-width: 100%;
    aspect-ratio: 16/10;
  }
  .btn-primary {
    width: 100%;
  }
  .hero-card img {
    margin-top: 25px;
  }
}

nav.main-nav a:hover {
  opacity: 1;
  transition: 0.2s;
  color: #fff;
}
.icon-btn:hover {
  transform: translateY(-2px);
  transition: transform 0.18s ease;
}
.btn-primary:active {
  transform: translateY(1px);
}

.lang-custom-select, .currency-custom-select {
  position: relative;
  min-width: 56px;
}
.custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.custom-select.custom-select2 {
  width: 50%;
}
.lang-custom-select button, .currency-custom-select button {
  width: 100%;
  background: transparent;
  border-radius: 9px;
  border: none;
  color: #fff;
  font-weight: 800;
  font-family: "Montserrat", system-ui, Arial;
  font-size: 17px;
  padding: 6px 18px;
  cursor: pointer;
  outline: none;
}

.custom-select button {
  border: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
  background: var(--card);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.18s;
  color: #fff;
  font-weight: 800;
  font-family: "Montserrat", system-ui, Arial;
  font-size: 17px;
  padding: 6px 18px;
  cursor: pointer;
  outline: none;
}

.lang-custom-select .dropdown-list,
.select-options, .currency-custom-select .dropdown-list {
  list-style: none;
  padding-left: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #191a1e;
  border-radius: 9px;
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  margin: 4px 0 0 0;
  padding: 4px 0;
  z-index: 22;
  box-shadow: 0 6px 48px rgba(0, 0, 0, 0.27);
}
.lang-custom-select .dropdown-list li,
.select-options li, .currency-custom-select .dropdown-list li {
  padding: 7px 18px;
  font-family: inherit;
  font-weight: 700;
  color: #e6eef4;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.12s;
}
.lang-custom-select .dropdown-list li.selected,
.select-options li.selected, .currency-custom-select .dropdown-list li.selected {
  color: var(--accent-2);
}
.lang-custom-select .dropdown-list li:hover,
.select-options li:hover, .currency-custom-select .dropdown-list li:hover {
  color: var(--accent-2);
}

button {
  transition: 0.4s;
}
button:hover {
  transition: 0.4s;
  transform: scale(1.05);
}

footer {
  border-radius: 5px;
  font-size: 1.2rem;
  padding: 5px 20px;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 1000;
  display: flex;
  justify-content: center;
}
footer a {
  padding-bottom: 2.5px;
  text-decoration: none;
  color: rgba(246, 248, 250, 0.263);
  transition: 0.5s;
  margin: 20px;
}
footer a:hover {
  transition: 0.5s;
  transform: scale(1.05);
}

::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-thumb {
  background: rgba(28, 28, 28, 0.684);
  border-radius: 10px;
}



.faq-container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.faq-item {
  background-color: var(--card);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  font-family: "Oswald", sans-serif;
}
.faq-question {
  padding: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: white;
  font-size: 23px;
  font-weight: bold;
}
.faq-question:hover .question-text {
  transform: scale(1.02);
  padding-left: 6px;
}
.plus {
  margin-right: 15px;
  font-size: 30px;
  transition: all 0.3s ease-in-out;
}

.faq-answer {
  padding: 0 15px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  color: white;
  text-align: left;
}

.question-text {
  text-align: left;
  transition: 0.2s;
}
.faq-item.active .faq-answer {
  padding: 15px;
  max-height: 1000px;
  border-top: 2px solid white;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active .plus {
  transform: rotate(45deg);
}

.faq-item.active .faq-question .question-text {
  transform: scale(1.02);
  transition: transform 0.3s ease;
  padding-left: 12px;
}

.tracking,
.faq,
section.items {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 60px;
  width: 100%;
}
.tracking h1.hero-title,
.faq h1.hero-title {
  font-size: 68px;
  margin-bottom: 18px;
}
.tracking .tracking-div,
.faq .faq-div {
  background: var(--card);
  border-radius: 14px;
  padding: 40px;
  max-width: 720px;
  width: 100%;
  margin-top: 30px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
  z-index: 4;
}

.tracking-api {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 255, 128, 0.12);
  color: #00d084;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  padding: 6px 14px;
  margin-bottom: 28px;
  border: 1px solid rgba(0, 208, 132, 0.25);
}

.dot {
  width: 7px;
  height: 7px;
  background-color: #00d084;
  border-radius: 50%;
  box-shadow: 0 0 6px #00d084;
  animation: ping 1.5s infinite ease-in-out;
}

@keyframes ping {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.tracking-input {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.tracking-input-number input {
  width: 100%;
  max-width: 500px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
}
.tracking-input-number input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.tracking-input label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #c7cbd1;
}

.tracking-input-button {
  width: 100%;
  max-width: 500px;
}

.tracking-input-button .btn-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: none;
  font-size: 16px;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  box-shadow: 0 8px 25px rgba(75, 195, 255, 0.15);
}

.tracking-input div {
  width: 100%;
}

hr.tracking {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #fff;
  margin: 1em 0;
  padding: 0;
}

.tracking-output {
  margin-top: 30px;
}

.shipping-info {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

div.time-duration {
  display: flex;
  gap: 10px;
}

.shipping-info .card {
  background: rgba(255, 255, 255, 0.05);
  padding: 18px 26px;
  border-radius: 10px;
  min-width: 200px;
  text-align: center;
  font-size: 15px;
  color: #e9eef2;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.shipping-info .card strong {
  display: block;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 6px;
  color: #fff;
}

.gradient-border-wrap {
  border-radius: 24px; 
  padding: 4px;
  display: inline-block;
}

.tracking-result1 {
  border: 3px solid var(--accent-2);
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 8px;
  color: white;
}




.timeline {
  position: relative;
  margin: 30px 0;
  padding-left: 25px;
  border-left: 2px solid var(--accent-2);
}

.timeline-item {
  position: relative;
  margin-bottom: 25px;
}

.timeline-dot {
  position: absolute;
  left: -32.5px;
  top: 6px;
  width: 14px;
  height: 14px;
  background-color: var(--accent-2);
  border-radius: 50%;
  border: 3px solid #111;
  box-shadow: 0 0 5px var(--accent-2);
}

.timeline-content {
  background: #111;
  color: #f0f0f0;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(75, 195, 255, 0.3);
}

.timeline-content:hover {
  background: #1a1a1a;
}

.timeline-time {
  font-weight: bold;
  color: var(--accent-2);
  margin-bottom: 5px;
}





.tracking-timeline {
  margin-top: 36px;
  border-left: 2px solid #6b43ff;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.timeline-event {
  position: relative;
  padding-left: 16px;
}
.timeline-event:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0.9em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b43ff, #4bc3ff);
  border: 3px solid #fff;
  box-shadow: 0 2px 10px #6b43ff44;
}

.weight-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  color: black;
  border-radius: 20px;
  padding: 20px;
  min-width: 25vw;
  width: 35vw;
}
@media (max-width: 830px) {
  .weight-card {
    border-radius: 15px;
    width: 55vw;
  }
}
@media (max-width: 550px) {
  .weight-card {
    border-radius: 15px;
    width: 75vw;
  }
}

.row {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: row;
  border-bottom: 2px solid black;
}

.row:last-child {
  border-bottom: none;
}

.row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-right: 2px solid black;
  padding-right: 10px;
  box-sizing: border-box;
}

.row-icon img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
}

.row div {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-weight: 600;
}

main#items-main {
  padding-top: 10vh;
  align-items: normal;
}

:root {
  --bg: #0b0b0c;
  --muted: #9aa0a6;
  --accent-1: #6b43ff;
  --accent-2: #4bc3ff;
  --glass: rgba(255, 255, 255, 0.04);
  --card: rgba(255, 255, 255, 0.02);
  --card-2: rgba(255, 255, 255, 0.03);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  font-family: "Montserrat", system-ui, Arial;
  background: radial-gradient(
      1200px 600px at 10% 10%,
      rgba(107, 67, 255, 0.06),
      transparent 8%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.45)), var(--bg);
  color: #e9eef2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
header.topbar {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
}
.brand {
  font-family: "Oswald", sans-serif;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 28px;
  color: #fff;
}
nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
nav.main-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
}
.top-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
footer {
  text-align: center;
  padding: 12px;
  color: rgba(246, 248, 250, 0.45);
  font-family: "Oswald", sans-serif;
}
main#items-main {
  padding: 48px 6vw;
  min-height: calc(100vh - 88px);
}
.items-wrap {
  max-width: 1280px;
  margin: 0 auto;
}
.controls {
  display: flex;
  flex-direction: column;
  grid-template-columns: 1fr 420px;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
}
.search {
  display: flex;
  width: 50%;
  gap: 12px;
  align-items: center;
}
@media (max-width: 900px) {
  .search{
    width: 100%;
  }
}
.search input[type="search"] {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 600;
  outline: none;
  box-shadow: 0 8px 30px rgba(107, 67, 255, 0.03) inset;
}
.search .icon {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}
.cats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  transform: scale(1.1);
  z-index: 2;
}
.cat-btn {
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.18s;
  font-size: 14px;
}
.cat-btn.active {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 30px rgba(75, 195, 255, 0.08);
  transform: translateY(-2px);
}
.filters {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.price-range {
  background: var(--card);
  padding: 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  min-width: 300px;
}
.price-inputs {
  display: flex;
  gap: 8px;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.price-inputs input[type="number"] {
  width: 70px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.slider-container {
  position: relative;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}
.slider-track {
  position: absolute;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  border-radius: 4px;
}
input[type="range"] {
  position: absolute;
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  background: transparent;
  pointer-events: none;
}
input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-2);
  cursor: pointer;
  -webkit-appearance: none;
}
input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-2);
  cursor: pointer;
}
.extra-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.extra-filters select {
  padding: 10px 12px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 700;
}
.products {
  margin-top: 28px;
  display: grid;
  position: relative;
  grid-template-columns: repeat(5, 1fr);
  gap: 17px;
}

.char-left,
.char-right {
  position: absolute;
  z-index: 0; 
  width: 20%;
  pointer-events: none;
  user-select: none;
  transform: translateY(-60%) scale(1);
  transition: transform 0.3s ease;
}

.char-left {
  left: 0;
  top: -1%;
}

.char-right {
  right: 0;
  top: -1%;
  transform: scaleX(-1) translateY(-60%);
}


@media (max-width: 700px) {
  .char-left, .char-right {
    display: none;
  }
}
@media (max-width: 1210px) {
  .products {
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
  }
}

.product-card {
  min-width: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.12)
  );
  border-radius: 18px;
  padding: 6px;
  box-shadow: 0 18px 60px rgba(11, 11, 12, 0.65),
    0 6px 30px rgba(107, 67, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.16s ease;
  border: 1px solid var(--accent-2);
  z-index: 2;
}
.product-card:hover {
  transform: translateY(-6px);
}
.product-media {
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(75, 195, 255, 0.02),
    rgba(107, 67, 255, 0.02)
  );
  aspect-ratio: 1 / 1;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 18px 40px rgba(75, 195, 255, 0.06));
}
.product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
}
.buy-btn {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  color: #fff;
  width: 100%;
  font-size: 100%;
}
.meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.load-more-row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.load-more-row select {
  padding: 10px 12px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 700;
}
.load-more {
  padding: 12px 22px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .controls {
    grid-template-columns: 1fr;
  }
  .filters {
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-info .title {
      transform: scale(0.9);
  }
  .product-media {
    height: 180px;
  }
  header.topbar {
    padding: 10px 14px;
  }
  nav.main-nav {
    display: none;
  }
}
.small-muted {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}








.floating-btn-up {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(75, 195, 255, 0.3);
  z-index: 9999; 
  transition: all 0.25s ease;
}

.floating-btn-up:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(75, 195, 255, 0.5);
}




.floating-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
  z-index: 9999;
  transition: 0.5s;
  overflow: visible;
}

.floating-btn .coupon-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 5px rgba(0,0,0,0.6);
  pointer-events: none; 
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 45px rgba(88, 101, 242, 0.6);
  background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
}

.coupon-badge {
  position: absolute;
  top: -5px;
  left: -27px;
  background: #e50914; 
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 25px;
  transform: rotate(-35deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  border-radius: 2px;
  pointer-events: none;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 18px;
  font-size: clamp(7px, 1vw, 10px);
}



.product-media {
  position: relative;
}
.qc-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
}
.qc-btn:hover {
  background: rgba(0,0,0,0.9);
}

.qc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.qc-overlay.show {
  display: flex;
}
.qc-overlay-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}
.qc-overlay img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}
.qc-close {
  position: absolute;
  top: 5px;
  right: 5px;
  background: transparent;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
}
.qc-close:hover {
  color: #ccc;
}



a.tt-link{
    color: white;
    font-size: 17px;
    transition: 0.3s all;
}
a.tt-link:hover{
    transition: 0.3s all;
    transform: scale(1.2);
}


.btn-mobile-only{
    display: none;
}


@media (max-width: 1210px) {
  .products::before { left: -80px; }
  .products::after { right: -80px; }
}

@media (max-width: 900px) {
  .products::before { left: -60px; }
  .products::after { right: -60px; }
}

@media (max-width: 640px) {
  .products::before { left: -40px; }
  .products::after { right: -40px; }
}