/* MidwifePlus Brand Kit CSS Variables */
:root {
  /* Primary Brand Colors */
  --brand-primary: #F7C948;
  --brand-primary-light: #FCD34D;
  --brand-dark: #1A1A1A;
  --brand-text: #3F3A36;

  /* Background Colors */
  --bg-cream: #FFF7E9;
  --bg-beige: #FBF5E3;
  --bg-light: #FFFFFF;

  /* Gray Scale */
  --gray-100: #F3F3F3;
  --gray-200: #E5E5E5;
  --gray-400: #A1A1A1;
  --gray-700: #4B4B4B;

  /* Border Radius */
  --radius-card: 12px;
  --radius-button: 8px;

  /* Spacing */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
  --container-padding: 0 20px;

  /* Typography */
  --font-family: 'Inter', sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;

  /* Shadows */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  color: var(--brand-text);
  line-height: 1.6;
  background-color: var(--bg-light);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--brand-dark);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: var(--font-weight-black);
}

h2 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
}

p {
  margin-bottom: 1rem;
  color: var(--brand-text);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-button);
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--brand-primary);
  color: var(--brand-dark);
  box-shadow: var(--shadow-light);
}

.btn-primary:hover {
  background-color: var(--brand-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background-color: var(--bg-light);
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
}

.btn-secondary:hover {
  background-color: #FFF7D1;
  color: var(--brand-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
}

.btn-outline:hover {
  background-color: var(--brand-primary);
  color: var(--brand-dark);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Navigation */
.navbar {
  background-color: var(--bg-light);
  padding: 1rem 0;
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 40px;
  width: auto;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--brand-dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--brand-text);
  font-weight: var(--font-weight-medium);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--brand-primary);
}

/* Hero Section */
.hero {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-beige) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 500px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--brand-dark);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--brand-text);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-placeholder {
  background-color: var(--bg-light);
  border-radius: var(--radius-card);
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
  width: 100%;
  max-width: 400px;
}

.hero-icon {
  width: 80px;
  height: 80px;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
}

.slides {
  position: relative;
  width: 100%;
  min-height: 600px;
}

.slide {
  display: none !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: scale(1.02);
}

.slide.active {
  display: block !important;
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 600px;
  padding: 80px 0;
}

.slide-text {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.slide.active .slide-text {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #ffffff;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.slide-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.slide.active .slide-image {
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.slide-icon-wrapper {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(247, 201, 72, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.slide-icon-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 70px rgba(247, 201, 72, 0.4);
}

.slide-icon {
  width: 120px;
  height: 120px;
  color: white;
  stroke-width: 1.5;
}

/* Slider Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.slider-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.slider-arrow:hover {
  background: var(--brand-primary);
  transform: scale(1.1);
}

.slider-arrow:hover svg {
  color: white;
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
  color: var(--brand-dark);
  transition: color 0.3s ease;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(0, 0, 0, 0.4);
}

.dot.active {
  background: var(--brand-primary);
  width: 36px;
  border-radius: 6px;
}

/* Slider Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slider Responsive */
@media (max-width: 768px) {
  .slides {
    min-height: 700px;
  }
  
  .slide-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 60px 0;
    min-height: 700px;
  }
  
  .slide-title {
    font-size: 2.5rem;
  }
  
  .slide-subtitle {
    font-size: 1.1rem;
  }
  
  .slide-buttons {
    justify-content: center;
  }
  
  .slide-icon-wrapper {
    width: 200px;
    height: 200px;
  }
  
  .slide-icon {
    width: 80px;
    height: 80px;
  }
  
  .slider-arrow {
    width: 44px;
    height: 44px;
  }
  
  .slider-arrow svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .slides {
    min-height: 650px;
  }
  
  .slide-content {
    min-height: 650px;
    padding: 40px 0;
  }
  
  .slide-title {
    font-size: 2rem;
  }
  
  .slide-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .slide-icon-wrapper {
    width: 160px;
    height: 160px;
  }
  
  .slide-icon {
    width: 60px;
    height: 60px;
  }
  
  .slider-nav {
    display: none;
  }
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--brand-dark);
}

/* Values Section */
.values {
  padding: var(--section-padding);
  background-color: var(--bg-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-card);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

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

.value-icon {
  background-color: var(--bg-cream);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon .icon {
  width: 32px;
  height: 32px;
  color: var(--brand-primary);
}

.value-title {
  margin-bottom: 1rem;
  color: var(--brand-dark);
}

.value-text {
  color: var(--brand-text);
}

/* Categories Section */
.categories {
  padding: var(--section-padding);
  background-color: var(--bg-cream);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.category-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-card);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.category-image {
  background-color: var(--bg-beige);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.category-icon {
  width: 48px;
  height: 48px;
  color: var(--brand-primary);
}

.category-title {
  margin-bottom: 1rem;
  color: var(--brand-dark);
}

.category-text {
  margin-bottom: 1.5rem;
  color: var(--brand-text);
}

/* Featured Products */
.featured-products {
  padding: var(--section-padding);
  background-color: var(--bg-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.product-image {
  height: 250px;
  background-color: var(--bg-beige);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-placeholder {
  text-align: center;
}

.product-icon {
  width: 64px;
  height: 64px;
  color: var(--brand-primary);
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  margin-bottom: 0.5rem;
  color: var(--brand-dark);
}

.product-description {
  margin-bottom: 1rem;
  color: var(--brand-text);
  font-size: 0.9rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.product-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* How It Works */
.how-it-works {
  padding: var(--section-padding);
  background-color: var(--bg-beige);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--brand-primary);
  color: var(--brand-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin: 0 auto 1.5rem;
}

.step-title {
  margin-bottom: 1rem;
  color: var(--brand-dark);
}

.step-text {
  color: var(--brand-text);
}

/* Testimonials */
.testimonials {
  padding: var(--section-padding);
  background-color: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--bg-cream);
  padding: 2rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-light);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--brand-text);
  font-size: 1.1rem;
}

.testimonial-author strong {
  color: var(--brand-dark);
  font-weight: var(--font-weight-semibold);
}

.testimonial-author span {
  color: var(--brand-primary);
  font-size: 0.9rem;
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.nav-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: var(--radius-button);
  transition: all 0.3s ease;
  color: var(--brand-dark);
}

.nav-icon-btn:hover {
  background-color: var(--bg-beige);
  transform: translateY(-2px);
}

.nav-icon-btn:active {
  transform: translateY(0);
  background-color: var(--brand-primary);
  color: var(--brand-dark);
}

.nav-icon-btn i {
  width: 24px;
  height: 24px;
}

.cart-badge {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  background: var(--brand-primary);
  color: var(--brand-dark);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  display: none;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: var(--bg-light);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.cart-header h3 {
  margin: 0;
  color: var(--brand-dark);
  font-weight: var(--font-weight-semibold);
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-button);
  transition: background-color 0.3s ease;
}

.close-btn:hover {
  background-color: var(--bg-beige);
}

.close-btn i {
  width: 20px;
  height: 20px;
}

.cart-content {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
}

.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--gray-600);
}

.empty-cart i {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  color: var(--gray-400);
}

.empty-cart p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-button);
  object-fit: cover;
}

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

.cart-item-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
  color: var(--brand-dark);
  font-weight: var(--font-weight-medium);
}

.cart-item-price {
  margin: 0 0 0.5rem 0;
  color: var(--brand-primary);
  font-weight: var(--font-weight-semibold);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-quantity button {
  background: var(--bg-beige);
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: var(--font-weight-bold);
}

.cart-item-quantity span {
  font-weight: var(--font-weight-medium);
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--gray-500);
  border-radius: var(--radius-button);
}

.cart-item-remove:hover {
  background-color: var(--bg-beige);
  color: #dc3545;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--brand-dark);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* User Menu */
.user-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--bg-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-medium);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 0.5rem;
}

.user-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-menu-content {
  padding: 1rem 0;
}

.user-menu-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: var(--brand-dark);
  font-weight: var(--font-weight-semibold);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 0.5rem;
}

.user-menu-header i {
  width: 20px;
  height: 20px;
}

.user-menu-items {
  display: flex;
  flex-direction: column;
}

.user-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.3s ease;
}

.user-menu-item:hover {
  background-color: var(--bg-beige);
  color: var(--brand-dark);
}

.user-menu-item i {
  width: 18px;
  height: 18px;
}

.user-menu-divider {
  height: 1px;
  background-color: var(--gray-200);
  margin: 0.5rem 0;
}

/* Cart Overlay */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Notifications */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-medium);
  z-index: 1001;
  animation: slideInRight 0.3s ease;
}

.notification-success {
  border-left: 4px solid #28a745;
}

.notification-error {
  border-left: 4px solid #dc3545;
}

.notification-info {
  border-left: 4px solid var(--brand-primary);
}

.notification-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1rem;
}

.notification-content button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--radius-button);
  color: var(--gray-500);
}

.notification-content button:hover {
  background-color: var(--bg-beige);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Footer */
.footer {
  background-color: var(--brand-dark);
  color: var(--bg-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand-name {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--bg-light);
}

.footer-description {
  color: var(--gray-400);
  line-height: 1.6;
}

.footer-title {
  color: var(--bg-light);
  margin-bottom: 1rem;
  font-weight: var(--font-weight-semibold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--brand-primary);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--brand-primary);
}

.social-link i {
  width: 20px;
  height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }
  
  .values-grid,
  .categories-grid,
  .products-grid,
  .steps-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .product-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .product-buttons {
    flex-direction: column;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.footer-link:focus,
.social-link:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* Loading Animation for Icons */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.value-card,
.category-card,
.product-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* UK Phone Input Styles */
.phone-input-uk {
  display: flex;
  align-items: center;
}

.phone-input-uk .country-code {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-right: none;
  border-radius: var(--radius-button) 0 0 var(--radius-button);
  padding: 0.75rem 1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--brand-dark);
  white-space: nowrap;
  font-size: 0.95rem;
}

.phone-input-uk .form-input {
  border-radius: 0 var(--radius-button) var(--radius-button) 0;
  padding-left: 1rem;
}

.phone-input-uk .form-input::placeholder {
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* Products Loading & Error States */
.products-loading,
.products-error,
.no-products {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--gray-500);
}

.products-loading svg,
.products-error svg,
.no-products svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--gray-400);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--brand-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--brand-primary);
  color: var(--brand-dark);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
}

.compare-price {
  text-decoration: line-through;
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
}
