/* ═══════════════════════════════════════════════════════════
   SHARED DESIGN SYSTEM  ·  _shared.css
   Used by: index.html, privacy.html, cart.html, payment.html
═══════════════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --rose:          #e77e23;
  --rose-deep:     #d54310;
  --rose-pale:     #f7e8eb;
  --rose-muted:    #deb8bf;
  --cream:         #fdf6f0;
  --cream-deep:    #f5ebe2;
  --text-primary:  #2a1c1f;
  --text-muted:    #78716d;
  --border-soft:   rgba(196,104,122,0.15);
  --border-medium: rgba(196,104,122,0.28);
  --success:       #2e7d32;
  --success-bg:    #edf7ed;
  /* --ff-display:    'Cormorant Garamond', Georgia, serif; */
  --ff-display:    "Inter", sans-serif;
  /* --ff-body:       'DM Sans', sans-serif; */
  --ff-body:       "Roboto", sans-serif;
  --r-card:        18px;
  --r-pill:        100px;
  --shadow-card:   0 4px 28px rgba(196,104,122,0.10), 0 1px 6px rgba(0,0,0,0.04);
  --shadow-hover:  0 12px 44px rgba(196,104,122,0.18), 0 3px 12px rgba(0,0,0,0.06);
  --base-font:10px;
}

*, *::before, *::after { box-sizing: border-box; }
img{
  width: 100%;
  height: auto;
}
html{
  /*font-size: 10px;*/
}
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text-primary);
 
}
a.sort-links {
    color: var(--rose);
}
p{
  font-size:1rem;
 
}
/* ── Navbar ── */
.site-nav {
  background: rgba(253,246,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.site-nav .navbar-brand {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rose) !important;
  letter-spacing: -0.01em;
}

.site-nav .nav-link {
  font-size: 1rem;
  color: var(--text-muted) !important;
  font-weight: 400;
  padding: 0.4rem 0.85rem !important;
  transition: color 0.2s;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--rose) !important;
}

.nav-cart-badge {
  position: relative;
}

li.sort-cart-tracking-list-group-item:before {
    content: "";
    background: #329537;
    position: absolute;
    left: 0;
    background: #329537;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: -6px;
 
}
li.sort-cart-tracking-list-group-item{
 background: unset;
    border: unset !important;
    border-left: 1px solid #329537 !important;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

.nav-cart-badge .badge-count {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--rose);
  color: #fff;
  font-size: 1rem;
    width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* ── Footer ── */
.site-footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.55);
  padding: 2.5rem 0 1.5rem;
  margin-top: 4rem;
  font-size: 1.4rem;
}

.site-footer a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover { color: var(--rose-muted); }

.site-footer .footer-brand {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
}

/* ── Shared surface / card ── */
.surface-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* ── Buttons ── */
.btn-rose {
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  padding: 11px 28px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px rgba(196,104,122,0.30);
  transition: background 0.22s, box-shadow 0.22s, transform 0.12s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  text-decoration: none;
}

.btn-rose:hover {
  background: var(--rose-deep);
  color: #fff;
  box-shadow: 0 7px 24px rgba(196,104,122,0.40);
}

.btn-rose:active { transform: scale(0.975); }

.btn-rose-outline {
  background: transparent;
  color: var(--rose);
  border: 1px solid var(--rose-muted);
  border-radius: var(--r-pill);
  padding: 10px 26px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 400;
  transition: background 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  text-decoration: none;
}

.btn-rose-outline:hover {
  background: var(--rose-pale);
  border-color: var(--rose);
  color: var(--rose-deep);
}

/* ── Section heading ── */
.section-eyebrow {
  font-size:1.1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 6px;
}

.section-heading {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 0;
}

/* ── Tag / Badge ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 7px;
  background: var(--rose-pale);
  color: var(--rose);
  border: 1px solid rgba(196,104,122,0.18);
}

/* ── Divider ── */
.rose-divider {
  height: 1px;
  background: var(--border-soft);
  border: none;
}

/* ── Step indicator ── */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.checkout-steps .step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.checkout-steps .step.active { color: var(--rose); font-weight: 500; }
.checkout-steps .step.done   { color: var(--success); }

.step-circle {
  width:48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 600;
  flex-shrink: 0;
}

.checkout-steps .step.active .step-circle { background: var(--rose); color: #fff; border-color: var(--rose); }
.checkout-steps .step.done  .step-circle  { background: var(--success); color: #fff; border-color: var(--success); }

.step-line {
  flex: 1;
  height: 1px;
  background: var(--border-medium);
  max-width: 60px;
  margin: 0 4px;
}


#pay-btn{
    margin:1rem 0rem;
    
}

/* ── Form ── */
.form-label-rose {
  font-size:1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 5px;
  display: block;
}

.form-ctrl-rose {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border-medium);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-ctrl-rose:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(196,104,122,0.12);
}

.form-ctrl-rose::placeholder { color: var(--text-muted); }

select.form-ctrl-rose { cursor: pointer; }

/* ── Alert ── */
.alert-rose {
  background: var(--rose-pale);
  border: 1px solid rgba(196,104,122,0.25);
  border-radius: 12px;
  color: var(--rose-deep);
  padding: 12px 16px;
  font-size: 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* ── Quantity control ── */
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rose-muted);
  border-radius: var(--r-pill);
  overflow: hidden;
  background: #fff;
}


.cart-qty-price-wrapper
{
    display: flex;
    gap: 20px;
    justify-content: space-around;
    align-items: center;
}

.cart-thumb-cart-img {
    display: flex;
    gap: 40px;
    flex: 1;
}

.qty-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}

.qty-btn:hover:not(:disabled) { background: var(--rose-pale); }
.qty-btn:disabled { opacity: 0.28; cursor: default; }

.qty-val {
  font-size:1rem;
  font-weight: 500;
  min-width: 28px;
  text-align: center;
  color: var(--text-primary);
  user-select: none;
}

/* ── Toast notification ── */
.toast-rose {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--text-primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 1.0125rem;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.toast-rose.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── Page hero ── */
.page-hero {
  background:
    radial-gradient(ellipse 65% 55% at 10% 0%,   rgba(196,104,122,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 90% 100%,  rgba(240,185,150,0.09) 0%, transparent 55%),
    var(--cream);
  padding: 3.5rem 0 2.5rem;
}

.page-hero-title {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.page-hero-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}


ul.site-map-list-item-group {
    margin-left: 0px;
    padding-left: 0px;
}

li.site-map-list-item {
    list-style: none;
    line-height: 3;
}

li.site-map-list-item a {
    text-decoration: underline;
    font-size: 1rem;
    color: var(--text-primary);
    text-underline-offset: 4px;  /* increases space between text and underline */
}



/* ── Utility ── */
.text-rose   { color: var(--rose) !important; }
.text-muted2 { color: var(--text-muted) !important; }
.bg-cream    { background: var(--cream) !important; }
.fw-display  { font-family: var(--ff-display); }



    /* ── Hero ── */
    .hero {
      background:
        radial-gradient(ellipse 70% 60% at 5%  0%,  rgba(196,104,122,0.09) 0%, transparent 60%),
        radial-gradient(ellipse 55% 50% at 95% 100%, rgba(240,185,150,0.10) 0%, transparent 55%),
        var(--cream);
      padding: 5rem 0 4rem;
      overflow: hidden;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--rose-pale);
      color: var(--rose);
      border: 1px solid rgba(196,104,122,0.22);
      border-radius: var(--r-pill);
      padding: 4px 14px;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 1.1rem;
    }

    .hero-title {
      font-family: var(--ff-display);
      font-size: 4.125rem;
      font-weight: 700;
      color: var(--text-primary);
      line-height: 1.08;
      margin-bottom: 1.1rem;
    }

    .hero-title span {
      font-style: normal;
      color: var(--rose);
    }

    .hero-sub {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 400px;
      margin-bottom: 2rem;
    }

    .hero-stats {
      display: flex;
      gap: 2rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border-soft);
    }

    .hero-stat-num {
      font-family: var(--ff-display);
      font-size:1.3rem;
      font-weight: 700;
      color:#ffffff;
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 0.9rem;
      color: #ffffff;
      margin-top: 2px;
    }

    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 320px;
    }

    .hero-blob {
      width: 280px;
      height: 280px;
      border-radius: 55% 45% 60% 40% / 50% 55% 45% 55%;
      background: linear-gradient(135deg, var(--rose-pale) 0%, var(--cream-deep) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 7rem;
      /*animation: blob-float 6s ease-in-out infinite;*/
      border: 1px solid rgba(196,104,122,0.12);
    }

    @keyframes blob-float {
      0%, 100% { transform: translateY(0) rotate(0deg); border-radius: 55% 45% 60% 40% / 50% 55% 45% 55%; }
      50%       { transform: translateY(-14px) rotate(2deg); border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%; }
    }

    /* ── Category filters ── */
    .filter-bar {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .filter-btn {
      padding: 6px 18px;
      border-radius: var(--r-pill);
      border: 1px solid var(--border-medium);
      background: #fff;
      color: var(--text-muted);
      font-size:1rem;
      font-weight: 400;
      cursor: pointer;
      transition: all 0.2s;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--rose);
      border-color: var(--rose);
      color: #fff;
    }

    /* ── Product card ── */
    .product-card {
      background: #fff;
      border: 1px solid var(--border-soft);
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: box-shadow 0.3s, transform 0.3s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .product-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-3px);
    }

    .product-img {
      width: 100%;
      height: 366px;
      background: linear-gradient(145deg, #f5e6d3 0%, #efd5b5 60%, #e8c9a2 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }

    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    .product-card:hover .product-img img { transform: scale(1.05); }
.product-img-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--rose);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 10px 16px;
    border-radius: var(--r-pill);
    text-transform: uppercase;
    z-index: 1;
    width: 100px;
    text-align: center;
}

span.cPdMhy {
    position: relative;
    top: -3px;
}
    .product-img-badge:after {
    position: absolute;
 
}

    .product-img-badge.organic {
      background: #4a7a38;
    }

    .product-body {
      
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 1.5rem;
    }


    .product-tags {
      display: flex;
      gap: 4px;
      flex-wrap: wrap;
      margin-bottom: 8px;
    }

    .product-name {
      font-family: var(--ff-display);
      font-size: 1rem;
      font-weight: 700;
      color: #221e1c;
      line-height: 1.15;
      margin-bottom: 5px;
    }

    .product-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.55;
      margin-bottom: 12px;
      flex: 1;
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
    }

    .product-price {
      font-family: var(--ff-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-primary);
    }

    .product-price small {
      font-family: var(--ff-body);
      font-size: 0.9rem;
      color: var(--text-muted);
      font-weight: 300;
    }

    .btn-add-small {
     
      border-radius:20px;
      background: #2A1208;
      color: #fff;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1125rem;
      cursor: pointer;
      box-shadow: 0 3px 12px rgba(196,104,122,0.30);
      transition: background 0.2s, transform 0.12s;
      flex-shrink: 0;
      padding:8px 24px;
    }
.sort-price-off {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
span.discount-badge {
    background: #edfafb;
    border-radius: 4px;
    color: #177582;
    font-weight: 500;
    gap: 2px;
    letter-spacing: 0;
    line-height: 14px;
    padding: 4px 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
    .btn-add-small:hover  { background: var(--rose-deep); }
    .btn-add-small:active { transform: scale(0.9); }

    /* ── Features strip ── */
    .features-strip {
    background: var(--rose);
    padding: 2rem 0;
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
    margin-top: -2rem;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255,255,255,0.75);
      font-size: 0.51875rem;
      justify-content: center;
    }

    .feature-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
    background: var(--bs-border-color-translucent);

      color: var(--rose-muted);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      flex-shrink: 0;
    }

    .feature-title {
      font-weight: 500;
      color: #fff;
      display: block;
      font-size: 1rem;
    }
.feature-text-wrapper{
font-size: 0.9rem;
}
    /* ── Testimonial ── */
    .testimonial-card {
      background: #fff;
      border: 1px solid var(--border-soft);
      border-radius: var(--r-card);
      padding: 1.5rem;
      box-shadow: var(--shadow-card);
    }

    .testimonial-text {
      font-family: var(--ff-display);
      font-style: italic;
      font-size: 1.1rem;
      color: var(--text-primary);
      line-height: 1.5;
      margin-bottom: 1rem;
    }

    .testimonial-author {
      font-size:0.9rem;
      color: var(--text-muted);
    }

    .testimonial-author strong {
      color: var(--text-primary);
      font-weight: 500;
      display: block;
    }

    @keyframes badge-glow {
      0%   { box-shadow: 0 0 5px rgba(0, 200, 255, 0.6); }
      50%  { box-shadow: 0 0 15px rgba(0, 200, 255, 1); }
      100% { box-shadow: 0 0 5px rgba(0, 200, 255, 0.6); }
    }

    .badge-count.glow {
      animation: badge-glow 1s ease-in-out;
      border-radius: 50%;
    }

    @keyframes bounce {
      0%   { transform: scale(1); }
      30%  { transform: scale(1.3); }
      60%  { transform: scale(0.9); }
      100% { transform: scale(1); }
    }

    .badge-count.bump {
      animation: bounce 1.5s ease infinite;
    }

  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
  }

  .badge-count.shake {
    animation: shake 0.4s ease;
  }

  @keyframes dropBounce {
    0%   { transform: translateY(-20px); opacity: 0; }
    50%  { transform: translateY(0); opacity: 1; }
    70%  { transform: translateY(-5px); }
    100% { transform: translateY(0); }
  }

  .badge-count.drop {
    animation: dropBounce 0.6s ease;
  }

  @keyframes ripple {
    0%   { box-shadow: 0 0 0 0 rgba(0, 200, 255, 0.6); }
    100% { box-shadow: 0 0 0 15px rgba(0, 200, 255, 0); }
  }

  .badge-count.ripple {
    animation: ripple 0.6s ease;
  }

/* Saruabh CSS */

#sorteat-home-hero-public{
  background-image:url(../public/images/hero-bg-.jpg);
  background-size: cover;
  background-position: center;
  padding: 0rem 0 0rem;
  color: #fff;
}
a.navbar-brand img {
    width: 168px;
}
/* Saruabh CSS end */

section#sorteat-home-hero-public .hero-overlay {
    padding: 5rem 0 4rem;
    background: #2a1c1f78;
}
  
.hero-blob img {
    width: 24vw;
}.hero-blob img {
  display: inline-block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: drop-shadow(0 15px 35px rgba(255, 180, 80, 0.4))
          brightness(1.1)
          saturate(1.2);
  /*animation: floatTempt 6s ease-in-out infinite;*/
}

/* Gentle floating motion */
@keyframes floatTempt {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.03); }
  100% { transform: translateY(0) scale(1); }
}

/* Hover glow and pulse */
.hero-blob:hover {
  transform: scale(1);
  filter: drop-shadow(0 20px 40px rgba(255, 160, 60, 0.6))
          brightness(1.15)
          saturate(1.1);
}
.primary-quality-serving p{
  font-size: 1rem;
}


.sort-order-via-whatsapp {
    display: flex;
        justify-content: space-between;

    margin-top:1rem;
}
.sort-order-via-whatsapp a {
     border-radius: 20px;
    background:#28D146;
    color: #fff;
    border: none;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(196, 104, 122, 0.30);
    transition: background 0.2s, transform 0.12s;
    flex-shrink: 0;
    padding: 8px 12px;
    text-decoration: none;
    
  
}


.sort-actual-price {
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: normal;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    
    object-fit:cover;
}
.sort-price-off {
    display: flex;
    justify-content: space-between;
    font-size:0.9rem;
    margin-bottom: 0.5rem;
}


a.sorteat-footer-logo {
    max-width: 200px;
    display: block;
}

.desktop-hide{
    display:none;
}

/* Mobile styles */
@media (max-width: 768px) {
    .desktop-hide{
    display:block;
}
    .mob-hide{
        display: none;
    }
    .hero-blob img {
        width: 60vw; /* increase size for smaller screens */
    }
    
    .hero-blob {
    width: 180px;
    height: 180px;
    }
    .cart-thumb-cart-img{
        flex-direction: column;
        width:100%;
    }
    .cart-row{
        flex-direction: column;
    }
    .cart-qty-price-wrapper {
  
    justify-content: flex-end;
    width: 100%;
}
.step-circle {
    width: 28px;
    height: 28px;
  
    font-size: 0.875rem;
  
}
}


