/* Fonts */
@font-face {
  font-family: 'DM Serif Display';
  src: url('../assets/fonts/DM_Serif_Display/DMSerifDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Serif Display';
  src: url('../assets/fonts/DM_Serif_Display/DMSerifDisplay-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Inter Font Family */
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter/Inter_18pt-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter/Inter_18pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter/Inter_18pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter/Inter_18pt-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter/Inter_18pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter/Inter_18pt-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Font utility classes */
.font-dm-serif {
  font-family: 'DM Serif Display', serif;
}

.font-dm-serif-italic {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
}

.font-inter {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.font-inter-light {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 300;
}

.font-inter-medium {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
}

.font-inter-semibold {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
}

.font-inter-bold {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Offset for fixed header */
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
}

/* Container wrapper universal */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  height: 80px;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #2d5016;
  font-size: 18px;
}
.logo img {
  max-width: 100px;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  flex: 1;
  justify-content: center;
  margin: 0 40px;
}

.nav-menu a {
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #2d5016;
}

.nav-menu a.active {
  color: #2d5016;
  font-weight: 600;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #b8e000;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.language-selector {
  display: flex;
  gap: 5px;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  align-items: center;
  gap: 15px;
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background: #2d5016;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover span {
  background: #b8e000;
}

.lang-flag {
  width: 24px;
  height: 16px;
  cursor: pointer;
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.lang-flag:hover {
  transform: scale(1.1);
}

.fr-flag {
  background: linear-gradient(
    to right,
    #0055a4 33%,
    #ffffff 33% 66%,
    #ef4135 66%
  );
}

.en-flag {
  background: linear-gradient(45deg, #012169 25%, transparent 25%),
    linear-gradient(-45deg, #012169 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #012169 75%),
    linear-gradient(-45deg, transparent 75%, #012169 75%);
  background-size: 8px 8px;
  background-color: #ffffff;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 100px 30px 30px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-nav li {
  margin-bottom: 20px;
}

.mobile-menu-nav a {
  font-family: 'Inter', sans-serif;
  display: block;
  padding: 15px 0;
  color: #2d2d2d;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  color: #2d5016;
  padding-left: 15px;
  border-bottom-color: #b8e000;
}

.mobile-menu-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #b8e000;
  transition: width 0.3s ease;
}

.mobile-menu-nav a:hover::before,
.mobile-menu-nav a.active::before {
  width: 8px;
}

/* Mobile Menu Button Animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  margin-top: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Background slideshow */
.hero-backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  will-change: opacity, transform;
}

.hero-bg.active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg.fade-out {
  opacity: 0;
  transform: scale(0.95);
}

.hero-bg:nth-child(1) {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
    url('../assets/img/fondo1.jpg'),
    radial-gradient(
      ellipse 400px 500px at 70% 40%,
      rgba(218, 165, 32, 0.4) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 300px 400px at 30% 70%,
      rgba(210, 180, 140, 0.3) 0%,
      transparent 50%
    );
  background-size: cover, cover, 100% 100%, 100% 100%;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
}

.hero-bg:nth-child(2) {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
    url('../assets/img/fondo2.png'),
    radial-gradient(
      ellipse 350px 450px at 60% 50%,
      rgba(255, 140, 0, 0.3) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 280px 380px at 80% 30%,
      rgba(255, 165, 0, 0.3) 0%,
      transparent 50%
    );
  background-size: cover, cover, 100% 100%, 100% 100%;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
}



.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.content-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 0 0 20px 20px;
  padding: 50px;
  width: 550px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.content-card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 50px;
  background: linear-gradient(90deg, #b8e000, #7cb518);
}

.content-card h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3.2rem;
  color: #2d2d2d;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 400;
}

.content-card h1 .highlight {
  color: #2d5016;
  font-weight: 600;
}

.content-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 35px;
}

.cta-button {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #b8e000, #9bc53d);
  color: #2d5016;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(184, 224, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(184, 224, 0, 0.4);
}

.cta-button::after {
  content: "→";
  transition: transform 0.3s ease;
}

.cta-button:hover::after {
  transform: translateX(3px);
}

/* Products Section */
.products-section {
  background: #f8f9fa;
  padding: 100px 0;
  text-align: center;
  background-image: url('../assets/img/bg.png');
  background-size: auto;
  background-position: center top;
  background-repeat: no-repeat;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  color: #999;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: #2d2d2d;
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 1.2;
}

.section-description {
  color: #666;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card.orange {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.product-card.green {
  background: linear-gradient(135deg, #7cb518, #b8e000);
}

.product-card.yellow {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.product-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 30px;
  background: white;
  font-family: 'Inter', sans-serif;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: #2d2d2d;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.product-subtitle {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 15px;
  font-style: italic;
}

.product-description {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 20px;
}

.product-details {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: auto;
}

.product-detail {
  font-size: 0.8rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-detail strong {
  color: #2d5016;
  font-weight: 600;
}

.product-button {
  background: #f8f9fa;
  border: 1px solid #ddd;
  padding: 10px 20px;
  border-radius: 25px;
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.product-button:hover {
  background: #b8e000;
  color: white;
  border-color: #b8e000;
}

/* Certifications Section */
.certifications-section {
  padding: 100px 0;
  background: white;
}

.certifications-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cert-content {
  background: 
    url("../assets/img/bg-2") top center / auto no-repeat,
    linear-gradient(135deg, #b8e000, #9bc53d);
  padding: 60px;
  border-radius: 20px;
  color: white;
}

.cert-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.cert-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.2;
}

.cert-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/*
.cert-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
*/

.cert-logo {
  width: 60%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

/* Shipping Section */
.shipping-section {
  /*background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect width="1920" height="1080" fill="%234682B4"/><rect x="200" y="300" width="400" height="200" fill="%23FF6347"/><rect x="700" y="400" width="300" height="150" fill="%23FFD700"/></svg>');*/
  background-size: cover;
  background-position: left;
  padding: 100px 0;
  position: relative;
  background-image: url('../assets/img/fondo1.jpg');
}

.shipping-content {
  display: flex;
  justify-content: flex-end;
}

.shipping-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  padding: 60px;
  border-radius: 20px;
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.shipping-subtitle {
  color: #999;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.shipping-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: #2d2d2d;
  margin-bottom: 30px;
  line-height: 1.2;
}

.shipping-description {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* About Us Section */
.about-us {
  background-size: cover;
  background-position: left;
  padding: 100px 0;
  position: relative;
  background-image: url('../assets/img/fondo1.jpg');
}

.about-us .shipping-content {
  display: flex;
  justify-content: flex-start;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #b8e000, #9bc53d);
  padding: 80px 0 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.footer-section h3 {
  font-family: 'DM Serif Display', serif;
  color: #2d5016;
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-input {
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.footer-button {
  background: #2d5016;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-button:hover {
  background: #1a2f0a;
}

.contact-info {
  color: #2d5016;
}

.contact-info p {
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(45, 80, 22, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #2d5016;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: rgba(45, 80, 22, 0.4);
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(45, 80, 22, 0.2);
  color: #2d5016;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */

/* Tablet Large (1024px and down) */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .nav-menu {
    gap: 30px;
    margin: 0 20px;
  }

  .content-card {
    width: 450px;
    padding: 40px;
  }

  .content-card h1 {
    font-size: 2.8rem;
  }

  .certifications-container {
    gap: 60px;
  }

  .cert-content {
    padding: 50px;
  }

  .shipping-card {
    padding: 50px;
  }
}

/* Tablet (768px and down) */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Header responsive */
  .nav-menu {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .nav-container {
    justify-content: space-between;
  }

  .logo {
    font-size: 16px;
  }

  /* Hero responsive */
  .hero-section {
    min-height: 80vh;
    padding: 40px 0;
  }

  .hero-content {
    justify-content: center;
  }

  .content-card {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    margin: 0 auto;
  }

  .content-card h1 {
    font-size: 2.2rem;
    text-align: center;
  }

  .content-card p {
    text-align: center;
  }

  .cta-button {
    display: block;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
  }

  /* Products responsive */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  /* Certifications responsive */
  .certifications-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cert-content {
    padding: 40px;
    text-align: center;
  }

  .cert-title {
    font-size: 2rem;
  }

  .cert-logos {
    justify-items: center;
  }

  /* Shipping responsive */
  .shipping-content {
    justify-content: center;
  }

  .shipping-card {
    margin: 0 15px;
    padding: 40px;
    text-align: center;
  }

  .shipping-title {
    font-size: 1.8rem;
  }

  /* Footer responsive */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-section h3 {
    text-align: center;
  }

  .footer-form {
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-info {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  /* Mobile Menu Responsive */
  .mobile-menu {
    width: 100%;
  }
}

/* Mobile Large (480px and down) */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  /* Header mobile */
  .header {
    height: 70px;
  }

  .logo {
    font-size: 14px;
  }

  .logo::before {
    font-size: 20px;
  }

  .lang-flag {
    width: 20px;
    height: 14px;
  }

  /* Hero mobile */
  .hero-section {
    margin-top: 70px;
    min-height: 70vh;
    padding: 20px 0;
  }

  .content-card {
    padding: 25px;
    border-radius: 0 0 15px 15px;
  }

  .content-card h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .content-card p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  /* Products mobile */
  .products-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.8rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .product-card {
    border-radius: 12px;
    max-width: none;
  }

  .product-image {
    height: 140px;
  }

  .product-info {
    padding: 20px;
  }

  .product-title {
    font-size: 1.2rem;
  }

  .product-description {
    font-size: 0.8rem;
  }

  .product-detail {
    font-size: 0.75rem;
  }

  .product-title {
    font-size: 1.2rem;
  }

  /* Certifications mobile */
  .certifications-section {
    padding: 60px 0;
  }

  .cert-content {
    padding: 30px;
    border-radius: 15px;
  }

  .cert-title {
    font-size: 1.6rem;
  }

  .cert-description {
    font-size: 1rem;
  }

  .cert-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .cert-logo {
    width: 100%;
    font-size: 1.5rem;
  }

  /* Shipping mobile */
  .shipping-section {
    padding: 60px 0;
  }

  .shipping-card {
    margin: 0 10px;
    padding: 30px;
    border-radius: 15px;
  }

  .shipping-title {
    font-size: 1.5rem;
  }

  .shipping-description {
    font-size: 1rem;
  }

  /* About Us mobile */
  .about-us {
    padding: 60px 0;
  }

  /* Footer mobile */
  .footer {
    padding: 60px 0 30px;
  }

  .footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .footer-input {
    padding: 12px;
    font-size: 0.9rem;
  }

  .footer-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .contact-info p {
    font-size: 0.9rem;
  }

  .footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    font-size: 0.8rem;
  }

  /* Mobile Menu Small Screen */
  .mobile-menu {
    padding: 80px 20px 20px;
  }

  .mobile-menu-nav a {
    font-size: 1rem;
    padding: 12px 0;
  }
}

/* Mobile Small (320px and down) */
@media (max-width: 320px) {
  .container {
    padding: 0 8px;
  }

  .content-card {
    padding: 20px;
  }

  .content-card h1 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cert-title {
    font-size: 1.4rem;
  }

  .shipping-title {
    font-size: 1.3rem;
  }

  .cert-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    width: 100%;
    max-width: 250px;
  }
}

/* Map Section */
.map-section {
  margin: 0;
  padding: 0;
}

.map-section img {
  margin: 0;
  padding: 0;
  display: block;
}
