Skip to content

Sign In

Shipping policy


<style>
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: var(--font-sans, sans-serif); background: var(--color-background-primary); }

  .announce {
    background: #7B3F2A; color: #F9E8DC; text-align: center;
    font-size: 12px; padding: 8px; letter-spacing: 0.06em;
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 32px;
    border-bottom: 0.5px solid var(--color-border-tertiary);
    background: var(--color-background-primary);
  }
  .nav-logo { font-size: 20px; font-weight: 500; letter-spacing: 0.08em; color: #7B3F2A; }
  .nav-logo span { color: #C4754A; }
  .nav-links { display: flex; gap: 24px; font-size: 13px; color: var(--color-text-secondary); }
  .nav-links a { text-decoration: none; color: inherit; }
  .nav-cart {
    background: #C4754A; color: #fff; border: none; border-radius: 20px;
    padding: 7px 18px; font-size: 13px; cursor: pointer; font-weight: 500;
  }

  .page-hero {
    background: #FDF0E8; border-bottom: 0.5px solid #E8C4A8;
    padding: 48px 32px 40px; text-align: center;
  }
  .page-hero-tag {
    font-size: 11px; letter-spacing: 0.12em; color: #C4754A;
    text-transform: uppercase; margin-bottom: 12px;
  }
  .page-hero h1 {
    font-size: 32px; font-weight: 500; color: #3D1F10; margin-bottom: 12px;
  }
  .page-hero p { font-size: 15px; color: #7B5040; max-width: 480px; margin: 0 auto; line-height: 1.7; }

  .highlight-strip {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-bottom: 0.5px solid var(--color-border-tertiary);
  }
  .hl-item {
    padding: 24px 28px; border-right: 0.5px solid var(--color-border-tertiary);
    display: flex; align-items: flex-start; gap: 14px;
  }
  .hl-item:last-child { border-right: none; }
  .hl-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: #FDF0E8; border: 1px solid #E8C4A8;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 16px;
  }
  .hl-title { font-size: 14px; font-weight: 500; color: #3D1F10; margin-bottom: 3px; }
  .hl-sub { font-size: 12px; color: var(--color-text-secondary); line-height: 1.5; }

  .content { max-width: 760px; margin: 0 auto; padding: 48px 32px 64px; }

  .section-block { margin-bottom: 40px; }
  .section-block h2 {
    font-size: 18px; font-weight: 500; color: #3D1F10;
    margin-bottom: 16px; padding-bottom: 10px;
    border-bottom: 1px solid #E8C4A8;
  }
  .section-block p {
    font-size: 14px; color: var(--color-text-secondary); line-height: 1.8; margin-bottom: 12px;
  }
  .section-block p:last-child { margin-bottom: 0; }

  .policy-table { width: 100%; border-collapse: collapse; margin-bottom: 12px; }
  .policy-table th {
    background: #FDF0E8; color: #7B3F2A;
    font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
    padding: 10px 14px; text-align: left;
    border: 0.5px solid #E8C4A8;
  }
  .policy-table td {
    padding: 11px 14px; font-size: 13px; color: var(--color-text-secondary);
    border: 0.5px solid var(--color-border-tertiary); line-height: 1.5;
    vertical-align: top;
  }
  .policy-table tr:nth-child(even) td { background: #FDF8F5; }
  .tag-green {
    background: #EAF3DE; color: #27500A;
    font-size: 11px; font-weight: 500; border-radius: 4px;
    padding: 2px 8px; display: inline-block;
  }
  .tag-amber {
    background: #FAEEDA; color: #633806;
    font-size: 11px; font-weight: 500; border-radius: 4px;
    padding: 2px 8px; display: inline-block;
  }

  .timeline {
    display: flex; gap: 0; margin: 20px 0;
    border: 0.5px solid var(--color-border-tertiary);
    border-radius: 12px; overflow: hidden;
  }
  .tl-step { flex: 1; padding: 16px 18px; border-right: 0.5px solid var(--color-border-tertiary); }
  .tl-step:last-child { border-right: none; }
  .tl-step.active { background: #FDF0E8; }
  .tl-num {
    font-size: 11px; color: #C4754A; font-weight: 500;
    letter-spacing: 0.08em; margin-bottom: 4px;
  }
  .tl-label { font-size: 13px; font-weight: 500; color: #3D1F10; margin-bottom: 3px; }
  .tl-detail { font-size: 11px; color: var(--color-text-secondary); }

  .info-box {
    background: #FDF0E8; border: 0.5px solid #E8C4A8;
    border-radius: 10px; padding: 16px 20px; margin: 16px 0;
    font-size: 13px; color: #7B3F2A; line-height: 1.7;
  }
  .info-box strong { color: #3D1F10; font-weight: 500; }

  .warn-box {
    background: #FAEEDA; border: 0.5px solid #FAC775;
    border-radius: 10px; padding: 14px 18px; margin: 14px 0;
    font-size: 13px; color: #633806; line-height: 1.7;
  }

  .contact-band {
    background: #3D1F10; color: #F9E8DC;
    padding: 36px 32px; text-align: center;
  }
  .contact-band h3 { font-size: 20px; font-weight: 500; margin-bottom: 8px; }
  .contact-band p { font-size: 13px; opacity: 0.75; margin-bottom: 20px; }
  .contact-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .cbtn {
    background: #C4754A; color: #fff; border: none; border-radius: 20px;
    padding: 10px 22px; font-size: 13px; cursor: pointer; font-weight: 500;
  }
  .cbtn-ghost {
    background: transparent; color: #F9E8DC;
    border: 1px solid rgba(249,232,220,0.4);
    border-radius: 20px; padding: 10px 22px; font-size: 13px; cursor: pointer;
  }

  .footer-mini {
    background: #2A1408; color: rgba(249,232,220,0.45);
    text-align: center; font-size: 11px; padding: 14px;
  }
</style>

<div class="announce">Next-day dispatch on all orders placed before 2 PM IST &nbsp;·&nbsp; Free shipping above ₹499</div>

<nav class="nav">
  <div class="nav-logo">daaru<span>darling</span></div>
  <div class="nav-links">
    <a>Shop</a><a>Collections</a><a>Our Story</a><a>Track Order</a>
  </div>
  <button class="nav-cart">Cart (0)</button>
</nav>

<div class="page-hero">
  <div class="page-hero-tag">Shipping & Delivery</div>
  <h1>We ship fast. We pack with love.</h1>
  <p>Every Daarudarling order is dispatched the very next business day. Here's everything you need to know.</p>
</div>

<div class="highlight-strip">
  <div class="hl-item">
    <div class="hl-icon">&#128666;</div>
    <div>
      <div class="hl-title">Next-day dispatch</div>
      <div class="hl-sub">Order by 2 PM — ships the next business day</div>
    </div>
  </div>
  <div class="hl-item">
    <div class="hl-icon">&#127381;</div>
    <div>
      <div class="hl-title">Free shipping</div>
      <div class="hl-sub">On all orders above ₹499 across India</div>
    </div>
  </div>
  <div class="hl-item">
    <div class="hl-icon">&#128204;</div>
    <div>
      <div class="hl-title">Live tracking</div>
      <div class="hl-sub">SMS & WhatsApp updates from dispatch to door</div>
    </div>
  </div>
</div>

<div class="content">

  <div class="section-block">
    <h2>How our dispatch works</h2>
    <div class="timeline">
      <div class="tl-step active">
        <div class="tl-num">DAY 0</div>
        <div class="tl-label">You order</div>
        <div class="tl-detail">Place order before 2 PM IST</div>
      </div>
      <div class="tl-step">
        <div class="tl-num">DAY 1</div>
        <div class="tl-label">We dispatch</div>
        <div class="tl-detail">Packed & handed to courier</div>
      </div>
      <div class="tl-step">
        <div class="tl-num">DAY 2–5</div>
        <div class="tl-label">In transit</div>
        <div class="tl-detail">Depends on your location</div>
      </div>
      <div class="tl-step">
        <div class="tl-num">DAY 3–6</div>
        <div class="tl-label">Delivered</div>
        <div class="tl-detail">At your doorstep</div>
      </div>
    </div>
    <div class="info-box">
      <strong>Next-day dispatch promise:</strong> Every order placed before 2:00 PM IST on a business day is dispatched the very next business day. Orders placed after 2 PM or on weekends/public holidays are dispatched on the following business day.
    </div>
  </div>

  <div class="section-block">
    <h2>Delivery timeframes</h2>
    <table class="policy-table">
      <thead>
        <tr>
          <th>Location</th>
          <th>Estimated delivery</th>
          <th>Shipping charge</th>
          <th>Status</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>Metro cities<br><span style="font-size:11px;color:var(--color-text-secondary)">Delhi, Mumbai, Bangalore, Chennai, Kolkata, Hyderabad</span></td>
          <td>2–4 business days</td>
          <td>Free above ₹499<br>₹60 below</td>
          <td><span class="tag-green">Available</span></td>
        </tr>
        <tr>
          <td>Tier 2 & 3 cities</td>
          <td>4–6 business days</td>
          <td>Free above ₹499<br>₹60 below</td>
          <td><span class="tag-green">Available</span></td>
        </tr>
        <tr>
          <td>Remote & rural areas</td>
          <td>6–10 business days</td>
          <td>₹80 flat</td>
          <td><span class="tag-amber">Extended</span></td>
        </tr>
        <tr>
          <td>J&K, NE States, Andaman</td>
          <td>7–12 business days</td>
          <td>₹100 flat</td>
          <td><span class="tag-amber">Extended</span></td>
        </tr>
        <tr>
          <td>International</td>
          <td>Not available currently</td>
          <td>—</td>
          <td><span style="background:#FCEBEB;color:#791F1F;font-size:11px;font-weight:500;border-radius:4px;padding:2px 8px;display:inline-block">Coming soon</span></td>
        </tr>
      </tbody>
    </table>
    <p style="font-size:12px;color:var(--color-text-secondary)">All estimates are from the date of dispatch, not the date of order.</p>
  </div>

  <div class="section-block">
    <h2>Tracking your order</h2>
    <p>Once your order is dispatched, you will receive a tracking link via SMS and WhatsApp on your registered mobile number. You can also track your order anytime at <strong style="color:#C4754A">daarudarling.com/track</strong> using your order ID.</p>
    <div class="info-box">
      <strong>Didn't get a tracking SMS?</strong> Sometimes it takes up to 12 hours after dispatch for the tracking link to activate. If it's been longer, drop us a message on WhatsApp at <strong>+91 XXXXX XXXXX</strong> with your order number.
    </div>
  </div>

  <div class="section-block">
    <h2>Packaging</h2>
    <p>Every Daarudarling order is packed in our signature kraft paper box with crinkle fill — sturdy enough to protect your earrings, pretty enough to gift directly. We use zero single-use plastics in our packaging.</p>
    <p>Gift orders come with a handwritten note if you leave a message at checkout — no extra charge.</p>
  </div>

  <div class="section-block">
    <h2>Important notes</h2>
    <div class="warn-box">
      Orders are not processed on Sundays and national public holidays. These days are not counted in delivery estimates.
    </div>
    <p>Delivery timelines are estimates provided by our courier partners and may vary during peak seasons (festive periods, sales). We'll send you proactive updates if there's a delay.</p>
    <p>If your order shows as "delivered" but you haven't received it, please contact us within 48 hours. We will investigate with the courier and resolve it for you.</p>
    <p>Daarudarling is not responsible for delays caused by incorrect or incomplete delivery addresses. Please double-check your address at checkout.</p>
  </div>

  <div class="section-block">
    <h2>Cash on delivery (COD)</h2>
    <p>COD is available on orders up to ₹1,500 across most serviceable PIN codes. A ₹40 COD handling fee applies. This fee is non-refundable in case of returns.</p>
  </div>

</div>

<div class="contact-band">
  <h3>Questions about your order?</h3>
  <p>We're here Monday–Saturday, 10 AM to 6 PM IST</p>
  <div class="contact-btns">
    <button class="cbtn">WhatsApp us</button>
    <button class="cbtn-ghost">Email: hello@daarudarling.com</button>
  </div>
</div>

<div class="footer-mini">© 2026 Daarudarling · Made with love in India</div>

Back to top
Home Shop
Wishlist
Log in
×