:root {
	
	--primary: #009879;
	--primary-dark: #006b56;
	--secondary: #0087a0;
	--secondary-dark: #005c6e;
	--highlight: #005c3f;
	--highlight-secondary: #004d64;
	--bg: #f4f8f6;
	--card: #ffffff;
	--foreground: #1a2e28;
	--muted: #64806f;
	--muted-bg: #e8efeb;
	--border: #cdddd4;
	--radius: 0.75rem;
      
    --dark-accent: #006b56;
    --darker-accent: #005347;
    --light-bg: #f8fffe;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* -- Typography -- */
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', system-ui, sans-serif; line-height: 1.2; color: var(--foreground); }
.container { max-width: 1400px; margin: 0 auto; padding: 0 1rem; }
a {
	text-decoration: none; 
}

body {
    font-family: 'Poppins', sans-serif;
	font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;	
	color: #1a2e28;
	background: #f4f8f6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 152, 121, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 152, 121, 0.15);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 1.1rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition); 
}

 .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    background: var(--primary);
    transition: var(--transition);
} 

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
	
}

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

.mobile-cta {
  display: flex; align-items: center; gap: 0.5rem; background: var(--primary) !important;
  color: #fff !important; padding: 0.625rem 1.25rem !important; border-radius: 9999px; 
  font-size: 0.875rem; font-weight: 600; box-shadow: 0 4px 12px rgba(0,152,121,0.3);
  transition: background 0.2s, box-shadow 0.2s;
}
.mobile-cta:hover { background: var(--primary-dark) !important; box-shadow: 0 6px 20px rgba(0,152,121,0.4); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 84px;
    min-height: 85vh;
   /*  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;   
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}
.hero-text h1 .accent { color: var(--primary); }

.hero-text .slogan {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-highlight { margin-top: 1.5rem; font-weight: 600; color: var(--secondary) !important; }

.hero-buttons { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; justify-content: center; } }
@media (min-width: 1024px) { .hero-buttons { justify-content: flex-start; } }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--primary); color: #fff; padding: 0.875rem 2rem; border-radius: 9999px;
  font-size: 1rem; font-weight: 600; box-shadow: 0 4px 15px rgba(0,152,121,0.3);
  transition: background 0.2s, box-shadow 0.2s; border: none; cursor: pointer;
  text-decoration:none;
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 25px rgba(0,152,121,0.4); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: transparent; color: var(--primary); padding: 0.875rem 2rem; border-radius: 9999px;
  font-size: 1rem; font-weight: 600; border: 2px solid var(--primary);
  transition: background 0.2s, color 0.2s; cursor: pointer;
  text-decoration:none;
}
.btn-outline:hover { background: var(--primary); color: #fff; }


.hero-image img { position: relative; border-radius: 1rem; box-shadow: 0 25px 50px rgba(0,0,0,0.12); max-height: 500px; width: auto; }

/* Benefits bar */
.benefits-bar h3 { 
    color: var(--secondary-dark);
    font-size: 1.17em;
    font-weight: 500;
   padding-bottom:10px;
}
.benefits-bar {
  margin-top: 4rem; background: var(--card); border-radius: 1rem; padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid var(--border);
}
@media (min-width: 1024px) { .benefits-bar { padding: 2rem; } }

.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.benefits-grid2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

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

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

.benefit-item { align-items: center; }
.benefit-icon {
  /* flex-shrink: 0; */ width: 40px; height: 40px; border-radius: 50%; padding-top:2px;
  background: rgba(0,152,121,0.1); margin:0 auto; text-align: center; margin-bottom:10px;
}

.benefit-icon svg { vertical-align: middle; width: 25px; height: 25px; margin-top:8px; }


.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--light-bg);
}

.hero-image {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

.product-card-hero {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    max-width: 200px;
}

.product-card-hero:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.product-card-hero img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
}

/* Page Header (for internal pages) */
.page-header {
    margin-top: 84px;
    padding: 4rem 4rem 3rem;
    background: linear-gradient(135deg, var(--highlight) 0%, var(--highlight-secondary) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-family: 'Poppins', sans-serif;
	color: #fff;
    font-size: 3rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    padding: 5rem 4rem;
    background: var(--white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.content-wrapper h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-wrapper p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.content-wrapper ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-wrapper ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateX(5px);
    border-left-width: 8px;
}

.value-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Categories Section */
.categories {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 5rem 4rem;
}

.categories h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--light-bg);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 152, 121, 0.15);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Shipping Section */
.shipping {
    background: linear-gradient(135deg, var(--highlight) 0%, var(--highlight-secondary) 100%);
    padding: 5rem 4rem;
    color: var(--white);
}

.shipping h2 {
    font-family: 'Poppins', sans-serif;
	color: #FFF;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}
.shipping h4 {
    font-family: 'Poppins', sans-serif;
	color: #FFF;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.shipping-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.shipping-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.shipping-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.shipping-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.shipping-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 152, 121, 0.1);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 152, 121, 0.2);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-content h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.blog-card-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary);
}

/* Contact Section */
.contact {
    padding: 5rem 4rem;
    background: var(--white);
}

.contact h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 152, 121, 0.15);
}

.contact-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-dark);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-5px) scale(1.1);
}


/* =============================================
   FEATURED PRODUCTS (Dark strip)
   ============================================= */
.featured { background: var(--highlight) !important; padding: 4rem 0; }
@media (min-width: 1024px) { .featured { padding: 5rem 0; } }
.featured .section-badge {
  display: inline-block; background: rgba(255,255,255,0.1); color: #fff;
  padding: 0.375rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem;
}
.featured h2 { color: #fff; font-size: 1.875rem; font-weight: 800; }
@media (min-width: 1024px) { .featured h2 { font-size: 2.25rem; } }
.featured .section-subtitle { color: rgba(255,255,255,0.8); margin-top: 1rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.featured .section-subtitle a { color: rgba(255,255,255,0.8); margin-top: 1rem; max-width: 640px; margin-left: auto; margin-right: auto; }

.products-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem; }
@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  position: relative; display: flex; flex-direction: column; background: var(--card);
  border-radius: 1rem; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-4px); }
.product-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 5;
  display: inline-flex; align-items: center; gap: 0.25rem;
  background: var(--primary); color: #fff; padding: 0.25rem 0.75rem;
  border-radius: 9999px; font-size: 0.75rem; font-weight: 700;
}
.product-badge svg { width: 12px; height: 12px; }
.product-image {
  display: flex; align-items: center; justify-content: center;
  background: var(--muted-bg); padding: 1.5rem; overflow: hidden;
}
.product-image img { height: 240px; width: auto; object-fit: contain; transition: transform 0.3s; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-info { flex: 1; display: flex; flex-direction: column; padding: 1.5rem; }
.product-info h3 { font-size: 1.125rem; font-weight: 700; }
.product-info p { margin-top: 0.5rem; flex: 1; font-size: 0.875rem; line-height: 1.6; color: var(--muted); }
.product-info .btn-primary { margin-top: 1rem; padding: 0.625rem 1.5rem; font-size: 0.875rem; }


/* =============================================
   ABOUT
   ============================================= */
.about { padding: 4rem 0; }
@media (min-width: 1024px) { .about { padding: 6rem 0; } }
.about-inner { display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 1024px) { .about-inner { flex-direction: row; gap: 5rem; align-items: flex-start; } }
.about-text { flex: 1; }
.about-values { flex: 1; }

.section-badge {
  display: inline-block; background: rgba(0,152,121,0.1); color: var(--primary);
  padding: 0.375rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem;
}
.section-title { font-size: 1.875rem; font-weight: 800; letter-spacing: -0.02em; }
@media (min-width: 1024px) { .section-title { font-size: 2.25rem; } }
.section-subtitle { color: var(--muted); margin-top: 1rem; font-size: 1rem; line-height: 1.7; }
@media (min-width: 1024px) { .section-subtitle { font-size: 1.125rem; } }
.section-accent { margin-top: 1.5rem; font-size: 1rem; font-weight: 600; color: var(--secondary); }
@media (min-width: 1024px) { .section-accent { font-size: 1.125rem; } }

.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
.value-card {
  border-radius: 0.75rem; border: 1px solid var(--border); background: var(--card);
  padding: 1.5rem; box-shadow: 0 1px 4px rgba(0,0,0,0.04); transition: box-shadow 0.3s;
}
.value-card:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.value-icon {
  width: 48px; height: 48px; border-radius: 0.75rem;
  background: rgba(0,152,121,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.value-icon svg { width: 24px; height: 24px; color: var(--primary); }
.value-card h3 { font-size: 1rem; font-weight: 700; }
.value-card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted); }

/* =============================================
   PRODUCTS (Categories)
   ============================================= */
.products { padding: 4rem 0; }
@media (min-width: 1024px) { .products { padding: 6rem 0; } }
.categories-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 3rem; }
@media (min-width: 640px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .categories-grid { grid-template-columns: repeat(5, 1fr); } }

.category-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  border-radius: 0.75rem; border: 1px solid var(--border); background: var(--card);
  padding: 1.5rem; box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.category-card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); border-color: rgba(0,152,121,0.3); }
.category-icon {
  width: 56px; height: 56px; border-radius: 1rem;
  background: rgba(0,152,121,0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; transition: background 0.3s;
}
.category-card:hover .category-icon { background: rgba(0,152,121,0.2); }
.category-icon svg { width: 28px; height: 28px; color: var(--primary); }
.category-card h3 { font-size: 0.875rem; font-weight: 700; }
.category-card p { margin-top: 0.375rem; font-size: 0.75rem; line-height: 1.5; color: var(--muted); }

.products-cta-box {
  margin-top: 3rem; background: var(--muted-bg); border-radius: 1rem; padding: 2rem; text-align: center;
}
@media (min-width: 1024px) { .products-cta-box { padding: 2.5rem; } }
.products-cta-box p { font-size: 1rem; font-weight: 500; color: var(--foreground); }
@media (min-width: 1024px) { .products-cta-box p { font-size: 1.125rem; } }
.products-cta-box .sub { margin-top: 0.75rem; color: var(--muted); font-weight: 400; }
.products-cta-box .btn-primary { margin-top: 1.5rem; }


/* =============================================
   SHIPPING (Dark strip)
   ============================================= */
.shipping { background: var(--highlight-secondary); padding: 4rem 0; }
@media (min-width: 1024px) { .shipping { padding: 6rem 0; } }
.shipping h2 { color: #fff; }
.shipping .section-badge { background: rgba(255,255,255,0.1); color: #fff; }
.shipping .section-subtitle { color: rgba(255,255,255,0.85); }

.shipping-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 640px) { .shipping-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .shipping-grid { grid-template-columns: repeat(4, 1fr); } }

.shipping-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  border-radius: 1rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); padding: 2rem;
}
.shipping-icon {
  width: 64px; height: 64px; border-radius: 1rem;
  background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.shipping-icon svg { width: 32px; height: 32px; color: #fff; }
.shipping-card h3 { font-size: 1.125rem; font-weight: 700; color: #fff; }
.shipping-card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.8); }

.btn-white {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #fff; color: var(--foreground); padding: 0.875rem 2rem; border-radius: 9999px;
  font-size: 1rem; font-weight: 600; box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: box-shadow 0.2s; border: none; cursor: pointer;
}
.btn-white:hover { box-shadow: 0 6px 25px rgba(0,0,0,0.2); }


/* =============================================
   CONTACT
   ============================================= */
.contact { padding: 4rem 0; }
@media (min-width: 1024px) { .contact { padding: 6rem 0; } }
.contact-inner { display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 1024px) { .contact-inner { flex-direction: row; gap: 5rem; } }
.contact-left { flex: 1; }
.contact-right { flex: 1; display: flex; align-items: center; }

.contact-cards { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  border-radius: 0.75rem; border: 1px solid var(--border); background: var(--card);
  padding: 1rem; box-shadow: 0 1px 4px rgba(0,0,0,0.04); transition: box-shadow 0.3s;
}
.contact-card:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.contact-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 0.75rem;
  background: rgba(0,152,121,0.1); display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 24px; height: 24px; color: var(--primary); }
.contact-card .label { font-size: 0.875rem; font-weight: 500; color: var(--muted); }
.contact-card .value { font-size: 1rem; font-weight: 600; color: var(--foreground); }

.social-heading { margin-top: 2rem; font-size: 0.875rem; font-weight: 600; color: var(--foreground); margin-bottom: 1rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,152,121,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--primary); transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--primary); color: #fff; }
.social-link svg { width: 20px; height: 20px; }

.contact-cta {
  width: 100%; border-radius: 1rem; background: var(--highlight); padding: 2rem; text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
@media (min-width: 1024px) { .contact-cta { padding: 3rem; } }
.contact-cta-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.contact-cta-icon svg { width: 40px; height: 40px; color: #fff; }
.contact-cta h3 { font-size: 1.5rem; font-weight: 800; color: #fff; }
@media (min-width: 1024px) { .contact-cta h3 { font-size: 1.875rem; } }
.contact-cta p { margin-top: 1rem; color: rgba(255,255,255,0.85); }
.contact-cta .btn-white { margin-top: 2rem; font-size: 1.125rem; font-weight: 700; padding: 1rem 2.5rem; }
.contact-cta .btn-white svg { width: 24px; height: 24px; color: var(--primary); }

/* Footer */
footer {
    background: var(--foreground);
    color: var(--white);
    padding: 3rem 4rem 1.5rem;
}
.footer-brand img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin: 0 auto;
}
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}
.footer-bottom p { font-size: 0.875rem; color: rgba(244,248,246,0.4); }
.footer-social { margin-top: 0.75rem; display: flex; justify-content: center; gap: 0.75rem; }
@media (min-width: 1024px) { .footer-social { justify-content: center; } }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(244,248,246,0.1); display: flex; align-items: center; justify-content: center;
  color: rgba(244,248,246,0.6); transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: rgba(244,248,246,0.2); color: rgba(244,248,246,1); }
.footer-social svg { width: 16px; height: 16px; }

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

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

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 2rem;
    }

    .nav-menu {
        position: fixed;
        top: 84px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
         padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text .slogan {
        font-size: 1.2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
    .benefits,
    .featured-products,
    .content-section,
    .categories,
    .shipping,
    .contact {
        padding: 3rem 2rem;
    }

    .page-header {
        padding: 3rem 2rem 2rem;
    }
}

.benefits { margin-bottom:3rem; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-12 { margin-top: 3rem; }

/* =============================================
   WHATSAPP BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }