:root {
  --bg: #050608;
  --panel: #0d1016;
  --panel-2: #121823;
  --text: #f6f8fb;
  --muted: #a5adba;
  --line: rgba(255, 255, 255, 0.1);
  --blue: #00a8ff;
  --orange: #ff7a18;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 6, 8, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.32);
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #00111c;
  background: linear-gradient(135deg, var(--blue), #74dcff);
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(0, 168, 255, 0.32);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #d9dee8;
  font-size: 0.95rem;
}

.nav-menu a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-menu a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transition: width 0.2s ease;
}

.nav-menu a:hover {
  color: #ffffff;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.95) 0%, rgba(5, 6, 8, 0.78) 42%, rgba(5, 6, 8, 0.2) 100%),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=2200&q=85") center right / cover no-repeat;
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 168, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 122, 24, 0.08), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 150px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}


.preorder-tab{
    position: fixed;
    right: -45px;
    top: 50%;
    transform: rotate(-90deg);
    background:#ff6600;
    color:white;
    
    padding:12px 25px;
    
    cursor:pointer;
    
    border-radius:10px 10px 0 0;
    
    z-index:9999;
    
    font-weight:bold;

    transition: right 0.3s ease, background 0.3s ease;
}

.preorder-popup{

    position: fixed;

    right:-320px;

    top:50%;

    transform:translateY(-50%);

    width:280px;

    background: var(--panel);
    border: 1px solid var(--line);

    padding:20px;

    border-radius:15px;

    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);

    transition:.3s;

    z-index:10000;
}

.preorder-popup.active{

    right:20px;

}

.close-btn{

    border:none;

    background:none;

    float:right;

    cursor:pointer;

    font-size:20px;

    color: var(--text);
}














h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 32px;
  color: #d1d7e1;
  font-size: 1.12rem;
}

.hero-actions,
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #031018;
  background: linear-gradient(135deg, var(--blue), #6ed8ff);
  box-shadow: 0 18px 36px rgba(0, 168, 255, 0.24);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.trust-badges {
  margin-top: 30px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  color: #e8edf6;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.badge-icon,
.feature-icon {
  color: var(--blue);
  font-weight: 900;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-header {
  max-width: 730px;
  margin-bottom: 38px;
}

.section-header h2 {
  margin-bottom: 0;
}

.shop-strip {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 42px;
  align-items: center;
}

.shop-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.shop-stats div,
.feature-card,
.process-card,
.testimonial-card,
.contact-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.shop-stats div {
  min-height: 142px;
  border-radius: 8px;
  padding: 24px;
}

.shop-stats strong {
  display: block;
  color: var(--text);
  font-size: 2.4rem;
  line-height: 1;
}

.shop-stats span {
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 25%, rgba(5, 6, 8, 0.92));
}

.category-card div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.category-card p,
.feature-card p,
.process-card p,
.about-copy p,
.contact-panel p,
.footer p {
  color: var(--muted);
}

.category-card:hover img {
  transform: scale(1.08);
  opacity: 0.9;
}

.why-section {
  position: relative;
}

.feature-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.process-card {
  border-radius: 8px;
  padding: 28px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: rgba(0, 168, 255, 0.12);
  border: 1px solid rgba(0, 168, 255, 0.22);
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-copy {
  max-width: 560px;
}

.text-link,
.whatsapp-link {
  display: inline-flex;
  color: var(--blue);
  font-weight: 800;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-card span {
  display: block;
  margin-bottom: 26px;
  color: var(--orange);
  font-size: 2rem;
  font-weight: 900;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 16px;
  align-items: center;
}

.testimonial-track {
  position: relative;
  min-height: 255px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px;
  padding: 38px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.stars {
  margin-bottom: 18px;
  color: var(--orange);
  letter-spacing: 0.08em;
}

.testimonial-card p {
  color: #e5eaf3;
  font-size: 1.25rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(0, 168, 255, 0.16);
  transform: translateY(-2px);
}

.cta-banner {
  width: min(1180px, calc(100% - 40px));
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(0, 168, 255, 0.26);
  border-radius: 8px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(0, 168, 255, 0.18), rgba(255, 122, 24, 0.12)),
    linear-gradient(145deg, #0e1420, #080a0e);
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.admin-topbar {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  table-layout: auto;
  min-width: 900px; /* Ensures the table doesn't get too compressed */
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

th, td {
  padding: 16px;
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.01);
  white-space: nowrap;
}

td strong {
  display: block;
  font-size: 1.1rem;
  font-size: 1rem;
  color: var(--text);
}

td .price-value {
  white-space: nowrap;
  font-weight: 700;
  color: var(--blue);
}

td small {
  color: var(--muted);
}

.table-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.btn-danger {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.2);
  color: #ff4444;
}

.btn-danger:hover {
  background: #ff4444;
  color: white;
}

/* Shop Page Specifics */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.filters-section {
  padding-bottom: 0;
}

.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.filter-form .form-group {
  flex: 1;
  min-width: 200px;
}

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 168, 255, 0.3);
}

.product-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: 20px;
}

.product-category {
  font-size: 0.7rem;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 20px 0;
}

.original-price {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.stock-badge {
  font-size: 0.8rem;
  color: var(--muted);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
}

/* Compact Admin Dashboard UI */
.admin-dashboard-container {
  max-width: 1260px;
  margin: 64px auto;
  padding-inline: clamp(20px, 6vw, 60px);
  padding-bottom: 100px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

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

.admin-form-card {
  width: 100%;
  margin-bottom: 20px;
}

.admin-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.section-header.small {
  margin-bottom: 20px;
}

.admin-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-header.small h3 {
  font-size: 1.25rem;
  margin: 0;
}

.compact-form .form-group {
  margin-bottom: 14px;
}

.form-preview-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 10px;
  border: 1px solid var(--line);
}

.admin-table th {
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s ease;
  padding: 16px;
  border-bottom: 2px solid var(--line);
  transition: background 0.2s ease;
}

.admin-table td {
  
  vertical-align: middle;
  padding: 16px;
}

.admin-table tbody tr {
  transition: background 0.2s ease;
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

@media (min-width: 1150px) {
  .admin-grid {
    grid-template-columns: 420px 1fr;
  }
  .admin-form-card {
    position: sticky;
    top: 100px;
  }
}

.product-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.table-thumb {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}

/* Image Carousel Component */
.img-carousel-container {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Specific sizing for admin table thumb */
.admin-table .img-carousel-container {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Carousel sizing for Shop and Product Detail */
.product-card .img-carousel-container {
  height: 220px;
  width: 100%;
}

.product-detail .img-carousel-container {
  width: 100%;
  border-radius: 12px;
}

/* Product Gallery & Thumbnails */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.thumbnail-item {
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--panel-2);
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}

.thumbnail-item:hover, .thumbnail-item.active {
  opacity: 1;
  border-color: var(--blue);
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.carousel-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  z-index: 2;
}

.product-detail .carousel-arrow {
  width: 44px;
  font-size: 24px;
}

.admin-table .carousel-arrow {
  width: 14px;
  font-size: 10px;
}

.img-carousel-container:hover .carousel-arrow {
  opacity: 1;
}

.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }

.carousel-arrow:hover {
  background: var(--blue);
}

.tag {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(0, 168, 255, 0.1);
  color: var(--blue);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.stock-status {
  font-weight: 700;
  font-size: 0.9rem;
}

.stock-status.low {
  color: var(--orange);
}

.btn-small {
  min-height: 36px;
  padding: 0 16px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 32px;
  height: 32px;
  padding: 0;
  min-height: unset;
  border-radius: 6px;
  font-size: 1rem;
}

.text-right {
  text-align: right;
}

/* Product Detail Page */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  padding: 42px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  margin-top: 40px;
}

.product-detail img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-vehicle {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.detail-price {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.selling-price {
  font-size: 2.2rem;
  line-height: 1;
}

/* Login and Empty State Layouts */
.login-section {
  display: flex;
  justify-content: center;
  padding: 120px 0;
}

.login-panel-wrapper.contact-panel {
  grid-template-columns: 1fr;
  max-width: 540px;
}

.empty-state-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 160px 0;
}

.empty-state-section .section-header {
  margin-bottom: 24px;
}

.cta-banner p {
  margin-bottom: 0;
  color: #d4dbe6;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  border-radius: 8px;
  padding: 42px;
}

/* Unified Form Styling */
.newsletter-form,
.filter-form,
.admin-form {
  display: grid;
  gap: 20px;
}

.newsletter-form input,
.newsletter-form select,
.newsletter-form textarea,
.filter-form input,
.filter-form select,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.4);
  font: inherit;
  outline: none;
  transition: all 0.25s ease;
}

.newsletter-form input:focus,
.newsletter-form select:focus,
.newsletter-form textarea:focus,
.filter-form input:focus,
.filter-form select:focus,
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: var(--blue);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 4px rgba(0, 168, 255, 0.15);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 58px 0 28px;
  background: #030405;
}

.footer-grid,
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 34px;
}

.footer h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.footer a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payments span {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 8px;
  color: #dce3ed;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 10, 14, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 14px;
  }

  .shop-strip,
  .about-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .filter-form {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 700px) {
  .navbar,
  .section,
  .hero-content,
  .footer-grid,
  .footer-bottom,
  .cta-banner,
  .admin-dashboard-container {
    width: min(100% - 40px, 1180px);
  }

  .hero {
    min-height: 760px;
    background:
      linear-gradient(180deg, rgba(5, 6, 8, 0.75) 0%, rgba(5, 6, 8, 0.92) 70%, var(--bg) 100%),
      url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1400&q=82") center / cover no-repeat;
  }

  .hero-content {
    padding: 90px 0 110px;
  }

  .section {
    padding: 70px 0;
  }

  .shop-stats,
  .category-grid,
  .feature-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 310px;
  }

  .about-image img {
    height: 390px;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .cta-banner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner,
  .contact-panel {
    padding: 28px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions .btn {
    width: auto;
  }
}
