/*----login css----*/

/* MAIN BACKGROUND */
.login-container {
  min-height: calc(100vh - 140px);
  background: linear-gradient(-45deg, #e8f5e9, #dcedc8, #f1f8f4, #c8e6c9);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* LEFT SECTION PREMIUM */
.left-section {
  position: relative;
  padding-left: 100px;
  background: linear-gradient(135deg, #eef7f1, #e3f2e8);
  overflow: hidden;
}

/* SOFT LIGHT BLOB */
.left-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,169,97,0.15), transparent 70%);
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
}

/* RISHI WRAPPER */
.rishi-wrapper {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

/* IMAGE */
.rishi-img {
  width: 280px;
  animation: floatRishi 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* FLOAT EFFECT */
@keyframes floatRishi {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* AURA RINGS (MULTI LAYER) */
.rishi-aura::before,
.rishi-aura::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* OUTER AURA */
.rishi-aura::before {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(201,169,97,0.25), transparent 70%);
  animation: auraPulse 5s ease-in-out infinite;
}

/* INNER AURA */
.rishi-aura::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(201,169,97,0.2), transparent 70%);
  animation: auraPulse 5s ease-in-out infinite reverse;
}

/* AURA ANIMATION */
@keyframes auraPulse {
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

/* TEXT */
.brand-title {
  font-size: 54px;
  font-family: 'DM Serif Display', serif;
  color: #1B5E20;
  margin-top: 20px;
}

.brand-tagline {
  font-size: 16px;
  color: #666;
}

/* CARD */
.otp-login-card {
  position: relative;
  z-index: 2;
}

.otp-login-card {
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.75);
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  animation: floatCard 5s ease-in-out infinite;
}

/* OTP BOX */
.otp-box {
  width: 45px;
  height: 50px;
  text-align: center;
  font-size: 18px;
  border-radius: 10px;
}

/* BRAND TEXT */
.brand-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}

.brand-tagline {
  font-size: 16px;
  margin-top: 10px;
}

.send-otp-btn {
  background: linear-gradient(135deg, #2e7d32, #43a047);
  border: none;
  padding: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.send-otp-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(46,125,50,0.3);
}

/* WRAPPER */
.herb-animation {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

/* BASE STYLE */
.herb {
  position: absolute;
  width: 26px;
  height: 26px;
  opacity: 0.12;
}

/* LEAF SVG */
.leaf1, .leaf2 {
  background: url('images/leaf.svg') no-repeat center/contain;
}

/* HERB SVG (slightly different color) */
.herb1, .herb2, .herb3 {
  background: url('images/herb.svg') no-repeat center/contain;
  opacity: 0.10;
}

/* POSITIONS + VARIATION */

/* Leaves */
.leaf1 {
  left: 20%;
  top: 85%;
  animation: floatHerb 20s linear infinite;
}

.leaf2 {
  left: 70%;
  top: 70%;
  animation: floatHerb 24s linear infinite reverse;
}

/* Herbs */
.herb1 {
  left: 40%;
  top: 90%;
  animation: floatHerb 22s linear infinite;
}

.herb2 {
  left: 80%;
  top: 80%;
  animation: floatHerb 26s linear infinite reverse;
}

.herb3 {
  left: 55%;
  top: 95%;
  animation: floatHerb 23s linear infinite;
}

/* FLOAT MOTION */
@keyframes floatHerb {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.12;
  }
  100% {
    transform: translateY(-140px) rotate(180deg);
    opacity: 0;
  }
}

/* QUOTE BOX */
.quote-box {
  margin-top: 30px;
  max-width: 420px;
}

/* MAIN QUOTE */
.quote-text {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  line-height: 1.4;
  color: #1B5E20;
}

.quote-text {
  background: linear-gradient(90deg, #1B5E20, #3A7D44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* MEANING */
.quote-meaning {
  margin-top: 12px;
  font-size: 14px;
  color: #666;
  font-family: 'Inter', sans-serif;
}

/*-----Login css End----*/

/*----Checkout Css----*/

.checkout-container {
  margin: 60px auto;
}

.card {
  border-radius: 14px;
  z-index:0;
}

.address-box {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
}

.product-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.product-img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 8px;
}

.sticky-summary {
  position: sticky;
  top: 100px;
}

.trust-grid {
  display: flex;
  justify-content: space-between;
}

.trust-grid div {
  flex: 1;
}

.trust-strip {
  background: #f1f3f5;
  padding: 8px;
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
}

.btn-success {
  border-radius: 10px;
  font-size: 16px;
}

@media(max-width:768px){

  .sticky-summary {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    z-index: 999;
  }

  .checkout-container {
    margin-bottom: 120px;
  }

}

.address-card {
  border-radius: 14px;
  background: #fff;
}

.section-block {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 10px;
}

.section-title {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.section-content {
  font-size: 14px;
  color: #222;
  line-height: 1.5;
}

.change-link {
  font-size: 13px;
  color: #007bff;
  text-decoration: none;
}

.change-link:hover {
  text-decoration: underline;
}

.divider {
  height: 1px;
  background: #eee;
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-box {
  text-align: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ddd;
  border-top: 4px solid #28a745;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
}

.loader-text {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.d-none {
  display: none;
}

/*----checkout Css end---*/

/*----Product Details Css----*/

    .product-gallery { 
        display:flex; 
        gap:20px; 
        align-items:flex-start;
        }
        
    .product-main-img { 
        width:360px;
        height:360px;
        object-fit:contain;
        border-radius:8px;
        box-shadow:0 6px 20px rgba(0,0,0,0.08);
        }
        
    .product-thumbs { 
        display:flex;
        flex-direction:column; gap:10px; 
        
    }
    
    .product-thumb { 
        width:70px; 
        height:70px; 
        object-fit:cover; 
        border-radius:6px; 
        cursor:pointer;
        border:2px solid transparent;
        }
        
    .product-thumb.active { 
        border-color:#343a40;
        }
    .price-old { 
        text-decoration:line-through;
        color:#888;
        margin-left:8px;
        font-size:0.95rem; 
        
    }
    .item-card { 
        background:#fff;
        border-radius:8px; 
        padding:12px;
        text-align:center;
        box-shadow:0 2px 8px rgba(0,0,0,0.04); 
        
    }
    
    .slick-arrow { 
        background: #fff;
        border-radius:50%;
        border:1px solid #eee;
        width:36px; 
        height:36px;
        display:flex;
        align-items:center;
        justify-content:center;
        }
        
    .quantity-controls { 
        display:flex; 
        align-items:center; gap:6px; 
        
    }
    .quantity-controls .btn { 
        width:34px;
        height:34px;
        padding:0; 
        
    }
    .nav-tabs .nav-link {
  font-weight: 600;
  border: none;
  color: #555;
}
.nav-tabs .nav-link.active {
  color: #000;
  border-bottom: 3px solid #198754;
}
.tab-content {
 display:block;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}

/* ===========================
   BREADCRUMB STYLE - DHARMA AYURVED
   =========================== */

.breadcrumb-wrapper {
    z-index: 0;
    background: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 25px;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

.breadcrumb-item {
    font-size: 15px;
    color: #6c757d;
    font-weight: 500;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #198754; /* Herbal green brand look */
    transition: 0.2s ease-in-out;
}

.breadcrumb-item a:hover {
    color: #0f5c32;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›"; /* modern chevron separator */
    color: #6c757d;
    font-size: 16px;
    padding: 0 8px;
}

.breadcrumb-item.active {
    color: #343a40;
    font-weight: 600;
}


/*---Product Detauils Css Ends-----*/

/*------Cart Css------*/

    .cart-container { margin-top: 60px; margin-bottom: 60px; }
    .cart-item {
      background: #fff;
      border-radius: 8px;
      padding: 15px;
      margin-bottom: 15px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    .cart-item img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
    }
    .remove-btn {
      color: #dc3545;
      cursor: pointer;
      font-size: 13px;
    }
    .remove-btn:hover {
      text-decoration: underline;
    }
    .quantity-input {
      width: 70px;
      text-align: center;
    }
    .cart-summary {
      background: #fff;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      position: sticky;
      top: 100px;
    }
/*----Cart Css End------*/

/* ===== PROFILE WRAPPER ===== */
.profile-wrapper {
  min-height: calc(100vh - 140px);
  background: linear-gradient(135deg, #eef7f1, #f8fbf9);
  padding: 10px;
}

/* ===== SIDEBAR ===== */
.profile-sidebar {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.user-avatar {
  width: 60px;
  height: 60px;
  background: #3A7D44;
  color: #fff;
  border-radius: 50%;
  line-height: 60px;
  font-weight: bold;
  font-size: 22px;
  margin: auto;
}

/* MENU */
.profile-menu {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.profile-menu li {
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.profile-menu li:hover,
.profile-menu li.active {
  background: #e8f5e9;
  color: #2e7d32;
}

/* ===== CONTENT ===== */
.profile-content {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

/* LOADER */
.loader {
  
}

/* SMOOTH TRANSITION */
#dynamicContent {
  transition: all 0.3s ease;
}

select.form-control {
  border-radius: 10px;
  padding: 10px;
}

.order-status {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
}
.status-paid { background:#e6f7ef; color:#2f7f5f; }
.status-pending { background:#fff4e5; color:#c47b00; }
.status-failed { background:#fdecea; color:#b71c1c; }

.order-items {
  display: none;
  background: #f9f9f9;
}