body {
  margin: 0;
  padding: 0;
  background: #121212;
  color: #fff;
  font-family: 'Rubik';
}
.container {
  max-width: 792px;
  justify-content: center;
  margin: 0 auto;
  border-radius: 10.8px;
  border: 1.44px solid #4F5052;
  margin: 7.92px auto;
  overflow: hidden;
}

hr {
    color: #4F5052;
    border-color: #4F5052;
    height: 2px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 18px 0 18px;
  background: #0B0B0B;
  min-height: 40px;
}
.navbar-left .flag {
  width: 32px;
  height: 20px;
}
.navbar-center {
  display: flex;
  align-items: center;
  gap: 18px;
}
.logo {
  width: 64px;
  height: 64px;
  background: #222;
  object-fit: cover;
  margin-right: 8px;
  border-radius: 0;
}
.large-logo {
  width: 72px;
  height: 72px;
}
.no-radius {
  border-radius: 0 !important;
}
.site-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-name {
  font-family: 'Rubik';
  font-size: 1.5rem;
  font-weight: 600;
}
.site-desc {
  font-family: 'Rubik';
  font-size: 0.95rem;
  color: #bdbdbd;
  font-weight: 500;
}
.navbar-right .cart-btn {
  background: none;
  border: 2px solid #444;
  color: #fff;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.navbar-right .cart-btn:hover {
  background: #222;
  border: 2px solid #00e0d6;
  color: #00e0d6;
}

/* Menu */
.menu {
  margin-top: -5px;
  display: flex;
  justify-content: center;
  gap: 32px;
  background: #0B0B0B;
  padding: 10px 0 6px 0;
  border-bottom: 2px solid #4F5052;
}
.menu button {
  background: #0B0B0B;
  border: 1.5px solid #1D1D1D;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 18px 8px 12px;
  border-radius: 8px;
  transition: background 0.2s, border 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px #0002;
}
.menu button i {
  font-size: 1.2em;
  margin-right: 6px;
}
.menu button:hover {
  background: #222;
  border: 1.5px solid #00e0d6;
  color: #00e0d6;
}

/* Banner */
.banner {
  display: flex;
  justify-content: center;
  background: #121212;
  padding: 18px 0;
  border-bottom: 2px solid #4F5052;
}
.banner .arrow {
  background: #181818;
  color: #fff;
  border: 2px solid #222;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, border 0.2s;
  box-shadow: 0 0 0 8px #222, 0 0 16px 4px #fff2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .arrow i {
  font-size: 1.3rem;
}
.banner .arrow:hover {
  background: #222;
  box-shadow: 0 0 0 8px #00e0d6, 0 0 24px 8px #00e0d6aa;
  color: #00e0d6;
  border: 2px solid #00e0d6;
}
.banner-content {
  text-align: center;
}
.banner-title {
  font-family: 'Rubik';
  font-weight: 600;
  font-size: 2.5rem;
  background: #fff;
  color: #181818;
  border-radius: 7px;
  padding: 0px 14px;
  width: 80%;
  display: inline-block;
  letter-spacing: 2px;
  white-space: nowrap;
  overflow-x: auto;
  text-overflow: ellipsis;
  margin-bottom: 6px;
  margin-top: 6px;
}
.banner-desc {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 400;
  margin: -5px auto -7px;
  background: #121212;
  border-radius: 7px;
  width: 85%;
  padding: 10px 32px;
  text-align: center;
  display: inline-block;
}

.read-more {
  display: inline-block;
  background: #121212;
  color: #fff;
  padding: 7px 18px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  box-shadow: 0 2px 8px #0002;
  margin-top: 4px;
}
.read-more i {
  margin-right: 8px;
}
.read-more:hover {
  background: #fff;
  color: #181818;
  border: 2px solid #00e0d6;
}

/* Product Grid (Vertical Scroll) */
.products {
  width: 75%;
  margin: 6px auto 32px auto;
}

.products h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 18px 16px;
  font-family: 'Rubik';
}
.products .rust {
  color: #ff6a00;
  font-weight: 700;
}
.product-vertical-scroll {
  max-height: 480px;
  min-height: 480px;
  overflow-y: auto;
  padding: 0 0 0 0;
  scrollbar-width: thin;
  scrollbar-color: #444 #222;
  border-radius: 0 0 8px 8px;
  position: relative;
}
.product-vertical-scroll::-webkit-scrollbar {
  width: 8px;
}
.product-vertical-scroll::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 6px;
}
.product-vertical-scroll::-webkit-scrollbar-track {
  background: #222;
}
.product-grid-vertical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 0;
}
.product-card {
  background: #181818;
  border: 1.5px solid #222;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 0;
  width: 98%;
  min-height: 240px;
}
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
}
.product-info {
  padding: 12px 18px 8px 18px;
  text-align: left;
  width: 100%;
}
.product-info h3 {
  font-size: 1.1rem;
  font-family: 'Share Tech Mono', monospace;
  font-weight: 700;
  margin: 0 0 6px 0;
}
.product-info p {
  color: #00e0d6;
  font-weight: 700;
  margin: 0 0 8px 0;
}

/* Recommended Carousel (centered, 3 at a time, center large)
.recommended-carousel {
  width: 100%;
  text-align: center;
  border-top: 2px solid #4F5052;
}
.recommended-carousel-wide {
  margin-top: 0 !important;
  padding-top: 0 !important;
  width: 100%;
  overflow: visible;
  margin-bottom: 48px !important;
}
.recommended-carousel h2 {
  font-family: 'Share Tech Mono', monospace;
  font-weight: 1000;
  margin-bottom: 30px !important;
}
.carousel-center-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin-top: 0 !important;
  padding-top: 0 !important;
  position: static;
}
.carousel-arrow {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  z-index: 1;
  background: #181818;
  color: #fff;
  border: 2px solid #222;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, border 0.2s;
  box-shadow: 0 0 0 8px #222, 0 0 16px 4px #fff2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow i {
  font-size: 2rem;
}
.carousel-arrow:hover {
  background: #222;
  box-shadow: 0 0 0 8px #00e0d6, 0 0 24px 8px #00e0d6aa;
  color: #00e0d6;
  border: 2px solid #00e0d6;
}
.carousel-center-track {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  width: 1100px;
  max-width: 100%;
  overflow: visible;
  min-height: 0 !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.carousel-card {
  background: #181818;
  border: 1.5px solid #222;
  border-radius: 8px;
  box-shadow: 0 2px 8px #0002;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.carousel-card.small {
  min-width: 320px;
  max-width: 320px;
  transform: scale(0.92);
  opacity: 0.7;
  z-index: 1;
}
.carousel-card.large {
  min-width: 420px;
  max-width: 420px;
  transform: scale(1.12);
  box-shadow: 0 4px 24px #00e0d6aa;
  opacity: 1;
  z-index: 2;
  margin-bottom: 0;
}
.carousel-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.carousel-info {
  padding: 8px 6px 0 6px;
  text-align: center;
}
.carousel-info h3 {
  font-size: 1.1rem;
  font-family: 'Rubik';
  font-weight: 700;
  margin: 0 0 4px 0;
}
.carousel-info p {
  color: #00e0d6;
  font-weight: 700;
  margin: 0 0 6px 0;
} */

/* Footer 1:1 Replica */
.footer {
  background: #0b0b0b;
  color: #fff;
  padding: 12px 0;
  justify-content: center;
  position: relative;
  font-family: 'Rubik', Arial, sans-serif;
  font-size: 0.98rem;
}
.footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 auto;
  gap: 23px;
  flex-wrap: nowrap;
  padding: 0px 8px;
}

.footer-payments {
  margin-top: 16px;
  margin-left: 3%;
}
.footer-legal {
  width: 26%;
  margin-left: 3%;
}
.footer-help {
  width: 25%
}

.footer-logo-row {
  margin-top: 5%;
  margin-left: 7%;
  margin-right: 7px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-logo {
  margin: 0 auto;
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 0;
}
.footer-brand {
  font-size: 1.6rem;
  font-weight: 8000;
  letter-spacing: 1px;
}
.footer-nav {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.7;
  transition: color 0.2s, opacity 0.2s;
}
.footer-nav a:hover {
  color: #00e0d6;
  opacity: 1;
}
.footer-payments-title {
  color: #6d6e7e;
  font-size: 1rem;
  font-weight: 450;
  margin-bottom: 2px;
}
.footer-payments-icons {
  display: flex;
  gap: 4px;
}
.footer-payments-icons img {
  height: 30px;
  width: auto;
  object-fit: contain;
  margin-right: 2px;
  background: none;
  border: none;
  border-radius: 0;
}
.footer-legal-title, .footer-help-title, .footer-partner-title {
  color: #6d6e7e;
  font-size: 1rem;
  font-weight: 450;
  margin-bottom: 2px;
}
.footer-legal a, .footer-help a, .footer-partner a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 1px;
  opacity: 0.9;
  transition: color 0.2s, opacity 0.2s;
}
.footer-legal a:hover, .footer-help a:hover, .footer-partner a:hover {
  color: #00e0d6;
  opacity: 1;
}
.footer-partner a {
  font-weight: 500;
  color: #bdbdbd;
  margin-top: 2px;
}

/* Add divider between sections */
.products, .recommended-carousel-wide, .footer {
  position: relative;
}
.products:before, .recommended-carousel-wide:before, .footer:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #222;
  position: absolute;
  top: -16px;
  left: 0;
}

/* Responsive */
@media (max-width: 1400px) {
  .carousel-center-track {
    width: 100vw;
    max-width: 100vw;
    gap: 24px;
  }
  .footer-row {
    gap: 12px;
  }
}
@media (max-width: 1000px) {
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }
  .carousel-center-track {
    width: 100vw;
    gap: 12px;
  }
  .product-vertical-scroll {
    max-height: 1000px;
    min-height: 0;
  }
  .product-grid-vertical {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .navbar, .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    flex-wrap: wrap;
  }
  .menu {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }
  .banner {
    flex-direction: column;
    padding: 18px 0;
  }
  .product-grid-vertical {
    grid-template-columns: 1fr;
  }
  .carousel-center-track {
    width: 100vw;
    gap: 8px;
  }
  .banner-content {
    width: 60vw;
  }
  .banner-title {
    width: 100%;
    font-size: 8rem;
    font-weight: 900;
    padding: 4px 8px;
  }
  .banner .arrow {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    margin: 0 8px;
  }
}
.menu-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 2px;
}
.lang-select {
  background: #181818;
  color: #fff;
  border: 1.5px solid #222;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 1rem;
  font-family: 'Share Tech Mono', monospace;
  margin-top: 2px;
  margin-bottom: 2px;
  outline: none;
}
.lang-select:focus {
  border-color: #00e0d6;
}

.lang-flags {
  display: flex;
  gap: 6px;
  align-items: center;
  background: #181818;
  border: 1.5px solid #222;
  border-radius: 8px;
  padding: 2px 8px;
}
.lang-flag {
  font-size: 1.35rem;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 5px;
  transition: background 0.15s, box-shadow 0.15s;
  user-select: none;
  opacity: 0.7;
}
.lang-flag.selected, .lang-flag:hover {
  background: #00e0d6;
  color: #181818;
  opacity: 1;
  box-shadow: 0 0 0 2px #00e0d6;
}

.lang-dropdown {
  position: relative;
  display: inline-block;
}
.lang-dropdown-toggle {
  background: #181818;
  color: #fff;
  border: 1.5px solid #222;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 1.25rem;
  font-family: 'Share Tech Mono', monospace;
  cursor: pointer;
  outline: none;
  min-width: 44px;
  transition: border 0.2s;
}
.lang-dropdown-toggle:focus, .lang-dropdown-toggle.active {
  border-color: #00e0d6;
}
.lang-dropdown-list {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  background: #181818;
  border: 1.5px solid #222;
  border-radius: 8px;
  min-width: 120px;
  z-index: 100;
  box-shadow: 0 2px 8px #0008;
  padding: 4px 0;
  overflow: hidden;
}
.lang-dropdown.open .lang-dropdown-list {
  display: block;
}
.lang-dropdown-list .lang-flag {
  display: block;
  width: 100%;
  padding: 6px 16px 6px 10px;
  font-size: 1.1rem;
  color: #fff;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  border-radius: 4px;
  opacity: 0.85;
  transition: background 0.15s, color 0.15s;
}
.lang-dropdown-list .lang-flag:hover {
  background: #00e0d6;
  color: #181818;
  opacity: 1;
}

/* Align products title with grid */
#products-title {
  margin-left: 0;
  margin-bottom: 8px;
  padding-left: 2px;
  text-align: left;
  font-weight: 1000;
  width: fit-content;
}
.product-vertical-scroll {
  padding-left: 0;
}

.rust-logo {
  height: 1.1em;
  vertical-align: middle;
  margin-left: 4px;
}

.footer-logo-large {
  width: 56px !important;
  height: 56px !important;
}

.footer-nav a,
.footer-legal a,
.footer-help a,
.footer-partner a {
  color: #fff !important;
}

.menu button {
  color: #fff !important;
} 

/* Video Page Styles */

.video-section {
  text-align: center;
  border-bottom: 2px solid #4F5052;
}

.video-section h2 {
  font-family: "Rubik";
  font-weight: 700;
  font-size: 1.9rem;
  margin-top: -20px;
}

/* .video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  margin-top: -15px;
}

.video-placeholder {
  background: #121212;
  border: 1.5px solid #222;
  width: 320px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 1.2rem;
  margin: 10px;
}

.video-placeholder i {
  font-size: 3rem;
  margin-bottom: 10px;
}

.video-placeholder div {
  display: flex;
  flex-direction: column;
  align-items: center;
} */

.email-section {
  text-align: center;
  justify-content: center;
  margin: 40px auto 40px;
  color: white;
  font-family: 'Rubik';
  border-bottom: 2px solid #4f5052;
}

.email-section-content h2 {
  margin: 50px auto;
  font-weight: 600;
  max-width: 75%;
  font-size: 27px;
  margin-bottom: 12px;
}

#emailForm {
  display: flex;
  justify-content: center;
  gap: 0;
  border-radius: 25px;
}

#emailInput {
  padding: 10px 10px;
  width: 500px;
  height: 30px;
  border: 1px solid #777;
  border-right: none;
  border-radius: 10px 0 0 10px;
  background-color: #111;
  color: #eee;
  outline: none;
  font-size: 14px;
}

#emailInput::placeholder {
  color: #aaa;
  font-size: 18px;
  font-family: 'Rubik';
  opacity: 0.7;
}

#emailForm button {
  padding: 10px 20px;
  background-color: #0B0B0B;
  color: #eee;
  border: 1px solid #777;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  overflow: hidden;
  transition: background-color 0.2s;
}

#emailForm button:hover {
  background-color: #444;
}

.email-section-content #disclaimer {
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  font-size: 15px;
  color: white;
  font-weight: 600;
  margin-bottom: 50px;
}


/* Media queries for video page */
@media (max-width: 1000px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .email-form {
    flex-direction: column;
  }

  .email-form input {
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .email-form button {
    border-radius: 4px;
  }
}

.video-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px 0;
}

.video-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  margin-top: -30px;
  scrollbar-width: none; /* Firefox */
}

.video-carousel-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.video-card {
  background: #121212;
  border: 1.5px solid #222;
  width: 320px;
  height: 180px;
  min-width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #eee;
  font-size: 1rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 8px #0003;
}

.video-card i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.carousel-arrow {
  background: #181818;
  color: #fff;
  border: 2px solid #444;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.carousel-arrow:hover {
  background: #222;
  color: #00e0d6;
  border-color: #00e0d6;
}

.carousel-arrow.left {
  margin-right: -150px;
  margin-left: -30px;
}

.carousel-arrow.right {
  margin-left: -150px;
  margin-right: -30px;
}
