/* Responsive Styles */

/* Large screens (desktops) */
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
}

/* Medium screens (tablets) */
@media screen and (max-width: 992px) {
  .hero-content, 
  .certification .container,
  .factory-price .container,
  .guarantee-content {
    flex-direction: column;
    text-align: center;
  }
  
  .benefits-list li {
    text-align: left;
  }
  
  .hero-image img,
  .factory-image img {
    margin: 0 auto;
  }
  
  .options-container {
    gap: 30px;
  }
  
  .option-card {
    max-width: 320px;
  }
  
  .footer-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .secure-site h4::after, 
  .delivery-methods h4::after, 
  .payment-methods h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .customer-service h3::after,
  .order-tracking h3::after {
    left: 0;
  }
}

/* Small screens (phones) */
@media screen and (max-width: 768px) {
  .header .container {
    flex-direction: row;
    gap: 15px;
  }
  
  .navigation ul {
    gap: 15px;
    justify-content: center;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero-text h1 {
    font-size: 32px;
  }
  
  .countdown-timer {
    flex-wrap: wrap;
  }
  
  .countdown-item {
    min-width: 70px;
  }
  
  .delivery-info {
    flex-direction: column;
    align-items: center;
  }
  
  .option-card {
    max-width: 100%;
  }
  
  .guarantee-text p {
    text-align: left;
  }
  
  .customer-service, 
  .order-tracking {
    text-align: center;
  }
  
  .customer-service h3::after,
  .order-tracking h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Extra Small screens */
@media screen and (max-width: 480px) {
  .navigation ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .btn {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .countdown-item {
    min-width: 60px;
    padding: 8px;
  }
  
  .countdown-item span:first-child {
    font-size: 24px;
  }
  
  .countdown-label {
    font-size: 10px;
  }
  
  .trust-badges {
    gap: 15px;
  }
  
  .trust-badges img {
    height: 30px;
  }
  
  .faq-question h3 {
    font-size: 14px;
  }
}