:root {
  --wf-primary: #0071dc;
  --wf-secondary: #ffc220;
  --wf-text-light: #ffffff;
  --wf-text-dark: #2e2f32;
  --wf-bg-body: #f5f7f9;
  --wf-border: #e0e4e9;
  --wf-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --wf-shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--wf-bg-body);
  color: var(--wf-text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Banner Component */
.hero-banner {
  position: relative;
  width: 100%;
  30 │   height: 530px;
  31 │   background: radial-gradient(circle at 70% 50%, #0081f2 0%, #0071dc 40%, #0056a6 100%);
  32 │   display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-container {
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  43 │   padding: 0 80px;
  44 │   display: flex;
  align-items: center;
  position: relative;
}

.banner-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out forwards;
}

.banner-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--wf-text-light);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;600;700;800&display=swap');

.banner-headline {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  line-height: 1.05;
  font-weight: 700;
  color: var(--wf-text-light);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.banner-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 480px;
}

.banner-actions {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--wf-secondary);
  color: var(--wf-text-dark);
  box-shadow: 0 4px 0 #e5ae1b;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #e5ae1b;
}

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

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Grocery Visuals */
.banner-visual {
  flex: 1.2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.grocery-bag-container {
  position: relative;
  width: 480px;
  height: 600px;
  margin-bottom: -40px;
  animation: slideInRight 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.3));
}

.grocery-bag {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #e3c192 0%, #d4b483 100%);
  border-radius: 4px;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid rgba(255,255,255,0.2);
}

.bag-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.bag-fold {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #c5a374;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.bag-contents {
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 10;
}

/* Placeholder item styles */
.grocery-item {
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.item-milk {
  width: 90px;
  height: 180px;
  background: linear-gradient(to bottom, #ffffff 0%, #f0f0f0 100%);
  border-radius: 8px 8px 4px 4px;
  transform: translate(20px, 20px) rotate(-8deg);
  z-index: 5;
  box-shadow: -5px 5px 15px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item-milk::before {
  content: "";
  width: 40px;
  height: 20px;
  background: #0071dc;
  margin-top: 10px;
  border-radius: 2px;
}

.item-milk::after {
  content: "FRESH MILK";
  font-size: 8px;
  font-weight: 900;
  color: #0071dc;
  margin-top: 20px;
  letter-spacing: 1px;
}

.item-bread {
  width: 110px;
  height: 220px;
  background: linear-gradient(to bottom, #e29c5c 0%, #c17d3d 100%);
  border-radius: 30px 30px 10px 10px;
  transform: translate(-40px, 0) rotate(5deg);
  z-index: 4;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.3);
}

.item-bread::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 10%;
  width: 80%;
  height: 2px;
  background: rgba(0,0,0,0.1);
  box-shadow: 0 15px 0 rgba(0,0,0,0.1), 0 30px 0 rgba(0,0,0,0.1);
}

.item-carrot {
  width: 20px;
  height: 160px;
  background: linear-gradient(to bottom, #ff8c00 0%, #e67e22 100%);
  border-radius: 10px 10px 50% 50%;
  transform: translate(-10px, 40px) rotate(25deg);
  z-index: 8;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
}

.item-carrot::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 30px;
  background: #2e7d32;
  border-radius: 50% 50% 0 0;
  filter: blur(1px);
}

.item-apple {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 30% 30%, #ff4d4d 0%, #b30000 100%);
  border-radius: 50%;
  transform: translate(-80px, 120px);
  z-index: 12;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.item-apple::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 4px;
  height: 10px;
  background: #4a3728;
  border-radius: 2px;
}

.item-leafy {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at center, #81c784 0%, #2e7d32 100%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  transform: translate(60px, 60px) rotate(-15deg);
  z-index: 2;
  filter: blur(0.5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Background elements for depth */
.bg-glow {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
  transform: translateY(-50%);
  z-index: 0;
}

.floating-accent {
  position: absolute;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  z-index: 0;
}

.accent-1 { width: 300px; height: 300px; top: -100px; left: -50px; }
.accent-2 { width: 150px; height: 150px; bottom: 50px; right: 20%; }

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .banner-headline { font-size: 3rem; }
  .grocery-bag-container { width: 350px; height: 480px; }
}

@media (max-width: 768px) {
  .hero-banner { height: auto; min-height: 600px; padding: 60px 0; }
  .banner-container { flex-direction: column; text-align: center; }
  .banner-content { max-width: 100%; margin-bottom: 60px; }
  .banner-actions { justify-content: center; }
  .banner-visual { justify-content: center; width: 100%; }
  .grocery-bag-container { width: 280px; height: 380px; margin-bottom: 0; }
  .banner-headline { font-size: 2.5rem; }
}
