/* ==========================================
   AFRICAN CONCEPT STORE
   Afro-Futuriste Minimaliste Design
   ========================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ==========================================
   VARIABLES & COLOR PALETTE
   ========================================== */
:root {
  --terracotta: #c85a2e;
  --terracotta-dark: #a84620;
  --beige: #d4c5b0;
  --beige-light: #e8dfd2;
  --off-white: #f5f1ed;
  --dark-text: #2a2420;
  --light-gray: #f0ebe5;
  --white: #ffffff;
  --gray: #666666;
  --success: #4CAF50;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  
  --font-syne: 'Syne', sans-serif;
  --font-space: 'Space Grotesk', sans-serif;
  
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-space);
  color: var(--dark-text);
  background-color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 100px;
}

@media (max-width: 768px) {
  body {
    padding-top: 140px;
  }
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-syne);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark-text);
}

h1 {
  font-size: clamp(2rem, 8vw, 5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 6vw, 3.5rem);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

p {
  font-family: var(--font-space);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-lg {
  font-size: 1.125rem;
}

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

.highlight {
  color: var(--terracotta);
}

/* ==========================================
   LAYOUT & CONTAINER
   ========================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

/* ==========================================
   BUTTONS & LINKS
   ========================================== */
.btn {
  font-family: var(--font-syne);
  font-weight: 700;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
}

.btn-primary {
  background-color: var(--terracotta);
  color: var(--off-white);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}

.btn-secondary:hover {
  background-color: var(--terracotta);
  color: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background-color: var(--off-white);
  color: var(--terracotta);
}

.btn-white:hover {
  background-color: var(--beige-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: white;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-full {
  width: 100%;
}

.btn-success {
  background-color: var(--success);
  color: white;
}

.btn-success:hover {
  background-color: #45a049;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

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

a:hover {
  color: var(--terracotta-dark);
}

/* ==========================================
   NAVIGATION
   ========================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(245, 241, 237, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.5rem 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  height: 80px;
}

@media (min-width: 768px) {
  .logo {
    height: 100px;
  }
}

.logo img {
  height: 100%;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@media (min-width: 768px) {
  .logo img {
    max-width: 300px;
  }
}

.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  align-items: center;
  height: 80px;
}

@media (min-width: 768px) {
  .nav-links {
    gap: 2rem;
    height: 100px;
  }
}

.nav-links a {
  font-family: var(--font-syne);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--dark-text);
  position: relative;
  padding: 0.5rem 0;
}

@media (min-width: 768px) {
  .nav-links a {
    font-size: 1rem;
  }
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--terracotta);
  transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--terracotta);
}

/* Cart Icon in Navbar */
.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.5rem;
  margin-left: 1rem;
  display: flex;
  align-items: center;
}

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

/* ==========================================
   CART SIDEBAR
   ========================================== */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

@media (min-width: 480px) {
  .cart-sidebar {
    width: 400px;
    right: -400px;
  }
}

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

.cart-header {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f8f8;
}

@media (min-width: 768px) {
  .cart-header {
    padding: 1.5rem;
  }
}

.cart-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
}

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

@media (min-width: 768px) {
  .cart-items {
    padding: 1.5rem;
  }
}

.cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 70px;
  height: 70px;
  background: #f5f5f5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.7rem;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .cart-item-image {
    width: 80px;
    height: 80px;
  }
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .cart-item-title {
    font-size: 1rem;
  }
}

.cart-item-price {
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.cart-item-dimensions {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.5rem;
}

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

.quantity-btn {
  width: 25px;
  height: 25px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.quantity-btn:hover {
  background: #f5f5f5;
}

.item-quantity {
  min-width: 25px;
  text-align: center;
  font-size: 0.9rem;
}

.remove-item {
  color: #ff4444;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  margin-left: auto;
  padding: 0.25rem 0.5rem;
}

.cart-footer {
  padding: 1rem;
  border-top: 1px solid #eee;
  background: #f8f8f8;
}

@media (min-width: 768px) {
  .cart-footer {
    padding: 1.5rem;
  }
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: var(--terracotta);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 0.9rem;
}

.checkout-btn:hover {
  background: var(--terracotta-dark);
}

/* ==========================================
   CHECKOUT MODAL
   ========================================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 3000;
  overflow-y: auto;
  padding: 1rem;
}

.modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f8f8;
  border-radius: 8px 8px 0 0;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
}

.modal-body {
  padding: 1.5rem;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid #eee;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.modal-footer .btn {
  flex: 1;
  min-width: 200px;
}

@media (max-width: 480px) {
  .modal-footer {
    flex-direction: column;
  }
  
  .modal-footer .btn {
    width: 100%;
  }
}

/* Checkout Form */
.checkout-form .form-group {
  margin-bottom: 1.5rem;
}

.checkout-form label {
  display: block;
  font-family: var(--font-syne);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--beige-light);
  border-radius: 0.5rem;
  font-family: var(--font-space);
  font-size: 1rem;
  transition: var(--transition);
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(200, 90, 46, 0.1);
}

/* Order Summary */
.order-summary {
  background: var(--off-white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

.order-summary h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.order-items {
  margin-bottom: 1rem;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--beige-light);
  font-size: 0.9rem;
}

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

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

.order-item-name {
  font-weight: 600;
}

.order-item-meta {
  font-size: 0.8rem;
  color: #666;
}

.order-item-price {
  font-weight: 600;
  color: var(--terracotta);
}

.order-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.2rem;
  padding-top: 1rem;
  border-top: 2px solid var(--beige);
  margin-top: 1rem;
}

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

.overlay.active {
  display: block;
}

/* ==========================================
   NOTIFICATION
   ========================================== */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: var(--success);
  color: white;
  padding: 1rem;
  border-radius: 4px;
  animation: slideIn 0.3s ease;
  z-index: 4000;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 350px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .notification {
    left: auto;
    width: auto;
    min-width: 300px;
  }
}

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

/* ==========================================
   SECTIONS
   ========================================== */
section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

.section-bg-white {
  background-color: var(--white);
}

.section-bg-off-white {
  background-color: var(--off-white);
}

.section-bg-terracotta {
  background-color: var(--terracotta);
}

.section-bg-terracotta-dark {
  background-color: var(--terracotta-dark);
}

.section-bg-terracotta h2,
.section-bg-terracotta h3,
.section-bg-terracotta p,
.section-bg-terracotta-dark h2,
.section-bg-terracotta-dark h3,
.section-bg-terracotta-dark p {
  color: var(--off-white);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--gray);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

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

.hero-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-image {
    height: 500px;
  }
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================
   EVENT BANNER
   ========================================== */
.event-banner {
  text-align: center;
  padding: 3rem 0;
}

.event-banner h2 {
  color: var(--off-white);
  margin: 1rem 0;
}

.event-banner p {
  color: var(--off-white);
  margin-bottom: 2rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .event-banner p {
    font-size: 1.125rem;
  }
}

/* ==========================================
   GRID SYSTEMS
   ========================================== */
.grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .grid {
    gap: 2rem;
  }
}

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

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

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

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================
   CARDS
   ========================================== */
.card {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

@media (min-width: 768px) {
  .card:hover {
    transform: translateY(-8px);
  }
}

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark-text);
  font-size: 1rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .card-image {
    height: 250px;
    font-size: 1.25rem;
  }
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .card-body {
    padding: 1.5rem;
  }
}

.card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .card-body h3 {
    font-size: 1.25rem;
  }
}

.card-body p {
  margin-bottom: 0.75rem;
  color: var(--gray);
  flex: 1;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .card-body p {
    font-size: 1rem;
  }
}

.card-price {
  font-family: var(--font-syne);
  font-weight: 700;
  color: var(--terracotta);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .card-price {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

.card button {
  width: 100%;
  margin-top: auto;
  padding: 0.75rem;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .card button {
    padding: 0.875rem;
    font-size: 0.875rem;
  }
}

/* Product Badges */
.card-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.badge {
  background: #333;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.badge.unique {
  background: var(--terracotta);
}

.badge.limited {
  background: #9a5a30;
}

.product-description {
  font-size: 0.85rem;
  color: #666;
  margin: 0.5rem 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .product-description {
    font-size: 0.9rem;
  }
}

.product-material {
  display: inline-block;
  background: #f0f0f0;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  margin: 0.5rem 0;
}

.product-dimensions {
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  margin-bottom: 0.5rem;
}

/* ==========================================
   FILTERS
   ========================================== */
.filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .filters {
    gap: 1rem;
    margin-bottom: 3rem;
  }
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--terracotta);
  background-color: transparent;
  color: var(--dark-text);
  border-radius: 2rem;
  cursor: pointer;
  font-family: var(--font-syne);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .filter-btn {
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
  }
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--terracotta);
  color: var(--off-white);
}

/* ==========================================
   FORMS
   ========================================== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-syne);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-text);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--beige-light);
  border-radius: 0.5rem;
  font-family: var(--font-space);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(200, 90, 46, 0.1);
}

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

/* ==========================================
   GUIDE PAGE STYLES
   ========================================== */
.guide-header {
  text-align: center;
  padding: 2rem 0 1rem;
}

.payment-step {
  background: var(--white);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  border-top: 4px solid var(--terracotta);
}

@media (min-width: 768px) {
  .payment-step {
    padding: 2rem;
  }
}

.step-number {
  width: 35px;
  height: 35px;
  background: var(--terracotta);
  color: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}

@media (min-width: 768px) {
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

.phone-number {
  font-family: var(--font-syne);
  font-weight: 700;
  color: var(--terracotta);
  font-size: 1rem;
  margin-top: 0.75rem;
  padding: 0.5rem;
  background: var(--beige-light);
  border-radius: 0.5rem;
  word-break: break-all;
}

.instructions-box {
  background: var(--white);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .instructions-box {
    padding: 2.5rem;
  }
}

.instructions-box h3 {
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.instructions-box ol {
  padding-left: 1.5rem;
}

.instructions-box li {
  margin-bottom: 0.75rem;
  font-family: var(--font-space);
}

.delivery-card {
  background: var(--white);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

@media (min-width: 768px) {
  .delivery-card {
    padding: 2rem;
  }
}

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

.delivery-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.delivery-icon {
  width: 35px;
  height: 35px;
  background: var(--terracotta);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .delivery-icon {
    width: 40px;
    height: 40px;
  }
}

.delivery-details p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .delivery-details p {
    font-size: 1rem;
  }
}

.contact-cta {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .contact-cta {
    margin-top: 3rem;
    padding: 2rem;
  }
}

/* ==========================================
   CREATORS SECTION
   ========================================== */
.creators-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.creators-content h2 {
  color: var(--off-white);
  margin: 1rem 0 1.5rem;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
}

.creators-content p {
  color: var(--off-white);
  margin-bottom: 2rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .creators-content p {
    font-size: 1.125rem;
  }
}

/* ==========================================
   PARTNERS SECTION
   ========================================== */
.partner-item {
  text-align: center;
  padding: 0.5rem 1rem;
}

@media (min-width: 768px) {
  .partner-item {
    padding: 1rem 2rem;
  }
}

.partner-name {
  font-size: 1.2rem;
  font-family: var(--font-syne);
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .partner-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.partner-role {
  color: var(--gray);
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .partner-role {
    font-size: 1rem;
  }
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-form,
.contact-info {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .contact-form,
  .contact-info {
    padding: 2rem;
  }
}

.info-item {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .info-item {
    margin-bottom: 2rem;
  }
}

.info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--terracotta);
}

@media (min-width: 768px) {
  .info-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}

.info-item p {
  color: var(--gray);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .info-item p {
    font-size: 1rem;
  }
}

/* FAQ Styles */
.faq-item {
  border-bottom: 2px solid var(--beige-light);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .faq-item {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .faq-item h3 {
    font-size: 1.125rem;
  }
}

.faq-item h3::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--terracotta);
}

.faq-item.active h3::after {
  content: '-';
}

.faq-item p {
  color: var(--gray);
  display: none;
  padding-top: 0.5rem;
  font-size: 0.9rem;
}

.faq-item.active p {
  display: block;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }

.max-w-2xl {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.w-full {
  width: 100%;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background-color: var(--dark-text);
  color: var(--off-white);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  footer {
    padding: 4rem 0 2rem;
    margin-top: 3rem;
  }
}

footer h4 {
  color: var(--off-white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
}

footer p {
  color: var(--off-white);
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
  }
}

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

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

@media (min-width: 768px) {
  .footer-links li {
    margin-bottom: 0.75rem;
  }
}

.footer-links a {
  color: var(--off-white);
  opacity: 0.8;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--terracotta);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    padding-top: 2rem;
    font-size: 0.875rem;
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ==========================================
   CART ICON SVG
   ========================================== */
.cart-icon {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--dark-text);
    transition: var(--transition);
}

.cart-icon:hover {
    color: var(--terracotta);
}

.cart-icon svg {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--terracotta);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}