/* Wavy Text Animation for "Our Products" */
.wave-text span {
  display: inline-block;
  animation: wave 2s ease-in-out infinite;
}

.wave-text span:nth-child(4) {
  animation: none;
  width: 0.3em;
}

.wave-text span:nth-child(1) {
  animation-delay: 0s;
}
.wave-text span:nth-child(2) {
  animation-delay: 0.1s;
}
.wave-text span:nth-child(3) {
  animation-delay: 0.2s;
}
/* Space between words - no animation delay needed */
.wave-text span:nth-child(5) {
  animation-delay: 0.4s;
}
.wave-text span:nth-child(6) {
  animation-delay: 0.5s;
}
.wave-text span:nth-child(7) {
  animation-delay: 0.6s;
}
.wave-text span:nth-child(8) {
  animation-delay: 0.7s;
}
.wave-text span:nth-child(9) {
  animation-delay: 0.8s;
}
.wave-text span:nth-child(10) {
  animation-delay: 0.9s;
}
.wave-text span:nth-child(11) {
  animation-delay: 1s;
}
.wave-text span:nth-child(12) {
  animation-delay: 1.1s;
}

@keyframes wave {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Appear animation for products intro paragraph */
.products-intro {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.products-intro.animate {
  opacity: 1;
  transform: translateY(0);
}

.category-chevron {
  position: absolute;
  left: 0.2rem;
  top: 0.85rem;
  color: #806b6b;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: transform 0.3s ease;
}

.category-chevron.open {
  transform: rotate(90deg);
}

.category-item.expanded .category-toggle {
  color: #8a1e1e;
}

.category-item.expanded .category-toggle::after {
  content: "";
}
/* Products Page Styles */

/* Products Layout - Clean Filter Design */
.products-layout {
  background: #faf5f5;
  min-height: 100vh;
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.products-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Filter Section */
.filter-section {
  flex: 0 0 250px;
}

.filter-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0e2e2;
}

.filter-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #8a1e1e;
  margin-bottom: 0.5rem;
}

.filter-card p {
  font-size: 0.9rem;
  color: #806b6b;
  line-height: 1.4;
  margin: 0;
}

/* Hero Section */
.products-hero {
  background: linear-gradient(135deg, #8a1e1e 0%, #f63b3b 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.products-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #fcf8f8 100%);
  color: #8a1e1e;
  border-color: #ffffff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fcf8f8 0%, #f0e2e2 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Breadcrumb */
.breadcrumb {
  background: #fcf8f8;
  padding: 1rem 0;
  border-bottom: 1px solid #f0e2e2;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.breadcrumb a {
  color: #806b6b;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #8a1e1e;
}

/* Products Container */
.products-container {
  max-width: 100%;
  width: 100vw; /* full-bleed */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}

/* Category Sidebar - Matching Image Design */
.category-sidebar {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.category-sidebar h3 {
  color: #513737;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
}

/* Search Input - Matching Image Design */
.search-section {
  margin-bottom: 1.5rem;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-right: 2.5rem;
  border: 1px solid #dbd1d1;
  border-radius: 8px;
  font-size: 1rem;
  background: #fbf9f9;
  transition: all 0.3s ease;
  position: relative;
}

.search-input:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-input::placeholder {
  color: #af9c9c;
}

/* Search input with magnifying glass icon */
.search-section::after {
  content: "🔍";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #af9c9c;
  font-size: 1rem;
  pointer-events: none;
}

/* Clear search button */
.clear-search {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #af9c9c;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.25rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 5;
}

.clear-search:hover {
  color: #ef4444;
  background: #fef2f2;
}

/* Category List - Matching Image Design */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item {
  margin-bottom: 0.25rem;
  position: relative;
  padding-right: 2rem;
  z-index: 5;
  overflow: visible; /* ensure symbols are visible */
}

.category-item.expanded {
  overflow: visible; /* maintain visibility when expanded */
}

.category-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 2rem 0.5rem 1.6rem; /* extra room for both chevron and toggle */
  color: #513737;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  min-height: 2rem; /* ensure consistent height */
}

/* Remove automatic '>' prefix; we render a separate chevron for expandable categories */
.category-link::before {
  content: "";
}

.category-link:hover {
  color: #8a1e1e;
}

.category-link.active {
  color: #8a1e1e;
  background: linear-gradient(135deg, #fedbdb 0%, #febfbf 100%);
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.15);
}

.category-link.active::before {
  /**content: "▶";**/
  position: absolute;
  left: 0.5rem;
  color: #8a1e1e;
  font-size: 0.7rem;
  font-weight: bold;
}

/* Plus Icons for Expandable Categories */
.category-toggle {
  background: none;
  border: none;
  color: #806b6b;
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.3s ease;
  position: absolute;
  right: 0.25rem; /* keep aligned consistently */
  top: 0.5rem;
  z-index: 10;
  line-height: 1;
}

.category-toggle:hover {
  color: #8a1e1e;
}

/* Subcategory List */
.subcategory-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 1rem;
  display: none;
  position: relative;
  z-index: 1;
  clear: both; /* ensure it doesn't float next to symbols */
}

.category-item.expanded .subcategory-list {
  display: block;
}

.subcategory-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #806b6b;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.subcategory-link:hover {
  background: #fff0f0;
  color: #8a1e1e;
}

.subcategory-link.active {
  background: linear-gradient(135deg, #8a1e1e 0%, #f63b3b 100%);
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
  transform: translateX(4px);
}

.subcategory-link.active::before {
  /**content: "●";**/
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

/* Main Content */
.main-content {
  flex: 1;
  width: 100%;
  min-width: 0; /* Prevents flex item from overflowing */
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem; /* a bit of space between cards */
  width: 100%;
}

/* Ensure pagination stacks below grid inside products page layout */
.products-container .products-content {
  display: block;
}

/* Pagination styles */
.pagination {
  display: flex;
  justify-content: center;
  margin: 2rem 0 3rem 0;
}

.pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pagination li {
  display: inline-block;
}

.pagination a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ebe5e5;
  border-radius: 6px;
  color: #8a1e1e;
  text-decoration: none;
  min-width: 34px;
  text-align: center;
  background: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: #fff0f0;
  border-color: #f63b3b;
  color: #8a1e1e;
}

.pagination a.active {
  background: #8a1e1e;
  color: #fff;
  border-color: #8a1e1e;
  font-weight: 700;
}

.pagination .pagination-link {
  padding: 0.5rem 1rem;
  min-width: auto;
  font-weight: 600;
}

.pagination .ellipsis {
  display: inline-block;
  padding: 0.5rem 0.25rem;
  color: #806b6b;
  font-weight: 600;
  pointer-events: none;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Ensure no underline on text inside product cards */
.product-card .product-category,
.product-card .product-count {
  text-decoration: none;
}

/* Keep visited links same color */
.product-card:visited {
  color: inherit;
}

.product-image {
  width: 100%;
  height: 160px;
  background: #fcf8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #ebe5e5;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fcf8f8;
}

.product-image .default-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fcf8f8;
}

.image-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #af9c9c;
  font-size: 0.9rem;
  background: #fcf8f8;
}

.product-info {
  padding: 1rem;
}

.product-category {
  color: #8a1e1e;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.product-count {
  color: #806b6b;
  font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 1600px) {
  .products-container {
    max-width: 100%;
    padding: 1.5rem 2rem;
    grid-template-columns: 260px 1fr;
  }
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 1200px) {
  .products-container {
    max-width: 100%;
    padding: 1.5rem;
    grid-template-columns: 260px 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .products-container {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .category-sidebar {
    position: static;
    margin-bottom: 2rem;
  }

  .products-hero h1 {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .product-image {
    height: 120px;
  }

  .product-info {
    padding: 0.8rem;
  }

  .product-category {
    font-size: 0.9rem;
  }

  .product-count {
    font-size: 0.7rem;
  }
}

/* Responsive Design - Optimized for Better Space Utilization */

/* Desktop - 3 columns */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Large Tablets - 3 columns with smaller gap */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Medium Tablets - 2 columns */
@media (max-width: 900px) {
  .products-content {
    flex-direction: column;
    gap: 1rem;
  }

  .filter-section {
    flex: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .product-image {
    height: 180px;
  }

  .search-input {
    max-width: 100%;
  }
}

/* Small Tablets and Large Mobile - 2 columns with optimized spacing */
@media (max-width: 768px) {
  .products-layout {
    padding: 1.5rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .product-image {
    height: 160px;
  }

  .product-content {
    padding: 14px;
  }

  .filter-section {
    margin-bottom: 1rem;
  }
}

/* Mobile - 1 column */
@media (max-width: 600px) {
  .products-layout {
    padding: 1rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-image {
    height: 160px;
  }

  .product-content {
    padding: 12px;
  }

  .search-input {
    max-width: 100%;
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile - Optimized spacing */
@media (max-width: 480px) {
  .products-layout {
    padding: 0.75rem;
  }

  .product-grid {
    gap: 0.75rem;
  }

  .product-image {
    height: 140px;
  }

  .product-content {
    padding: 10px;
  }

  .product-content h3 {
    font-size: 1rem;
  }

  .product-price {
    font-size: 0.9rem;
  }
}

/* Enhanced Empty Message */
.empty-message {
  text-align: center;
  padding: 3rem 2rem;
  color: #806b6b;
  display: none;
  background: linear-gradient(135deg, #fcf8f8 0%, #f0e2e2 100%);
  border-radius: 25px;
  margin: 3rem 0;
  border: 2px dashed #e1cbcb;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.empty-message::before {
  content: "🛍️";
  font-size: 5rem;
  display: block;
  margin-bottom: 2rem;
  opacity: 0.7;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.empty-message h3 {
  color: #1e3a8a;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.empty-message p {
  margin-bottom: 3.5rem;
  font-size: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 500;
}

.empty-message .btn {
  padding: 1.5rem 4rem;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(138, 30, 30, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 320px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.empty-message .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.empty-message .btn:hover::before {
  left: 100%;
}

.empty-message .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(138, 30, 30, 0.4);
}

/* Dynamic Product Grid - Fixed Image Styling */
.product-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 8px 0 0;
  background: #fcf8f8;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

.no-image {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #fcf8f8 0%, #f0e2e2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #af9c9c;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px 8px 0 0;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

.no-image::before {
  content: "📷";
  font-size: 1.5rem;
  margin-right: 0.5rem;
  opacity: 0.6;
}

/* Product Cards - Following First Image Style */
.product-link {
  display: block;
  background: white;
  border: 1px solid #ebe6e6;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(39, 17, 17, 0.06);
  padding: 0;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.product-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(39, 17, 17, 0.1);
}

.product-link:hover h3 {
  color: #271111;
}

/* Product Image Container - Full Width */
.product-image {
  height: 200px;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fcf8f8;
}

/* Product Information - Separate Box Below Image */
.product-content {
  padding: 16px;
  background: white;
  border-top: 1px solid #f3f4f6;
}

.product-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #8a1e1e;
  margin-bottom: 8px;
  line-height: 1.3;
  text-decoration: none;
}

.product-price {
  font-size: 0.9rem;
  font-weight: 500;
  color: #806b6b;
  margin-bottom: 8px;
}

.product-description {
  font-size: 0.8rem;
  color: #af9c9c;
  margin: 0;
  line-height: 1.4;
}

/* Products Header Section */
.products-header {
  background: linear-gradient(135deg, #8a1e1e 0%, #f63b3b 100%);
  color: white;
  text-align: center;
  padding: 5rem 2rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.products-header .page-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.products-header p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Quality Assurance Section */
.quality-section {
  background: linear-gradient(135deg, #fcf8f8 0%, #f0e2e2 100%);
  padding: 4rem 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.quality-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #dc1313;
}

.quality-section p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #634b4b;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.quality-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.quality-item {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid rgba(30, 58, 138, 0.1);
}

.quality-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #f63b3b;
}

.quality-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #8a1e1e;
}

.quality-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #806b6b;
  margin: 0;
}

/* Products CTA Section */
.products-cta {
  background: white;
  text-align: center;
  padding: 4rem 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.products-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #dc1313;
}

.products-cta p {
  font-size: 1.2rem;
  color: #806b6b;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.products-cta .btn {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  min-width: 220px;
}

/* CTA primary button - pill gradient like design reference */
.products-cta .btn.btn-primary {
  background: linear-gradient(90deg, #8e1f1f 0%, #f62f2f 100%);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(246, 47, 47, 0.25),
    0 4px 10px rgba(142, 31, 31, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.products-cta .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(246, 47, 47, 0.35),
    0 6px 14px rgba(142, 31, 31, 0.25);
  filter: brightness(1.03);
}

.products-cta .btn.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(246, 47, 47, 0.25),
    0 3px 8px rgba(142, 31, 31, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .products-header .page-title {
    font-size: 2.5rem;
  }

  .products-header p {
    font-size: 1.1rem;
  }

  .quality-section h2,
  .products-cta h2 {
    font-size: 2rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .quality-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .quality-item {
    padding: 2rem;
  }

  /* Mobile enhancements: Quality section & CTA */
  .quality-section {
    padding: 2rem 0;
  }
  .quality-section p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  .products-cta {
    padding: 2.5rem 0;
  }
  .products-cta p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .products-cta .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .products-header .page-title {
    font-size: 2rem;
  }

  .products-header p {
    font-size: 1rem;
  }

  .quality-section h2,
  .products-cta h2 {
    font-size: 1.8rem;
  }

  .product-grid {
    padding: 0 0.5rem;
  }

  .quality-features {
    padding: 0 0.5rem;
  }

  .quality-item {
    padding: 1.5rem;
  }

  /* Extra-small mobile enhancements */
  .quality-section {
    padding: 1.5rem 0;
  }
  .quality-section p {
    font-size: 0.95rem;
  }
  .products-cta {
    padding: 2rem 0;
  }
  .products-cta p {
    font-size: 0.95rem;
  }
  .products-cta .btn {
    max-width: 240px;
    font-size: 1rem;
  }
}
