/* ========================================
   GLOBAL STYLES & RESET
   Base styles for the entire website
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #666;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Container for centering content */
.container {
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Title Styling */
.section-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #2c2c2c;
}

/* ========================================
   TOP BANNER SECTION
   Promotional features bar at the top
========================================= */
/* ========================================
   TOP BANNER SECTION - Responsive Styles
========================================= */











.top-banner {
  background-color: #95703c;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 12px;
}

.top-banner__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Accessibility Button */
.top-banner__accessibility {
  display: flex;
  justify-content: center;
  order: 2;
}

.accessibility-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.accessibility-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.accessibility-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Feature List */
.top-banner__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  order: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.feature-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.feature-text {
  color: #333;
  font-size: 11px;
}

.feature-text strong {
  font-weight: 700;
}

/* ========================================
   HEADER SECTION - Responsive Styles
========================================= */
.main-header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
}

.main-header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  order: 1;
}

.hamburger-icon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333;
  position: relative;
  transition: background-color 0.2s;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #333;
  left: 0;
  transition: transform 0.2s;
}

.hamburger-icon::before {
  top: -6px;
}

.hamburger-icon::after {
  bottom: -6px;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-icon {
  background-color: transparent;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-icon::before {
  transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-icon::after {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Logo */
.header-logo {
 flex: 0 0 auto;
  order: 2;
  width: 100%; /* Take full width to center the logo */
  display: flex;
}

.logo-image {
   width: 700px; /* Fixed width of 700px */
  height: auto; /* Maintain aspect ratio */
  max-width: 100%; /* Ensure it doesn't overflow on smaller screens */
  display: block;
}

/* Header Search (Desktop) */
.header-search {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  max-width: 800px;
  order: 3;
}

.search-form {
  flex: 1;
  position: relative;
  display: flex;
}

.search-input {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus {
  border-color: #c00;
}


.search-button {
  position: absolute;
  right: 5px;
  top: 5px; /* Fixed position from top */
  height: calc(100% - 10px); /* Full height minus top/bottom */
  aspect-ratio: 1; /* Keep it square */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}







/* User Actions */
.user-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.user-action-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 11px;
  position: relative;
  padding: 4px;
  transition: color 0.2s;
}

.user-action-link:hover {
  color: #c00;
}

.action-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-bottom: 4px;
}

.action-text {
  font-weight: 500;
}

/* Badges */
.badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: #c00;
  color: white;
  font-size: 10px;
  font-weight: bold;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Mobile Search Bar */
.mobile-search {
  display: none;
  max-width: 1400px;
  margin: 15px auto 0;
  padding: 0 20px;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
========================================= */

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .top-banner__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .top-banner__accessibility {
    order: 1;
    justify-content: flex-start;
  }
  
  .top-banner__features {
    order: 2;
    gap: 25px;
  }
  
  .feature-text {
    font-size: 12px;
  }
  
  .logo-image {
    max-width: 700px;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .main-header__container {
    gap: 40px;
  }
  
  .header-search {
    gap: 40px;
  }
  
  .user-actions {
    gap: 25px;
  }
  
  .feature-item {
    gap: 8px;
  }
  
  .feature-icon {
    width: 18px;
    height: 18px;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  /* Show mobile menu button */
  .mobile-menu-btn {
    display: block;
  }
  
  /* Adjust logo size for mobile */
  .logo-image {
    max-width: 150px;
  }
  
  /* Hide desktop search on mobile */
  .header-search .search-form {
    display: none;
  }
  
  /* Show mobile search */
  .mobile-search {
    display: block;
  }
  
  /* Adjust user actions for mobile */
  .user-actions {
    gap: 15px;
  }
  
  .user-action-link .action-text {
    display: none;
  }
  
  .user-action-link {
    font-size: 0;
  }
  
  .action-icon {
    margin-bottom: 0;
  }
  
  /* Stack feature items on mobile */
  .top-banner__features {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .feature-item {
    width: 100%;
    justify-content: center;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .top-banner__container,
  .main-header__container {
    padding: 0 15px;
  }
  
  .logo-image {
    max-width: 130px;
  }
  
  .user-actions {
    gap: 12px;
  }
  
  .action-icon {
    width: 20px;
    height: 20px;
  }
  
  .mobile-search {
    padding: 0 15px;
  }
  
  .search-input {
    padding: 10px 45px 10px 15px;
    font-size: 13px;
  }
  
  .top-banner {
    padding: 8px 0;
  }
}

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
  .main-header__container,
  .top-banner__container,
  .mobile-search {
    padding: 0;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .top-banner {
    border-bottom: 2px solid #000;
  }
  
  .main-header {
    border-bottom: 2px solid #000;
  }
  
  .search-input {
    border: 2px solid #000;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .top-banner {
    background-color: #1a1a1a;
    border-bottom-color: #333;
  }
  
  .main-header {
    background-color: #1a1a1a;
    border-bottom-color: #333;
  }
  
  .accessibility-link,
  .feature-text,
  .user-action-link {
    color: #e0e0e0;
  }
  
  .hamburger-icon,
  .hamburger-icon::before,
  .hamburger-icon::after {
    background-color: #e0e0e0;
  }
  
  .search-input {
    background-color: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
  }
  
  .search-input:focus {
    border-color: #ff3333;
  }
  
  .logo-image {
    filter: brightness(0.9);
  }
}

/* Print styles */
@media print {
  .top-banner,
  .mobile-menu-btn,
  .header-search,
  .mobile-search,
  .user-actions {
    display: none !important;
  }
  
  .main-header {
    border-bottom: none;
    padding: 10px 0;
  }
  
  .logo-image {
    max-width: 120px;
    filter: grayscale(100%);
  }
}














.top-banner {
  background-color: #eeeae9;
  border-top: 3px solid #666;
  border-bottom: 1px solid #666;
  padding: 0px 0;
}

.top-banner__container {
  max-width: 1660px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

.top-banner__accessibility {
  padding: 7px;
}

.accessibility-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: bold;
  text-transform: uppercase;
}

.accessibility-icon {
  width: 20px;
  height: 20px;
}

.accessibility-text {
  display: none;
}

.top-banner__features {
  display: flex;
  justify-content: space-between;
  flex: 1;
  gap: 10px;
  overflow-x: auto;
  padding: 7px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  white-space: nowrap;
}

.feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 13px;
}

/* Mobile: Stack features vertically */
@media (max-width: 768px) {
  .top-banner__container {
    flex-direction: column;
    gap: 0;
  }

  .top-banner__accessibility {
    width: 100%;
    text-align: center;
  }

  .top-banner__features {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .top-banner__features::-webkit-scrollbar {
    display: none;
  }

  .feature-item {
    flex-shrink: 0;
    min-width: 150px;
  }
}

/* Desktop: Show accessibility text */
@media (min-width: 769px) {
  .accessibility-text {
    display: inline;
  }

  .feature-text {
    font-size: 16px;
  }

  .feature-item {
    font-size: 16px;
  }
}

/* ========================================
   HEADER SECTION
   Main navigation and branding
========================================= */
.main-header {
  background-color: #fff;
  position: relative;
  z-index: 99;
}

.main-header__container {
  max-width: 1660px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 50;
}

.hamburger-icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  position: absolute;
  left: 0;
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  bottom: -8px;
}

/* Logo */
.header-logo {
  flex: 1;
  max-width: 750px;
}

.logo-image {
  width: 100%;
  max-height: 31px;
  object-fit: contain;
}

/* Search Bar */
.header-search {
  display: none;
  flex: 1;
  gap: 20px;
}

.search-form {
width: 50%; /* Make it half the size */
  max-width: 360px; /* Maximum width */
  min-width: 250px; /* Minimum width */
  margin: 0 auto; /* Center it */
  position: relative;
  background-color: #e5e5e5;
  border: 1px solid #ccc;
  border-radius: 50px;
  overflow: hidden;
  flex: 1;
}





.search-input {
  width: 100%;
  padding: 18px 50px 18px 16px;
  border: none;
  background: #eeeae9;
  font-size: 16px;
  outline: none;
}

.search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon {
  width: 20px;
  height: 20px;
}

/* User Actions */
.user-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.user-action-link {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.action-icon {
  width: 30px;
  height: 30px;
}

.action-text {
  display: none;
}

.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #c00;
  color: #fff;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

.wishlist-link {
  display: none;
}

/* Mobile Search */
.mobile-search {
  display: block;
  padding: 10px 20px;
  border-top: 1px solid #666;
}

/* Tablet & Desktop */
@media (min-width: 769px) {
  .mobile-menu-btn {
    display: none;
  }

  .header-search {
    display: flex;
  }

  .mobile-search {
    display: none;
  }

  .action-text {
    display: inline;
  }

  .wishlist-link {
    display: flex;
  }

  .logo-image {
    max-height: none;
    max-width: 450px;
  }
}

/* ========================================
   MAIN CONTENT AREA
========================================= */
.main-content {
  margin: 20px 0;
}

/* ========================================
   HERO BANNER SECTION
   Large promotional image
========================================= */
.hero-banner {
  position: relative;
  min-height: 220px;
  margin-bottom: 30px;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 769px) {
  .hero-banner {
    min-height: auto;
  }
}

/* ========================================
   CATEGORY GRID SECTION
   Product category tiles
========================================= */
.category-grid {
  margin-bottom: 40px;
  padding: 0 20px;
  border-bottom: 3px solid #2c2c2c;
  padding-bottom: 30px;
}

.category-grid__container {
  max-width: 1660px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.category-item {
  overflow: hidden;
}

.category-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-item:hover .category-image {
  transform: scale(1.05);
}

.category-title {
  display: block;
  text-align: center;
  padding: 10px 5px;
  font-weight: 500;
}

/* Tablet */
@media (min-width: 600px) {
  .category-grid__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .category-grid__container {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* ========================================
   PRODUCT CAROUSEL SECTION
   Horizontal scrolling product list
========================================= */
.product-carousel {
  margin-bottom: 40px;
  padding: 0 20px;
}

.product-carousel__container {
  max-width: 1660px;
  margin: 0 auto;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-nav {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 50%;
  flex-shrink: 0;
}

.carousel-nav img {
  width: 16px;
  height: 16px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 20px;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.carousel-track::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Product Card */
.product-card {
  flex: 0 0 250px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card__image {
  position: relative;
  background-color: #fff;
  padding: 20px;
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.product-card__info {
  padding: 15px;
}

.product-brand {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.product-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  height: 42px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  font-size: 14px;
}

.stars {
  color: #ffa500;
}

.rating-count {
  color: #666;
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.price-current {
  font-size: 18px;
  font-weight: bold;
  color: #0a5f0a;
}

.price-original {
  font-size: 13px;
  color: #666;
  text-decoration: line-through;
}

/* Desktop: Show navigation arrows */
@media (min-width: 769px) {
  .carousel-nav {
    display: flex;
  }

  .product-card {
    flex: 0 0 300px;
  }
}

/* ========================================
   PROMOTIONAL GRID SECTION
   Special offers display
========================================= */
.promo-grid {
  margin-bottom: 40px;
  padding: 40px 20px;
  border-top: 3px solid #2c2c2c;
  border-bottom: 3px solid #2c2c2c;
}

.promo-grid__container {
  max-width: 1660px;
  margin: 0 auto;
}

.promo-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.promo-item {
  overflow: hidden;
  border-radius: 8px;
}

.promo-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.promo-item:hover .promo-image {
  transform: scale(1.05);
}

.promo-title {
  display: block;
  text-align: center;
  padding: 10px 5px;
  font-weight: 500;
}

/* Tablet */
@media (min-width: 600px) {
  .promo-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .promo-items {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* ========================================
  Deck the lawn and save
========================================= */
/* Lawn Section */
.lawn-section {
    border-bottom: 3px solid #374151;
    margin-bottom: 32px;
    padding-bottom: 32px;
}

.lawn-section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Section Header */
.lawn-section-header {
    width: 100%;
    margin-bottom: 32px;
    text-align: center;
}

.lawn-section-header h2 {
    color: #374151;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.25px;
    line-height: 1.2;
    font-family: 'Georgia', serif;
}

/* Categories Grid */
.lawn-categories-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

/* Category Row */
.lawn-category-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
}

/* Category Card */
.lawn-category-card {
    width: 100%;
    overflow: hidden;
}

.lawn-category-link {
    display: block;
    text-decoration: none;
    color: inherit;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lawn-category-link:hover {
    color: #4b5563;
}

/* Category Image - Big Images */
.lawn-category-image {
    overflow: hidden;
    margin-bottom: 16px;
    height: 400px;
    width: 100%;
    position: relative;
}

.lawn-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.lawn-category-link:hover .lawn-category-image img {
    transform: scale(1.05);
}

/* Category Title */
.lawn-category-title {
    display: block;
    width: 100%;
    padding: 8px 0;
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: #374151;
    transition: color 0.3s ease;
}

.lawn-category-link:hover .lawn-category-title {
    color: #4b5563;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .lawn-section-container {
        max-width: 1200px;
        padding: 0 24px;
    }
    
    .lawn-category-image {
        height: 350px;
    }
    
    .lawn-category-title {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .lawn-section-header h2 {
        font-size: 28px;
    }
    
    .lawn-categories-grid {
        gap: 32px;
    }
    
    .lawn-category-row {
        gap: 32px;
    }
    
    .lawn-category-image {
        height: 300px;
    }
    
    .lawn-category-title {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .lawn-section {
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-left: none;
        border-right: none;
        border-top: none;
    }
    
    .lawn-section-container {
        padding: 0 20px;
    }
    
    .lawn-section-header {
        margin-bottom: 24px;
    }
    
    .lawn-section-header h2 {
        font-size: 24px;
    }
    
    .lawn-categories-grid {
        gap: 28px;
    }
    
    .lawn-category-row {
        gap: 28px;
    }
    
    .lawn-category-image {
        height: 250px;
        margin-bottom: 12px;
    }
    
    .lawn-category-title {
        font-size: 16px;
        padding: 6px 0;
    }
}

@media (max-width: 640px) {
    /* Switch to 1 column layout on smaller screens */
    .lawn-category-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .lawn-categories-grid {
        gap: 24px;
    }
    
    .lawn-category-image {
        height: 280px;
        max-width: 500px;
        margin: 0 auto 12px;
    }
    
    .lawn-category-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .lawn-section-container {
        padding: 0 16px;
    }
    
    .lawn-section-header h2 {
        font-size: 22px;
    }
    
    .lawn-categories-grid {
        gap: 20px;
    }
    
    .lawn-category-row {
        gap: 20px;
    }
    
    .lawn-category-image {
        height: 220px;
    }
    
    .lawn-category-title {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .lawn-section-header h2 {
        font-size: 20px;
    }
    
    .lawn-category-image {
        height: 200px;
    }
    
    .lawn-category-title {
        font-size: 15px;
    }
}

/* For extra large screens */
@media (min-width: 1400px) {
    .lawn-section-container {
        max-width: 1600px;
    }
    
    .lawn-category-image {
        height: 450px;
    }
    
    .lawn-category-title {
        font-size: 22px;
    }
}

/* Alternative: Flexbox version for rows */
/*
.lawn-category-row {
    display: flex;
    gap: 40px;
    width: 100%;
}

.lawn-category-card {
    flex: 1;
    min-width: 0; /* Important for flex items with images */
}
*/

/* Image placeholder styling */
.lawn-category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f3f4f6 25%, #e5e7eb 25%, #e5e7eb 50%, #f3f4f6 50%, #f3f4f6 75%, #e5e7eb 75%);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: -1;
}


/* ========================================
   2 big sections
========================================= */

/* Full Sections */
.big-full-section {
    width: 100%;
    margin-bottom: 60px;
    padding: 0;
}

.big-full-section:last-child {
    margin-bottom: 0;
}

.big-section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Full Image Section */
.big-full-image-section {
    width: 100%;
}

/* Full Image Wrapper */
.big-full-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}

.big-full-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.full-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.big-full-image-link:hover .full-image {
    transform: scale(1.02);
}

/* Section Text */
.big-section-text {
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.big-section-title-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    margin-bottom: 12px;
}

.big-section-title {
    color: #374151;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.25px;
    line-height: 1.3;
    font-family: 'Georgia', serif;
    transition: color 0.3s ease;
}

.big-section-title-link:hover .big-section-title {
    color: #4b5563;
}

.big-section-description {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Georgia', serif;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .big-section-container {
        max-width: 1200px;
        padding: 0 24px;
    }
    
    .big-full-section {
        margin-bottom: 50px;
    }
    
    .big-section-title {
        font-size: 26px;
    }
    
    .big-section-description {
        font-size: 17px;
    }
}

@media (max-width: 992px) {
    .big-full-section {
        margin-bottom: 40px;
    }
    
    .big-full-image-wrapper {
        margin-bottom: 20px;
    }
    
    .big-section-title {
        font-size: 24px;
    }
    
    .big-section-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .big-full-section {
        margin-bottom: 32px;
    }
    
    .big-section-container {
        padding: 0 20px;
    }
    
    .big-full-image-wrapper {
        margin-bottom: 16px;
    }
    
    .big-section-text {
        padding: 0 16px;
    }
    
    .big-section-title {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .big-section-description {
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .big-full-section {
        margin-bottom: 24px;
    }
    
    .big-section-container {
        padding: 0 16px;
    }
    
    .big-full-image-wrapper {
        margin-bottom: 12px;
    }
    
    .big-section-text {
        padding: 0 12px;
    }
    
    .big-section-title {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .big-section-description {
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (max-width: 400px) {
    .big-section-title {
        font-size: 18px;
    }
    
    .big-section-description {
        font-size: 13px;
    }
}

/* For extra large screens */
@media (min-width: 1400px) {
    .big-section-container {
        max-width: 1600px;
    }
    
    .big-full-section {
        margin-bottom: 80px;
    }
    
    .big-section-title {
        font-size: 32px;
    }
    
    .big-section-description {
        font-size: 20px;
    }
}

/* Image placeholder styling */
.big-full-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f3f4f6 25%, #e5e7eb 25%, #e5e7eb 50%, #f3f4f6 50%, #f3f4f6 75%, #e5e7eb 75%);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: -1;
}

/* Optional: Add borders like previous section */
.big-full-section.with-border {
    border-bottom: 3px solid #374151;
    border-left: 1px solid #666;
    border-right: 1px solid #666;
    border-top: 1px solid #666;
    padding: 40px 0;
    margin: 40px auto;
    max-width: 1400px;
}

.big-full-section.with-border .big-section-container {
    padding: 0 40px;
}

@media (max-width: 768px) {
    .big-full-section.with-border {
        border-left: none;
        border-right: none;
        border-top: none;
        padding: 20px 0;
        margin: 20px 0;
    }
    
    .big-full-section.with-border .big-section-container {
        padding: 0 20px;
    }
}







/* ========================================
   FOOTER SECTION
   Site footer with links and info
========================================= */
.main-footer {
  background-color: #f5f5f5;
  border-top: 5px solid #666;
}

/* ========================================
   TRUST BADGES SECTION
   Customer confidence indicators
========================================= */
.trust-badges {
  padding: 40px 20px;
  background-color: #e5e5e5;
  border-top: 5px solid #666;
  border-bottom: 1px solid #666;
}

.trust-badges__container {
  max-width: 1300px;
  margin: 0 auto;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.trust-icon {
  width: 45px;
  height: 45px;
}

.trust-text {
  font-size: 14px;
  line-height: 1.4;
}

/* Tablet */
@media (min-width: 600px) {
  .trust-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .trust-badges {
    padding: 60px 20px;
  }

  .trust-list {
    grid-template-columns: repeat(6, 1fr);
  }

  .trust-icon {
    width: 65px;
    height: 65px;
  }

  .trust-text {
    font-size: 16px;
  }
}

/* ========================================
   FOOTER LINKS SECTION
   Navigation and contact info
========================================= */
.footer-links {
  padding: 40px 20px;
  border-top: 5px solid #666;
  border-bottom: 1px solid #666;
}

.footer-links__container {
  max-width: 1680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.footer-column {
  border-top: 1px solid #666;
  padding-top: 15px;
}

.footer-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #2c2c2c;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list li {
  font-size: 16px;
  line-height: 1.6;
}

.footer-list a:hover {
  color: #666;
}

.help-desk-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: #666;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  max-width: 240px;
}

.address-info {
  font-size: 16px;
  line-height: 1.6;
}

/* Newsletter Form */
.newsletter-form {
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  border: 1px solid #666;
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  outline: none;
}

.newsletter-button {
  padding: 15px 30px;
  background-color: #666;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-links li {
  flex: 1;
  min-width: 40px;
  border-left: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.social-links li:first-child {
  border-left: none;
}

.social-links img {
  width: 35px;
  height: 35px;
}

/* Desktop */
@media (min-width: 1024px) {
  .footer-links {
    padding: 60px 20px;
  }

  .footer-links__container {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .footer-column {
    border-top: none;
    padding-top: 0;
  }

  .footer-heading {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .footer-list {
    gap: 15px;
  }

  .footer-list li {
    font-size: 18px;
  }
}

/* ========================================
   FOOTER BOTTOM SECTION
   Copyright and payment methods
========================================= */
.footer-bottom {
  padding: 20px;
  border-top: 1px solid #666;
}

.footer-bottom__container {
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.copyright {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.copyright a {
  text-decoration: underline;
}

.payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-methods img {
  height: 35px;
  width: auto;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 5px;
}

/* Desktop */
@media (min-width: 769px) {
  .footer-bottom__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .copyright {
    flex-direction: row;
    gap: 20px;
  }
}

/* ========================================
   UTILITY CLASSES
   Helper classes for common patterns
========================================= */
.hide-mobile {
  display: none;
}

.hide-desktop {
  display: block;
}

@media (min-width: 769px) {
  .hide-mobile {
    display: block;
  }

  .hide-desktop {
    display: none;
  }
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Ensure mobile scrolling works properly */
body {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  height: auto;
  min-height: 100vh;
}





/* ========================================
   The Best Black Friday Tree Deals
========================================= */
.deals-section {
    max-width: 1660px;
    margin: 32px auto;
    padding: 0 16px;
}

/* Carousel Container */
.carousel-container {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    padding-bottom: 20px;
}

/* Products Carousel */
.products-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 5px 5px;
    flex: 1;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

/* Product Card */
.product-card {
    flex: 0 0 auto;
    width: 135px;
    background: white;
}

/* Product Image */
.product-image {
    position: relative;
    background: white;
    padding: 20px 0 0;
    margin-bottom: 0;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image a {
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Product Info */
.product-info {
    padding-top: 12px;
}

.brand {
    font-size: 14px;
    line-height: 21px;
    font-family: 'Georgia', serif;
    color: #666;
    margin-bottom: 2.4px;
}

.product-title {
    margin: 2.4px 0 4px;
}

.product-title a {
    color: #374151;
    font-size: 15px;
    letter-spacing: 0.25px;
    line-height: 21px;
    text-decoration: none;
    display: block;
}

.product-title a:hover {
    color: #4b5563;
}

/* Rating Section */
.rating-section {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 4px 0;
}

.stars {
    display: flex;
    align-items: center;
    gap: 1px;
}

.star {
    color: #fbbf24;
    font-size: 20px;
    line-height: 1;
}

.star.half {
    background: linear-gradient(to right, #fbbf24 50%, #d1d5db 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.star.empty {
    color: #d1d5db;
}

.rating-text {
    color: #374151;
    font-size: 15px;
    line-height: 19.5px;
    padding-top: 2.25px;
    display: flex;
    gap: 5px;
}

/* Price Section */
.price-section {
    margin: 4px 0;
}

.current-price {
    color: #065f46;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 2px;
}

.original-price {
    font-size: 12.8px;
    color: #666;
    line-height: 19.2px;
    text-decoration: line-through;
}

.old-price {
    color: #1f2937;
    font-weight: 500;
    text-decoration: line-through;
}










/* Quick View Button - Clean centered position */
.quick-view-btn {
    display: none;
    text-decoration: none;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .product-card {
        width: 227.2px;
        margin-right: 15px;
        position: relative;
        padding-bottom: 8px; /* Space for button */
    }
    
    .product-image {
        margin-bottom: 12px;
        height: 285px;
        padding-top: 0;
    }
    
    /* Centered button positioned in middle section */
    .quick-view-btn {
        display: block;
        position: absolute;
        top: 285px; /* Right below image */
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 32px); /* Slightly inset */
        background: white;
        color: #374151;
        font-size: 14px;
        font-weight: 500;
        line-height: 18.2px;
        text-align: center;
        padding: 7.6px 16px;
        border: 2px solid #374151;
        border-radius: 4px;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .quick-view-btn:hover {
        background: #374151;
        color: white;
        border-color: #374151;
    }
    
    /* Move product info down to accommodate button */
    .product-info {
        padding-top: 48px; /* Space for the button */
    }
}



.products-section-header{
text-align: center;
    margin-bottom: 12px;
font-family: 'Georgia', serif;
}



/* Responsive Design */
@media (max-width: 767px) {
    .deals-section {
        padding: 0 12px;
        margin: 24px auto;
    }
    
    .section-header h2 {
        font-size: 22px;
        line-height: 30px;
    }
    
    .products-carousel {
        gap: 15px;
    }
    
    .product-card {
        width: 150px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .brand {
        font-size: 13px;
    }
    
    .product-title a {
        font-size: 14px;
        line-height: 18px;
    }
    
    .star {
        font-size: 18px;
    }
    
    .rating-text {
        font-size: 14px;
    }
    
    .current-price {
        font-size: 15px;
    }
    
    .original-price {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .products-carousel {
        gap: 12px;
    }
    
    .product-card {
        width: 140px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-title a {
        font-size: 13px;
        line-height: 17px;
    }
    
    .star {
        font-size: 16px;
    }
    
    .rating-text {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .product-card {
        width: 130px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .nav-btn {
        display: none;
    }
}

