/* ═══════════════════════════════════════════════════════════════
   HOPX SPORTS - Professional Sports Store
   Primary: #FF6600 | Secondary: #0066CC
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap');

:root {
  --primary: #FF6600;
  --primary-dark: #e55a00;
  --secondary: #0066CC;
  --secondary-dark: #0052a3;
  --bg: #FFFFFF;
  --text: #333333;
  --text-light: #666666;
  --border: #e0e0e0;
  --shadow: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 20px rgba(0,0,0,0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */

.header {
  background: var(--bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo span {
  color: var(--secondary);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--primary);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-weight: 500;
}

.header-phone a {
  color: var(--secondary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--bg);
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  padding: 80px 24px 24px;
  z-index: 999;
  overflow-y: auto;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 12px 0;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-of-type {
  border-bottom: none;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}

.nav-overlay.open {
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  color: white;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,102,0,0.85) 0%, rgba(0,102,204,0.75) 100%),
    url('https://images.unsplash.com/photo-1461896836934-2e5c2a97a098?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-buttons .btn {
  background: white;
  color: var(--primary);
}

.hero-buttons .btn:hover {
  background: var(--bg);
  color: var(--secondary);
}

.hero-buttons .btn-outline {
  border-color: white;
  color: white;
}

.hero-buttons .btn-outline:hover {
  background: white;
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS COMMON
   ═══════════════════════════════════════════════════════════════ */

.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 1.9rem;
  color: var(--text);
  margin-bottom: 8px;
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SNIPPET (Homepage)
   ═══════════════════════════════════════════════════════════════ */

.about-snippet {
  background: #f8f9fa;
}

.about-snippet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-snippet-text h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--text);
}

.about-snippet-text p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-snippet-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-snippet-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT CATEGORIES (Homepage)
   ═══════════════════════════════════════════════════════════════ */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.category-card a {
  display: block;
  color: inherit;
}

.category-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.category-card h3 {
  padding: 20px 16px;
  font-size: 1.1rem;
  color: var(--text);
}

.category-card:hover h3 {
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════════════ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  text-align: center;
  padding: 28px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.2s;
}

.why-card:hover {
  transform: translateY(-3px);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */

.testimonials {
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg);
  padding: 28px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text);
}

.testimonial-location {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════════
   VISIT SHOWROOM / MAP SECTION
   ═══════════════════════════════════════════════════════════════ */

.visit-section {
  background: #f8f9fa;
}

.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.visit-details h2 {
  font-size: 1.75rem;
  margin-bottom: 24px;
  color: var(--text);
}

.visit-details .info-block {
  margin-bottom: 20px;
}

.visit-details .info-block h4 {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.visit-details .info-block p,
.visit-details .info-block a {
  font-size: 1rem;
  color: var(--text);
}

.visit-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay-buttons {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.map-overlay-buttons .btn {
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
  background: var(--text);
  color: #bbb;
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand .logo {
  color: var(--primary);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #999;
}

.footer-links h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #bbb;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-contact p,
.footer-contact a {
  color: #bbb;
  font-size: 0.9rem;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 0;
  border-top: 1px solid #444;
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #444;
  color: #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #888;
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: white;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (Inner pages)
   ═══════════════════════════════════════════════════════════════ */

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 48px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.page-hero p {
  opacity: 0.95;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCTS PAGE
   ═══════════════════════════════════════════════════════════════ */

.products-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 40px 0 60px;
  align-items: start;
}

.filter-sidebar {
  position: sticky;
  top: 90px;
  background: #f8f9fa;
  padding: 24px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.filter-sidebar h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text);
}

.filter-sidebar ul {
  list-style: none;
}

.filter-sidebar li {
  margin-bottom: 8px;
}

.filter-sidebar a,
.filter-sidebar button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: 6px;
  transition: background 0.2s;
}

.filter-sidebar a:hover,
.filter-sidebar button:hover,
.filter-sidebar a.active,
.filter-sidebar button.active {
  background: white;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.product-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
}

.product-card-body {
  padding: 20px;
}

.product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text);
}

.product-brand {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

/* Product Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  background: var(--bg);
  border-radius: 12px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0,0,0,0.5);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  z-index: 10;
}

.modal-content .modal-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.modal-body {
  padding: 24px;
  position: relative;
}

.modal-body h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.modal-body .product-price {
  margin-bottom: 16px;
}

.modal-body .product-specs {
  margin: 16px 0;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════ */

.about-content {
  padding: 48px 0 60px;
}

.about-block {
  margin-bottom: 48px;
}

.about-block h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--text);
}

.about-block p {
  color: var(--text-light);
  margin-bottom: 12px;
}

.about-showroom-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.about-showroom-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.about-team {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.about-team-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.about-why-item .why-icon {
  flex-shrink: 0;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */

.contact-map-large {
  margin: 0 0 40px;
}

.contact-map-large .map-container {
  height: 450px;
  border-radius: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 0 0 48px;
  align-items: start;
}

.contact-info-card {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--text);
}

.contact-info-item {
  margin-bottom: 20px;
}

.contact-info-item h4 {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.contact-form-card {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--text);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,102,0,0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  font-size: 0.85rem;
  color: #c00;
  margin-top: 4px;
}

.form-success {
  padding: 16px;
  background: #d4edda;
  color: #155724;
  border-radius: 6px;
  margin-bottom: 20px;
}

.how-to-reach {
  padding: 40px 0;
  background: #f8f9fa;
  margin-top: 40px;
}

.how-to-reach h3 {
  text-align: center;
  margin-bottom: 20px;
}

.how-to-reach p {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 12px;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════════════════════════ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px 0 60px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.4);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

@media (max-width: 900px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* ═══════════════════════════════════════════════════════════════
   POLICY PAGES
   ═══════════════════════════════════════════════════════════════ */

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px 60px;
}

.policy-content h2 {
  font-size: 1.35rem;
  margin: 28px 0 12px;
  color: var(--text);
}

.policy-content p,
.policy-content ul {
  color: var(--text-light);
  margin-bottom: 12px;
}

.policy-content ul {
  padding-left: 24px;
}

.policy-content a {
  color: var(--secondary);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-inner {
    grid-template-columns: 1fr;
  }

  .visit-inner .map-container {
    order: -1;
    height: 320px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .about-snippet-inner {
    grid-template-columns: 1fr;
  }

  .about-snippet-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-showroom-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop,
  .header-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 420px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
  }

  .filter-sidebar h3 {
    width: 100%;
    margin-bottom: 12px;
  }

  .filter-sidebar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .filter-sidebar li {
    margin: 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 300px;
  }

  .contact-map-large .map-container {
    height: 350px;
  }

  .map-overlay-buttons {
    bottom: 10px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  .about-team {
    flex-direction: column;
    text-align: center;
  }

  .about-team-image {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .visit-buttons {
    flex-direction: column;
  }

  .visit-buttons .btn {
    width: 100%;
  }

  .about-showroom-images {
    grid-template-columns: 1fr;
  }
}
