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

:root {
  --primary: #ff9800;
  --primary-dark: #e68900;
  --primary-light: #ffb74d;
  --secondary: #4caf50;
  --accent: #ff5722;
  --light: #fff9e6;
  --dark: #333;
  --text: #444;
  --card-bg: #ffffff;
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  --radius: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Container Constraints */
main {
  width: 100%;
  overflow-x: hidden;
  flex: 1;
}

section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Styles */
header {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.header-content h1 {
  font-family: "Fredoka One", cursive;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: bounceIn 1s ease;
}

.header-content p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  opacity: 0.9;
  animation: fadeIn 1.5s ease;
}

.logo {
  width: clamp(80px, 15vw, 120px);
  height: auto;
  margin-bottom: 10px;
  animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.floating-eggs {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.egg {
  position: absolute;
  width: clamp(30px, 5vw, 40px);
  height: clamp(35px, 7vw, 50px);
  background: white;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.egg:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.egg:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.egg:nth-child(3) {
  top: 30%;
  left: 70%;
  animation-delay: 4s;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 3rem) 1rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: clamp(1.5rem, 4vw, 2rem);
  min-height: calc(100vh - 200px);
}

.hero-content {
  flex: 1;
  min-width: min(100%, 300px);
  animation: slideInLeft 1s ease;
}

.hero-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  color: var(--text);
}

.selector {
  margin-top: 2rem;
}

.selector label {
  display: block;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
}

.select-wrapper {
  position: relative;
  display: block;
  width: 100%;
  max-width: min(100%, 300px);
}

.select-wrapper select {
  width: 100%;
  padding: 14px 45px 14px 15px;
  border-radius: var(--radius);
  border: 2px solid var(--primary-light);
  font-size: clamp(0.9rem, 2vw, 1rem);
  background: white;
  cursor: pointer;
  transition: all 0.3s;
  appearance: none;
  box-shadow: var(--shadow);
}

.select-wrapper select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.3);
}

.select-wrapper i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  pointer-events: none;
  transition: transform 0.3s;
}

.select-wrapper:focus-within i {
  transform: translateY(-50%) rotate(180deg);
}

/* Hero Image Section */
.hero-image {
  flex: 1;
  min-width: min(100%, 300px);
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease;
  margin: 0 auto;
}

.hero-image .logo {
  width: 100%;
  max-width: min(500px, 90vw);
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 4px solid white;
}

.hero-image .logo:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Vendors Section */
.vendors {
  padding: clamp(1.5rem, 3vw, 2rem) 1rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.vendors.loading {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.vendors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 2rem;
  width: 100%;
}

.vendor-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.5rem);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.vendor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.vendor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.vendor-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.vendor-card p {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.vendor-address {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vendor-address i {
  margin-right: 5px;
  color: var(--primary);
}

.vendor-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  justify-content: center;
  flex-wrap: wrap;
}

.no-phone {
  background-color: #f5f5f5;
  color: #888;
  padding: 0.8rem;
  border-radius: 8px;
  text-align: center;
  font-style: italic;
  margin: 1rem 0;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 2vw, 12px) clamp(15px, 3vw, 20px);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  min-height: 44px;
}

.call-btn i {
  margin-right: 8px;
}

.call-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #e64a19 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 152, 0, 0.4);
}

.no-vendors {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text);
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 2rem auto;
  max-width: min(600px, 90%);
}

.no-vendors i {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ddd;
  margin-bottom: 1rem;
  display: block;
}

/* Features Section */
.features {
  padding: clamp(2.5rem, 5vw, 4rem) 1rem;
  background: linear-gradient(135deg, #fff9e6 0%, #ffecd2 100%);
  text-align: center;
}

.features h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: clamp(60px, 10vw, 80px);
  height: clamp(60px, 10vw, 80px);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.feature-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin-bottom: 1rem;
  color: var(--dark);
}

.feature-card p {
  color: var(--text);
  line-height: 1.6;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark) 0%, #222 100%);
  color: white;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2rem) 1rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo h3 {
  font-family: "Fredoka One", cursive;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 0.5rem;
}

.footer-logo p {
  opacity: 0.8;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

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

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(35px, 5vw, 40px);
  height: clamp(35px, 5vw, 40px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.footer-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

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

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

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

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

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

/* Responsive Design */
@media (max-width: 1200px) {
  .hero {
    padding: 2rem;
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .hero-content,
  .hero-image {
    width: 100%;
    min-width: auto;
    max-width: 600px;
  }

  .hero-image {
    margin-top: 2rem;
    order: -1;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vendors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .select-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1.5rem 1rem;
  }

  .hero {
    min-height: auto;
    padding: 1.5rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-image .logo {
    max-width: 400px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features {
    padding: 3rem 1.5rem;
  }

  .features h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .vendor-card {
    min-height: 200px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

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

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

  .vendor-card {
    min-height: 180px;
  }

  .hero-image .logo {
    max-width: 100%;
  }

  .select-wrapper {
    max-width: 100%;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

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

/* Tablet Landscape Optimization */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .hero {
    flex-direction: row;
    align-items: center;
    min-height: calc(100vh - 150px);
  }

  .hero-image {
    min-width: 350px;
  }

  .hero-image .logo {
    max-width: 350px;
  }

  .vendor-card {
    min-height: 240px;
  }
}

/* Extra Small Devices */
@media (max-width: 400px) {
  .header-content h1 {
    font-size: 1.7rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .selector label {
    font-size: 1rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .vendor-card {
    padding: 1rem;
    min-height: 170px;
  }
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
  .call-btn,
  .select-wrapper select {
    min-height: 48px;
  }

  .vendor-card {
    padding: 1.25rem;
    margin: 0.5rem 0;
  }

  /* Reduce animations on mobile for better performance */
  .vendor-card:hover {
    transform: none;
  }

  .feature-card:hover {
    transform: none;
  }

  .hero-image .logo:hover {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .floating-eggs,
  .call-btn,
  .footer-links {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero-image .logo {
    border: 1px solid #ccc;
  }

  .vendor-card,
  .feature-card {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary: #cc7a00;
    --accent: #cc3700;
    --text: #000;
    --dark: #000;
  }

  .vendor-card,
  .feature-card {
    border: 2px solid var(--dark);
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .logo,
  .egg,
  .floating-eggs {
    animation: none !important;
  }

  .vendor-card,
  .feature-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* BlinkIt Message Styles */
.blinkit-message {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.blinkit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #ff3b30 0%, #ff9500 100%);
  border-radius: 12px;
  color: white;
}

.blinkit-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
}

.blinkit-logo i {
  font-size: 1.8rem;
}

.delivery-badge {
  background: white;
  color: #ff3b30;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.message-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
}

.message-icon {
  font-size: 3rem;
  color: #4caf50;
  margin-bottom: 20px;
}

.message-card h2 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.message-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  text-align: left;
}

.feature-item i {
  color: #ff3b30;
  font-size: 1.2rem;
}

.cta-section {
  margin-top: 30px;
}

.blinkit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff3b30 0%, #ff9500 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 59, 48, 0.3);
}

.blinkit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 59, 48, 0.4);
}

.small-note {
  color: #888;
  font-size: 0.9rem;
  margin-top: 10px;
}

.steps-section {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.steps-section h3 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 1.5rem;
}

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

.step {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff3b30 0%, #ff9500 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 15px;
}

.step h4 {
  color: #333;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.step p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blinkit-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .message-card h2 {
    font-size: 1.5rem;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

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

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