/* General Reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

/* Navbar Styles */
.navbar {
    height: 50px;
    width: 100%;
    background: white;
    position: fixed;
    top: o;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: black;
    gap: 20px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.classnavbar-item {
    font-size: 14px;
    padding: 10px 15px;
    text-transform: capitalize;
    cursor: pointer;
    transition: color 0.3s;
}

.classnavbar-item:hover {
    color: #0071e3;

}

/* 1 */
.store-header {
    text-align: center;
    background-color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
  }
  
  .store-header a {
    color: #0071e3;
    text-decoration: none;
    font-weight: bold;
  }
  
  .store-content {
    text-align: center;
    padding: 30px 20px;
  }
  
  .store-content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .store-content p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .product-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .category {
    text-align: center;
    width: 170px;
  }
  
  .category img {
    width: 130%;
    max-width: 170px;
    margin-bottom: 10px;
  }
  
  .category span {
    font-size: 14px;
    font-weight: bold;
  }
  
  .shopping-help {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
  }
  
  .shopping-help div {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .shopping-help img {
    width: 24px;
    height: 24px;
  }
  
  .shopping-help a {
    color: #0071e3;
    text-decoration: none;
    font-weight: bold;
  }

/* Center the video container */
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh; /* Optional: for full-screen centering */
  background-color: #f5f5f7; /* Optional: background color */
}

/* Style the iframe for responsiveness */
.video-container iframe {

  border: none; /* Remove border */
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow effect */
}


/* 2 */
  .latest-section {
    padding: 40px 20px;
    text-align: center;
  }
  
  .latest-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .latest-section h2 span {
    font-weight: normal;
    font-size: 18px;
    display: block;
    margin-top: 5px;
    color: #666;
  }
  
  .latest-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .product-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    width: 250px;
    padding: 20px;
  }
  
  .product-card img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  .product-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .product-card p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
  }

/* general styling*/
h1, h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: #1d1d1f; /* Dark text color */
  margin: 0;
}

h1 span, h2 span {
  font-weight: 400;
  display: block;
  font-size: 18px;
  color: #6e6e73; /* Subtle gray text */
}

h3, h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
  color: #1d1d1f;
}

p {
  font-size: 14px;
  color: #6e6e73; /* Subtle gray text */
  margin: 5px 0;
}

/* Help Section */
.help-section {
  padding: 40px 20px;
  background-color: #f5f5f7; /* Matches background */
}

.help-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.help-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 280px;
  text-align: left;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.help-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* Store Difference Section */
.store-difference {
  padding: 40px 20px;
}

.benefit-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.benefit-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 220px;
  text-align: left;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.benefit-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.benefit-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  text-align: center;
}

.benefit-card p {
  text-align: center;
  font-size: 14px;
  color: #6e6e73; /* Subtle gray */
}

/* Additional Styling */
.help-card:hover,
.benefit-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.help-section h1,
.store-difference h2 {
  margin-bottom: 20px;
  padding: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .help-card, .benefit-card {
    width: 90%;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .help-card, .benefit-card {
    width: 45%;
  }
}
  

/* Footer Styles */
.apple-footer {
    background-color: #f9f9f9;
    padding: 20px 40px;
    border-top: 1px solid #e6e6e6;
    color: #333;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 5px 0;
}

.footer-column ul li a {
    color: #0066cc;
    text-decoration: none;
    font-size: 13px;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
    font-size: 12px;
    color: #666;
}

.footer-links a {
    color: #666;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links span {
    color: #333;
    font-weight: bold;
}

/* Media Queries */
@media (max-width: 768px) {
    .navbar-wrapper {
        gap: 10px;
        padding: 0 10px;
    }

    .classnavbar-item {
        font-size: 12px;
        padding: 8px 10px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer-column {
        min-width: 100%;
        text-align: center;
    }

    .footer-column ul {
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .navbar-wrapper {
        flex-direction: column;
        gap: 5px;
    }

    .classnavbar-item {
        font-size: 12px;
        padding: 5px;
    }

    .footer-content {
        gap: 10px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-bottom {
        font-size: 10px;
    }
}
