/* ========== استایل‌های پایه ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Vazirmatn', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== منو - همبرگر ========== */
.hamburger-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(.22,.72,.26,1);
  gap: 8px;
}

.hamburger-container:hover {
  background-color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hamburger-container:focus {
  outline: 2px solid #1a5f8a;
  outline-offset: 2px;
}

.hamburger-container.active {
  right: 320px;
  transform: scale(1.05);
}

.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.line {
  width: 22px;
  height: 2.5px;
  background-color: #333;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 5px);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.menu-text {
  font-weight: 600;
  color: #333;
  font-size: 14px;
  margin-right: 8px;
}

/* ========== Overlay — فقط تیرگی ملایم (منبع اصلی در menu-styles.css) ========== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(.22,.72,.26,1);
  z-index: 1998;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ========== منوی کشویی ========== */
.sideMenu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: rgba(13, 17, 25, 0.95); /* تقریباً مات و یکسان در همهٔ صفحات (مستقل از محتوای پشت) */
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border-left: 1px solid rgba(255,255,255,0.1);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.22,.72,.26,1);
  overflow-y: auto;
  z-index: 999;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.sideMenu.active {
  transform: translateX(0);
}

.menu-header {
  padding: 25px 30px 25px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-header h2 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.menu-content {
  padding: 20px 0;
  flex-grow: 1;
}

/* آیتم‌های منو */
.menuItem {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menuItem:last-child {
  border-bottom: none;
}

.menuItem.show {
  opacity: 1;
  transform: translateX(0);
}

.menuItem.show:nth-child(1) { transition-delay: 0.1s; }
.menuItem.show:nth-child(2) { transition-delay: 0.15s; }
.menuItem.show:nth-child(3) { transition-delay: 0.2s; }
.menuItem.show:nth-child(4) { transition-delay: 0.25s; }
.menuItem.show:nth-child(5) { transition-delay: 0.3s; }

/* لینک‌ها و دکمه‌های منو */
.menu-link,
.menu-toggle {
  display: flex;
  align-items: center;
  padding: 16px 25px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  gap: 12px;
  width: 100%;
  text-align: right;
  border: none;
  background: none;
  font-family: inherit;
}

.menu-link:focus,
.menu-toggle:focus {
  outline: 2px solid #1a5f8a;
  outline-offset: -2px;
}

.menu-link:hover,
.menu-toggle:hover {
  color: #1a5f8a;
  background-color: rgba(26, 95, 138, 0.15);
  padding-right: 35px;
}

.menu-link i,
.menu-toggle i {
  width: 20px;
  text-align: center;
  font-size: 16px;
}

.submenu-icon {
  margin-right: auto;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle[aria-expanded="true"] .submenu-icon {
  transform: rotate(180deg);
}

/* ========== زیرمنوها ========== */
.submenu {
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.submenu[aria-hidden="false"] {
  max-height: 500px;
}

.submenu-item {
  padding: 12px 45px 12px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.submenu-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  display: block;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.submenu-item a:hover {
  color: #1a5f8a;
  padding-right: 15px;
}

.submenu-item a:focus {
  outline: 2px solid #1a5f8a;
  outline-offset: 2px;
}

/* فوتر منو */
.menu-footer {
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.menu-logo {
  max-width: 150px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.menu-logo:hover {
  opacity: 1;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-image,
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 15px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  max-width: 800px;
  margin-bottom: 2rem;
}

.hero-button {
  padding: 12px 30px;
  background-color: #1a5f8a;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.hero-button:hover {
  background-color: #124468;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-button:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

/* ========== Description ========== */
.description {
  padding: 70px 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
}

.description h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
  position: relative;
  display: inline-block;
}

.description h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: #1a5f8a;
}

.description p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #555;
  padding: 0 10px;
}

/* ========== Filter ========== */
.filter-section {
  background-color: white;
  padding: 35px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 10px;
}

.filter-group {
  flex: 1;
  min-width: 180px;
  max-width: 280px;
}

.filter-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.filter-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.95rem;
  background-color: white;
  cursor: pointer;
}

.filter-select:focus {
  outline: none;
  border-color: #1a5f8a;
  box-shadow: 0 0 0 2px rgba(26, 95, 138, 0.2);
}

.filter-reset {
  padding: 10px 15px;
  background-color: #6c757d;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 0.95rem;
  cursor: pointer;
  align-self: flex-end;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.filter-reset:hover {
  background-color: #5a6268;
  transform: translateY(-1px);
}

.filter-reset:focus {
  outline: 2px solid #1a5f8a;
  outline-offset: 2px;
}

/* ========== Products ========== */
.products-section {
  padding: 30px 0;
  max-width: 100%;
  margin: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 0 160px;
  max-width: 100%;
  margin: 0 auto;
}

.product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 0;
  border: 1px solid #f5f5f5;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border-color: #1a5f8a;
}

/* ✅ اصلاح شده - فقط width تغییر کرد، ارتفاع همان است */
.photo-box {
  width: 100%;
  height: 727px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, #f9f9f9, #eaeaea);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.product-card:hover .photo-box {
  transform: scale(1.005);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image {
  transform: scale(1.03);
}

.image-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #777;
  font-size: 12px;
  text-align: center;
  padding: 10px;
  width: 85%;
  line-height: 1.4;
  opacity: 1;
  transition: opacity 0.25s ease;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  backdrop-filter: blur(1px);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.image-placeholder.hidden {
  opacity: 0;
}

.image-error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #1a5f8a;
  padding: 10px;
  display: none;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  border: 1px solid #1a5f8a;
  backdrop-filter: blur(1px);
}

.product-info {
  padding: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-model-color {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  color: #333;
  text-align: center;
  line-height: 1.3;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Loading & No Results */
.loading-indicator {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 60px;
  font-size: 1.2rem;
  color: #666;
  gap: 10px;
}

.loading-indicator i {
  font-size: 1.5rem;
  color: #1a5f8a;
}

.no-results {
  display: none;
  text-align: center;
  padding: 40px;
  font-size: 1.2rem;
  color: #666;
  grid-column: 1 / -1;
}

/* ========== Footer ========== */
.main-footer {
  background-color: #222;
  color: white;
  padding: 60px 0 0;
}

.main-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ستون لوگو — وسط‌چین */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

/* دو ستون لینک‌ها کنار هم */
.footer-links-row {
  display: flex;
  gap: 40px;
}

.footer-links-row .footer-links {
  flex: 1;
}

/* خبرنامه — وسط‌چین */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo-img {
  max-width: 140px;
  height: auto;
  opacity: 0.9;
}

.footer-logo h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.footer-logo p {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* شبکه‌های اجتماعی */
.footer-logo p {
  max-width: 420px;
}

.social-icon {
  width: 38px;
  height: 38px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #1a5f8a;
  transform: translateY(-3px);
}

.social-icon:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

/* ستون‌های لینک */
.footer-links h3,
.footer-newsletter h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.footer-links h3::after,
.footer-newsletter h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 2px;
  background-color: #1a5f8a;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 2px;
  background-color: #1a5f8a;
}

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

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links ul li a:hover {
  color: #1a5f8a;
  padding-right: 5px;
}

/* ستون خبرنامه */
.footer-newsletter p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 460px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: white;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form input[type="email"]:focus {
  border-color: #1a5f8a;
}

.newsletter-form .btn {
  padding: 10px 16px;
  flex-shrink: 0;
}

.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 30px;
}

.footer-contact p {
  color: #aaa;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.footer-contact p i {
  color: #1a5f8a;
  width: 16px;
  flex-shrink: 0;
}

/* پایین فوتر */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom .footer-social {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.footer-bottom .social-icon {
  width: 32px;
  height: 32px;
  font-size: 0.85rem;
}

.copyright p {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
}

.copyright strong {
  color: #1a5f8a;
}

.footer-policies {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-policies a {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-policies a:hover {
  color: #1a5f8a;
}

/* ریسپانسیو فوتر */

/* دسکتاپ — چیدمان افقی فشرده مثل قبل (موبایل دست‌نخورده می‌ماند) */
@media (min-width: 769px) {
  .footer-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
  }

  .footer-logo {
    flex: 1.6;
    align-items: flex-start;
    text-align: right;
  }

  .footer-links-row {
    flex: 2;
    gap: 40px;
  }

  .footer-newsletter {
    flex: 1.6;
    align-items: flex-start;
    text-align: right;
  }

  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .newsletter-form {
    max-width: none;
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-content {
    gap: 28px;
  }

  .footer-links-row {
    gap: 20px;
  }

  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-policies {
    justify-content: center;
  }
}

/* ========== Responsive ========== */

/* Large Desktop */
@media (max-width: 1500px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0 160px;
  }
  
  .photo-box {
    height: 700px;
  }
  
  .sideMenu {
    width: 300px;
  }
  
  .hamburger-container.active {
    right: 300px;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 160px;
  }
  
  .photo-box {
    height: 650px;
  }
  
  .description,
  .filter-section {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .sideMenu {
    width: 280px;
  }
  
  .hamburger-container.active {
    right: 280px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 160px;
  }
  
  .photo-box {
    height: 520px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .sideMenu {
    width: 270px;
  }
  
  .hamburger-container.active {
    right: 270px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hamburger-container {
    padding: 6px 10px;
  }
  
  .hamburger {
    width: 25px;
    height: 20px;
  }
  
  .line {
    height: 2px;
  }
  
  .menu-text {
    font-size: 13px;
    margin-right: 6px;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .description h2 {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  
  .description p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  /* موبایل: سه فیلتر (مدل + رنگ + بازنشانی) در یک ردیف — هم‌اندازهٔ فیلترهای صفحهٔ نمایندگان */
  .filter-container {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
  }

  .filter-group {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  .filter-label {
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
  }

  .filter-select {
    padding: 11px 8px;
    font-size: 0.88rem;
  }

  .filter-reset {
    flex: 0 0 auto;
    align-self: flex-end;
    padding: 11px 12px;
    min-height: 0;
    font-size: 0.9rem;
    white-space: nowrap;
    margin: 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
  }
  
  .sideMenu {
    width: 280px;
    height: 100vh;
  }
  
  .hamburger-container.active {
    right: 280px;
  }
  
  .photo-box {
    height: 656px;
    width: 100%;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 40px;
  }
  
  .product-info {
    padding: 12px;
  }
  
  .product-model-color {
    font-size: 0.9rem;
    line-height: 1.3;
    min-height: 36px;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .hamburger-container {
    top: 15px;
    right: 15px;
    padding: 5px 8px;
  }
  
  .menu-text {
    display: none;
  }
  
  .products-grid {
    padding: 0 20px;
  }
  
  .photo-box {
    height: 624px;
  }
  
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.3;
  }
  
  .description h2 {
    font-size: 1.4rem;
    line-height: 1.2;
  }
  
  .description p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .filter-group {
    min-width: 0;
  }

  .filter-label {
    font-size: 0.8rem;
  }

  .filter-select {
    font-size: 0.85rem;
    padding: 10px 8px;
  }

  .filter-reset {
    font-size: 0.85rem;
    padding: 10px 12px;
  }
  
  .sideMenu {
    width: 90%;
    max-width: 320px;
    height: 100vh;
  }
  
  .hamburger-container.active {
    right: calc(90% - 15px);
  }
  
  .menu-header h2 {
    font-size: 1.2rem;
  }
  
  .menu-link,
  .menu-toggle {
    font-size: 0.9rem;
    padding: 12px 18px;
  }
  
  .submenu-item {
    padding: 10px 40px 10px 35px;
  }
  
  .submenu-item a {
    font-size: 0.85rem;
  }
  
  .product-model-color {
    font-size: 0.85rem;
    line-height: 1.2;
    min-height: 34px;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-section p,
  .footer-section li,
  .footer-section a {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    font-size: 0.8rem;
  }
}

/* Desktop padding */
@media (min-width: 769px) {
  .products-grid {
    padding: 0 160px;
  }
}

/* ========== Print Styles ========== */
@media print {
  .hamburger-container,
  .overlay,
  .sideMenu,
  .filter-section {
    display: none !important;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }
}