:root{
  --red:#E53935;
  --yellow:#FBC02D;
  --blue:#1565C0;
  --white:#ffffff;
  --bg:#fbfbfd;
  --card-border:#e8e8ee;
  --text:#111827;
  --muted:#6b7280;
  --max-w:1100px;
  --mag:#8B1C5A;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:'Lato','Sora',system-ui,-apple-system,Segoe UI,Arial; color:var(--text); background:var(--bg);}

/* Topbar with animation */
.topbar{
  background:linear-gradient(135deg, var(--mag) 0%, #a82467 100%); 
  color:#fff; 
  font-size:22px; 
  padding:.8rem 1rem; 
  text-align:center;
  box-shadow: 0 2px 10px rgba(139,28,90,0.3);
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Header with glassmorphism */
header{
  position:sticky; 
  top:0; 
  z-index:60; 
  backdrop-filter:blur(12px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: none;
  transition: all 0.3s ease;
  width: 100%;
  left: 0;
  right: 0;
}

header.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav{
  max-width:var(--max-w); 
  margin:0 auto; 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  gap:0.3rem; 
  padding:0.6rem 0.8rem;
  min-width: 0;
}

.brand{
  display:flex; 
  align-items:center; 
  gap:.8rem; 
  text-decoration:none;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.05);
}

.logo{
  width:52px; 
  height:52px; 
  border-radius:12px; 
  display:grid; 
  place-items:center;  
  box-shadow:0 6px 20px rgba(21,101,192,0.2);
  transition: all 0.3s ease;
}

.logo:hover {
  box-shadow:0 8px 25px rgba(21,101,192,0.35);
  transform: translateY(-2px);
}

.brand span{
  font-weight:700; 
  background: linear-gradient(135deg, #1565C0 0%, #E53935 50%, #FBC02D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  font-style: italic;
  filter: drop-shadow(0 2px 4px rgba(21, 101, 192, 0.2));
}

nav ul{
  list-style:none; 
  margin:0; 
  padding:0; 
  display:flex; 
  gap:0.2rem; 
  align-items:center;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
}

nav a{
  display:block; 
  padding:.4rem .6rem; 
  color:var(--text); 
  text-decoration:none; 
  font-weight:600; 
  border-radius:999px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Active/Current nav link styling */
nav a.active,
nav a[href="#" + window.location.hash] {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(21,101,192,0.3);
}

/* Keep nav items on one line; allow horizontal scroll if needed */
nav{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav a:hover{
  background:rgba(21,101,192,.1);
  transform: translateY(-2px);
}

nav a.active:hover {
  background: var(--blue);
}

nav a:hover::after {
  width: 80%;
}

nav a.active::after {
  width: 100%;
  background: #fff;
  height: 3px;
}

.cta{
  background:linear-gradient(135deg, var(--yellow) 0%, #f9a825 100%); 
  color:#111;
  box-shadow: 0 4px 15px rgba(251,192,45,0.4);
}

.cta:hover {
  box-shadow: 0 6px 20px rgba(251,192,45,0.6);
  transform: translateY(-3px) !important;
}

.menu-toggle{display:none; background:transparent; border:0; cursor:pointer}

/* Hero Section - Enhanced */
.hero{
  background:linear-gradient(135deg, rgba(229,57,53,.06), rgba(21,101,192,.04)); 
  padding:1rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251,192,45,0.15), transparent);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-30px); }
}

.hero-inner{
  max-width:var(--max-w); 
  margin:0 auto; 
  display:grid; 
  grid-template-columns:1fr; 
  gap:2rem; 
  padding:0.5rem 1rem 2rem 1rem;
  position: relative;
  z-index: 1;
}

.hero-left{
  padding:1rem;
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

.badge{
  display:flex; 
  align-items:center; 
  justify-content:center;
  gap:.6rem; 
  background:linear-gradient(135deg, var(--yellow) 0%, #f9a825 100%); 
  color:#111; 
  padding:.5rem 1rem; 
  border-radius:999px; 
  font-weight:700;
  box-shadow: 0 4px 15px rgba(251,192,45,0.3);
  animation: pulse 2s ease-in-out infinite;
  max-width:95%;
  margin:0 auto 1rem auto;
  flex-wrap:wrap;
  overflow-wrap:break-word;
  word-wrap:break-word;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.headline{
  font-size:clamp(2rem,5vw,3.2rem); 
  margin:0.3rem 0 0.8rem 0; 
  line-height:1.15;
  font-family: 'Montserrat', 'Playfair Display', sans-serif;
  font-weight: 900;
  background: linear-gradient(135deg, #1a3d1a 0%, #8B1C5A 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.sub{
  color:var(--muted); 
  max-width:60ch;
  font-size: 1.05rem;
  line-height: 1.7;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

.hero-cta{
  display:flex; 
  gap:1rem; 
  margin-top:1.5rem; 
  flex-wrap:wrap
}

.btn{
  display:inline-flex; 
  align-items:center; 
  gap:.6rem; 
  padding:.9rem 1.5rem; 
  border-radius:12px; 
  font-weight:700; 
  text-decoration:none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn.primary{
  background:linear-gradient(135deg, var(--red) 0%, #c62828 100%); 
  color:#fff
}

.btn.secondary{
  background:#fff; 
  color:var(--blue); 
  border:2px solid var(--blue)
}

.statbar{
  display:flex; 
  gap:1rem; 
  margin-top:1.5rem; 
  flex-wrap:wrap
}

.stat{
  background:#fff; 
  border:1px solid var(--card-border); 
  padding:.8rem 1.2rem; 
  border-radius:12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.hero-right{
  display:grid; 
  place-items:center;
  animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-art{
  width:100%; 
  max-width:450px; 
  border-radius:20px; 
  overflow:hidden; 
  background:#fff; 
  border:1px solid var(--card-border); 
  box-shadow:0 15px 40px rgba(0,0,0,0.1); 
  padding:1.5rem;
  transition: all 0.4s ease;
}

.hero-art:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.hero-art img{
  width:100%; 
  height:auto; 
  display:block; 
  border-radius:12px
}

/* Sections */
.section{
  padding:1.5rem 1rem;
  animation: fadeIn 0.8s ease-out;
}

#products {
  position: relative;
  padding-top: 0.5rem;
  margin-top: 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.wrap{width:100%; margin:0 auto; padding:0 1rem}

h2{
  font-size:2.2rem; 
  margin:0 0 .8rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
  font-family: 'Montserrat', 'Playfair Display', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 2px;
}

.lead{
  color:var(--muted); 
  margin:0 0 2rem;
  font-size: 1.05rem;
  font-family: 'Lato', sans-serif;
  line-height: 1.7;
}

/* Products Grid - Enhanced */
.grid{
  display:grid; 
  gap:1.5rem; 
  grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
}

.card{
  background:#fff; 
  border:1px solid var(--card-border); 
  border-radius:16px; 
  overflow:hidden; 
  display:flex; 
  flex-direction:column;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  height: 100%;
}

.card:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  border-color: var(--blue);
}

/* Image wrapper for consistent sizing */
.card > div:first-child {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.card img {
  width:100%; 
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.95) contrast(1.05);
  display: block;
}

.card:hover img {
  transform: scale(1.15);
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.thumb{
  width:100%; 
  height: 350px;
  display:grid; 
  place-items:center; 
  background:linear-gradient(180deg,#fff,#fbfbfb);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.card:hover .thumb::before {
  left: 100%;
}

.card-body{
  padding:1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-body h3 {
  margin: 0;
  color: var(--mag);
  font-size: 1.05rem;
  line-height: 1.3;
  min-height: auto;
  font-weight: 600;
}

.price{
  font-weight:700; 
  color:var(--blue); 
  margin:0;
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 1.05rem;
  line-height: 1.3;
  display: block;
}

.price:hover {
  color: var(--red);
}

.chip{
  display:inline-block; 
  font-size:.75rem; 
  padding:.3rem .8rem; 
  background:rgba(229,57,53,.08); 
  color:var(--red); 
  border-radius:999px;
  font-weight: 600;
}

.add{
  margin-top:auto; 
  padding: .9rem 1rem; 
  border:none; 
  background:linear-gradient(135deg, var(--red) 0%, #c62828 100%); 
  color:#fff; 
  cursor:pointer; 
  font-weight:800;
  border-radius: 0 0 16px 16px;
  transition: all 0.3s ease;
}

.add:hover {
  background:linear-gradient(135deg, #c62828 0%, var(--red) 100%);
  transform: scale(1.02);
}

/* Product Card Buttons */
.product-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: auto;
  padding: 1rem;
  border-top: 1px solid #e8e8ee;
}

.btn-buy-now, .btn-add-cart {
  padding: 0.65rem 0.8rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
}

.btn-buy-now {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
}

.btn-buy-now:hover {
  background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-add-cart {
  background: linear-gradient(135deg, #28a745 0%, #218838 100%);
  color: white;
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, #218838 0%, #28a745 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.info-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid var(--card-border);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.info-box {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 1px solid var(--card-border);
  margin-bottom: 1rem;
}

.info-box h2 {
  margin-top: 0;
}

.benefit-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--blue);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-left-width: 6px;
}

/* Accordion - Enhanced */
.accord{
  border:1px solid var(--card-border); 
  border-radius:12px; 
  overflow:hidden;
  transition: all 0.3s ease;
}

.accord:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

details summary{
  list-style:none; 
  cursor:pointer; 
  padding:.3rem 1.2rem; 
  background:#fff; 
  font-weight:700;
  transition: all 0.3s ease;
  user-select: none;
}

details summary:hover {
  background: rgba(21,101,192,0.05);
}

details[open] summary {
  background: rgba(21,101,192,0.08);
}

details p{
  padding:1rem 1.2rem; 
  color:var(--muted);
  animation: slideDown 0.3s ease-out;
}

details ul {
  animation: slideDown 0.3s ease-out;
}

/* Contact Form - Enhanced */
.contact{
  background:linear-gradient(135deg, rgba(251,192,45,.1), rgba(21,101,192,.06));
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(229,57,53,0.1), transparent);
  border-radius: 50%;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.quick-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.contact-option:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.whatsapp-option {
  border-color: #25D366;
}

.whatsapp-option:hover {
  background: linear-gradient(135deg, #25D366 0%, #128c7e 100%);
}

.whatsapp-option:hover .option-text h4,
.whatsapp-option:hover .option-text p {
  color: #fff;
}

.call-option {
  border-color: var(--blue);
}

.call-option:hover {
  background: linear-gradient(135deg, var(--blue) 0%, #0d47a1 100%);
}

.call-option:hover .option-text h4,
.call-option:hover .option-text p {
  color: #fff;
}

.email-option {
  border-color: var(--mag);
}

.email-option:hover {
  background: linear-gradient(135deg, var(--mag) 0%, #6d1545 100%);
}

.email-option:hover .option-text h4,
.email-option:hover .option-text p {
  color: #fff;
}

.option-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.whatsapp-option .option-icon {
  background: linear-gradient(135deg, #25D366 0%, #128c7e 100%);
}

.call-option .option-icon {
  background: linear-gradient(135deg, var(--blue) 0%, #0d47a1 100%);
}

.email-option .option-icon {
  background: linear-gradient(135deg, var(--mag) 0%, #6d1545 100%);
}

.option-text h4 {
  margin: 0 0 0.3rem 0;
  color: var(--text);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.option-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.form-container {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

form{
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

input,textarea{
  width:100%; 
  padding:1rem 1.2rem; 
  border:2px solid #e5e7eb; 
  border-radius:12px; 
  font:inherit;
  transition: all 0.3s ease;
  background: #f9fafb;
  font-size: 1rem;
}

input:focus,textarea:focus{
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21,101,192,0.1);
  transform: translateY(-2px);
  background: #fff;
}

.submit{
  background:linear-gradient(135deg, #25D366 0%, #128c7e 100%); 
  color:#fff; 
  border:none; 
  padding:1.2rem 1.5rem; 
  border-radius:12px; 
  font-weight:800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}

#formNote {
  animation: slideDown 0.4s ease-out;
}

/* Footer - Enhanced */
footer{
  background:linear-gradient(135deg, var(--mag) 0%, #6d1545 100%); 
  color:#cbd5e1;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.foot{
  max-width:var(--max-w); 
  margin:0 auto; 
  padding:3rem 1rem; 
  display:grid; 
  gap:2rem; 
  grid-template-columns:1fr 1fr
}

.foot h4{
  color:#fff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.foot a {
  transition: all 0.3s ease;
}

.foot a:hover {
  color: var(--yellow);
  transform: translateX(5px);
}

/* WhatsApp Float - Enhanced */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25D366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.6);
  animation: none;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: white;
}

/* Responsive */
@media (min-width:720px){
  .hero-inner{grid-template-columns:1fr 1fr; align-items:center}
  .nav{padding:1rem}
}

@media (min-width:980px){
  nav ul{gap:1rem}
}

@media (max-width:720px){
  .topbar{font-size:1.1rem; padding: 0.8rem 0.6rem;}
  .brand span{font-size:1.1rem}
  .menu-toggle{display:block}
  nav ul{
    display:none; 
    position:absolute; 
    right:1rem; 
    top:70px; 
    background:#fff; 
    padding:1.2rem; 
    border-radius:16px; 
    box-shadow:0 12px 40px rgba(0,0,0,0.15); 
    flex-direction:column; 
    width:260px
  }
  nav a{
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
  }
  .hero-inner{gap:1.5rem}
  .headline{font-size:2.2rem}
  .sub{font-size:1.1rem}
  .badge{font-size:1.1rem; padding:0.7rem 1.2rem}
  .btn{padding:1rem 1.8rem; font-size:1rem}
  .stat{padding:1rem 1.4rem; font-size:0.95rem}
  .foot{grid-template-columns:1fr}
  .contact-container{grid-template-columns:1fr}
  .quick-contact{margin-bottom:1rem}
}

.logo img{width:50px; height: 50px; border-radius:10px}
.sr-only{position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden}

/* Scroll animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth transitions for all interactive elements */
a, button, .card, .stat {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Responsive Design */
@media (max-width: 768px) {
  .section {
    padding: 1.2rem 1rem;
  }
  
  #products {
    padding-top: 0.3rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .info-box {
    padding: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.2rem;
  }
  
  .card {
    padding: 1.2rem;
  }
  
  .foot {
    padding: 2rem 1rem;
    gap: 1.2rem;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 1rem 0.8rem;
  }
  
  #products {
    padding-top: 0.3rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .info-box {
    padding: 1.5rem;
    margin-bottom: 0.8rem;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .card {
    padding: 1rem;
  }

  .foot {
    padding: 2rem 1rem;
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .foot h4 {
    font-size: 1.1rem;
  }

  footer {
    padding: 0;
  }
}