/* style.css */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
}
a {
  text-decoration: none;
  color: inherit;
}
/* .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
} */

/* Header */
.site-header {
  background-color: #1e1e2f;
  padding: 20px 0;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo a {
  font-size: 28px;
  color: #fff;
  font-weight: bold;
}
.logo span {
  color: #f39c12;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar ul li a {
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}
.navbar ul li a:hover,
.navbar ul li a.active {
  color: #f39c12;
}
.cart-btn {
  background: #f39c12;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
}

/* Footer */
.site-footer {
  padding: 40px 0 20px;
  background-color: #1e1e2f;
  color: white;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-col h4, .footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f39c12;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #f39c12;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding-top: 10px;
}

.hero {
  background: #fdcd2c;
  padding: 60px 0;
}
.hero-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.hero-left {
  flex: 1;
  padding: 20px;
}
.hero-left h1 {
  font-size: 2.4rem;
  color: #111827;
}
.hero-left p {
  margin: 15px 0;
  color: #4b5563;
}
.hero-left .btn {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
}
.hero-right {
  flex: 1;
  text-align: center;
}
.hero-right img {
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}

/* General Container Adjustments */

/* Category Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 items per row */
  gap: 20px;
  margin-top: 30px;
}

/* Category Card */
.category-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

/* Adjusting Images */
.category-card img {
  width: 100%;
  /* height: 220px;  */
  object-fit: cover; /* Ensures the image fills the box and doesn't get cut off */
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

/* Category Title */
.category-card h3 {
  margin: 12px 0 6px;
  font-size: 18px;
}

/* Shop Now Button */
.btn-shop {
  display: inline-block;
  margin-bottom: 15px;
  padding: 8px 16px;
  background-color: #005344;
  color: white;
  font-size: 14px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.category-card:hover .btn-shop {
  background-color: #007f69;
}


.products {
  padding: 60px 0;
  background: #f9fafb;
}
.product-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.product-card {
  width: 220px;
  background: white;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
}
.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.product-card h4 {
  margin: 10px 0 5px;
  color: #1f2937;
}
.product-card p {
  color: #16a34a;
  font-weight: bold;
}
.cta {
  background-color: #142959; /* Deep blue background */
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.cta h2 {
  color: white;
  font-size: 32px;
  margin-bottom: 15px;
}

.cta p {
  font-size: 16px;
  margin-bottom: 25px;
}

.newsletter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.newsletter input[type="email"] {
  padding: 12px;
  font-size: 16px;
  width: 60%;
  max-width: 300px;
  border: none;
  border-radius: 4px;
}

.newsletter button {
  padding: 12px 24px;
  font-size: 16px;
  background-color: #01bdb2; /* Teal color */
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.newsletter button:hover {
  background-color: #019a92;
}

.product-detail {
  padding: 60px 0;
}

.detail-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.detail-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.detail-info {
  max-width: 500px;
}

.detail-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.detail-info .price {
  color: #005344;
  font-size: 1.5rem;
  margin: 10px 0;
}

.detail-info .description {
  margin-bottom: 20px;
  line-height: 1.6;
}

.cart-form input[type="number"] {
  width: 60px;
  padding: 5px;
  margin-right: 10px;
}

.cart-form .btn {
  background-color: #005344;
  color: white;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}
/* Product Features */
.product-features {
  background-color: #f9fafb;
  padding: 40px 0;
}
.product-features .feature-list {
  list-style-type: disc;
  padding-left: 40px;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

/* Product Reviews */
.product-reviews {
  background-color: #fff;
  padding: 40px 0;
}
.product-reviews .review {
  margin-bottom: 20px;
  border-left: 4px solid #f39c12;
  padding-left: 20px;
}
.product-reviews .review h4 {
  margin-bottom: 5px;
  font-weight: bold;
  color: #1e1e2f;
}
.product-reviews .review p {
  color: #555;
}

/* Related Products */
.related-products {
  background: #f9fafb;
  padding-top: 40px;
}
.related-products .section-title {
  margin-bottom: 30px;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

.cart-page {
  padding: 40px 20px;
  background: #f9f9f9;
}


h2 {
  text-align: left;
  margin-bottom: 30px;
  font-size: 32px;
  color: #333;
}

.cart-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
}

.cart-card img {
  width: 150px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.cart-details {
  flex: 1;
}

.cart-details h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #222;
}

.cart-details p {
  margin: 5px 0;
  font-size: 16px;
}

.cart-details .total {
  font-weight: bold;
  margin-top: 10px;
  font-size: 18px;
  color: #007a3d;
}

.cart-buttons {
  margin-top: 20px;
}

.btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  background: #ccc;
  color: #000;
  margin-right: 10px;
  display: inline-block;
  transition: background 0.3s;
}

.btn.primary {
  background: #007a3d;
  color: white;
}

.btn:hover {
  opacity: 0.9;
}

@media (min-width: 768px) {
  .cart-card {
    flex-direction: row;
    align-items: center;
  }

  .cart-card img {
    margin-right: 30px;
    margin-bottom: 0;
  }
}
.shop-section .container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.shop-section .title {
  text-align: center;
  font-size: 2.5em;
  color: #333;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.product-card img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.2em;
  color: #111;
  margin: 10px 0;
}

.product-card .price {
  font-weight: bold;
  color: #006400;
  font-size: 1.1em;
  margin: 8px 0;
}

.product-card label {
  font-size: 0.9em;
  margin-bottom: 10px;
  display: block;
}

.product-card input[type="number"] {
  width: 60px;
  padding: 5px;
  margin-left: 5px;
}

.product-card button {
  background: #01bdb2;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.product-card button:hover {
  background: #01938a;
}.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.category-card {
  width: 160px;
  text-align: center;
  padding: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 30px;
}

.product-card {
  width: 220px;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
  transition: box-shadow 0.3s;
}

.product-card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.product-card h4 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.product-card p {
  font-weight: bold;
  color: #142959;
}
.about-hero {
  background: linear-gradient(to right, #005344, #caa544);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 18px;
}

.our-story {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.story-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.story-image {
  flex: 1;
  min-width: 300px;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.story-content {
  flex: 1;
  min-width: 300px;
}

.story-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

.story-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}


.why-choose-us {
  padding: 60px 0;
  background-color: #fff;
}

.features-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-box {
  flex: 1 1 250px;
  background: #f2f2f2;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box img {
  width: 60px;
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #005344;
}

.contact-cta {
  background-color: #caa544;
  color: white;
  padding: 60px 0;
}

.contact-cta .btn {
  background-color: #005344;
  color: white;
  padding: 12px 25px;
  margin-top: 20px;
  display: inline-block;
  border-radius: 5px;
  text-decoration: none;
}
.section-title {
  font-size: 2rem;
  font-weight: bold;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
}

.promo-img-box img {
  transition: 0.3s ease;
}

.promo-img-box img:hover {
  transform: scale(1.05);
}
.promo-section {
  background-color: #f5f7fa;
  padding: 60px 0;
}

.promo-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.promo-text {
  flex: 1;
}

.promo-text h2 {
  font-size: 32px;
  color: #142959;
  margin-bottom: 20px;
}

.promo-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-shop {
  display: inline-block;
  background-color: #01bdb2;
  color: white;
  padding: 10px 24px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-shop:hover {
  background-color: #019e94;
}

.promo-image {
  flex: 1;
  text-align: center;
}

.promo-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.dual-promo-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.dual-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.dual-card {
  position: relative;
  flex: 1;
  min-width: 300px;
  overflow: hidden;
  border-radius: 10px;
}

.dual-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.dual-card:hover img {
  transform: scale(1.05);
}

.overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(20, 41, 89, 0.8);
  padding: 20px;
  border-radius: 8px;
  color: #fff;
}

.overlay-text h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.btn-explore {
  background: #01bdb2;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: 0.3s;
}

.btn-explore:hover {
  background: #019e94;
}
.picks-section {
  padding: 50px 20px;
  background-color: #f5f5f5;
}

.picks-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

/* Left image takes half width */
.left-big-image {
  flex: 1;
  height: 500px;
}

.left-big-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Right grid also takes half width but split into 4 equal parts */
.right-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 500px; /* same as left */
}

.grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.contact-section {
    padding: 80px 15px;
    background: linear-gradient(to right, #e0f7f5, #ffffff);
    font-family: 'Segoe UI', sans-serif;
  }

  .contact-container {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }

  .contact-title {
    text-align: center;
    margin-bottom: 50px;
  }

  .contact-title h2 {
    font-size: 36px;
    color: #01bdb2;
    margin-bottom: 10px;
  }

  .contact-title p {
    color: #555;
    font-size: 16px;
  }

  .contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 450px;
  }

  .contact-info h4 {
    color: #142959;
    font-size: 22px;
    margin-bottom: 15px;
  }

  .contact-info p {
    margin: 10px 0;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }

  .contact-info i {
    color: #01bdb2;
    margin-right: 10px;
  }

  .contact-form form {
    display: flex;
    flex-direction: column;
  }

  .contact-form input,
  .contact-form textarea {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 20px;
    font-size: 16px;
  }

  .contact-form button {
    background-color: #01bdb2;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .contact-form button:hover {
    background-color: #01998e;
  }

  @media (max-width: 768px) {
    .contact-row {
      flex-direction: column;
    }

    .contact-title h2 {
      font-size: 28px;
    }
  }/* css/style.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.site-header {
  background-color: #142959;
  color: white;
  padding: 15px 0;
}

.container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo a {
  font-size: 28px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.logo span {
  color: #01bdb2;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.navbar a:hover,
.navbar .active {
  color: #01bdb2;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .navbar {
    width: 100%;
    display: none;
    flex-direction: column;
    background-color: #142959;
    padding: 10px 0;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .navbar.show {
    display: flex;
  }
}
.checkout-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
  }

  .form-box, .summary-box {
    flex: 1 1 45%;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  h2.section-title {
    text-align: center;
    margin-top: 40px;
    font-size: 32px;
    color: #333;
  }

  h4 {
    margin-bottom: 15px;
    color: #444;
  }

  .form-box label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
  }

  .form-box input, .form-box textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  .form-box button {
    margin-top: 20px;
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .form-box button:hover {
    background-color: #218838;
  }

  .summary-box img {
    width: 100px;
    border-radius: 8px;
  }

  .summary-box .details {
    margin-left: 15px;
  }

  .summary-box .cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }

  .summary-box hr {
    margin: 20px 0;
  }

  .total {
    font-weight: bold;
    font-size: 20px;
    color: #222;
  }

  @media (max-width: 768px) {
    .checkout-container {
      flex-direction: column;
      gap: 20px;
    }
  }

  .login-section {
    background-color: #f5f5f5;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
  }

  .login-container {
    max-width: 400px;
    background: #fff;
    margin: auto;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }

  .login-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
  }

  .login-container input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
  }

  .login-container button {
    width: 100%;
    background-color: #01bdb2;
    border: none;
    padding: 12px;
    font-size: 16px;
    color: white;
    border-radius: 6px;
    cursor: pointer;
  }

  .login-container button:hover {
    background-color: #019a90;
  }

  .login-container .extra-links {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
  }

  .login-container .extra-links a {
    color: #01bdb2;
    text-decoration: none;
  }

  .login-container .extra-links a:hover {
    text-decoration: underline;
  }

   .success-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px 30px;
    background-color: #f0fff4;
    border: 2px solid #28a745;
    border-radius: 10px;
    text-align: center;
    font-family: Arial, sans-serif;
  }

  .success-section h2 {
    font-size: 32px;
    color: #28a745;
    margin-bottom: 20px;
  }

  .success-section p {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
  }

  .success-section .btn {
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-size: 16px;
  }

  .success-section .btn:hover {
    background-color: #0056b3;
  }

  @media (max-width: 600px) {
    .success-section {
      padding: 30px 20px;
    }

    .success-section h2 {
      font-size: 26px;
    }

    .success-section p {
      font-size: 16px;
    }

    .success-section .btn {
      font-size: 15px;
      padding: 10px 20px;
    }
  }

  .policy-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.policy-section .container {
  max-width: 800px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.policy-content h4 {
  margin-top: 25px;
  color: #333;
}

.policy-content p, .policy-content li {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.policy-content ul {
  padding-left: 20px;
}
