

.modal-backdrop.show {
  opacity: .5;
  display: none !important;
}

/* ===========================================
   CHECKOUT PAGE - PIXEL PERFECT DESIGN
   =========================================== */

.achaar-checkout-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* PAGE HEADER */
.achaar-checkout-header {
  text-align: center;
  margin-bottom: 50px;
}

.achaar-checkout-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}

.achaar-checkout-subtitle {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* PAYMENT METHOD SELECTION */
.achaar-payment-methods {
  margin-bottom: 50px;
}

.achaar-payment-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.achaar-payment-card {
  position: relative;
  width: 180px;
  height: 100px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.achaar-payment-card:hover {
  border-color: #58AC46;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.achaar-payment-card.active {
  border-color: #58AC46;
  background: #f0f9f0;
  box-shadow: 0 4px 16px rgba(98, 173, 59, 0.2);
}

.achaar-payment-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.achaar-payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.achaar-payment-icon img {
  max-width: 60px;
  max-height: 24px;
  object-fit: contain;
}

.achaar-payment-checkmark {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: #58AC46;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.achaar-payment-card.active .achaar-payment-checkmark {
  opacity: 1;
  transform: scale(1);
}

/* FORM SECTIONS - TWO COLUMN LAYOUT */
.achaar-checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .achaar-checkout-form-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* LEFT COLUMN - BILLING INFORMATION */
.achaar-checkout-left {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
}

.achaar-step-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.achaar-step-number {
  width: 32px;
  height: 32px;
  background: #58AC46;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}

.achaar-step-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.achaar-billing-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.achaar-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.achaar-form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.achaar-input {
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  color: #0f172a;
  background: #ffffff;
  transition: border-color 0.3s ease;
}

.achaar-input:focus {
  outline: none;
  border-color: #58AC46;
  box-shadow: 0 0 0 3px rgba(98, 173, 59, 0.1);
}

/* RIGHT COLUMN - CREDIT CARD INFORMATION */
.achaar-checkout-right {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
}

.achaar-card-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.achaar-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* BOTTOM SECTION */
.achaar-checkout-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .achaar-checkout-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
}

.achaar-total-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.achaar-total-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.achaar-total-value {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
}

.achaar-checkout-buttons {
  display: flex;
  gap: 15px;
}

.achaar-btn-secondary {
  padding: 6px 20px;
  background: transparent;
  border: 2px solid #FF6A51;
  color: #FF6A51;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.achaar-btn-secondary:hover {
  border-color: #FF6A51;
  background: #FF6A51;
  color: #fff;
}

.achaar-btn-primary {
  padding: 14px 32px;
  background: #58AC46;
  border: 2px solid #58AC46;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.achaar-btn-primary:hover {
  background: #4f9431;
  border-color: #4f9431;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(98, 173, 59, 0.3);
}

.achaar-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .achaar-checkout-page {
    padding: 20px 15px;
  }

  .achaar-checkout-title {
    font-size: 32px;
  }

  .achaar-checkout-subtitle {
    font-size: 16px;
  }

  .achaar-payment-cards {
    gap: 15px;
  }

  .achaar-payment-card {
    width: 150px;
    height: 80px;
  }

  .achaar-checkout-form-grid {
    gap: 25px;
  }

  .achaar-checkout-left,
  .achaar-checkout-right {
    padding: 20px;
  }

  .achaar-step-title {
    font-size: 18px;
  }

  .achaar-checkout-footer {
    padding: 20px;
  }

  .achaar-total-value {
    font-size: 20px;
  }

  .achaar-checkout-buttons {
    flex-direction: column;
    width: 100%;
  }

  .achaar-btn-secondary,
  .achaar-btn-primary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .achaar-payment-cards {
    flex-direction: column;
    align-items: center;
  }

  .achaar-payment-card {
    width: 200px;
  }

  .achaar-form-row {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   HOMEPAGE HERO SECTION
   =========================================== */

.achaar-hero-section {
  position: relative;
  background: linear-gradient(135deg, #58AC46 0%, #4f9431 100%);
  color: #ffffff;
  padding: 80px 20px;
  overflow: hidden;
}

.achaar-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}



.achaar-hero-title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}

.achaar-hero-title .achaar-hero-green {
  color: #58AC46;
}

.achaar-hero-title .achaar-hero-orange {
  color: #D3843B;
}

.achaar-hero-description {
  margin: 0 0 30px;
  opacity: 0.9;
}

.achaar-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.achaar-hero-btn-primary {
  background: #ffffff;
  color: #58AC46;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.achaar-hero-btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.achaar-hero-btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 14px 32px;
  border: 2px solid #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.achaar-hero-btn-secondary:hover {
  background: #ffffff;
  color: #58AC46;
}

.achaar-hero-images {
  position: relative;
  text-align: center;
}

.achaar-hero-jars {
  position: relative;
  display: inline-block;
}


.achaar-hero-jar-front {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-30%);
  width: 250px;
  height: auto;
}

.achaar-hero-badge {
  background: rgba(26, 147, 0, 0.2);
  padding: 15px 20px;
  border-radius: 8px;
  width: 300px;
  margin-left: auto;
}
.achaar-hero-badge-content img {
  position: absolute;
  top: -30px;
  right: -20px;
}

.achaar-hero-badge p {
  margin: 0;
  font-size: 14px;
  color: #0f172a;
  line-height: 1.4;
}

.achaar-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
}

.achaar-hero-wave svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

.achaar-hero-wave path {
  fill: #ffffff;
}

/* ===========================================
   CATEGORIES SECTION
   =========================================== */

.achaar-categories-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.achaar-categories-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.achaar-categories-header {
  margin-bottom: 50px;
}




.achaar-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}





/* ===========================================
   PRODUCTS SECTION
   =========================================== */

.achaar-products-section {
  padding: 60px 0px;
  background: #ffffff;
}

.achaar-products-container {
  max-width: 1200px;
  margin: 0 auto;
}

.achaar-products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.achaar-products-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.achaar-products-link {
  color: #58AC46;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
}

.achaar-products-link:hover {
  color: #4f9431;
}

.achaar-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.achaar-product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.achaar-product-card:hover {
  transform: translateY(-5px);
}

.achaar-product-media {
  background: #EEF7ED;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.achaar-product-media img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.achaar-product-body {
  padding: 20px;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

.achaar-product-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}

.achaar-product-desc {
  font-size: 16px;
  line-height: 24px;
  color: #4B4B4B;
  margin: 0 0 15px;
  font-weight: 400;
}

.achaar-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  align-items: end;
}

.achaar-product-price {
  font-size: 32px;
  color: #000;
  font-weight: 800;
  line-height: 34px;
}
.price-name{
  font-size: 12px;
  font-weight: 400;
  color: #000;
}
.compare {
  font-size: 16px;
  font-weight: 400;
  color: #B9B9B9;
  margin-left: 10px;
}

.achaar-product-rating {
  display: flex;
  gap: 2px;

}

.achaar-product-rating{
  display: flex;
  padding: 4px 6px;
  background: transparent;
  border-radius: 6px;
  font-size: 12px;
  align-items: center;
  font-weight: 400;
  margin-bottom: 15px;
  border: solid 1px #58AC46;
  line-height: 16px;
  margin-left: 10px;
}
.achaar-star {
  font-size: 16px;
  color: #d1d5db;
}

.achaar-star.filled {
  color: #f4b400;
  margin-right: 1px;
}

.achaar-product-variant {
  display: inline-block;
  padding: 4px 6px;
  background: transparent;
  color: #000;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 15px;
  border: solid 1px #58AC46;
  line-height: 16px;
}

.achaar-add-to-cart {
  display: inline-block;
  /* width: 100%; */
  padding:6px 15px;
  background: #58AC46;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.achaar-add-to-cart:hover {
  background: #4f9431;
}

/* ===========================================
   PROMOTIONAL SECTION
   =========================================== */

.achaar-promotional-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #58AC46 0%, #4f9431 100%);
  color: #ffffff;
  text-align: center;
}

.achaar-promotional-container {
  max-width: 800px;
  margin: 0 auto;
}



.achaar-promotional-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.achaar-promotional-feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.achaar-promotional-feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.achaar-promotional-feature-icon svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.achaar-promotional-feature-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}

.achaar-promotional-feature-description {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

.achaar-promotional-cta {
  background: #ffffff;
  color: #58AC46;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  transition: all 0.3s ease;
}

.achaar-promotional-cta:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===========================================
   CART PAGE - PIXEL PERFECT DESIGN
   =========================================== */

.achaar-cart-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* PAGE HEADER */
.achaar-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.achaar-cart-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.achaar-continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  background: #58AC46;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.achaar-continue-shopping:hover {
  background: #4f9431;
}

.achaar-cart-icon {
  font-size: 18px;
}

/* CART TABLE */
.achaar-cart-table {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);*/
}

.achaar-cart-header-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px 30px;
  /*background: #f8f9fa;*/
  /*border-bottom: 1px solid #58AC46;*/
}

.achaar-cart-col-product,
.achaar-cart-col-price,
.achaar-cart-col-quantity,
.achaar-cart-col-total {
  font-size: 16px;
  font-weight: 400;
  color: #1E1E1E;
}

.achaar-cart-divider {
  margin: 0;
  border: 0;
  border-top: 1px solid #58AC46;
}

/* CART ITEM */
.achaar-cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px 30px;
  align-items: center;
}

.achaar-cart-product-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.achaar-cart-product-image {
  width: 100px;
  height: 100px;
  background: #E6F3E3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 15px;
}

.achaar-cart-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.achaar-cart-product-details {
  flex: 1;
}

.achaar-cart-product-name {
  font-size: 22px;
  font-weight: 500;
  color: #1E1E1E;
  margin: 0 0 5px;
}

.achaar-cart-product-name a {
  color: inherit;
  text-decoration: none;
}

.achaar-cart-product-variant {
display: inline-block;
  padding: 4px 6px;
  background: transparent;
  color: #000;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 15px;
  border: solid 1px #58AC46;
  line-height: 16px;
}

.achaar-cart-product-rating {
  display: inline-block;
  padding: 4px 6px;
  background: transparent;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 15px;
  border: solid 1px #58AC46;
  line-height: 16px;
  margin-left: 10px;
}

.achaar-star {
  font-size: 14px;
  color: #f4b400;
}

.achaar-star:not(.filled) {
  color: #d1d5db;
}

.achaar-cart-price,
.achaar-cart-total {
  font-size: 20px;
  font-weight: 600;
  color: #1E1E1E;
  display: flex;
  align-items: center;
}
.achaar-cart-price,
.achaar-cart-total img{
  margin-right: 10px;
}
/* QUANTITY CONTROLS */
.achaar-quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.achaar-qty-btn {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.achaarsingle-qty-minus {
  background: #ff6b6b;
  color: #ffffff;
}

.achaarsingle-qty-minus:hover {
  background: #ff5252;
  color: #fff;
}

.achaarsingle-qty-plus {
  background: #58AC46;
  color: #ffffff;
}
.achaar-qty-btn.achaarsingle-qty-plus {
  background: #E6F3E3;
  color: #58AC46;
}
.achaarsingle-qty-plus:hover {
  background: #58AC46 !important;
  color: #fff !important;
}

.achaarsingle-qty-plus:hover {
  background: #4f9431;
}

.achaar-qty-display {
  min-width: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

/* CART FOOTER */
.achaar-cart-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .achaar-cart-footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* SHIPPING SECTION */
.achaar-cart-shipping .achaar-shipping-container {
  background: #eaf4ea;
  border-radius: 12px;
  padding: 30px;
}

.achaar-shipping-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px;
}

.achaar-shipping-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.achaar-shipping-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.achaar-shipping-option:hover {
  border-color: #58AC46;
}

.achaar-shipping-option.active {
  border-color: #58AC46;
  background: #f0f9f0;
}

.achaar-shipping-option input[type="radio"] {
  display: none;
}

.achaar-shipping-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  position: relative;
  flex-shrink: 0;
}

.achaar-shipping-option.active .achaar-shipping-dot {
  background: #58AC46;
  border-color: #58AC46;
}

.achaar-shipping-option.active .achaar-shipping-dot:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
}

.achaar-shipping-info {
  flex: 1;
}

.achaar-shipping-name {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.achaar-shipping-desc {
  font-size: 14px;
  color: #6b7280;
}

.achaar-shipping-price {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

/* ORDER SUMMARY */
.achaar-cart-summary .achaar-summary-container {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
}

.achaar-summary-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px;
}

.achaar-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  color: #0f172a;
}

.achaar-summary-row span:first-child {
  font-weight: 500;
}

.achaar-summary-row span:last-child {
  font-weight: 600;
  text-align: right;
}

.achaarsingle-total-row {
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}

.achaar-summary-divider {
  margin: 15px 0;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.achaar-checkout-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: #58AC46;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.achaar-checkout-btn:hover {
  background: #4f9431;
}

/* EMPTY CART */
.achaar-empty-cart {
  text-align: center;
  padding: 60px 20px;
}

.achaar-empty-cart-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.achaar-empty-cart-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}

.achaar-empty-cart-message {
  font-size: 16px;
  color: #6b7280;
  margin: 0 0 30px;
}

.achaar-empty-cart .achaar-btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #58AC46;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.achaar-empty-cart .achaar-btn-primary:hover {
  background: #4f9431;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .achaar-cart-page {
    padding: 20px 15px;
  }

  .achaar-cart-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .achaar-cart-title {
    font-size: 28px;
  }

 
  .achaar-cart-product-info {
    /*flex-direction: column;*/
    text-align: center;
  }

  .achaar-cart-col-price,
  .achaar-cart-col-quantity,
  .achaar-cart-col-total {
    text-align: center;
  }

  .achaar-cart-footer {
    gap: 20px;
  }

  .achaar-shipping-container,
  .achaar-summary-container {
    padding: 20px;
  }
}

/* ===========================================
   HOMEPAGE HERO SECTION
   =========================================== */

.achaar-hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(235, 255, 230, 1) 0%, rgba(88, 172, 70, 1) 100%);
  /* background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%2362ad3b" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%2362ad3b" opacity="0.1"/><circle cx="50" cy="50" r="1" fill="%2362ad3b" opacity="0.1"/></svg>'); */
  padding: 100px 0 120px;
  overflow: hidden;
}

.achaar-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.achaar-hero-content {
  position: relative;
  z-index: 2;
}



.achaar-hero-green {
  color: #58AC46;
}

.achaar-hero-orange {
  color: #f97316;
}

.achaar-hero-description {
  margin: 0 0 40px;
}

.achaar-hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.achaar-hero-btn-primary {
  display: inline-block;
  padding: 7px 32px;
  background: #25481E;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
   transition: all 0.3s ease;
  border: solid 2px #25481E;
}

.achaar-hero-btn-primary:hover {
  background: transparent;
  color: #25481E;
}

.achaar-hero-btn-secondary {
  display: inline-block;
  padding: 7px 32px;
  background: transparent;
  color: #25481E;
  text-decoration: none;
  border: 2px solid #25481E;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.achaar-hero-btn-secondary:hover {
  background: #25481E;
  color: #ffffff;
}

.achaar-hero-images {
  position: relative;
}

.achaar-hero-jars {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.achaar-hero-jars img{
  margin-top: 20px;
}



.achaar-hero-jar-front {
  width: 320px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
}


.achaar-hero-badge-content p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #1E1E1E;
  text-align: left;
}

.achaar-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
}

.achaar-hero-wave svg {
  width: 100%;
  height: 100%;
}

.achaar-hero-wave path {
  fill: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .achaar-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .achaar-hero-title {
    font-size: 42px;
  }



  .achaar-hero-buttons {
    justify-content: center;
  }

  .achaar-hero-images {
    order: -1;
  }

  .achaar-hero-jars {
    transform: scale(0.8);
  }



  .achaar-hero-badge-content p {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .achaar-hero-section {
    padding: 60px 0 80px;
  }

  .achaar-hero-title {
    font-size: 36px;
  }

  .achaar-hero-description {
    font-size: 16px;
  }

  .achaar-hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .achaar-hero-btn-primary,
  .achaar-hero-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .achaar-hero-jars {
    transform: scale(0.6);
  }
}

/* ===========================================
   EXPLORE OUR CATEGORIES SECTION
   =========================================== */

.achaar-categories-section {
  padding: 80px 0px;
  background: #ffffff;
}

.achaar-categories-container {
  max-width: 1200px;
  margin: 0 auto;
}

.achaar-categories-header {
  text-align: center;
  margin-bottom: 60px;
}

.achaar-categories-title {
  margin: 0 0 16px;
}











/* Responsive */
@media (max-width: 768px) {
 
  .achaar-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .achaar-categories-title {
    font-size: 28px;
  }

  .achaar-categories-description {
    font-size: 16px;
  }

 
}

@media (max-width: 480px) {
  .achaar-categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===========================================
   PROMOTIONAL SECTION
   =========================================== */

.achaar-promotional-section {
  padding: 80px 0px;
  background: #fef7f0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23d97706" opacity="0.05"/><circle cx="80" cy="80" r="1" fill="%23d97706" opacity="0.05"/><circle cx="50" cy="50" r="0.5" fill="%23d97706" opacity="0.05"/></svg>');
  position: relative;
}

.achaar-promotional-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.achaar-promotional-content {
  position: relative;
  z-index: 2;
}

.achaar-promotional-title {
  font-size: 32px;
  font-weight: 700 !important;
  line-height: 1.2;
  color: #1E1E1E;
  margin: 0 0 24px;
}

.achaar-promotional-description {
  
  color: #1E1E1E;
  margin: 0 0 20px;
}

.achaar-promotional-highlight span {
  font-size: 16px;
  font-weight: 500;
  color: #58AC46;
}
.achaar-promotional-highlight {
  font-size: 12px;
  font-weight: 400;
  color: #1E1E1E;
  margin: 0 0 30px;
}

.achaar-highlight-green {
  color: #16a34a;
  font-weight: 700;
}

.achaar-promotional-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 30px !important;
  border-radius: 8px;
  background: #58AC46;
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 500;
  border: 0;
  text-decoration: none;
  white-space: nowrap;
}

.achaar-promotional-btn:hover {
  background: #15803d;
}
.btn-ct {
  display: flex;
  align-items: center;
}
.achaar-promotional-warning {
 font-size: 18px;
  color: #D3843B;
  font-weight: 500;
  margin: 0;
  margin-left: 20px;
}

.achaar-promotional-images {
  position: relative;
}

.achaar-promotional-social {
  position: absolute;
  top: -40px;
  right: 0px;
  display: flex;
  gap: 12px;
  z-index: 3;
}
.achaar-social-icon i{
  font-size: 25px;
}
.achaar-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  /*width: 36px;*/
  /*height: 36px;*/
  /*background: rgba(255, 255, 255, 0.9);*/
  /*border-radius: 50%;*/
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.achaar-social-icon:hover {
  background: #ffffff;
  transform: scale(1.1);
}

.achaar-social-icon svg {
  width: 18px;
  height: 18px;
}


.achaar-promotional-jars{
  position: relative;
  z-index: 9;
}
.achaar-promo-jar-back {
  width: 360px;
  margin-top: 30px;
  height: 100%;
}



.achaar-promo-jar-front {
  width: 100px;
  height: auto;
  position: absolute;
  right: -30px;
  bottom: 0;
  z-index: 9;
}

.achaar-promotional-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
}


/* Responsive */
@media (max-width: 992px) {
  .achaar-promotional-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .achaar-promotional-title {
    font-size: 36px;
  }

  




}

@media (max-width: 768px) {
  


 


  .achaar-social-icon {
    width: 32px;
    height: 32px;
  }

  .achaar-social-icon svg {
    width: 16px;
    height: 16px;
  }

}

/* ===========================================
   LIMITED TIME OFFER SECTION
   =========================================== */

.achaar-limited-offer-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.achaar-limited-offer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.achaar-limited-offer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.achaar-offer-title-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

.achaar-limited-offer-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.achaar-countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.achaar-timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}

.achaar-timer-number {
  font-size: 24px;
  font-weight: 700;
  color: #dc2626;
  line-height: 1;
}

.achaar-timer-label {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  margin-top: 4px;
}

.achaar-timer-separator {
  font-size: 24px;
  font-weight: 700;
  color: #d1d5db;
}

.achaar-see-all-link {
  color: #58AC46;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.achaar-see-all-link:hover {
  color: #4f9431;
}

.achaar-limited-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.achaar-offer-product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.achaar-offer-product-card:hover {
  transform: translateY(-5px);
}

.achaar-offer-product-media {
  background: #f8f9fa;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.achaar-offer-product-media img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.achaar-offer-product-body {
  padding: 20px;
}

.achaar-offer-product-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.achaar-offer-product-variant {
  display: inline-block;
  padding: 4px 8px;
  background: #58AC46;
  color: #ffffff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.achaar-offer-product-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.achaar-star {
  font-size: 14px;
  color: #d1d5db;
}


.achaar-offer-product-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
  margin: 0 0 15px;
}

.achaar-offer-product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.achaar-offer-sale-price {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
}

.achaar-offer-regular-price {
  font-size: 18px;
  color: #9ca3af;
  text-decoration: line-through;
}

.achaar-offer-add-to-cart {
  display: inline-block;
  width: 100%;
  padding: 12px;
  background: #58AC46;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.achaar-offer-add-to-cart:hover {
  background: #4f9431;
}

/* Responsive */
@media (max-width: 992px) {
  .achaar-limited-offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .achaar-offer-title-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .achaar-countdown-timer {
    padding: 10px 16px;
  }

  .achaar-timer-number {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .achaar-limited-offer-section {
    padding: 60px 20px;
  }

  .achaar-limited-offer-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .achaar-offer-title-section {
    align-items: center;
  }

  .achaar-limited-offer-title {
    font-size: 28px;
  }

  .achaar-limited-offer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .achaar-offer-product-media {
    padding: 20px;
    min-height: 150px;
  }

  .achaar-offer-product-media img {
    max-height: 120px;
  }
}

/* ===========================================
   FEATURED PRODUCTS SECTION
   =========================================== */

.achaar-featured-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.achaar-featured-container {
  max-width: 1200px;
  margin: 0 auto;
}

.achaar-featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.achaar-featured-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.achaar-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.achaar-featured-product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.achaar-featured-product-card:hover {
  transform: translateY(-5px);
}

.achaar-featured-product-media {
  background: #f8f9fa;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.achaar-featured-product-media img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.achaar-featured-product-body {
  padding: 20px;
}

.achaar-featured-product-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.achaar-featured-product-variant {
  display: inline-block;
  padding: 4px 8px;
  background: #58AC46;
  color: #ffffff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.achaar-featured-product-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.achaar-featured-product-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
  margin: 0 0 15px;
}

.achaar-featured-product-price {
  margin-bottom: 15px;
}

.achaar-featured-price {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
}

.achaar-featured-add-to-cart {
  display: inline-block;
  width: 100%;
  padding: 12px;
  background: #58AC46;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.achaar-featured-add-to-cart:hover {
  background: #4f9431;
}

/* Responsive */
@media (max-width: 992px) {
  .achaar-featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .achaar-featured-section {
    padding: 60px 20px;
  }

  .achaar-featured-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .achaar-featured-title {
    font-size: 28px;
  }

  .achaar-featured-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .achaar-featured-product-media {
    padding: 20px;
    min-height: 150px;
  }

  .achaar-featured-product-media img {
    max-height: 120px;
  }
}

/* ===========================================
   POPULAR PRODUCTS SECTION
   =========================================== */

.achaar-popular-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.achaar-popular-container {
  max-width: 1200px;
  margin: 0 auto;
}

.achaar-popular-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.achaar-popular-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.achaar-popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.achaar-popular-product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.achaar-popular-product-card:hover {
  transform: translateY(-5px);
}

.achaar-popular-product-media {
  background: #f8f9fa;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.achaar-popular-product-media img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.achaar-popular-product-body {
  padding: 20px;
}

.achaar-popular-product-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.achaar-popular-product-variant {
  display: inline-block;
  padding: 4px 8px;
  background: #58AC46;
  color: #ffffff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.achaar-popular-product-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.achaar-popular-product-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
  margin: 0 0 15px;
}

.achaar-popular-product-price {
  margin-bottom: 15px;
}

.achaar-popular-price {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
}

.achaar-popular-add-to-cart {
  display: inline-block;
  width: 100%;
  padding: 12px;
  background: #58AC46;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.achaar-popular-add-to-cart:hover {
  background: #4f9431;
}

/* Responsive */
@media (max-width: 992px) {
  .achaar-popular-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .achaar-popular-section {
    padding: 60px 20px;
  }

  .achaar-popular-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .achaar-popular-title {
    font-size: 28px;
  }

  .achaar-popular-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .achaar-popular-product-media {
    padding: 20px;
    min-height: 150px;
  }

  .achaar-popular-product-media img {
    max-height: 120px;
  }
}

/* ===========================================
   TESTIMONIALS SECTION
   =========================================== */

.achaar-testimonials-section {
  padding: 80px 20px;
  background: #ffffff;
}

.achaar-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.achaar-testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.achaar-testimonials-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}

.achaar-testimonials-description {
  font-size: 18px;
  line-height: 1.6;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.achaar-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.achaar-testimonial-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.achaar-testimonial-card:hover {
  transform: translateY(-5px);
}

.achaar-testimonial-content {
  margin-bottom: 20px;
}

.achaar-testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  font-style: italic;
  margin: 0 0 15px;
}

.achaar-testimonial-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.achaar-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.achaar-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.achaar-testimonial-info h4 {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.achaar-testimonial-info p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 992px) {
  .achaar-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .achaar-testimonials-section {
    padding: 60px 20px;
  }

  .achaar-testimonials-title {
    font-size: 28px;
  }

  .achaar-testimonials-description {
    font-size: 16px;
  }

  .achaar-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .achaar-testimonial-card {
    padding: 20px;
  }
}

/* ===========================================
   THANK YOU (ORDER RECEIVED) PAGE
   =========================================== */

.achaar-thankyou-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.achaar-thankyou-container {
  background: #ffffff;
  border-radius: 12px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.achaar-thankyou-title {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}

.achaar-thankyou-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #58AC46;
  margin: 0 0 30px;
}

.achaar-thankyou-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #374151;
  margin: 0 0 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.achaar-thankyou-actions {
  margin-top: 40px;
}

.achaar-thankyou-actions .achaar-btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: #58AC46;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.achaar-thankyou-actions .achaar-btn-primary:hover {
  background: #4f9431;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .achaar-thankyou-page {
    padding: 40px 20px;
  }

  .achaar-thankyou-container {
    padding: 40px 20px;
  }

  .achaar-thankyou-title {
    font-size: 36px;
  }

  .achaar-thankyou-subtitle {
    font-size: 20px;
  }

  .achaar-thankyou-content p {
    font-size: 16px;
  }

  .achaar-thankyou-actions .achaar-btn-primary {
    padding: 14px 30px;
    font-size: 16px;
  }
}

/* ===========================================
   MY ACCOUNT PAGE - CUSTOM DESIGN
   =========================================== */

.main-account {

  padding: 40px 0px;
}

.achaar-myaccount-header {
  text-align: center;
  margin-bottom: 40px;
}

.achaar-myaccount-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.achaar-myaccount-container {
  display: flex;
  gap: 40px;
}

.achaar-myaccount-sidebar {
  width: 300px;
  flex-shrink: 0;
}

.achaar-myaccount-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.achaar-myaccount-tab {
  margin-bottom: 10px;
}

.achaar-myaccount-tab a {
  display: block;
  padding: 8px 20px;
  background: #ffffff;
  border: 2px solid #58AC46;
  border-radius: 8px;
  color: #0f172a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.achaar-myaccount-tab.active a {
  background: #58AC46;
  color: #ffffff;
  font-weight: 600;
}

.achaar-myaccount-tab a:hover {
  background: #58AC46;
  color: #ffffff;
}

/*.achaar-myaccount-content {
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}*/

.achaar-myaccount-content-inner {
  min-height: 400px;
}

/* PERSONAL INFORMATION */



.achaar-profile-picture-section {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.achaar-profile-picture-section a {
  font-size: 12px;
  color: #1E1E1E;
  font-weight: 400;
  margin-left: 20px;
}
.achaar-profile-picture img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.achaar-edit-picture-link {
  display: inline-block;
  margin-top: 10px;
  color: #58AC46;
  text-decoration: none;
  font-size: 14px;
}

.achaar-user-id {
  text-align: right;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

.achaar-personal-form {
  flex: 1;
}

.achaar-form-group {
  margin-bottom: 20px;
}

.achaar-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.achaar-form-group label .required {
  color: #dc2626;
}

.achaar-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  color: #0f172a;
  background: #ffffff;
  transition: border-color 0.3s ease;
}

.achaar-input:focus {
  outline: none;
  border-color: #58AC46;
}

.achaar-input.achaar-error {
  border-color: #dc2626;
}

.achaar-error-message {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
}

.achaar-form-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
}

/* ORDERS */
.achaar-my-orders .achaar-orders-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.achaar-my-orders .achaar-orders-header h2 {
  margin: 0;
  font-size: 24px;
  color: #0f172a;
}

.achaar-orders-filter {
  padding: 8px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
}

.achaar-order-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.achaar-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.achaar-order-id {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.achaar-order-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.achaar-order-status.completed {
  background: #d1fae5;
  color: #065f46;
}

.achaar-order-status.processing {
  background: #fef3c7;
  color: #92400e;
}

.achaar-order-details {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.achaar-order-info {
  flex: 1;
}

.achaar-order-info > div {
  margin-bottom: 10px;
}

.achaar-label {
  font-weight: 600;
  color: #374151;
  margin-right: 10px;
}

.achaar-value {
  color: #0f172a;
}

.achaar-order-products {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.achaar-order-product {
  display: flex;
  align-items: center;
  gap: 15px;
}

.achaar-product-image img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

.achaar-product-info {
  flex: 1;
}

.achaar-product-name {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.achaar-product-qty {
  font-size: 14px;
  color: #6b7280;
}

.achaar-order-actions {
  text-align: right;
}

/* ADDRESS MANAGEMENT */
  .achaar-address-text br {
  display: none;
}
.icon-loaction i {
  margin-right: 10px;
  font-size: 20px;
  margin-top: 10px;
}


.my-address {
  display: flex;
}
.achaar-edit-address {
  font-size: 16px;
  font-weight: 400;
  color: #1E1E1E;
  background: transparent;
  border: navajowhite;
}
.achaar-delete-address {
  font-size: 16px;
  font-weight: 400;
  color: #1E1E1E;
  background: transparent;
  border: navajowhite;
}
.add-address-button span {
  background: #58AC46;
  color: #fff;
  padding: 0px 6px;
  border-radius: 50%;
  font-weight: 500;
  margin-right: 10px;
}
.add-address-button {
  font-size: 16px;
  font-weight: 500;
  color: #58AC46;
}

.achaar-add-address-link {
  display: inline-block;
  padding: 12px 20px;
  background: #58AC46;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}

.achaar-address-list {
  margin-bottom: 30px;
}

.achaar-address-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid #CBE5C6;
  /*margin-bottom: 15px;*/
  justify-content: space-between;
}

.achaar-address-name {
  font-weight: 600;
  color: #1E1E1E;
  font-size: 16px;
}

.achaar-address-text {
  font-size: 16px;
  color: #1E1E1E;
  font-weight: 400;

}

.achaar-address-actions {
  display: flex;
  gap: 10px;
}

.achaar-address-form {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
}

.achaar-address-form h3 {
  margin: 0 0 20px;
  font-size: 20px;
  color: #0f172a;
}

.achaar-form-row {
  display: flex;
  gap: 15px;
}

.achaar-form-row .achaar-form-group {
  flex: 1;
}

.achaar-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
  cursor: pointer;
}

.achaar-address-type-options {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.achaar-radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
}

.achaar-radio-label input[type="radio"] {
  margin: 0;
}

.achaar-radio-text {
  font-weight: 500;
}

/* MODAL */
.achaar-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow-y: auto;
}

.achaar-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.achaar-modal-content {
  position: absolute;
  z-index: 10000;
  margin: 5vh auto;
  background: #ffffff;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
}
.achaar-modal-content {
  text-align: center;
}

.achaar-modal-content h3 {
  margin: 0 0 15px;
  font-size: 16px;
  color: #1E1E1E;
  font-weight: 400;
  padding: 20px 30px 0;
  font-family: "Manrope" !important;
}

.achaar-message {
  padding: 10px 15px;
  margin: 0 30px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.achaar-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.achaar-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.achaar-address-form-inner {
  padding: 15px 30px 30px;
}

.achaar-form-group {
  margin-bottom: 15px;
}

.achaar-form-row {
  display: flex;
  gap: 10px;
}

.achaar-form-row .achaar-form-group {
  flex: 1;
  margin-bottom: 15px;
}

.achaar-form-buttons {
  display: flex;
  gap: 15px;
  justify: flex-end;
  margin-top: 20px;
  padding-top: 20px;
  /*border-top: 1px solid #e5e7eb;*/
}

.achaar-modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  padding: 20px 30px;
  border-top: 1px solid #e5e7eb;
}

.achaar-btn-logout {
  display: inline-block;
  padding: 8px 30px;
  background: #FF6A51;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.3s ease;
    border: solid 1px #FF6A51;
}
.achaar-btn-logout:hover{
  background: transparent;
}
.achaar-modal-buttons .achaar-btn-secondary{
  padding: 8px 30px;
  background: transparent;
  border: 2px solid #B9B9B9;
  color: #B9B9B9;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.achaar-modal-buttons .achaar-btn-secondary:hover {
  background: #B9B9B9;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .achaar-myaccount-container {
    flex-direction: column;
    gap: 30px;
  }

  .achaar-myaccount-sidebar {
    width: 100%;
  }

  .achaar-myaccount-tabs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
  }

  .achaar-myaccount-tab {
    margin-bottom: 0;
    flex-shrink: 0;
  }

 

  .achaar-order-details {
    flex-direction: column;
    gap: 20px;
  }

  .achaar-address-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .achaar-address-actions {
    width: 100%;
    justify-content: start;
    margin-left: 25px;
  }
  .achaar-address-item{
  padding: 10px;
}

}











/* ========================== my css =================== */
.achaar-category-icon{
  text-align: center;
}

.achaar-category-icon h3 {
  margin-top: 15px;
  font-size: 24px;
  color: #B9B9B9;
  font-weight: 400;
  line-height: 28px;
  font-family: "Arvo" !important;
}
.col-md-3.col-6.active .achaar-category-icon h3 {
  color: #D3843B;
}



.journey-section {
      padding: 80px 0 !important;
      background: #ffffff;
    }

    .journey-header {
      margin-bottom: 50px;
    }

    .journey-title {
      margin-bottom: 8px;
    }

    .journey-subtitle {
      font-size: 18px;
      font-weight: 400;
      color: #000000;
    }

    /* Image Grid */
    .journey-images {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .journey-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /*border-radius: 6px;*/
      display: block;
    }

    /* Right Content */
    .journey-content {
      padding-left: 10px;
    }

    .content-title {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 16px;
      color: #000000;
      font-family: "Arvo" !important;
    }

    .journey-content p {
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .journey-btn {
      display: inline-block;
      padding: 6px 22px;
      border: 1px solid #58AC46;
      color: #58AC46;
      font-size: 18px;
      text-decoration: none;
      border-radius: 6px;
      transition: 0.3s;
    }

    .journey-btn:hover {
      background: #58AC46;
      color: #ffffff;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .journey-content {
        padding-left: 0;
        margin-top: 20px;
      }
    }

    @media (max-width: 575px) {
      .journey-images {
        gap: 12px;
      }

      .journey-title {
        font-size: 26px;
      }
    }


    /*=================*/

    .testimonial-section {
      padding: 80px 0;
      background: #ffffff;
    }

    .testimonial-title {
      font-size: 32px;
      font-weight: 600;
      color: #000;
      margin-bottom: 8px;
    }

    .testimonial-sub {
      font-size: 14px;
      color: #555;
    }

    /* Card */
    .testimonial-card {
      border-radius: 18px;
      overflow: hidden;
      margin: 15px;
      background: #FBF3EB;
    }

    .testimonial-content {
      padding: 30px;
      position: relative;
      min-height: 180px;
    }

    .testimonial-content p {
      font-size: 18px;
      line-height: 1.8;
      color: #333;
      font-style: italic;
      margin-top: 22px;
      margin-bottom: 40px !important;
    }

    .quote {
      font-size: 100px;
      color: #BAD7A9;
      position: absolute;
      top: 35px;
      left: 28px;
      font-family: serif;
    }

    /* Footer */
    .testimonial-footer {
      background: #58AC46;
      padding: 6px 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .user {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
    }

    .user img {
     width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-top: -80px;
    }

    .user h4 {
      font-size: 18px;
      font-weight: 600;
      color: #F8F8FF;
      margin:0px;

 }

    .user span {
      font-size: 14px;
      color: #F8F8FF;
      font-weight: 400;
    }

    .stars {
      color: #ffd700;
      font-size: 14px;
    }

    /* Slick dots */
    .testimonial-slider .slick-dots {
      margin-top: 25px;
      text-align: center;
    }

    .testimonial-slider .slick-dots li {
      display: inline-block;
      margin: 0 4px;
    }

    .testimonial-slider .slick-dots button {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      /*background: #cfdac6;*/
      border: solid 2px #BAD7A9;
      border: none;
      font-size: 0;
    }

    .testimonial-section .slick-dots li{
        margin-right: 15px !important;
    }

    .testimonial-slider .slick-dots .slick-active button {
      background: #58AC46;
    }

     .testimonial-section .slick-dots li::before{
        border: 2px solid #58AC46 !important;
    }
     .testimonial-section .slick-dots li{
        background: #58AC46 !important;
    }
    /* Responsive */
    @media (max-width: 768px) {
      .testimonial-content {
        min-height: auto;
      }
    }


    /*================*/

    .availability-section {
      padding: 50px 0;
      background: #ffffff;
    }

    .availability-wrap {
      text-align: center;
    }

    .availability-text {
      margin-bottom: 40px;
    }

    .availability-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 35px;
      flex-wrap: wrap;
    }

    .availability-logos img {
      max-height: 50px;
      width: auto;
      display: block;
      object-fit: contain;
      filter: grayscale(0%);
      transition: 0.3s ease;
    }

    .availability-logos img:hover {
      transform: translateY(-3px);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .availability-logos {
        gap: 25px;
      }

      .availability-logos img {
        max-height: 32px;
      }
    }

    @media (max-width: 480px) {
     

      .availability-logos img {
        max-height: 28px;
      }
    }