/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  /* Warm Earthy Tones */
  --primary-red: #d32f2f;
  --primary-red-dark: #b71c1c;
  --accent-yellow: #ffb300;
  --accent-yellow-light: #ffecb3;
  --text-dark: #2c1a12;
  --text-light: #5d4037;
  --bg-color: #faf8f5;
  --white: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.95);
  
  --spacing-1: 0.5rem;
  --spacing-2: 1rem;
  --spacing-3: 1.5rem;
  --spacing-4: 2rem;
  --spacing-6: 3rem;
  --spacing-8: 4rem;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 16px rgba(100,50,0,0.08);
  --shadow-lg: 0 16px 32px rgba(100,50,0,0.12);
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Base Styles */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-2);
}

.section {
  padding: var(--spacing-6) 0;
}

/* Navigation */
.navbar {
  background: rgba(15, 5, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 100% !important; /* Stretching edge to edge */
  padding: 0 4vw !important; /* Left alignment */
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo i {
  color: var(--white);
  filter: none;
}

.nav-links {
  display: flex;
  gap: var(--spacing-4);
  align-items: center;
  margin-left: auto;
  margin-right: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--accent-yellow);
  transition: all 0.3s ease;
  position: relative;
  font-size: 1rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #000000; /* Black underline as requested */
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-red);
}

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

.cart-icon {
  position: relative;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  border: none;
}

.cart-icon:hover {
  background: transparent;
  transform: none;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--accent-yellow);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  border: none;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(211, 47, 47, 0.4);
}

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

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

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}
.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.05);
  animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  z-index: -1;
}

.hero-content {
  color: var(--white);
  max-width: 600px;
  animation: fadeUp 1s ease-out;
  margin-left: 2rem; /* Moved right to prevent cutoff */
}

@media (max-width: 768px) {
  .hero-content {
    margin-left: 0; 
    padding: 0 1.5rem; /* Increased padding to ensure no cutoff on mobile */
  }
}


.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-2);
  display: block;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: var(--spacing-3);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-4);
  opacity: 0.9;
}

/* Badges */
.badge {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-veg {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.badge-nonveg {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

/* Section Titles */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-6);
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: var(--spacing-2);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-yellow);
  border-radius: var(--radius-full);
}

/* Features Band */
.features-band {
  background-color: var(--accent-yellow);
  color: var(--text-dark);
  padding: var(--spacing-3) 0;
  border-top: 1px solid rgba(211, 47, 47, 0.1);
  border-bottom: 1px solid rgba(211, 47, 47, 0.1);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.feature-item:nth-child(2) { animation-delay: 0.1s; }
.feature-item:nth-child(3) { animation-delay: 0.2s; }
.feature-item:nth-child(4) { animation-delay: 0.3s; }

@keyframes popIn {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.features-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--spacing-4);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--primary-red);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-6);
}

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

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

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

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

.product-img-wrap {
  position: relative;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.product-content {
  padding: var(--spacing-3);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.4;
  flex-grow: 1;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-red);
}

/* Filters */
.filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--spacing-4);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.8rem;
  border-radius: var(--radius-full);
  border: 1px solid #ddd;
  background: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary-red);
  color: var(--white);
  border-color: var(--primary-red);
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: var(--spacing-6) 0 var(--spacing-2) 0;
  margin-top: auto;
}

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

.footer-col h3 {
  color: var(--accent-yellow);
  margin-bottom: var(--spacing-2);
  font-family: 'Outfit', sans-serif;
}

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

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

.footer-links a {
  color: #ccc;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-yellow);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--white);
}

.social-icon:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: var(--spacing-3);
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #888;
  font-size: 0.9rem;
}

/* Shared Inner Pages Header */
.page-header {
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-red-dark) 100%);
  color: var(--white);
  padding: var(--spacing-8) 0 var(--spacing-6);
  text-align: center;
  margin-bottom: var(--spacing-4);
}

.page-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.breadcrumb {
  color: var(--accent-yellow);
  font-weight: 500;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

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

/* Checkout / Cart Page */
.checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-4);
}

@media (max-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

.cart-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-4);
  box-shadow: var(--shadow-sm);
}

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

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

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

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

.cart-item-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  color: var(--primary-red);
  font-weight: 700;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f5f5f5;
  border-radius: var(--radius-full);
  padding: 0.25rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.qty-input {
  width: 30px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.remove-btn {
  background: none;
  border: none;
  color: #ff5252;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.remove-btn:hover {
  transform: scale(1.1);
}

.order-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-4);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.summary-total {
  font-size: 1.2rem;
  font-weight: 800;
  border-top: 2px dashed #ddd;
  padding-top: 1rem;
  margin-top: 1rem;
}

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    transition: left 0.3s ease;
  }
  .nav-links.active { left: 0; }
  .mobile-menu-btn { display: block; }
}

.empty-cart {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
}

.empty-cart i {
  font-size: 4rem;
  color: #ddd;
  margin-bottom: 1rem;
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--text-dark);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
  transform: translateX(0);
}

/* Glassmorphism & Checkout Background styling */
body.checkout-page {
  background-image: url('../images/checkout-bg.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  min-height: 100vh;
}
/* Customer Reviews Section */
.reviews-section {
  background-color: var(--white);
  padding: var(--spacing-8) 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-4);
  margin-top: var(--spacing-6);
}

.review-card {
  background: var(--bg-color);
  padding: var(--spacing-4);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 1px solid rgba(0,0,0,0.03);
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-yellow-light);
}

.review-card:nth-child(2) {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-yellow-light);
  background: var(--white);
}

.review-card:nth-child(2):hover {
  transform: translateY(-15px) scale(1.08);
}

@media (max-width: 768px) {
  .review-card:nth-child(2) {
    transform: scale(1);
  }
  .review-card:nth-child(2):hover {
    transform: translateY(-10px);
  }
}


.quote-icon {
  font-size: 2.5rem;
  color: var(--accent-yellow);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.review-stars {
  color: var(--accent-yellow);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-headline {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.review-text {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
}

.customer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.customer-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.customer-name {
  font-weight: 700;
  color: var(--primary-red);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}

/* Premium Gift Banner Section */
.gift-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  padding: var(--spacing-8) var(--spacing-2);
  margin-top: 0;
}

.gift-banner-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('../images/gift_packing_bg.png');
  background-size: cover;
  background-position: center;
  transition: transform 8s ease; /* Long slow zoom */
  z-index: -2;
}

.gift-banner.is-visible .gift-banner-bg {
  transform: scale(1.1);
}

.gift-banner-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.4)), rgba(30, 10, 0, 0.3);
  z-index: -1;
}

.gift-banner-content {
  max-width: 800px;
  z-index: 1;
  margin: 0 auto; /* Center the content box within the container */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center all children items */
}

.gift-banner-small {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-yellow);
  margin-bottom: 1.5rem;
  display: block;
}

.gift-banner-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.gift-banner-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
}

.gift-banner .btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  background-color: var(--primary-red);
  box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

.gift-banner .btn-primary:hover {
  background-color: #ff3d00; /* Slightly brighter orange-red */
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(211, 47, 47, 0.4);
}


body.checkout-page::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: -2;
}
body.checkout-page .navbar {
  background: rgba(25, 10, 5, 0.4) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
body.checkout-page .navbar * {
  color: white !important;
}
.glass-panel {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
}
body.checkout-page .page-header {
  background: transparent;
  padding: 1rem 0;
}
body.checkout-page .page-title {
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  color: white;
}
body.checkout-page .form-label,
body.checkout-page h2, 
body.checkout-page span {
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

/* Modern Delivery Tag */
.delivery-link {
  position: absolute;
  top: 15%;
  right: 6%;
  z-index: 100;
  text-decoration: none !important;
}

.delivery-sticker {
  background: var(--accent-yellow);
  color: var(--text-dark);
  padding: 0.8rem 1.4rem;
  border-radius: 40px 0 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15), 0 0 0 4px rgba(255, 179, 0, 0.2);
  border: 1.5px solid var(--primary-red);
  animation: elegantFloat 4s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.delivery-sticker::before {
  content: '\f0d1';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--primary-red);
}

.delivery-sticker:hover {
  transform: translateY(-5px) scale(1.05);
  background: var(--white);
  box-shadow: 0 15px 30px rgba(211, 47, 47, 0.15);
}

.delivery-sticker span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

.delivery-sticker .highlight {
  font-size: 1.1rem;
  color: var(--primary-red);
  font-family: 'Playfair Display', serif;
  margin: 1px 0;
  line-height: 1;
}

.delivery-sticker .small {
  font-size: 0.6rem;
  opacity: 0.7;
  text-transform: uppercase;
}

@keyframes elegantFloat {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50% { transform: translateY(-20px) rotate(-2deg); }
}

@media (max-width: 768px) {
  .delivery-link {
    top: 10%;
    right: 4%;
  }
  .delivery-sticker {
    padding: 0.8rem 1.4rem;
  }
  .delivery-sticker .highlight {
    font-size: 1.1rem;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  color: #fff;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    font-size: 28px;
  }
}
