/* ============================================
   KITHUBINDIA - MODERN E-COMMERCE STYLES
   Premium Football Jersey Store
   ============================================ */

/* ============================================
   CSS VARIABLES & THEME
   ============================================ */
:root {
  /* Primary Colors - Black & White Theme */
  --primary-gradient: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
  --secondary-gradient: linear-gradient(135deg, #2c2c2c 0%, #4d4d4d 100%);
  --accent-gradient: linear-gradient(135deg, #000000 0%, #4d4d4d 100%);
  --success-gradient: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);

  /* Solid Colors */
  --primary-color: #000000;
  --secondary-color: #2c2c2c;
  --accent-color: #4d4d4d;

  /* Indicators */
  --cart-badge-color: #e74c3c;
  /* Red for Cart */
  --wishlist-badge-color: #e91e63;
  /* Pink for Wishlist */
  --sale-badge-color: #c0392b;
  /* Dark Red for Sale */
  --discount-color: #e67e22;
  /* Orange for Discount */
  --success-color: #2ecc71;
  /* Green for In Stock/Success */
  --warning-color: #f1c40f;
  /* Yellow for Warning */
  --danger-color: #e74c3c;
  /* Red for Out of Stock/Delete */

  /* Neutral Colors */
  --dark-bg: #000000;
  --dark-card: #1a1a1a;
  --dark-hover: #333333;
  --text-primary: #000000;
  --text-secondary: #666666;
  --text-muted: #888888;

  /* Light Mode */
  --light-bg: #ffffff;
  --light-card: #ffffff;
  --light-text: #000000;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 0px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 20px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--light-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: var(--primary-color);
  color: white;
}

/* ============================================
   HEADER STYLES (Enhanced)
   ============================================ */
/* ============================================
   HEADER STYLES (Curved & Black)
   ============================================ */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: black;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 0 5%;
  transition: all var(--transition-normal);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.header.scrolled {
  height: 70px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.Logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
  transition: transform var(--transition-fast);
  letter-spacing: -0.5px;
  /* Ensure logo doesn't shrink */
  flex-shrink: 0;
}

/* Header Actions container */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.Logo:hover {
  transform: scale(1.05);
}

.menu-container ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.menu-container ul li {
  position: relative;
  cursor: pointer;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
  font-size: 0.95rem;
}

.menu-container ul li::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width var(--transition-normal);
}

.menu-container ul li:hover,
.menu-container ul li.active {
  color: white;
}

.menu-container ul li:hover::after,
.menu-container ul li.active::after {
  width: 100%;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white !important;
  border-radius: 2px;
  transition: all var(--transition-fast);
}


/* Cart Icon with Badge */
.cart {
  position: relative;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.cart:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: scale(1.1);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--cart-badge-color);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  animation: badge-pop 0.3s ease;
}

@keyframes badge-pop {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* Wishlist Badge - Specific Style */
.wishlist-badge {
  background: var(--wishlist-badge-color) !important;
}

/* ============================================
   HERO SECTION - MINIMALIST
   ============================================ */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Pull up behind header to fill curve gap */
  margin-top: -80px;
  /* Add padding to Compensate for pull-up + original padding */
  padding: calc(4rem + 80px) 5% 4rem; 
  overflow: hidden;
  background: black;
  color: white;
  /* Ensure it sits behind header */
  z-index: 1;
}

/* Subtle Animated Background */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {

  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: white;
  animation: fade-in-up 1s ease;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: white;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-visual {
  position: relative;
  z-index: 2;
  animation: fade-in-right 1s ease;
}

.visual-placeholder {
  width: 500px;
  height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-slow);
  animation: float 6s ease-in-out infinite;
}

.visual-placeholder:hover {
  transform: scale(1.05) rotate(2deg);
}

.visual-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   PRODUCT GRID & CARDS
   ============================================ */
.products-section {
  padding: 4rem 5%;
  background: var(--light-bg);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 0;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.product-card:hover::before {
  opacity: 0.05;
}

.product-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f8f9fa;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--sale-badge-color);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.product-info {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--light-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.price-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-original {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.add-to-cart-btn {
  width: 100%;
  padding: 0.8rem;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.add-to-cart-btn:active {
  transform: translateY(0);
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.categories-section {
  padding: 4rem 5%;
  background: white;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.category-card {
  position: relative;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  transition: all var(--transition-normal);
}

.category-card:hover::before {
  background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.9) 100%);
}

.category-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-image {
  transform: scale(1.1);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  color: white;
}

.category-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.category-description {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 5%;
}

.cart-items {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.cart-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e0e0e0;
  transition: background var(--transition-fast);
}

.cart-item:hover {
  background: rgba(102, 126, 234, 0.02);
}

.cart-item-image {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cart-item-meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qty-btn {
  width: 35px;
  height: 35px;
  border: 2px solid var(--primary-color);
  background: white;
  color: var(--primary-color);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.qty-btn:hover {
  background: var(--primary-color);
  color: white;
}

.qty-input {
  width: 60px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  padding: 0.5rem;
}

.cart-item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.remove-item {
  color: var(--danger-color);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.remove-item:hover {
  color: #c0392b;
  text-decoration: underline;
}

/* Cart Summary */
.cart-summary {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.summary-row.total {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  border-bottom: none;
  padding-top: 1.5rem;
}

.checkout-btn {
  width: 100%;
  padding: 1.2rem;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.checkout-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   FOOTER STYLES (Responsive & Curved)
   ============================================ */
.footer {
  background: black;
  color: white;
  padding: 60px 20px 20px;
  margin-top: 4rem;
  position: relative;
}

.footer-wave {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: black;;
  border-radius: 100% 100% 0 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 20px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: white;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-section ul li:hover {
  color: white;
}

.footer-logo {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  gap: 2px;
}

.footer-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.social-links a:hover {
  background: white;
  color: black;
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
}

.newsletter-form button {
  padding: 12px 24px;
  background: white;
  color: black;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.newsletter-form button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-links li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.footer-bottom-links li:hover {
  color: white;
}

.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
  .footer {
    padding: 40px 16px 16px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* ============================================
   MOBILE RESPONSIVENESS
   ============================================ */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 3rem 5%;
    min-height: auto;
  }

  .hero-content {
    margin-top:40px;
    max-width: 100%;
  }

  .hero-headline {
    font-size: 2rem;
  }
  
  .Logo {
      font-size: 1.4rem; /* Smaller font size on mobile */
  }

  .header-actions {
      gap: 1rem; /* Slightly tighter gap on mobile */
  }

  /* Hide wishlist text or adjust if needed, but icon only is fine */

  .visual-placeholder {
    width: 100%;
    max-width: 350px;
    height: 350px;
    margin-top: 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr); 
    /* Standard gutter spacing (10px to 16px) */
    gap: 10px; 
    /* Standard mobile margins */
    padding: 16px
    gap: 1rem;
    font-size:0.8rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: 250px;
  }

  .cart-item {
    flex-direction: column;
    gap: 1rem;
  }

  .cart-item-image {
    width: 100%;
    height: 200px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    border-radius: 2px;
    transition: all var(--transition-fast);
  }

  .menu-container {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: black;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }

  .menu-container.active {
    max-height: 400px;
  }

  .menu-container ul {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

.footer-bottom-links li:hover {
  color: white;
}

.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
  .footer {
    padding: 40px 16px 16px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* ============================================
   MOBILE RESPONSIVENESS
   ============================================ */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 3rem 5%;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .visual-placeholder {
    width: 100%;
    max-width: 350px;
    height: 350px;
    margin-top: 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: 250px;
  }

  .cart-item {
    flex-direction: column;
    gap: 1rem;
  }

  .cart-item-image {
    width: 100%;
    height: 200px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    border-radius: 2px;
    transition: all var(--transition-fast);
  }

  .menu-container {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: black;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }

  .menu-container.active {
    max-height: 400px;
  }

  .menu-container ul {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   FORM STYLES (Global)
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
textarea.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1.5px solid #e5e5e5;
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--primary-color);
  background: #fcfcfc;
  transition: all var(--transition-fast);
  font-family: inherit;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-input:focus,
.form-select:focus,
textarea.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.form-input::placeholder {
  color: #a0a0a0;
  font-weight: 400;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox & Radio generic enhancements if needed later */