/* ========================================
   Amire Bilal General Trading - Styles
   Mobile-First Responsive Design
   ======================================== */

/* CSS Variables */
:root {
  --primary-color: #1a5f7a;
  --primary-dark: #134b61;
  --secondary-color: #57c5b6;
  --accent-color: #159895;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e9ecef;
  --whatsapp-green: #25d366;
  --telegram-blue: #0088cc;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --header-height: 70px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-light);
}

.nav-links {
  display: none;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

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

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--bg-white);
  padding: 20px;
  box-shadow: var(--shadow-md);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary-color);
  padding-left: 10px;
}

.mobile-menu-cta {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.mobile-menu-cta .btn {
  flex: 1;
  text-align: center;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: white;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

.btn-telegram {
  background: var(--telegram-blue);
  color: white;
}

.btn-telegram:hover {
  background: #0077b3;
  transform: translateY(-2px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  padding: 120px 0 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-slideshow .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 95, 122, 0.85) 0%,
    rgba(44, 62, 80, 0.8) 100%
  );
}

/* Slideshow Indicators */
.slideshow-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slideshow-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slideshow-indicators .indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}

.slideshow-indicators .indicator.active {
  background: white;
  border-color: white;
  transform: scale(1.2);
}

/* Hero Logos */
.hero-logos {
  position: relative;
  z-index: 10;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  margin-bottom: 70px;
}

.logos-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.brand-logo {
  height: 60px;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  object-fit: contain;
  filter: brightness(1) contrast(1.1);
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.1);
}

.hero .container {
  position: relative;
  z-index: 5;
}

.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero h1 span {
  color: var(--secondary-color);
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-buttons .btn {
  width: 100%;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-feature svg {
  color: var(--secondary-color);
  flex-shrink: 0;
}

/* ========================================
   Sections
   ======================================== */
.section {
  padding: 60px 0;
}

.section-light {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   About Preview
   ======================================== */
.about-preview {
  display: grid;
  gap: 30px;
}

.about-preview-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.about-preview-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ========================================
   Product Categories Grid
   ======================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.category-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.category-image {
  height: 120px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  gap: 5px;
}

.category-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

.category-content {
  padding: 15px;
}

.category-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.category-brands {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.category-cta {
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ========================================
   Brands Section
   ======================================== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.brand-card {
  background: var(--bg-white);
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.brand-card:hover {
  box-shadow: var(--shadow-md);
}

.brand-logo-container {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.brand-logo-container img {
  max-width: 120px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.brand-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 5px;
}

/* ========================================
   Products Page
   ======================================== */
.page-hero {
  padding: 120px 0 40px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--text-light);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.product-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
}

.product-image {
  height: 180px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 20px;
}

.product-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.product-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.product-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.product-brands span {
  background: var(--bg-light);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--text-dark);
}

.product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.call-for-price {
  font-weight: 600;
  color: var(--primary-color);
}

.product-cta {
  display: flex;
  gap: 10px;
}

.product-cta .btn {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* ========================================
   Product Detail Page
   ======================================== */
.breadcrumb {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--text-light);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb span {
  color: var(--text-dark);
}

.product-detail-grid {
  display: grid;
  gap: 40px;
}

.product-detail-image {
  display: flex;
  justify-content: center;
}

.product-gallery {
  width: 100%;
  max-width: 500px;
}

.product-image-large {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 15px;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
}

.thumbnail {
  aspect-ratio: 4/3;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: white;
  padding: 0;
  transition: all 0.3s ease;
}

.thumbnail:hover {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.thumbnail.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(26, 95, 122, 0.2);
}

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

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

.product-image-large .category-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--text-light);
}

.product-image-large .category-placeholder span {
  font-size: 0.9rem;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.product-brands-large h3,
.product-description h3,
.product-types h3,
.product-applications h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-tag {
  background: var(--primary-color);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.product-description p {
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.feature-list li {
  color: var(--text-light);
  padding-left: 24px;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
}

.product-price-box {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 12px;
  margin-top: 10px;
}

.price-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.product-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-cta-buttons .btn {
  width: 100%;
  justify-content: center;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .feature-list {
    grid-template-columns: 1fr 1fr;
  }

  .product-cta-buttons {
    flex-direction: row;
  }

  .product-cta-buttons .btn {
    width: auto;
    flex: 1;
  }

  .logos-wrapper {
    gap: 60px;
  }

  .brand-logo {
    height: 80px;
  }
}

@media (min-width: 1024px) {
  .product-detail-grid {
    gap: 60px;
  }
}

/* ========================================
   About Page
   ======================================== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-intro {
  text-align: center;
  margin-bottom: 40px;
}

.about-intro h2 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.about-intro p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.about-details {
  display: grid;
  gap: 30px;
}

.about-card {
  background: var(--bg-white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.about-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-card h3 svg {
  color: var(--primary-color);
}

.about-card p,
.about-card ul {
  color: var(--text-light);
}

.about-card ul {
  margin-left: 20px;
}

.about-card li {
  list-style: disc;
  margin-bottom: 8px;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-grid {
  display: grid;
  gap: 30px;
}

.contact-info {
  display: grid;
  gap: 20px;
}

.contact-card {
  background: var(--bg-white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card h3 svg {
  color: var(--primary-color);
}

.contact-card p,
.contact-card a {
  color: var(--text-light);
  display: block;
}

.contact-card a {
  margin-bottom: 8px;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--primary-color);
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.contact-buttons .btn {
  width: 100%;
}

.map-container {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: white;
}

.footer-section p,
.footer-section a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer-section a:hover {
  color: white;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo .logo-icon {
  background: var(--secondary-color);
}

.footer-logo .logo-text {
  color: white;
}

.footer-logo .logo-text span {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Floating WhatsApp Button
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

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

/* Tablet */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

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

  .section {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .category-image {
    height: 150px;
  }

  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-preview {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

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

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

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

/* Desktop */
@media (min-width: 1024px) {
  .hero {
    padding: 140px 0 80px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .section {
    padding: 100px 0;
  }

  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .product-image {
    height: 200px;
  }

  .contact-buttons {
    flex-direction: row;
  }

  .map-container {
    height: 100%;
    min-height: 400px;
  }

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

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
