* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.launch-popup {
  position: fixed;
  left: 40px;
  top: 45%;
  transform: translateY(-50%) scale(0.8);
  width: 320px;
  padding: 28px;
  background: linear-gradient(145deg, #111827, #1f2937);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 22px;
  color: white;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
}

.launch-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
  animation: launchPulse 3s infinite;
}

.launch-popup h2 {
  margin: 10px 0;
  font-size: 28px;
}

.launch-popup p {
  color: #d1d5db;
  margin-bottom: 20px;
}

.launch-icon {
  font-size: 42px;
}

.discount-code {
  display: inline-block;
  background: white;
  color: #111827;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 12px;
}


.legal-page {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  line-height: 1.7;
}

.site-footer {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid #333;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.policy-check {
  display: block;
  margin: 20px 0;
  font-size: 14px;
}

.launch-popup span {
  display: block;
  color: #9ca3af;
  font-size: 14px;
}

.launch-close {
  position: absolute;
  right: 15px;
  top: 12px;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

@keyframes launchPulse {
  0%, 100% {
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  }

  50% {
    box-shadow: 0 20px 80px rgba(59,130,246,0.65);
  }
}

@media (max-width: 600px) {
  .launch-popup {
    left: 20px;
    right: 20px;
    width: auto;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  color: #010003;
  background: #ffffff;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e5e7eb;
  min-height: 56px;
}

.logo {
  font-size: 28px;
  color: #111827;
}

/* TOP BANNER */
.banner-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 20px 10px;
}

.top-banner {
  width: min(90%, 420px);
  height: auto;
  display: block;
  transition: opacity 0.2s linear;
}

/* HERO */
.hero {
  min-height: 80vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 60px 8%;
}

.hero.small {
  min-height: 32vh;
  justify-content: center;
  text-align: center;
  padding: 120px 8% 60px;
}

.hero-text {
  flex: 1;
  max-width: 520px;
}

.hero-text h1,
.hero-text h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #444;
}

.hero-img {
  flex: 1;
  max-width: 520px;
  display: flex;
  justify-content: center;
}

.hero-img img {
  width: 100%;
  max-width: 500px;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* GENERIC SECTIONS */
.section {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 80px 8%;
}

.section.reverse {
  flex-direction: row-reverse;
}

.text-box {
  flex: 1;
}

.text-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.text-box p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 18px;
}

.image-box {
  flex: 1;
  min-height: 320px;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f4f6;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-box.small {
  min-height: 180px;
}

/* GENERIC CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 60px 8% 80px;
}

.card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 14px;
  color: #111827;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
}

.card p {
  color: #000000;
}

/* SHOP */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 8% 80px;
}

.product {
  background: #f8f8f8;
  padding: 16px;
  border-radius: 12px;
  color: #111827;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  border: 1px solid #eeeeee;
  position: relative;
}

.product h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
}

.product p {
  color: #000000;
  margin-bottom: 18px;
}

.product img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  display: block;
}

.product-card-body {
  padding-top: 16px;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px;
  background: #3b82f6;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: #2563eb;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #3b82f6;
  color: #3b82f6;
}

.btn.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 24px;
  color: #666;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* ANNOUNCEMENT BAR */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #d9d9d9, #f2f2f2, #cfcfcf);
  color: #111827;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 3000;
  border-bottom: 1px solid #bdbdbd;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.announcement-bar.fade-out {
  opacity: 0;
  transform: translateY(-100%);
  visibility: hidden;
}

body.has-announcement {
  padding-top: 42px;
}

body.has-announcement .navbar {
  top: 42px;
}

body.has-announcement .banner-wrap {
  padding-top: 34px;
}

body.has-announcement .top-banner {
  margin-top: 8px;
}

/* CATEGORY NAV */
.category-nav-wrap {
  width: 100%;
  background: #f7f7f7;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.category-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  min-height: 70px;
  flex-wrap: wrap;
}

.category-nav>a,
.dropdown-link,
.dropdown-btn {
  text-decoration: none;
  color: #174a63;
  font-size: 18px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
}

.category-nav>a:hover,
.dropdown-link:hover,
.dropdown-btn:hover {
  color: #0f3447;
}

.dropdown {
  position: relative;
}

.dropdown-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dropdown-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.dropdown-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.arrow {
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  transform: translateY(1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 10px 0;
  display: none;
  z-index: 1000;
}

.dropdown-menu a,
.dropdown-menu .dropdown-empty {
  display: block;
  padding: 12px 18px;
  font-size: 16px;
  color: #174a63;
  white-space: nowrap;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f3f7f9;
}

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-empty {
  cursor: default;
}

.nav-support-btn {
  background: #111;
  border: 1px solid #ffffff22;
  color: #fff;
  font: inherit;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 8px;
}

.nav-action-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* SHOP EXTRA */
.shop-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px 8% 0;
}

/* PRODUCT PAGE */
.back-link {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 20px;
}

.product-page {
  max-width: 1200px;
  margin: 30px auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-image-wrap,
.product-info {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
}

.product-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.product-info h1 {
  margin: 0 0 10px;
  font-size: 2rem;
  color: #000000;
}

.product-price {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #000000;
}

.product-description {
  line-height: 1.6;
  margin-bottom: 24px;
  color: #000000;
}

.product-meta {
  margin-bottom: 24px;
}

.product-meta p {
  margin: 8px 0;
  color: #000000;
}

.product-meta strong {
  color: #000000;
}

.product-description-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.product-description-content.expanded {
  display: block;
  overflow: visible;
}

.description-toggle-btn {
  margin-top: 14px;
}

.product-description h3 {
  margin: 18px 0 10px;
  font-size: 1.05rem;
  color: #000000;
}

.product-description p {
  margin-bottom: 12px;
  color: #000000;
}

.product-description strong {
  color: #000000;
}

/* PRODUCT IMAGES */
.product-image-slider {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}

.product-image-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.75);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
}

.product-image-nav.prev {
  left: 12px;
}

.product-image-nav.next {
  right: 12px;
}

.product-image-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.product-image-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: #cfcfcf;
  cursor: pointer;
}

.product-image-dot.active {
  background: #111;
}

/* PRODUCT VARIANTS */
.product-variant-wrap {
  margin-bottom: 20px;
}

.product-variant-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #111;
}

.product-variant-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 14px;
  color: #111;
}

.basket-item-option {
  margin: 0 0 6px;
  font-size: 13px;
  color: #666;
}

/* SUPPORT WIDGET */
#supportWidget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#supportToggle {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#supportToggle:hover {
  transform: translateY(-2px);
}

#supportPanel {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 320px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  padding: 18px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#supportPanel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#supportClose {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #111;
}

#supportForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#supportForm h3 {
  margin: 0 0 6px 0;
  font-size: 20px;
  color: #111;
}

#supportForm input,
#supportForm textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  box-sizing: border-box;
}

#supportForm textarea {
  min-height: 110px;
  resize: vertical;
}

#supportForm button[type="submit"] {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

#supportForm button[type="submit"]:hover {
  opacity: 0.9;
}

#supportStatus {
  margin: 4px 0 0 0;
  font-size: 13px;
  color: #111;
}

#supportWidget.hidden-by-basket,
#basketLauncher.hidden-by-basket {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

/* STOCK */
.availability.in {
  color: green;
}

.availability.out {
  color: red;
}

/* BASKET */
.basket-launcher {
  position: fixed;
  top: 140px;
  right: 16px;
  z-index: 4001;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.has-announcement .basket-launcher {
  top: 170px;
}

.basket-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 700;
}

.basket-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 3998;
}

.basket-overlay.open {
  opacity: 1;
  visibility: visible;
}

.basket-drawer {
  position: fixed;
  top: 100px;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: calc(100vh - 100px);
  background: #fff;
  z-index: 3999;
  transition: right 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  border-top-left-radius: 14px;
}

body.has-announcement .basket-drawer {
  top: 140px;
  height: calc(100vh - 140px);
}

.basket-drawer.open {
  right: 0;
}

.basket-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #e8e8e8;
  gap: 12px;
}

.basket-drawer-header h3 {
  margin: 0;
  font-size: 22px;
  color: #111;
}

.basket-close-btn {
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #111;
  padding: 0 4px;
}

.basket-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 20px;
}

.basket-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #efefef;
}

.basket-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

.basket-item-info h4 {
  margin: 0 0 6px;
  font-size: 15px;
}

.basket-item-info p {
  margin: 0 0 10px;
  font-size: 14px;
}

.basket-item-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.basket-qty-btn,
.basket-remove-btn {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
}

.basket-footer {
  border-top: 1px solid #e8e8e8;
  padding: 18px 20px;
}

.basket-total {
  margin: 0 0 14px;
  font-weight: 700;
}

.free-shipping-message {
  margin: 0 0 14px;
  font-size: 14px;
  color: #444;
}

.free-shipping-message.qualified {
  color: green;
  font-weight: 700;
}

.basket-actions {
  display: flex;
  gap: 10px;
}

.basket-actions .btn {
  flex: 1;
}

.basket-empty {
  color: #666;
}

.basket-fly-animation {
  will-change: transform, left, top, width, height, opacity;
}

.basket-launcher.basket-bump {
  transform: scale(1.08);
  transition: transform 0.25s ease;
}

/* HOME PAGE */
.hero-home {
  min-height: auto;
  padding: 72px 24px 56px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(135deg, #111827 0%, #0f172a 100%);
}

.hero-home .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-home .hero-text {
  max-width: none;
}

.hero-home h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 16px;
  color: #ffffff;
}

.hero-home p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}

.hero-buttons {
  margin-bottom: 28px;
}

.hero-feature-card {
  display: flex;
  justify-content: center;
}

.hero-feature-inner {
  width: 100%;
  max-width: 360px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.mini-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.hero-feature-inner h3 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.featured-mini-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.featured-mini-list a {
  text-decoration: none;
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  transition: 0.2s ease;
}

.featured-mini-list a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.home-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px;
}

.home-section.section {
  display: block;
  gap: 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.section-heading.centered {
  justify-content: center;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  font-weight: 700;
}

.section-heading h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.section-heading p {
  color: #6b7280;
  max-width: 700px;
}

.text-link {
  color: #111827;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.text-link:hover {
  text-decoration: underline;
}

.cards-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 0;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card .image-box {
  min-height: 220px;
  padding: 26px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  box-shadow: none;
  border-radius: 0;
}

.product-card .image-box img {
  object-fit: contain;
}

.card-content {
  padding: 22px;
}

.product-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 0.8rem;
  font-weight: 700;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.product-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 18px;
}

.alt-section {
  background: #f8fafc;
  border-radius: 28px;
  margin-bottom: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.feature-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.feature-box h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.feature-box p {
  color: #6b7280;
  line-height: 1.6;
}

.review-box {
  text-align: left;
}

.review-stars {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #f59e0b;
  letter-spacing: 2px;
}

.review-author {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: #111827;
}

/* FAQ PAGE */
.faq-page {
  min-height: 100vh;
  background: #ffffff;
  color: #000000;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.faq-header {
  margin-bottom: 32px;
}

.faq-header h1 {
  margin: 18px 0 10px;
  font-size: 2.4rem;
  line-height: 1.1;
}

.faq-header p {
  margin: 0;
  font-size: 1rem;
  color: #555;
  max-width: 700px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #dcdcdc;
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 28px 36px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question span,
.faq-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 20px;
  color: #00e0b8;
}

.faq-answer {
  display: none;
  padding: 0 36px 30px;
}

.faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #2b2b2b;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.faq-item.open .faq-answer,
.faq-item.active .faq-answer {
  display: block;
  max-height: 220px;
}

/* SUPPORT PAGE */
.hero-page,
.support-hero {
  padding: 56px 20px 26px;
}

.hero-content-centered {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.support-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 20px 60px;
}

.support-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.support-info-card,
.support-form-card,
.support-extra-card {
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.support-info-card h2,
.support-form-card h2,
.support-extra-card h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  color: #ffffff;
}

.support-info-card p,
.support-form-card p,
.support-extra-card p,
.support-checklist li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.support-info-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.support-info-item {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.support-info-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #ffffff;
}

.support-info-item p {
  margin: 0;
}

.support-form {
  margin-top: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #ffffff;
}

.support-form input,
.support-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font: inherit;
  outline: none;
  appearance: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.support-form input:focus,
.support-form textarea:focus {
  border-color: rgba(143, 184, 255, 0.8);
  background: rgba(255, 255, 255, 0.09);
}

.support-form textarea {
  resize: vertical;
  min-height: 180px;
}

.support-extra {
  margin-top: 24px;
}

.support-checklist {
  margin: 18px 0 0;
  padding-left: 18px;
}

.support-checklist li {
  margin-bottom: 10px;
}

.support-page a {
  color: #8fb8ff;
  text-decoration: none;
}

.support-page a:hover {
  text-decoration: underline;
}

/* CATEGORY HERO LEFT ALIGN */
.hero.category-hero-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}

.hero.category-hero-left .hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero.category-hero-left .hero-text {
  width: 100%;
  max-width: 700px;
  margin: 0;
  text-align: left;
}

.hero.category-hero-left .hero-text .eyebrow,
.hero.category-hero-left .hero-text h1,
.hero.category-hero-left .hero-text p {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

/* SITE FOOTER */
.site-footer {
  background: #0b0b0b;
  color: #f5f5f5;
  padding: 70px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 80px;
}

.footer-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-column h3,
.footer-column h4 {
  margin: 0 0 18px;
  color: #ffffff;
}

.footer-column h3 {
  font-size: 1.6rem;
}

.footer-column h4 {
  font-size: 1rem;
}

.footer-column p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 14px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #00e0b8;
}

.footer-contact-block {
  margin-top: 28px;
}

.footer-contact-block p strong {
  display: block;
  color: #00e0b8;
  margin-bottom: 4px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-disclaimer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 30px 26px;
  box-sizing: border-box;
}

.footer-disclaimer p {
  margin: 0;
  width: 100%;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 950px) {

  .hero-home .hero-content,
  .cards-home,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-feature-card {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {

  .hero,
  .section,
  .section.reverse {
    flex-direction: column;
    padding: 50px 6%;
  }

  .hero.small {
    padding: 110px 6% 40px;
  }

  .hero-text,
  .text-box,
  .hero-img,
  .image-box {
    max-width: 100%;
    width: 100%;
  }

  .hero-img img {
    height: 320px;
  }

  .cards,
  .product-grid {
    grid-template-columns: 1fr;
    padding: 40px 6% 60px;
  }

  .image-box {
    min-height: 260px;
  }

  .image-box.small {
    min-height: 220px;
  }

  .shop-actions {
    justify-content: center;
    padding: 20px 6% 0;
  }

  .product-page {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .support-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .support-info-card h2,
  .support-form-card h2,
  .support-extra-card h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .category-nav {
    gap: 18px;
    padding: 12px 16px;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .category-nav>a,
  .dropdown-link,
  .dropdown-btn {
    font-size: 16px;
    padding: 8px 0;
  }

  .dropdown-menu {
    min-width: 180px;
  }

  .basket-launcher {
    top: 110px;
    right: 12px;
    padding: 13px 16px;
    font-size: 13px;
    z-index: 4001;
    min-width: 50px;
    min-height: 44px;
  }

  body.has-announcement .basket-launcher {
    top: 150px;
  }

  .basket-drawer {
    top: 84px;
    max-width: 100%;
    height: calc(100vh - 84px);
  }

  body.has-announcement .basket-drawer {
    top: 124px;
    height: calc(100vh - 124px);
  }

  .nav-action-buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .basket-actions {
    flex-direction: column;
  }

  .basket-actions .btn {
    width: 100%;
    text-align: center;
  }

  /* Improve touch targets */
  .btn {
    min-height: 44px;
    min-width: 100px;
    padding: 14px 24px;
  }

  .product-variant-select,
  #supportForm input,
  #supportForm textarea {
    min-height: 44px;
    font-size: 16px;
  }

  /* Better spacing for mobile */
  .hero-home {
    padding: 56px 18px 42px;
  }

  .home-section {
    padding: 54px 18px;
  }

  .top-banner {
    width: 95%;
  }
}

@media (max-width: 700px) {
  .hero .buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero .buttons .btn:first-child {
    width: 100%;
    min-width: 0;
  }

  .product-description-content {
    -webkit-line-clamp: 3;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .product-page {
    gap: 18px;
    margin: 20px auto 40px;
    padding: 0 16px;
  }

  .product-image-wrap {
    padding: 14px;
  }

  .product-info {
    padding: 18px;
  }

  .product-info h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .product-price {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }

  .product-description h3 {
    font-size: 1rem;
    margin: 14px 0 8px;
  }

  .product-description p {
    margin-bottom: 10px;
  }

  .product-meta p {
    font-size: 0.95rem;
  }

  .product-info .buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .product-info .buttons .btn {
    width: 100%;
    text-align: center;
  }

  .product-image-slider,
  .product-image-slider img,
  .product-image-wrap img {
    height: 260px;
  }

  .product-image-nav {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .hero-home {
    padding: 56px 18px 42px;
  }

  .home-section {
    padding: 54px 18px;
  }

  .hero-home h1 {
    font-size: 2.2rem;
  }

  .site-footer {
    padding: 50px 0 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  #supportWidget {
    right: 12px;
    bottom: 12px;
  }

  #supportToggle {
    padding: 12px 16px;
    font-size: 13px;
    min-height: 44px;
    min-width: 100px;
  }

  #supportPanel {
    width: min(320px, calc(100vw - 24px));
    right: 0;
    bottom: 56px;
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #supportForm input,
  #supportForm textarea {
    font-size: 16px;
    min-height: 44px;
  }

  /* Better button sizing */
  .btn {
    min-height: 48px;
    padding: 14px 18px;
    font-size: 15px;
  }

  /* Improve card sizes */
  .hero-home {
    padding: 48px 14px 36px;
  }

  .home-section {
    padding: 48px 14px;
  }

  .cards-home,
  .feature-grid {
    gap: 16px;
  }

  .card-content {
    padding: 16px;
  }

  .feature-box {
    padding: 18px;
  }

  .product-card h3 {
    font-size: 1.1rem;
  }

  .section-heading h2 {
    font-size: 1.5rem;
  }

  .hero-home h1 {
    font-size: 1.8rem;
  }

  .top-banner {
    width: 100%;
    max-width: 100%;
  }

  /* Better form spacing */
  .support-form-card,
  .support-info-card {
    padding: 18px;
  }

  .form-row {
    gap: 12px;
  }

  .product-image-wrap,
  .product-info {
    padding: 14px;
  }
}

.dropdown {
  position: relative;
}

.dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 14px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 10px 0;
  display: none;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  display: block;
}

/* Smooth fade effect */
.top-banner,
.basket-button {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hidden state */
.fade-out {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

/* Banner hide on scroll */
.banner-wrap.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Basket launcher hide on scroll */
.basket-launcher.fade-out {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

/* Support widget hide on scroll */
#supportWidget.fade-out {
  opacity: 0;
  transform: scale(0.9) translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.checkout-page,
.order-confirmation-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
}

.checkout-header,
.order-confirmation-header {
  margin-bottom: 30px;
}

.checkout-header h1,
.order-confirmation-header h1 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.checkout-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.7fr 1fr;
}

.checkout-form,
.order-confirmation-panel {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.checkout-form label,
.order-confirmation-panel label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #111827;
}

.checkout-form input,
.checkout-form textarea,
.order-confirmation-panel input,
.order-confirmation-panel textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 1rem;
  color: #111827;
}

.checkout-form textarea,
.order-confirmation-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.checkout-summary,
.order-details {
  background: #fafbff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px;
}

.checkout-summary h2,
.order-details h2 {
  margin-bottom: 18px;
}

.order-items-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.order-items-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}

.order-items-list li:last-child {
  border-bottom: none;
}

.order-items-list strong {
  color: #111827;
}

.order-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 16px;
}

.form-status,
.order-status {
  margin-top: 18px;
  display: block;
  color: #dc2626;
  font-weight: 600;
}

.bank-card {
  margin-top: 16px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.bank-card h2 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.bank-card p {
  margin-bottom: 18px;
  color: #334155;
  line-height: 1.6;
}

.bank-details-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
  align-items: center;
  color: #0f172a;
}

.bank-details-grid strong {
  color: #0f172a;
}

.payment-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.pay-later-info {
  margin-top: 18px;
  padding: 16px;
  background: #fff7ed;
  border: 1px solid #fbbf24;
  border-radius: 12px;
  display: none;
}

.pay-later-info.open {
  display: block;
}

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

@media (max-width: 700px) {

  .checkout-page,
  .order-confirmation-page,
  .admin-page {
    padding: 20px 12px;
  }

  .checkout-header h1,
  .order-confirmation-header h1 {
    font-size: 1.6rem;
  }

  .admin-panel form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
    align-items: start;
  }

  .admin-panel form label {
    grid-column: span 2;
    font-weight: 600;
  }

  .admin-panel form input[type="text"],
  .admin-panel form input[type="number"],
  .admin-panel form input[type="url"],
  .admin-panel form input[type="email"],
  .admin-panel form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
  }

  .admin-panel form .btn {
    grid-column: span 2;
  }
}

.checkout-form,
.order-confirmation-panel,
.admin-panel,
.checkout-summary,
.order-details {
  padding: 20px;
}

.payment-actions {
  flex-direction: column;
}

.payment-actions .btn,
.payment-actions button,
.payment-actions select {
  width: 100%;
  text-align: center;
}

.admin-panel .payment-actions {
  flex-direction: column;
  align-items: stretch;
}


@media (max-width: 640px) {

  .admin-table,
  .admin-table thead,
  .admin-table tbody,
  .admin-table th,
  .admin-table td,
  .admin-table tr {
    display: block;
  }

  .admin-table thead {
    display: none;
  }

  .admin-table tr {
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 8px 0;
    background: #fff;
  }

  .admin-table td {
    border: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 12px;
  }

  .admin-table td:last-child {
    border-bottom: none;
  }

  .admin-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
    color: #374151;
  }
}

.admin-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.admin-panel {
  background: #fff;
  border: 1px solid #e5e7e7;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.admin-panel form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  align-items: start;
  margin-top: 18px;
}

.admin-panel form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #111827;
}

.admin-panel form input[type="text"],
.admin-panel form input[type="number"],
.admin-panel form input[type="url"],
.admin-panel form input[type="email"],
.admin-panel form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: #f9fafb;
  color: #111827;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-panel form input[type="text"]:focus,
.admin-panel form input[type="number"]:focus,
.admin-panel form input[type="url"]:focus,
.admin-panel form input[type="email"]:focus,
.admin-panel form textarea:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.admin-panel form textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-panel form .form-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-panel form .form-actions .btn {
  flex: 1 1 140px;
}

.admin-panel form label.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  grid-column: span 2;
  font-weight: 600;
  cursor: pointer;
}

.admin-panel form label.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
}

.admin-table th {
  background: #f8fafc;
  font-weight: 700;
}

.status-badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
}

/* Extra mobile polish */
@media (max-width: 480px) {
  .btn {
    padding: 14px 18px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .buttons,
  .payment-actions {
    gap: 12px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    padding-left: 12px;
    padding-right: 12px;
    gap: 14px;
  }

  .hero {
    padding: 30px 6%;
    gap: 18px;
  }

  .navbar {
    padding: 10px 12px;
    min-height: 48px;
  }

  .checkout-form input,
  .checkout-form textarea,
  .order-confirmation-panel input,
  .order-confirmation-panel textarea {
    font-size: 1.05rem;
    padding: 14px 14px;
  }

  /* Make admin action buttons full-width for easy tapping */
  .admin-table td[data-label="Actions"] .btn,
  .admin-table td[data-label="Actions"] button {
    display: block;
    width: 100%;
    margin-bottom: 8px;
  }

  /* Show hidden details inline (collapsible still works) */
  .hidden-row {
    display: block;
    padding: 12px 16px;
    background: #fafafa;
    border-top: 1px solid #e5e7eb;
  }

  .admin-table tr {
    padding: 0;
  }

  .order-items-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

.status-true {
  background: #dcfce7;
  color: #166534;
}

.status-pending {
  background: #fef3c7;
  color: #92400e;
}

.status-false {
  background: #fee2e2;
  color: #991b1b;
}

.status-completed {
  background-color: #2154c2;
  color: white;
}

.hidden-row {
  display: none;
}

.admin-page .btn {
  margin-top: 0;
}


/* WhatsApp Popup */

.whatsapp-popup {
  position:fixed;
  right:25px;
  bottom:25px;
  width:340px;
  background:white;
  border-radius:25px;
  padding:20px;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
  z-index:999;
  animation:popup .5s ease;
}


.whatsapp-popup img {
  width:140px;
  display:block;
  margin:auto;
  border-radius:15px;
}


.whatsapp-content h3 {
  text-align:center;
  margin-top:15px;
}


.whatsapp-content p {
  text-align:center;
  color:#64748b;
  font-size:14px;
}


.whatsapp-content a {
  display:block;
  text-align:center;
  background:#22c55e;
  color:white;
  padding:12px;
  border-radius:50px;
  text-decoration:none;
  margin-top:15px;
  font-weight:bold;
}


.whatsapp-close {
  position:absolute;
  right:15px;
  top:10px;
  border:none;
  background:none;
  font-size:25px;
  cursor:pointer;
}


@keyframes popup {
  from {
    opacity:0;
    transform:translateY(40px);
  }

  to {
    opacity:1;
    transform:translateY(0);
  }
}


@media(max-width:900px){

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

.cards {
  grid-template-columns:1fr;
}

.hero-text h1 {
  font-size:38px;
}

.whatsapp-popup {
  width:calc(100% - 40px);
  right:20px;
}

}

.privacy-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
}

.privacy-check a {
    color: #3b82f6;
    text-decoration: none;
}

.privacy-check a:hover {
    text-decoration: underline;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    line-height: 1.7;
}

.legal-page h1 {
    margin-bottom: 10px;
}

.legal-page h2 {
    margin-top: 35px;
    color: #2563eb;
}

.legal-page p {
    margin: 15px 0;
}