/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  color: #333;
}

/* Top Bar */
.top-bar {
  background-color: black;
  color: white;
  text-align: center;
  font-size: 0.9rem;
  padding: 8px 0;
}
.top-bar a {
  color: #f4c542;
  text-decoration: underline;
}

/* Header */
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}
.logo img {
  width: 80px;
  height: auto;
  vertical-align: middle;
  border-radius: 50%;
}
.logo a {
  text-decoration: none;
  color: black;
  font-size: 34px;
}

header {
  background-color: #a8f7e7; /* Bright yellow */
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 20px;
  flex-wrap: wrap;
}

nav {
  display: flex;
  gap: 30px;
  justify-content: center;
}

nav a {
  text-decoration: none;
  font-weight: bold;
  color: #000;
  transition: color 0.3s;
}
nav a:hover {
  text-decoration: underline;
  color: #333;
}

.cart {
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart i {
  font-size: 16px;
}
#phone {
  padding: 6px 12px;
}

.phone-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
/* 🔹 HAMBURGER BASE STYLE */
.hamburger {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

/* 🔹 Default: Show full nav on desktop */
nav {
  display: flex;
  gap: 30px;
}

/* 🔹 Responsive for tablets (<= 768px) */
@media (max-width: 768px) {
  header {
    /* flex-direction: column; */
    align-items: flex-start;
  }

  .hamburger {
    display: block;
    align-items: flex-end;
  }

  nav {
    display: none;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 10px;
    align-items: flex-start;
  }

  nav.show {
    display: flex;
  }

  .phone-btn {
    display: none;
  }

  .first-order-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* 🔹 Extra Small Screens (<= 480px) */
@media (max-width: 480px) {
  .logo a {
    font-size: 24px;
  }

  .logo img {
    width: 60px;
  }

  nav a {
    font-size: 16px;
  }

  .cart-count {
    font-size: 12px;
    padding: 1px 5px;
  }

  .phone-btn {
    display: none;
  }
}

/* Hero Section */
.hero {
  background: url("https://www.kottakkalayurveda.ae/uploads/thumb/232-206-1645717394.jpg")
    no-repeat center center/cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.3); */
}
.hero-content {
  color: white;
  z-index: 1;
  animation: fadeInUp 1.2s ease-out;
}
.hero-title {
  font-size: 3rem;
  margin: 15px 0;
}
.sale-note {
  font-style: italic;
  opacity: 0.8;
}
.subtext {
  font-size: 1.1rem;
}
.cta-btn {
  margin-top: 15px;
  padding: 10px 25px;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 25px;
  transition: 0.3s ease;
}
.cta-btn:hover {
  background: #f4c542;
  color: black;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .search-box {
    flex-direction: column;
    width: 100%;
  }
  .search-box input,
  .search-box button {
    width: 100%;
    border-radius: 0;
  }
  .btn {
    width: 120px;
  }
  .cart-section .cart-item {
    display: table-row;
  }
}
/* Section 1: Certifications */
.certifications {
  text-align: center;
  padding: 50px 20px 30px;
  background-color: #fff;
}
.cert-title {
  font-size: 1.2rem;
  color: #8a6c1e;
  margin-bottom: 20px;
}
.cert-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
.cert-logos img {
  width: 100px;
  height: 70px;
  /* max-height: 50px; */
  transition: transform 0.3s ease;
}
.cert-logos img:hover {
  transform: scale(1.1);
}

/* Section 2: Product Cards */
.first-order-section {
  padding: 40px 20px;
  text-align: center;
}

.first-order-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #222;
}

.first-order-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.first-order-card {
  background: #fff;
  border-radius: 12px;
  width: 200px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.first-order-card p {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
  color: #000;
}

.first-order-card img {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  display: block;
}

.first-order:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive for smaller devices */
@media (max-width: 600px) {
  .cert-logos {
    gap: 15px;
  }
  .cert-logos img {
    max-height: 40px;
  }
  .card img {
    height: 160px;
  }
}

/* Smoke Cleansing Section */
.smoke-cleansing {
  background-image: url("./assets/vwh-cc-starwest-0422-category-herbs-spices-3301-square.jpg_t=1656705081.png");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 500px;
  position: relative;
}

.smoke-content {
  background-color: rgba(255, 247, 240, 0.95);
  max-width: 550px;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.smoke-content h2 {
  font-size: 1.9rem;
  color: #222;
  margin-bottom: 10px;
}

.smoke-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.smoke-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.smoke-content .btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #b8871c;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.smoke-content .btn:hover {
  background-color: #a26e13;
}

/* Responsive */
@media (max-width: 768px) {
  .smoke-cleansing {
    padding: 40px 15px;
    background-position: top;
    justify-content: center;
  }

  .smoke-content {
    padding: 30px 20px;
  }

  .smoke-content h2 {
    font-size: 1.5rem;
  }

  .smoke-content h3 {
    font-size: 1rem;
  }
}
.winter-wellness {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.winter-wellness h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
}

.winter-wellness .tag {
  font-size: 0.9rem;
  background: gold;
  color: #000;
  padding: 4px 10px;
  border-radius: 12px;
  margin-left: 10px;
  font-weight: bold;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.product-card {
  background: #fafafa;
  padding: 15px;
  border-radius: 10px;
  width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}
.product-card img:hover {
  transform: scale(1.15);
  transition: transform 0.3s ease;
}

.product-card h3 {
  font-size: 1rem;
  margin: 10px 0;
}

.product-card select {
  margin: 10px 0;
  padding: 6px;
  width: 100%;
}

.product-card button {
  background: #b8871c;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 20px;
  width: 100%;
  font-weight: bold;
  cursor: pointer;
}
.product-card button:hover {
  background: #a26e13;
}

/* Responsive */
@media (max-width: 768px) {
  .product-grid {
    flex-direction: column;
    align-items: center;
  }
}

.footer {
  background-color: #a8f7e7;
  color: white;
  font-family: Arial, sans-serif;
  padding: 50px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #000;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #000;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.newsletter-form {
  display: flex;
  margin: 15px 0;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  flex: 1;
  background: white;
  color: #000;
}

.newsletter-form button {
  padding: 10px 16px;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  margin-right: 10px;
}
.payment-icons {
  max-width: fit-content;
}
.payment-icons img {
  width: 220px;
}

.footer-column address {
  margin-top: 20px;
  font-style: normal;
  font-size: 0.9rem;
  color: #000;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #5c5c5c;
  padding-top: 20px;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #000;
}

.footer-bottom a {
  color: #000;
  margin-right: 10px;
  text-decoration: underline;
}

.footer-note p {
  max-width: 800px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }

  .footer-note p {
    padding: 0 10px;
  }
}
.title,
.title li {
  margin: 20px;
  font-family: Arial, Helvetica, sans-serif;
}
.tfaq {
  text-align: center;
}
/*  */

.cart-section {
  max-width: 800px;
  margin: auto;
  background-color: #fff;
  padding: 50px;
  margin: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cart-section h1 {
  text-align: center;
  color: #333;
  margin: 10px;
}

.cart-section ul.cart-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-section .cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.cart-section .item-info {
  flex: 1;
  font-size: 16px;
  color: #444;
}

.cart-section .quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-section .quantity-controls button {
  width: 30px;
  height: 30px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  background-color: #00cc99;
  color: #fff;
  cursor: pointer;
}

.cart-section .quantity-controls button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.cart-section .quantity-display {
  font-size: 16px;
  width: 25px;
  text-align: center;
  color: #333;
}
li a {
  text-decoration: none;
  color: #000;
}
li a:hover {
  text-decoration: underline;
}
.contact-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-container h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
}

.contact-container p {
  color: #666;
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  resize: vertical;
}

.contact-form button {
  background-color: #007bff;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}

@media (max-width: 600px) {
  .contact-container {
    padding: 25px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 15px;
  }

  .contact-form button {
    width: 100%;
  }
}

.cart-footer {
  margin-top: 20px;
  text-align: center;
}

.cart-total {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.cart-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  background-color: #007bff;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}
.cart-link {
  position: relative;
  display: inline-block;
}

.cart-icon {
  width: 24px;
  height: 24px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -15px;
  background-color: #000;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
}

/* =======================
   Checkout Section Styles
   ======================= */
.checkout-section {
  max-width: 600px;
  margin: 60px auto;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.checkout-section h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
  font-weight: 600;
}

/* Form Groups */
.checkout-form .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.checkout-form label {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: #555;
}

.checkout-form input,
.checkout-form textarea {
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: #0077ff;
  box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.15);
}

.checkout-form textarea {
  resize: none;
  min-height: 100px;
}

/* reCAPTCHA box */
.g-recaptcha {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

/* Submit Button */
.checkout-form .submit-btn {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  background: #0077ff;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.checkout-form .submit-btn:hover {
  background: #005fcc;
}

/* Responsive */
@media (max-width: 640px) {
  .checkout-section {
    margin: 40px 20px;
    padding: 30px 20px;
  }
}

.otp-btn {
  margin-top: 10px;
  padding: 10px 14px;
  font-size: 0.95rem;
  background: #0077ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.otp-btn:hover {
  background: #005fcc;
}

#otp-status {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #555;
}

.captcha-section {
  margin-top: 20px;
}

.captcha-section input {
  margin-top: 8px;
  padding: 8px;
  width: 200px;
}

.otp-btn {
  padding: 10px 12px;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
}

.otp-btn:hover {
  background: #555;
}

/* Checkout Layout */
.checkout-container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 20px;
  padding: 20px;
}

@media (max-width: 768px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }
}

.checkout-form {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.checkout-form h2 {
  margin-bottom: 15px;
  font-size: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.order-summary {
  background: #fafafa;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.order-summary h2 {
  margin-bottom: 15px;
  font-size: 20px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.order-total {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 10px;
  font-weight: bold;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #222;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  width: 100%;
}
/* Order Confirmation Section */
.order-confirmation {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f9fafb, #eef2f7);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.confirmation-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  animation: fadeInUp 0.8s ease-in-out;
  border: 1px solid #e6e9f0;
}

.confirmation-box h2 {
  font-size: 1.8rem;
  color: #2e7d32;
  text-align: center;
  margin-bottom: 20px;
}

.confirmation-box p {
  font-size: 1rem;
  color: #444;
  margin: 8px 0;
  line-height: 1.5;
}

.confirmation-box strong {
  color: #111;
}

.confirmation-box h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #333;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 8px;
}

/* Order Details Styling */
#order-details {
  background: #fafafa;
  border: 1px solid #eee;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
}

#order-details p {
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 6px;
}

#order-details p:last-child {
  border-bottom: none;
}

/* Billing Address */
#billing-address {
  background: #f9f9f9;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .confirmation-box {
    padding: 25px;
  }

  .confirmation-box h2 {
    font-size: 1.4rem;
  }

  .confirmation-box p,
  #order-details,
  #billing-address {
    font-size: 0.9rem;
  }
}

.payment-options {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 600px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  background: #fafafa;
}

.payment-method:hover {
  background: #f0f7ff;
  border-color: #3f51b5;
}

.payment-method input[type="radio"] {
  accent-color: #3f51b5;
  transform: scale(1.2);
}

.payment-method span {
  flex: 1;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .payment-options {
    padding: 15px;
  }
  .payment-method {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
}
.img1 {
  width: 180px;
  height: auto;
  vertical-align: middle;
  border-radius: 8px;
}
