/* Modern Header Styles */
.modern-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0.5rem 0.5rem;
}

.header-nav ul {
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.header-center {
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.header-right {
  justify-content: flex-end;
  width: 100%;
}

/* Small Rectangular Box next to Signup */
.signup-extra-box {
  display: inline-block;
  padding: 56px 0 64px 0;
  background: linear-gradient(120deg, #e0e7ff 60%, #f8f9fa 100%);
  text-align: center;
  min-height: 320px;
  box-shadow: 0 2px 16px 0 rgba(80, 80, 120, 0.07);
  color: #1a1a1a; /* Changed from #0a0462 for better contrast */
  border-radius: 6px;
}

.testimonials h2 {
  margin-bottom: 36px;
  font-size: 2.3rem;
  color: #2d3a4a;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #e0e7ff;
  border: 1px solid #f36a25;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  padding: 0 16px;
}

.login-extra-box {
  display: inline-block;
}

.testimonial-card {
  background: linear-gradient(120deg, #fff 60%, #e0e7ff 100%);
  border: none;
  border-radius: 18px;
  padding: 32px 24px 28px 24px;
  width: 340px;
  min-height: 180px;
  text-align: center;
  box-shadow: 0 4px 24px 0 rgba(80, 80, 120, 0.13);
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s cubic-bezier(.4,0,.2,1);
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(80, 80, 120, 0.18);
  background: linear-gradient(120deg, #e0e7ff 0%, #fff 100%);
}

.testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, #f36a25 0%, #ffae00 100%);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border: 1px solid #f36a25;
}

.testimonial-card p {
  font-size: 1.13rem;
  margin-bottom: 18px;
  color: #2d3a4a;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 4px #e0e7ff;
}

.testimonial-card h4 {
  font-size: 1.08rem;
  color: #f36a25;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
  gap: 6px;
}

.auth-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
}

/* Linear Small Banner */
.linear-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #f36a25 0%, #ffae00 100%);
  color: #8B0000; /* Changed from #cc0d0d for better contrast against gradient */
  padding: 10px 20px;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  max-width: 900px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-size: 1.1rem;
  gap: 16px;
}

.linear-banner img {
  height: 36px;
  width: auto;
  border-radius: 4px;
  margin-right: 10px;
}

.linear-banner .banner-text {
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* General - FIXED BODY COLOR FOR ACCESSIBILITY */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: url('') no-repeat center center;
  line-height: 1.6;
  color: #1a1a1a; /* Changed to dark color for proper contrast */
}

/* BRAND NAME - FIXED FOR ACCESSIBILITY */
.brand-name {
  color: #c44500; /* Dark orange for WCAG AA compliance (4.5:1+ ratio) */
  font-weight: 700;
  font-size: 1.5rem;
}

a {
  text-decoration: none;
  color: white;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Header Section Styling */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
  min-height: 70px;
  padding: 10px;
  background: linear-gradient(90deg, #f36a25 0%, #ffae00 100%);
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.site-title {
  font-size: 24px;
  color: #fff;
  margin: 0;
  line-height: 1;
}

/* Navigation Styling */
.navigation ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navigation li {
  margin: 0;
}

.navigation a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.1em;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.2s;
}

.navigation a:hover {
  background: rgba(255,255,255,0.2);
}

/* Header Icons Styling */
.header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.header-icons form {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Auth Links */
.auth-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.auth-btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s;
}

.login-btn {
  background: rgba(255,255,255,0.2);
  color: white;
}

.signup-btn {
  background: white;
  color: #f36a25;
}

.login-btn:hover, .signup-btn:hover {
  opacity: 0.8;
}

/* Hero Slider Section */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 30px auto 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  min-height: 300px;
  height: 400px;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.hero-slide.active {
  transform: translateX(0);
  z-index: 2;
}

.hero-slide.prev {
  transform: translateX(-100%);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  border-radius: 12px;
}

.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-radius: 12px;
  max-width: 90%;
  margin: 0 auto;
}

.hero-slide .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffd700;
  text-shadow: 2px 2px 8px #000;
}

.hero-slide .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 1px 6px #000;
}

.hero-slide .cta-btn {
  padding: 10px 20px;
  background: #ffd700;
  color: #051e6d;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 1px 1px 8px #0002;
  transition: background 0.2s;
}

.hero-slide .cta-btn:hover {
  background: #ffae00;
}

.hero-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  transition: background 0.2s;
}

.hero-slider .slider-btn:hover {
  background: rgba(0,0,0,0.7);
}

.hero-slider .slider-btn.prev {
  left: 20px;
}

.hero-slider .slider-btn.next {
  right: 20px;
}

.search-bar {
  padding: 8px 18px;
  font-size: 1em;
  border-radius: 24px;
  border: 1.5px solid #ffd700;
  background: #fff;
  color: #222;
  outline: none;
  transition: border-color 0.2s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  min-width: 200px;
}

.search-bar:focus {
  border-color: #f36a25;
}

.cart-icon {
  width: 30px;
  height: 30px;
}

/* Categories Section */
.categories {
  padding: 48px 0 56px 0;
  text-align: center;
  background: linear-gradient(120deg, #f8f9fa 60%, #e0e7ff 100%);
  min-height: 340px;
  box-shadow: 0 2px 16px 0 rgba(80, 80, 120, 0.07);
}

.categories h2 {
  margin-bottom: 36px;
  font-size: 2.3rem;
  color: #2d3a4a;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #e0e7ff;
}

.category-cards {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 32px;
  padding: 0 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #ffd700 #e0e7ff;
  -webkit-overflow-scrolling: touch;
}

.category-card {
  background: linear-gradient(120deg, #fff 60%, #e0e7ff 100%);
  border: none;
  border-radius: 18px;
  overflow: hidden;
  width: 210px;
  min-height: 260px;
  text-align: center;
  padding: 24px 12px 18px 12px;
  box-shadow: 0 4px 24px 0 rgba(80, 80, 120, 0.13);
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s cubic-bezier(.4,0,.2,1);
  position: relative;
  cursor: pointer;
  flex: 0 0 210px;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(80, 80, 120, 0.18);
  background: linear-gradient(120deg, #e0e7ff 0%, #fff 100%);
}

.category-card::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, #f36a25 0%, #ffae00 100%);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.category-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  margin-bottom: 18px;
  margin-top: 10px;
  border-radius: 18px;
  background: #f8f9fa;
  box-shadow: 0 2px 8px 0 rgba(80, 80, 120, 0.07);
}

.category-card h3 {
  font-size: 1.18rem;
  color: #2d3a4a;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px #e0e7ff;
  text-align: center;
}

/* Featured Products Section */
.featured-products {
  padding: 56px 0 64px 0;
  text-align: center;
  background: linear-gradient(120deg, #f8f9fa 60%, #e0e7ff 100%);
  min-height: 400px;
  box-shadow: 0 2px 16px 0 rgba(80, 80, 120, 0.07);
}

.featured-products h2 {
  margin-bottom: 36px;
  font-size: 2.3rem;
  color: #2d3a4a;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #e0e7ff;
}

.product-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  padding: 0 16px;
}

.product-card {
  background: linear-gradient(120deg, #fff 60%, #e0e7ff 100%);
  border: none;
  border-radius: 18px;
  overflow: hidden;
  width: 220px;
  min-height: 320px;
  text-align: center;
  padding: 28px 14px 22px 14px;
  box-shadow: 0 4px 24px 0 rgba(80, 80, 120, 0.13);
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s cubic-bezier(.4,0,.2,1);
  position: relative;
  cursor: pointer;
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(80, 80, 120, 0.18);
  background: linear-gradient(120deg, #e0e7ff 0%, #fff 100%);
}

.product-card::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, #f36a25 0%, #ffae00 100%);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.product-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 18px;
  margin-top: 10px;
  border-radius: 10px;
  background: #f8f9fa;
  box-shadow: 0 2px 8px 0 rgba(80, 80, 120, 0.07);
}

.product-card h3 {
  font-size: 1.18rem;
  color: #2d3a4a;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px #e0e7ff;
}

.product-card p {
  font-size: 1.08rem;
  margin-bottom: 16px;
  color: #f36a25;
  font-weight: 600;
}

.product-card .btn {
  padding: 10px 20px;
  background: linear-gradient(90deg, #f36a25 0%, #ffae00 100%);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  box-shadow: 1px 1px 8px #0002;
  transition: background 0.2s;
  margin-top: auto;
}

.product-card .btn:hover {
  background: linear-gradient(90deg, rgb(255, 174, 0) 0%, #f36a25 100%);
  color: #fff;
}

.testimonials {
  margin-bottom: 48px;
}

.testimonials h2 {
  border: none;
  text-decoration: none;
  margin: 20px 0;
}

/* Why Choose Sihina Saree Section */
.why-choose {
  padding: 56px 0 64px 0;
  text-align: center;
  background: linear-gradient(120deg, #e0e7ff 60%, #f8f9fa 100%);
  min-height: 340px;
  box-shadow: 0 2px 16px 0 rgba(80, 80, 120, 0.07);
}
.why-choose h2 {
  margin-bottom: 36px;
  font-size: 2.3rem;
  color: #2d3a4a;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #e0e7ff;
}
.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  padding: 0 16px;
}
.why-card {
  background: linear-gradient(120deg, #fff 60%, #e0e7ff 100%);
  border: none;
  border-radius: 18px;
  overflow: hidden;
  width: 260px;
  min-height: 260px;
  text-align: center;
  padding: 28px 14px 22px 14px;
  box-shadow: 0 4px 24px 0 rgba(80, 80, 120, 0.13);
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s cubic-bezier(.4,0,.2,1);
  position: relative;
  cursor: pointer;
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(80, 80, 120, 0.18);
  background: linear-gradient(120deg, #e0e7ff 0%, #fff 100%);
}
.why-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 18px;
  margin-top: 10px;
  border-radius: 18px;
  background: #f8f9fa;
  box-shadow: 0 2px 8px 0 rgba(80, 80, 120, 0.07);
}
.why-card h3 {
  font-size: 1.18rem;
  color: #2d3a4a;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px #e0e7ff;
  text-align: center;
}
.why-card p {
  font-size: 1.02rem;
  color: #333;
  margin-top: 12px;
  margin-bottom: 0;
  font-weight: 500;
  text-shadow: 0 1px 4px #e0e7ff33;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #f36a25 0%, #ffae00 100%);
  color: #fff;
  padding: 48px 0 0 0;
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  margin-top: 56px;
  box-shadow: 0 0 32px 0 rgba(0, 64, 255, 0.08);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  position: relative;
  overflow: hidden;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 32px 32px;
  gap: 48px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.04);
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(0, 64, 255, 0.10);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s, text-shadow 0.2s;
  text-shadow: 0 2px 8px #0080ff44;
}

.footer-links a:hover {
  color: #ffd700;
  text-shadow: 0 4px 16px #ffd70044;
}

.social-media {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  margin-bottom: 8px;
}

.social-media a img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  padding: 6px;
  transition: box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 12px rgba(0,128,255,0.10);
  border: 2px solid #fff;
}

.social-media a img:hover {
  box-shadow: 0 4px 24px #ffd70088;
  background: #ffd700;
}

.payment-methods {
  text-align: center;
  margin-top: 18px;
  margin-bottom: 8px;
}

.payment-methods h4 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px #ffd70044;
}

.payment-methods ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.payment-methods ul li {
  display: inline-block;
}

.payment-methods img {
  width: 52px;
  height: auto;
  filter: grayscale(0.1);
  background: rgba(255,255,255,0.8);
  border-radius: 10px;
  padding: 6px 10px;
  box-shadow: 0 2px 12px rgba(0,128,255,0.10);
  transition: filter 0.2s, box-shadow 0.2s, background 0.2s;
  border: 2px solid #fff;
}

.payment-methods img:hover {
  filter: none;
  box-shadow: 0 4px 24px #ffd70088;
  background: #ffd700;
}

.footer-bottom {
  background: linear-gradient(90deg, #f36a25 0%, #ffae00 100%);
  text-align: center;
  padding: 18px 0 10px 0;
  font-size: 1.08rem;
  color: #fff;
  margin-top: 18px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 0 2px 12px rgba(0,128,255,0.10);
}

/* RESPONSIVE DESIGN - MOBILE BREAKPOINTS */

/* Mobile Landscape and Small Tablets (768px and below) */
@media screen and (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: stretch;
    padding: 15px;
    gap: 15px;
  }
  
  .logo {
    justify-content: center;
    min-width: auto;
  }
  
  .site-title {
    font-size: 20px;
  }
  
  .navigation ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .navigation a {
    font-size: 0.95em;
    padding: 6px 10px;
  }
  
  .header-icons {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }
  
  .header-icons form {
    width: 100%;
    max-width: 300px;
  }
  
  .search-bar {
    width: 100%;
    min-width: auto;
    font-size: 0.9em;
    padding: 10px 15px;
  }
  
  .auth-links {
    justify-content: center;
  }
  
  .hero-slider {
    height: 250px;
    margin: 20px auto 0 auto;
    border-radius: 8px;
  }
  
  .hero-slide .hero-content {
    padding: 20px 15px;
  }
  
  .hero-slide .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-slide .hero-content p {
    font-size: 1rem;
  }
  
  .hero-slider .slider-btn {
    font-size: 1.5rem;
    padding: 6px 12px;
  }
  
  .hero-slider .slider-btn.prev {
    left: 10px;
  }
  
  .hero-slider .slider-btn.next {
    right: 10px;
  }
  
  .linear-banner {
    flex-direction: column;
    text-align: center;
    font-size: 0.95rem;
    padding: 15px;
    gap: 10px;
  }
  
  .linear-banner img {
    height: 30px;
    margin-right: 0;
  }
  
  .categories h2, .featured-products h2, .testimonials h2, .why-choose h2 {
    font-size: 1.8rem;
  }
  
  .category-card {
    width: 180px;
    flex: 0 0 180px;
    min-height: 220px;
    padding: 20px 10px 15px 10px;
  }
  
  .category-card img {
    height: 90px;
  }
  
  .category-card h3 {
    font-size: 1.05rem;
  }
  
  .product-card {
    width: 280px;
    flex: 0 0 280px;
    margin: 0 auto;
  }
  .why-card {
    width: 200px;
    flex: 0 0 200px;
    min-height: 200px;
    padding: 24px 10px 15px 10px;
  }
  .why-card img {
    height: 60px;
    width: 60px;
  }
  .why-card h3 {
    font-size: 1.05rem;
  }
  
  .testimonial-card {
    width: 300px;
    padding: 25px 20px;
  }
  
  .footer-main {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 0 20px 25px 20px;
  }
  
  .social-media {
    justify-content: center;
  }
  
  .social-media a img {
    width: 45px;
    height: 45px;
  }
  
  .payment-methods ul {
    gap: 15px;
  }
  
  .payment-methods img {
    width: 40px;
  }
  
  .footer-bottom {
    font-size: 0.95rem;
    padding: 15px 10px;
  }
}

/* Mobile Portrait (480px and below) */
@media screen and (max-width: 480px) {
  .logo img {
    height: 40px;
  }
  
  .site-title {
    font-size: 18px;
  }
  
  .header {
    padding: 10px;
  }
  
  .navigation ul {
    gap: 8px;
  }
  
  .navigation a {
    font-size: 0.9em;
    padding: 5px 8px;
  }
  
  .search-bar {
    padding: 8px 12px;
    font-size: 0.85em;
  }
  
  .hero-slider {
    height: 200px;
    margin: 15px auto 0 auto;
  }
  
  .hero-slide .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  
  .hero-slide .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .hero-slide .cta-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .linear-banner {
    font-size: 0.85rem;
    padding: 12px;
  }
  
  .linear-banner img {
    height: 25px;
  }
  
  .categories h2, .featured-products h2, .testimonials h2, .why-choose h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  
  .categories, .featured-products, .why-choose {
    padding: 35px 0 45px 0;
  }
  
  .category-card {
    width: 160px;
    flex: 0 0 160px;
    min-height: 200px;
  }
  
  .category-card img {
    height: 80px;
  }
  
  .category-card h3 {
    font-size: 0.95rem;
  }
  
  .product-card {
    width: 250px;
    flex: 0 0 250px;
    min-height: 300px;
  }
  
  .product-card img {
    height: 100px;
  }
  
  .product-card h3 {
    font-size: 1.05rem;
  }
  
  .product-card p {
    font-size: 1rem;
  }
  .why-card {
    width: 150px;
    flex: 0 0 150px;
    min-height: 150px;
    padding: 16px 6px 10px 6px;
  }
  .why-card img {
    height: 40px;
    width: 40px;
  }
  .why-card h3 {
    font-size: 0.9rem;
  }
  .why-card p {
    font-size: 0.9rem;
  }
  .testimonial-card {
    width: 280px;
    padding: 20px 15px;
    min-height: 160px;
  }
  
  .testimonial-card p {
    font-size: 1rem;
  }
  
  .testimonial-card h4 {
    font-size: 1rem;
  }
  
  .footer-main {
    padding: 0 15px 20px 15px;
    gap: 25px;
  }
  
  .footer-links a {
    font-size: 1rem;
  }
  
  .social-media a img {
    width: 40px;
    height: 40px;
  }
  
  .payment-methods h4 {
    font-size: 1.05rem;
  }
  
  .payment-methods img {
    width: 35px;
  }
  
  .footer-bottom {
    font-size: 0.85rem;
    padding: 12px 8px;
  }
}

/* Very Small Mobile (320px and below) */
@media screen and (max-width: 320px) {
  .logo {
    flex-direction: column;
    gap: 5px;
  }
  
  .logo img {
    height: 35px;
  }
  
  .site-title {
    font-size: 16px;
  }
  
  .navigation ul {
    flex-direction: column;
    width: 100%;
    gap: 5px;
  }
  
  .navigation a {
    display: block;
    text-align: center;
    padding: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin: 2px 0;
  }
  
  .search-bar {
    padding: 8px 10px;
    font-size: 0.8em;
  }
  
  .hero-slider {
    height: 180px;
    margin: 10px auto 0 auto;
  }
  
  .hero-slide .hero-content {
    padding: 15px 10px;
  }
  
  .hero-slide .hero-content h1 {
    font-size: 1.3rem;
  }
  
  .hero-slide .hero-content p {
    font-size: 0.85rem;
  }
  
  .categories h2, .featured-products h2, .testimonials h2, .why-choose h2 {
    font-size: 1.3rem;
  }
  
  .category-card {
    width: 140px;
    flex: 0 0 140px;
  }
  
  .category-card h3 {
    font-size: 0.9rem;
  }
  
  .product-card {
    width: 220px;
    flex: 0 0 220px;
  }
  .why-card {
    width: 110px;
    flex: 0 0 110px;
    min-height: 110px;
    padding: 8px 2px 7px 2px;
  }
  .why-card img {
    height: 28px;
    width: 28px;
  }
  .why-card h3 {
    font-size: 0.7rem;
  }
  .why-card p {
    font-size: 0.7rem;
  }
  .testimonial-card {
    width: 260px;
  }
  
  .social-media {
    gap: 10px;
  }
  
  .social-media a img {
    width: 35px;
    height: 35px;
  }
  
  .payment-methods ul {
    gap: 8px;
  }
  
  .payment-methods img {
    width: 30px;
  }
}
/* Scrolling Marquee Bar */
.marquee-container {
  background: linear-gradient(90deg, #f36a25 0%, #ffae00 100%);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 16px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin: 20px 0;
}

.marquee-content {
  display: inline-block;
  animation: scroll 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  margin: 0 50px;
  color: white;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.marquee-item svg {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  fill: white;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

@media screen and (max-width: 768px) {
  .marquee-item {
    margin: 0 30px;
    font-size: 15px;
  }
  .marquee-container {
    padding: 12px 0;
  }
}

@media screen and (max-width: 480px) {
  .marquee-item {
    margin: 0 20px;
    font-size: 14px;
  }
  .marquee-item svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
}
/* Tablet Portrait (768px to 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header {
    padding: 12px 20px;
  }
  
  .hero-slider {
    height: 350px;
  }
  
  .hero-slide .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .categories h2, .featured-products h2, .testimonials h2, .why-choose h2 {
    font-size: 2.1rem;
  }
  
  .category-card {
    width: 200px;
    flex: 0 0 200px;
  }
  
  .product-card {
    width: 200px;
    flex: 0 0 200px;
  }
  .why-card {
    width: 210px;
    flex: 0 0 210px;
    min-height: 210px;
    padding: 22px 10px 15px 10px;
  }
  .why-card img {
    height: 68px;
    width: 68px;
  }
  .why-card h3 {
    font-size: 1.13rem;
  }
  .why-card p {
    font-size: 1rem;
  }
  .testimonial-card {
    width: 320px;
  }
  
  .footer-main {
    padding: 0 25px 30px 25px;
    gap: 40px;
  }
}

/* Large Tablets and Small Desktops (1025px to 1200px) */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .header {
    padding: 10px 15px;
  }
  
  .hero-slider {
    max-width: 1000px;
  }
  
  .categories, .featured-products, .why-choose {
    padding: 50px 0 60px 0;
  }
  
  .product-cards, .category-cards, .why-cards {
    gap: 30px;
  }
  
  .footer-main {
    gap: 45px;
  }
}

/* Print Styles */
@media print {
  .header, .hero-slider, .footer {
    display: none;
  }
  
  .categories, .featured-products, .testimonials, .why-choose {
    background: white !important;
    box-shadow: none !important;
    padding: 20px 0;
  }
  
  .category-card, .product-card, .testimonial-card, .why-card {
    background: white !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2) !important;
    break-inside: avoid;
  }
  
  .category-card::before, .product-card::before, .testimonial-card::before {
    display: none;
  }
}

/* High DPI Display Adjustments */
@media screen and (-webkit-min-device-pixel-ratio: 2), 
       screen and (min-resolution: 192dpi) {
  .logo img, .cart-icon, .social-media img, .payment-methods img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Landscape Orientation for Mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .hero-slider {
    height: 200px;
  }
  
  .hero-slide .hero-content {
    padding: 15px;
  }
  
  .hero-slide .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .categories, .featured-products, .why-choose {
    padding: 30px 0 40px 0;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
  
  .category-card, .product-card, .testimonial-card, .why-card {
    transition: none;
  }
  
  .category-card:hover, .product-card:hover, .testimonial-card:hover, .why-card:hover {
    transform: none;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .search-bar {
    background: #333;
    color: #fff;
    border-color: #555;
  }
  
  .search-bar:focus {
    border-color: #f36a25;
  }
}

/* Focus States for Better Accessibility */
.navigation a:focus,
.auth-btn:focus,
.cta-btn:focus,
.search-bar:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* Loading States */
.category-card img,
.product-card img,
.why-card img {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Container Max-Width Control */
.hero-slider,
.categories,
.featured-products,
.testimonials,
.why-choose {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Additional Mobile Touch Improvements */
@media (hover: none) and (pointer: coarse) {
  .category-card:hover,
  .product-card:hover,
  .testimonial-card:hover,
  .why-card:hover {
    transform: none;
    box-shadow: 0 4px 24px 0 rgba(80, 80, 120, 0.13);
  }
  
  .navigation a,
  .auth-btn,
  .cta-btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}