:root {
  --primary-dark: #131921;
  --primary-medium: #232f3e;
  --primary-soft: #6c8fa3;
  --primary-soft-dark: #4f6e7d;
  --accent: #b07a4f;
  --accent-light: #d9cbbe;
  --bg-light: #efede8;
  --bg-white: #ffffff;
  --text-dark: #2f2f36;
  --text-medium: #4a4a4a;
  --text-light: #666666;
  --ramadan-gold: #c9a84a;
  --ramadan-green: #2a5c4a;
  --ramadan-bg: #f9f3e7;
  --border-light: #e0e0e0;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  background: var(--bg-light);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dark);
}

.container {
  width: min(1400px, 96%);
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

button {
  min-height: 44px;
  cursor: pointer;
  border-radius: 8px;
  border: none;
  font-weight: 500;
  transition: var(--transition);
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--primary-medium);
  color: white;
  font-size: 0.85rem;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-links {
  display: flex;
  gap: 20px;
}

.topbar-links a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.topbar-links a:hover {
  opacity: 1;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--primary-dark);
  color: white;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-light);
  white-space: nowrap;
}

.logo span {
  color: white;
}

.nav-toggle {
  display: none;
  background: none;
  color: white;
  font-size: 1.75rem;
  padding: 0 10px;
  border: none;
}

.search-bar {
  flex: 1;
  display: flex;
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  max-width: 600px;
}

.search-bar input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.search-bar button {
  background: var(--accent);
  color: white;
  padding: 0 28px;
  border-radius: 0;
  min-height: 100%;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.search-bar button:hover {
  background: var(--primary-soft-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-actions a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

#cartCount {
  background: var(--accent);
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-left: 4px;
}

/* ===== CATEGORY STRIP ===== */
.category-strip {
  background: var(--primary-medium);
  padding: 12px 0;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 30px;
  overflow-x: visible;
  max-width: 800px;
  margin: 0 auto;
}

.categories a {
  color: white;
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 0;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: opacity 0.2s;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.categories a:hover {
  opacity: 1;
  border-bottom-color: var(--accent);
}

/* ===== HERO SECTION ===== */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("assets/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 24px;
  opacity: 0.95;
}

.btn-primary {
  background: var(--accent);
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

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

/* ===== SECTION STYLES ===== */
.section {
  padding: 100px 0;
}

.section.light-bg {
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ===== SECTION HEADER WITH VIEW ALL LINK ===== */
.section-header-with-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-header-with-link > div {
  flex: 1;
  text-align: center;
}

.section-header-with-link h2 {
  margin-bottom: 0.25rem;
}

.section-header-with-link h3.section-subtitle {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--text-medium);
  font-size: 1.1rem;
}

.section-header-with-link .view-all-link {
  align-self: center;
  white-space: nowrap;
}

.view-all-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 400;
  transition: var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  border: 2px solid transparent;
}

.view-all-link:hover {
  background: var(--accent);
  color: white;
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.view-all-link:active {
  transform: translateX(2px);
}

.view-all-link:hover::after {
  content: " →";
  animation: slideArrow 0.3s ease;
}

@keyframes slideArrow {
  0% { opacity: 0; transform: translateX(-5px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* ===== PRODUCT SECTIONS ===== */
.product-grid,
#trendingGrid,
#productGrid,
#dealsGrid,
.hampers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 280px));
  gap: 24px;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card,
.hamper-card {
  width: 100%;
  max-width: 280px;
  background: var(--bg-white);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.product-card:hover,
.hamper-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card img,
.hamper-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

#trendingGrid .product-card img {
  aspect-ratio: 3 / 4;
  max-height: 280px;
}

.product-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 6px 0;
}

.add-to-cart {
  width: 100%;
  padding: 10px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}

.add-to-cart:hover {
  background: var(--primary-soft-dark);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}

.trending {
  background: #f39c12;
}

.deal {
  background: var(--ramadan-green);
}

/* ===== CATEGORIES SHOWCASE ===== */
.categories-showcase {
  padding: 80px 0;
  background: var(--bg-white);
}

.categories-showcase h2 {
  text-align: center;
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.category-card {
  background: var(--bg-light);
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--accent-light);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.category-card h3 {
  font-size: 1.1rem;
  margin: 0;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 60px 0;
  background: var(--primary-medium);
  color: white;
}

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

.feature {
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: white;
}

.feature p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* ===== RAMADAN HAMPERS SECTION ===== */
.ramadan-hampers-section {
  padding: 100px 0;
  background: var(--ramadan-bg);
}

.hamper-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.hamper-card.featured {
  border: 2px solid var(--ramadan-gold);
  transform: scale(1.02);
}

.hamper-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--ramadan-gold);
  color: var(--text-dark);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.hamper-badge.premium {
  background: var(--ramadan-green);
  color: white;
}

.hamper-card h3 {
  font-size: 1.3rem;
  margin: 12px 0 16px;
  text-align: center;
}

.hamper-items-info {
  background: var(--bg-light);
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.items-count {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.hamper-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ramadan-green);
}

.hamper-items-list {
  margin-bottom: 16px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 8px;
}

.hamper-items-list ul {
  list-style: none;
}

.hamper-items-list li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-light);
  color: var(--text-medium);
  font-size: 0.9rem;
}

.hamper-items-list li:last-child {
  border-bottom: none;
}

.quantity-selector {
  margin: 16px 0;
}

.quantity-selector label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 0.9rem;
}

.quantity-buttons {
  display: flex;
  gap: 6px;
}

.qty-option {
  flex: 1;
  padding: 8px;
  background: #f5f5f5;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-weight: 600;
  min-height: 40px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.qty-option:hover {
  background: var(--accent-light);
}

.qty-option.active {
  background: var(--ramadan-green);
  border-color: var(--ramadan-green);
  color: white;
}

.add-hamper-btn {
  width: 100%;
  padding: 14px;
  background: var(--ramadan-green);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.add-hamper-btn:hover {
  background: var(--primary-soft-dark);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
  background: var(--accent-light);
  padding: 100px 0;
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.newsletter-content p {
  color: var(--text-medium);
  margin-bottom: 10px;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 500px;
  margin: 20px auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--ramadan-green);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--primary-soft-dark);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--accent-light);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
  font-size: 0.9rem;
}

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

.social-links {
  display: flex;
  flex-direction: column;
}

.social-links a {
  display: inline-block;
  margin-bottom: 10px;
}

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

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--primary-medium);
    padding: 40px 0;
    text-align: center;
    color: white;
    border-bottom: 3px solid var(--accent);
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: white;
}

.breadcrumbs {
    font-size: 1rem;
    color: var(--accent-light);
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
    color: var(--accent-light);
}

/* ===== FILTER BAR ===== */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0 40px;
    padding: 20px 0;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.filter-btn {
    background: transparent;
    color: var(--text-dark);
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    min-height: 45px;
}

.filter-btn:hover {
    background: var(--accent-light);
    color: var(--primary-dark);
}

.filter-btn.active {
    background: var(--accent);
    color: white;
    box-shadow: var(--shadow-sm);
}

/* ===== PRODUCT GRID FOR CATEGORIES PAGE ===== */
#productGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 40px 0;
    justify-items: center;
}

@media (min-width: 768px) {
    #productGrid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    #productGrid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1200px) {
  #trendingGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }

  .hampers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-actions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
  }

  .nav-actions.active {
    display: flex;
  }

  .search-bar {
    order: 3;
    width: 100%;
    max-width: none;
  }

  .categories {
    gap: 16px 20px;
    max-width: 90%;
  }

  .hamper-card.featured {
    transform: scale(1);
  }

  .hero {
    padding: 80px 0;
    min-height: 70vh;
  }

  .newsletter-form {
    flex-direction: column;
    padding: 0 20px;
  }
  
  .product-grid,
  #trendingGrid,
  #productGrid,
  #dealsGrid,
  .hampers-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
    gap: 20px;
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .page-header {
    padding: 30px 0;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .filter-bar {
    border-radius: 30px;
    padding: 15px;
    gap: 10px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    min-height: 40px;
  }
  
  #productGrid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }

  .section-header-with-link {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  
  .section-header-with-link > div {
    text-align: left;
    flex: 1;
  }
  
  .view-all-link {
    align-self: center;
    text-align: right;
  }

  .section,
  .ramadan-hampers-section,
  .newsletter,
  .categories-showcase,
  .features {
    padding: 70px 0;
  }
  
  h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .topbar-inner {
    flex-direction: column;
    text-align: center;
  }

  .topbar-links {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .categories {
    gap: 12px 15px;
    max-width: 100%;
  }
  
  .categories a {
    font-size: 0.85rem;
    padding: 6px 0;
  }

  .hamper-card h3 {
    font-size: 1.2rem;
  }

  .hamper-price {
    font-size: 1.2rem;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 300px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-grid {
    gap: 30px;
  }
  
  .social-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .social-links a {
    margin-right: 15px;
    margin-bottom: 0;
  }

  .filter-bar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .filter-btn {
    flex: 0 1 auto;
    min-width: 120px;
    text-align: center;
  }
  
  #productGrid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 20px auto;
  }
}

/* ===== ABOUT PAGE SPECIFIC CSS ===== */

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.about-image img:hover {
  transform: scale(1.02);
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--primary-dark);
  position: relative;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--accent);
}

.about-content p {
  color: var(--text-medium);
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.values-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.value-card p {
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-card h3 {
  font-size: 1.3rem;
  margin: 20px 0 5px;
  color: var(--primary-dark);
}

.team-card p {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Media Queries*/
@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 700px;
  }
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image {
    order: 1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .about-content {
    order: 2;
    text-align: center;
  }
  
  .about-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .about-section,
  .values-section,
  .team-section {
    padding: 60px 0;
  }
  
  .about-content h2 {
    font-size: 1.8rem;
  }
  
  .about-content p {
    font-size: 1rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
  
  .value-card {
    padding: 30px 20px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    gap: 30px;
  }
  
  .team-card h3 {
    font-size: 1.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .value-icon {
    font-size: 2.5rem;
  }
  
  .value-card h3 {
    font-size: 1.2rem;
  }
  
  .value-card p {
    font-size: 0.9rem;
  }
  
  .team-card h3 {
    font-size: 1.1rem;
  }
  
  .team-card p {
    font-size: 0.9rem;
  }
}
/* ===== CONTACT PAGE SPECIFIC CSS ===== */

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Info */
.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
  position: relative;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.contact-info > p {
  color: var(--text-medium);
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  transition: var(--transition);
}

.info-item:hover {
  transform: translateX(5px);
}

.info-icon {
  font-size: 2rem;
  min-width: 50px;
  height: 50px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary-dark);
}

.info-item p {
  color: var(--text-medium);
  margin-bottom: 5px;
  font-size: 1rem;
}

/* Contact Form */
.contact-form {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-dark);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-primary {
  background: var(--accent);
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: 10px;
}

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

/* Map Section */
.map-section {
  padding: 0 0 80px;
}

.map-placeholder {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 1200px;
  margin: 0 auto;
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

/* Media Queries - Contact page */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form {
    order: 1;
  }
  
  .contact-info h2::after {
    left: 0;
  }
}

@media (max-width: 768px) {
  .contact-section,
  .map-section {
    padding: 60px 0;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .contact-info h2 {
    font-size: 1.8rem;
  }
  
  .contact-info > p {
    font-size: 1rem;
  }
  
  .info-item {
    gap: 15px;
  }
  
  .info-icon {
    font-size: 1.5rem;
    min-width: 45px;
    height: 45px;
  }
  
  .map-placeholder iframe {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .info-item h4 {
    font-size: 1rem;
  }
  
  .info-item p {
    font-size: 0.9rem;
  }
  
  .btn-primary {
    padding: 12px 24px;
    font-size: 1rem;
  }
  
  .map-placeholder iframe {
    height: 250px;
  }
}
/* ===== CART PAGE CSS ===== */
.cart-section {
  padding: 40px 0;
}

.cart-section h2 {
  margin-bottom: 30px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
}

.cart-item img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--accent);
  font-weight: 700;
  margin-top: 5px;
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #999;
  padding: 8px 12px;
}

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

.cart-summary h3 {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
}

.cart-summary button {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

#clearCartBtn {
  background: none;
  border: 2px solid #ddd;
  color: #666;
}

#clearCartBtn:hover {
  background: #ff4444;
  border-color: #ff4444;
  color: white;
}

#checkoutBtn {
  background: var(--ramadan-green);
  border: none;
  color: white;
}

#checkoutBtn:hover {
  background: var(--primary-soft-dark);
}

@media (max-width: 768px) {
  .cart-section {
    padding: 30px 0;
  }
  
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .cart-item {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .cart-item img {
    width: 70px;
    height: 70px;
  }
}
