/*
 * WOODLANDS BUILDERS SUPPLIERS - DESIGN SYSTEM & STYLES
 * Brand Colors:
 * - Red: #E33B28 (Primary Accent / Focus)
 * - Yellow: #FFE101 (Secondary / Deals / Alerts)
 * - Black: #111111 (Text & Dark backgrounds)
 * - White: #FFFFFF (Canvas)
 * - Light Grey: #F5F5F5 (Section backgrounds)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary-red: #E33B28;
  --primary-red-hover: #c92f1d;
  --primary-red-soft: rgba(227, 59, 40, 0.08);
  
  --secondary-yellow: #FFE101;
  --secondary-yellow-hover: #e6cb00;
  --secondary-yellow-soft: rgba(255, 225, 1, 0.15);
  
  --dark-black: #111111;
  --text-dark: #2A2A2A;
  --text-muted: #666666;
  --text-light: #999999;
  
  --bg-white: #FFFFFF;
  --bg-light: #F5F5F5;
  --bg-border: #E5E5E5;
  
  --success-green: #25D366; /* WhatsApp Green */
  --success-green-hover: #128C7E;
  --success-green-soft: rgba(37, 211, 102, 0.08);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-normal: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
  --shadow-hover: 0 20px 30px rgba(227, 59, 40, 0.1);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --container-width: 1280px;
}

/* 1. Global Reset & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark-black);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grid {
  display: grid;
  gap: 24px;
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.badge-red {
  background-color: var(--primary-red);
  color: var(--bg-white);
}

.badge-yellow {
  background-color: var(--secondary-yellow);
  color: var(--dark-black);
}

.badge-green {
  background-color: var(--success-green);
  color: var(--bg-white);
}

.badge-light {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

/* 2. Top Header & Nav */
.announcement-bar {
  background-color: var(--dark-black);
  color: var(--bg-white);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 0;
  text-align: center;
  border-bottom: 2px solid var(--secondary-yellow);
}

.main-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--bg-border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

.logo {
  display: inline-block;
  vertical-align: middle;
}

.logo img {
  display: block;
  max-width: none;
  width: auto;
  height: 120px;
  transition: height var(--transition-normal);
}

/* Search System */
.search-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.search-bar {
  display: flex;
  width: 100%;
  border: 2px solid var(--dark-black);
  border-radius: var(--radius-full);
  overflow: hidden;
  background-color: var(--bg-white);
  transition: border-color var(--transition-fast);
}

.search-bar:focus-within {
  border-color: var(--primary-red);
}

.search-bar input {
  flex: 1;
  padding: 12px 24px;
  font-size: 14px;
  color: var(--dark-black);
}

.search-bar button {
  background-color: var(--primary-red);
  color: var(--bg-white);
  padding: 0 24px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color var(--transition-fast);
}

.search-bar button:hover {
  background-color: var(--primary-red-hover);
}

/* Live Search Suggestions Dropdown */
.search-suggestions {
  position: absolute;
  top: 105%;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 1001;
  max-height: 400px;
  overflow-y: auto;
}

.suggestion-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--bg-light);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.suggestion-item:hover {
  background-color: var(--bg-light);
}

.suggestion-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-right: 16px;
}

.suggestion-details {
  flex: 1;
}

.suggestion-name {
  font-weight: 600;
  color: var(--dark-black);
}

.suggestion-category {
  font-size: 12px;
  color: var(--text-muted);
}

.suggestion-price {
  font-weight: 700;
  color: var(--primary-red);
  margin-left: 12px;
}

/* Header Actions */
.header-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

.action-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark-black);
  cursor: pointer;
  position: relative;
}

.action-link i {
  font-size: 20px;
  margin-bottom: 4px;
}

.action-link:hover {
  color: var(--primary-red);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-red);
  color: var(--bg-white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Navigation and Mega Menu */
.main-nav {
  background-color: var(--dark-black);
  color: var(--bg-white);
}

.nav-links {
  display: flex;
  position: relative;
}

.nav-item {
  position: static; /* Required for full width mega menu */
}

.nav-link {
  display: block;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 13px;
  border-bottom: 3px solid transparent;
}

.nav-link:hover, .nav-item.active .nav-link {
  border-bottom-color: var(--primary-red);
  color: var(--secondary-yellow);
}

/* Mega Menu Dropdown */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border-bottom: 4px solid var(--primary-red);
  box-shadow: var(--shadow-lg);
  padding: 32px 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
  z-index: 999;
  display: grid;
  grid-template-columns: repeat(4, 1fr) 250px;
  gap: 32px;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-column h4 {
  font-size: 14px;
  color: var(--primary-red);
  text-transform: uppercase;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--bg-light);
  padding-bottom: 8px;
}

.mega-column ul li {
  margin-bottom: 8px;
}

.mega-column ul li a {
  color: var(--text-dark);
  font-size: 13px;
  transition: padding-left var(--transition-fast), color var(--transition-fast);
}

.mega-column ul li a:hover {
  color: var(--primary-red);
  padding-left: 6px;
}

.mega-promo-box {
  background-color: var(--bg-light);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mega-promo-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-black);
  margin-bottom: 8px;
}

.mega-promo-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.mega-promo-btn {
  background-color: var(--primary-red);
  color: var(--bg-white);
  text-align: center;
  padding: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

.mega-promo-btn:hover {
  background-color: var(--primary-red-hover);
  color: var(--bg-white);
}

/* 3. Hero Section */
.hero-slider {
  position: relative;
  height: 520px;
  background-color: var(--bg-light);
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.slide.active {
  opacity: 1;
}

.slide-content {
  width: 50%;
  padding-right: 48px;
  z-index: 10;
  animation: slideInUp var(--transition-slow) forwards;
}

.slide-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-red);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-block;
  background-color: var(--primary-red-soft);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

.slide-title {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark-black);
}

.slide-desc {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.slide-ctas {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(227, 59, 40, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-red-hover);
  box-shadow: 0 6px 20px rgba(227, 59, 40, 0.6);
}

.btn-whatsapp {
  background-color: var(--success-green);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background-color: var(--success-green-hover);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-secondary {
  background-color: var(--dark-black);
  color: var(--bg-white);
}

.btn-secondary:hover {
  background-color: #333333;
}

.slide-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--bg-white);
  color: var(--dark-black);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 20;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.slider-arrow:hover {
  background-color: var(--primary-red);
  color: var(--bg-white);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* 4. Category Grid */
.section-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-title h2 {
  font-size: 32px;
  position: relative;
  padding-bottom: 12px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-red);
}

.section-link {
  font-weight: 700;
  color: var(--primary-red);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.section-link:hover {
  color: var(--dark-black);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.category-card.cat-w-2 {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
}

.cat-card-info {
  z-index: 2;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.cat-card-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 4px;
  color: inherit;
}

.cat-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin: 4px 0 16px 0;
  color: inherit;
}

.category-card.cat-w-2 .cat-card-title {
  font-size: 26px;
}

.cat-card-btn {
  display: inline-block;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
}

.cat-card-btn:hover {
  transform: scale(1.05);
}

.cat-card-img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 42%;
  height: 85%;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card.cat-w-2 .cat-card-img {
  width: 38%;
  height: 90%;
}

.category-card:hover .cat-card-img {
  transform: scale(1.1) rotate(-3deg);
}

/* Individual Card Colors & Styling */
/* Card 1: Cement (Dark) */
.cat-card-1 {
  background: linear-gradient(135deg, #1f2024, #121315);
  color: #ffffff;
}
.cat-card-1 .cat-card-tag {
  color: #ff4d4d;
}
.cat-card-1 .cat-card-btn {
  background-color: var(--primary-red);
  color: #ffffff;
}
.cat-card-1 .cat-card-btn:hover {
  background-color: #c92424;
}
.cat-card-1 .cat-card-img {
  filter: brightness(2.5) contrast(1.2) grayscale(1);
}

/* Card 2: Paint (Yellow) */
.cat-card-2 {
  background: linear-gradient(135deg, #f5b041, #f39c12);
  color: #ffffff;
}
.cat-card-2 .cat-card-tag {
  color: #ffffff;
}
.cat-card-2 .cat-card-btn {
  background-color: #ffffff;
  color: #e67e22;
}
.cat-card-2 .cat-card-btn:hover {
  background-color: #f5f5f5;
}

/* Card 3: Plumbing (Red/Coral) */
.cat-card-3 {
  background: linear-gradient(135deg, #ec7063, #e74c3c);
  color: #ffffff;
}
.cat-card-3 .cat-card-tag {
  color: #ffffff;
}
.cat-card-3 .cat-card-btn {
  background-color: #ffffff;
  color: #c0392b;
}
.cat-card-3 .cat-card-btn:hover {
  background-color: #f5f5f5;
}

/* Card 4: Fencing (Light Grey) */
.cat-card-4 {
  background: linear-gradient(135deg, #f2f4f4, #d5dbdb);
  color: var(--dark-black);
}
.cat-card-4 .cat-card-tag {
  color: #7f8c8d;
}
.cat-card-4 .cat-card-btn {
  background-color: var(--dark-black);
  color: #ffffff;
}
.cat-card-4 .cat-card-btn:hover {
  background-color: #2c3e50;
}

/* Card 5: Doors (Green) */
.cat-card-5 {
  background: linear-gradient(135deg, #58d68d, #27ae60);
  color: #ffffff;
}
.cat-card-5 .cat-card-tag {
  color: #ffffff;
}
.cat-card-5 .cat-card-btn {
  background-color: #ffffff;
  color: #1e8449;
}
.cat-card-5 .cat-card-btn:hover {
  background-color: #f5f5f5;
}

/* Card 6: Tools (Blue) */
.cat-card-6 {
  background: linear-gradient(135deg, #5dade2, #2980b9);
  color: #ffffff;
}
.cat-card-6 .cat-card-tag {
  color: #ffffff;
}
.cat-card-6 .cat-card-btn {
  background-color: #ffffff;
  color: #1b4f72;
}
.cat-card-6 .cat-card-btn:hover {
  background-color: #f5f5f5;
}

/* Responsive category grid styling */
@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-card.cat-w-2 .cat-card-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .category-card {
    padding: 24px;
    min-height: 180px;
  }

  .category-card.cat-w-2 {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }

  .category-card.cat-w-2 .cat-card-title {
    font-size: 20px;
  }

  .cat-card-info {
    max-width: 65%;
  }

  .cat-card-img {
    width: 35%;
    height: 75%;
  }
}

@media (max-width: 480px) {
  .category-card {
    padding: 20px;
    min-height: 160px;
  }
  
  .cat-card-info {
    max-width: 60%;
  }
  
  .cat-card-title {
    font-size: 18px;
  }
  
  .cat-card-img {
    width: 38%;
    height: 70%;
  }
}



/* 5. Product Cards Grid */
.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.product-card {
  background-color: var(--bg-white);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-red);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
}

.product-image-wrap {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}

.product-image-wrap img {
  max-height: 80%;
  max-width: 80%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.1);
}

.product-category {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 6px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-black);
  margin-bottom: 8px;
  height: 42px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-availability {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.in-stock { color: var(--success-green); }
.in-stock .availability-dot { background-color: var(--success-green); }

.low-stock { color: var(--secondary-yellow-hover); }
.low-stock .availability-dot { background-color: var(--secondary-yellow); }

.out-of-stock { color: var(--primary-red); }
.out-of-stock .availability-dot { background-color: var(--primary-red); }

.product-price-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-black);
}

.product-price-old {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.card-btn {
  flex: 1;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.card-btn-cart {
  background-color: var(--dark-black);
  color: var(--bg-white);
}

.card-btn-cart:hover {
  background-color: var(--primary-red);
}

.card-btn-whatsapp {
  background-color: var(--success-green-soft);
  color: var(--success-green-hover);
  border: 1px solid var(--success-green);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  flex: none;
}

.card-btn-whatsapp:hover {
  background-color: var(--success-green);
  color: var(--bg-white);
}

/* 6. Promotional Specials & Combo Deals */
.specials-banner-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.special-banner-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--dark-black);
  color: var(--bg-white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.special-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 17, 17, 0.4);
  z-index: 1;
}

.special-banner-content {
  position: relative;
  z-index: 2;
  width: 60%;
}

.special-banner-tag {
  color: var(--secondary-yellow);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.special-banner-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.special-banner-desc {
  font-size: 14px;
  margin-bottom: 24px;
  color: var(--bg-light);
}

/* Combo Deals Section */
.combos-grid {
  grid-template-columns: repeat(2, 1fr);
}

.combo-card {
  background-color: var(--bg-white);
  border: 2px solid var(--dark-black);
  border-radius: var(--radius-md);
  display: flex;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.combo-img {
  width: 40%;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.combo-info {
  width: 60%;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.combo-tag {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.combo-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.combo-includes {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.4;
}

.combo-price-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 20px;
  margin-top: auto;
}

.combo-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-red);
}

.combo-old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 14px;
}

/* 7. Why Customers Choose Us */
.features-section {
  background-color: var(--bg-light);
  padding: 64px 0;
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}

.features-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-box {
  text-align: center;
}

.feature-icon {
  font-size: 40px;
  color: var(--primary-red);
  margin-bottom: 16px;
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* 8. WhatsApp Callout Section */
.whatsapp-banner {
  background-color: var(--success-green);
  color: var(--bg-white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.whatsapp-banner-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.whatsapp-banner h2 {
  font-size: 36px;
  color: var(--bg-white);
  margin-bottom: 16px;
}

.whatsapp-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* 9. Trust Sections (Google Reviews & Testimonials) */
.reviews-section {
  padding: 64px 0;
}

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

.review-card {
  background-color: var(--bg-white);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--secondary-yellow-hover);
  margin-bottom: 12px;
  font-size: 16px;
}

.review-text {
  font-style: italic;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.review-author {
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-g {
  width: 16px;
  height: 16px;
}

/* 10. Store Location & Info Section */
.location-section {
  padding: 64px 0;
  background-color: var(--bg-light);
}

.location-grid {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
  border: 3px solid var(--dark-black);
}

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

.location-info h3 {
  font-size: 28px;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  margin-bottom: 16px;
  gap: 16px;
}

.info-icon {
  font-size: 20px;
  color: var(--primary-red);
}

.info-text strong {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.info-text p {
  font-size: 16px;
  color: var(--dark-black);
}

/* 11. Footer */
.main-footer {
  background-color: var(--dark-black);
  color: var(--bg-white);
  padding: 64px 0 32px 0;
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo img {
  display: block;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-about {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

.footer-col h4 {
  color: var(--bg-white);
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-red);
  display: inline-block;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-light);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--secondary-yellow);
  padding-left: 4px;
}

.footer-contact li {
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  gap: 8px;
}

.footer-contact i {
  color: var(--primary-red);
}

.footer-bottom {
  border-top: 1px solid #222222;
  padding-top: 32px;
  font-size: 12px;
  color: var(--text-light);
}

/* 12. Shop Page Layout (Catalog & Sidebar) */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 48px 0;
}

.sidebar-filter {
  background-color: var(--bg-white);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.filter-widget {
  margin-bottom: 28px;
}

.filter-widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bg-light);
}

.filter-list li {
  margin-bottom: 8px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  font-size: 13px;
  cursor: pointer;
}

.filter-checkbox input {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.price-range-inputs {
  display: flex;
  gap: 8px;
  align-items: center;
}

.price-input {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  background-color: var(--bg-light);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
}

.sort-select {
  padding: 8px 12px;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  background-color: var(--bg-white);
  font-size: 13px;
}

/* 13. Product Detail Page Layout */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding: 48px 0;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-image {
  background-color: var(--bg-light);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.main-image img {
  max-height: 100%;
  object-fit: contain;
}

.thumbnails-row {
  display: flex;
  gap: 12px;
}

.thumbnail-item {
  width: 80px;
  height: 80px;
  border: 2px solid var(--bg-border);
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.thumbnail-item:hover, .thumbnail-item.active {
  border-color: var(--primary-red);
}

.product-meta-title {
  font-size: 32px;
  margin-bottom: 12px;
}

.product-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 13px;
}

.product-detail-price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-black);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-detail-price-old {
  font-size: 20px;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-description-text {
  margin-bottom: 32px;
  line-height: 1.7;
}

.qty-btn-group {
  display: flex;
  align-items: center;
  border: 2px solid var(--dark-black);
  border-radius: var(--radius-md);
  width: 130px;
  overflow: hidden;
  height: 48px;
}

.qty-btn {
  width: 40px;
  height: 100%;
  background-color: var(--bg-white);
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

.qty-btn:hover {
  background-color: var(--bg-light);
}

.qty-input {
  width: 50px;
  height: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  border-left: 1px solid var(--bg-border);
  border-right: 1px solid var(--bg-border);
}

.action-row-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.specs-table th, .specs-table td {
  padding: 12px;
  border-bottom: 1px solid var(--bg-border);
  text-align: left;
}

.specs-table th {
  font-weight: 600;
  color: var(--text-muted);
  width: 30%;
}

.specs-table td {
  color: var(--dark-black);
  font-weight: 500;
}

/* 14. Cart & Checkout Details */
.cart-layout {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 48px;
  padding: 48px 0;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--dark-black);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 13px;
}

.cart-table td {
  padding: 24px 0;
  border-bottom: 1px solid var(--bg-border);
  vertical-align: middle;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.cart-item-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark-black);
}

.cart-item-remove {
  font-size: 12px;
  color: var(--primary-red);
  cursor: pointer;
  margin-top: 4px;
  display: inline-block;
}

.cart-summary-box {
  background-color: var(--bg-light);
  border: 2px solid var(--dark-black);
  border-radius: var(--radius-md);
  padding: 32px;
}

.summary-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--bg-border);
  padding-bottom: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 15px;
}

.summary-row-total {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-red);
  border-top: 2px solid var(--bg-border);
  padding-top: 16px;
  margin-top: 16px;
}

.checkout-form {
  margin-top: 32px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  background-color: var(--bg-white);
  font-size: 14px;
}

.form-control:focus {
  border-color: var(--primary-red);
}

/* 15. Mobile Sticky Bottom Bar & Mobile Drawer */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  grid-template-columns: 1fr 1fr;
  padding: 8px 16px;
  gap: 12px;
  z-index: 999;
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: var(--radius-sm);
  color: var(--bg-white);
}

.sticky-btn-call {
  background-color: var(--dark-black);
}

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

.mobile-header-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background-color: var(--dark-black);
  color: var(--bg-white);
  z-index: 2000;
  transition: left var(--transition-normal);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.mobile-nav-drawer.active {
  left: 0;
}

.drawer-close {
  text-align: right;
  font-size: 24px;
  margin-bottom: 24px;
  cursor: pointer;
}

.drawer-logo {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.drawer-logo img {
  height: 45px;
}

.drawer-links li {
  margin-bottom: 16px;
}

.drawer-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-submenu {
  padding-left: 16px;
  margin-top: 8px;
  display: none;
  border-left: 1px solid #333333;
}

.drawer-submenu.active {
  display: block;
}

.drawer-submenu li {
  margin-bottom: 8px;
}

.drawer-submenu li a {
  font-size: 13px;
  text-transform: none;
}

.drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1999;
}

.drawer-overlay.active {
  display: block;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .header-grid {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
  }
  .main-nav {
    display: none;
  }
  .mobile-header-menu-btn {
    display: block;
  }
  .hero-slider {
    height: 450px;
  }
  .slide-title {
    font-size: 40px;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .sidebar-filter {
    position: static;
    margin-bottom: 24px;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 68px; /* For sticky footer space */
  }
  .logo img {
    height: 70px;
  }
  .mobile-sticky-bar {
    display: grid;
  }
  .announcement-bar {
    display: none;
  }
  .search-container {
    grid-column: span 3;
    order: 3;
    margin-top: 12px;
  }
  .header-grid {
    grid-template-columns: auto 1fr auto;
    row-gap: 0;
  }
  .slide-content {
    width: 100%;
    padding: 24px;
    text-align: center;
    background-color: rgba(255,255,255,0.9);
    border-radius: var(--radius-md);
  }
  .slide-image {
    width: 100%;
  }
  .slide-ctas {
    justify-content: center;
  }
  .specials-banner-grid, .combos-grid, .features-grid, .reviews-grid, .location-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .special-banner-card {
    padding: 24px;
    height: auto;
  }
  .special-banner-content {
    width: 100%;
  }
  .combo-card {
    flex-direction: column;
  }
  .combo-img, .combo-info {
    width: 100%;
  }
  .main-image {
    height: 300px;
  }
  .action-row-buttons {
    flex-direction: column;
  }
  .action-row-buttons .qty-btn-group {
    width: 100%;
  }
  .action-row-buttons .btn {
    width: 100%;
    text-align: center;
  }
}
