body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #222;
    background: #f0f0f4;
  }
  
  .container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
  }
  
  header {
    background: #1a1a2e;
    color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #f9c80e;
  }
  
  nav {
    flex-grow: 1;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  
  nav ul {
    list-style: none;
    display: inline-flex;
    gap: 30px;
    margin: 0;
    padding: 0;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
  }
  
  nav ul li a.active,
  nav ul li a:hover {
    color: #f9c80e;
  }
  
  
  .hero {
    background: linear-gradient(to right, #1a1a2e, #16213e);
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 1.2em;
    margin-bottom: 25px;
  }
  
  .btn {
    background: #f9c80e;
    color: #000;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #f1b000;
  }
  
  .btn.small {
    padding: 6px 16px;
    font-size: 0.9em;
  }
  
  .highlights {
    padding: 50px 0;
    background: #fff;
  }
  
  .products {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .product-card {
    flex: 1;
    min-width: 260px;
    background: #fafafa;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
  }

  .product-card img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 6px;
  }
  
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  footer {
    background: #1a1a2e;
    color: #aaa;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin-top: 30px;
  }
  
  .contact-form label {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .contact-form button {
    background-color: #f7b500;
    border: none;
    color: #000;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #d89e00;
  }

  .about-section {
    padding: 40px 0;
    background-color: #f4f4f4;
  }
  
  .about-section .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .about-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin-bottom: 30px;
  }
  
  .about-card h3 {
    margin-top: 0;
    color: #222;
    font-size: 1.6rem;
  }
  
  .about-card p,
  .about-card ul {
    line-height: 1.6;
    font-size: 1.05rem;
    color: #444;
  }
  
  .about-card ul {
    padding-left: 20px;
  }
  
  .about-card ul li {
    margin-bottom: 10px;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .about-card, .product-card, .contact-section {
    animation: fadeUp 0.6s ease-in-out;
  }

  /* === CART PAGE STYLES === */
.cart-section {
  padding: 50px 0;
  background-color: #f4f4f4;
}

.cart-section .container {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#cart-items {
  margin-top: 20px;
}

.cart-item {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.cart-item img {
  width: 90px;
  height: auto;
  object-fit: contain;
  border-radius: 5px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.cart-item-price {
  margin-top: 5px;
  color: #666;
}

.cart-item-remove {
  background: none;
  border: none;
  color: red;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
}

.cart-summary {
  margin-top: 30px;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.cart-buttons .btn {
  background-color: #f7b500;
  color: #000;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.cart-buttons .btn:hover {
  background-color: #d99e00;
}

.cart-icon {
  color: white;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-left: 12px;
}

.cart-icon i {
  font-size: 24px;
}

#cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: red;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  display: inline-block;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.cart-item img {
  width: 80px;
  margin-right: 1rem;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  color: #333;
}

.cart-item-remove {
  background-color: crimson;
  color: white;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 4px;
}

.checkout-container {
  padding: 20px 0;
}

.checkout-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.checkout-summary {
  flex: 1;
  min-width: 300px;
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.checkout-summary .cart-item {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}

.checkout-summary .cart-item:last-child {
  border-bottom: none;
}

.checkout-summary img {
  width: 100px;
  height: auto;
  border-radius: 5px;
}

.checkout-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checkout-form input,
.checkout-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.checkout-form textarea {
  min-height: 100px;
  resize: vertical;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.payment-options label {
  font-weight: normal;
}

.qty-input {
  width: 60px;
  padding: 4px;
  margin-left: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
}

.footer-links {
  margin-bottom: 5px;
  text-align: center;
}

.footer-links a {
  color: #fff; /* or your desired color */
  margin: 0 8px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.cart-summary p {
  margin: 5px 0;
  font-size: 16px;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: rem;
  margin-top: 1rem;
}

.payment-option span {
  white-space: nowrap;
}


.payment-option {
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}


.payment-option .left {

  align-items: center;
  gap: 10px;
}

.payment-option img {
  height: 22px;
}

.payment-option input[type="radio"] {
  transform: scale(1.2);
  accent-color: #0070ba;
}

.shipping-options label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.shipping-options input[type="radio"] {
  margin-right: 8px;
}
#shipping-cost {
  font-weight: bold;
  margin-top: 10px;
}










