<div class="gp-policy-page">

  <div class="gp-bg gp-bg-1"></div>
  <div class="gp-bg gp-bg-2"></div>

  <div class="gp-policy-container">

    <div class="gp-policy-hero">

      <span class="gp-policy-badge">
        Girlypop Policies ♡
      </span>

      <h1>Shipping Policy</h1>

      <p>
        At Girlypop, we aim to deliver your orders quickly,
        safely, and smoothly so your shopping experience feels effortless ♡
      </p>

    </div>

    <div class="gp-policy-grid">

      <div class="gp-policy-card">
        <h2>1. Order Processing Time</h2>

        <p>
          Orders are usually processed within 1–3 business days
          after successful payment confirmation.
          Orders placed on weekends or holidays may require additional time.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>2. Delivery Timeline</h2>

        <p>
          Estimated delivery timelines may vary depending on your location.
          Most orders are delivered within 3–7 business days across India.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>3. Shipping Charges</h2>

        <p>
          Shipping charges, if applicable, will be displayed during checkout.
          Girlypop may offer free shipping on selected orders,
          offers, or minimum purchase values.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>4. Order Tracking</h2>

        <p>
          Once your order is shipped, tracking details and shipment updates
          will be shared via email, SMS, or WhatsApp.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>5. Delayed Deliveries</h2>

        <p>
          Delivery delays may occur due to weather conditions,
          courier issues, public holidays, operational delays,
          or unexpected circumstances beyond our control.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>6. Incorrect Address</h2>

        <p>
          Customers are responsible for providing accurate shipping details.
          Girlypop is not responsible for delays or failed deliveries
          caused by incorrect addresses or contact information.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>7. Failed Delivery Attempts</h2>

        <p>
          Courier partners may attempt delivery multiple times.
          If delivery repeatedly fails due to customer unavailability,
          the order may be returned to us.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>8. International Shipping</h2>

        <p>
          International shipping availability may vary.
          Additional customs duties, taxes, or import charges
          are the responsibility of the customer.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>9. Damaged Packages</h2>

        <p>
          If your package appears damaged during delivery,
          we recommend recording an unboxing video
          and contacting us immediately for support.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>10. Need Shipping Help?</h2>

        <p>
          Our support team is always available to help you
          with shipping updates, delivery concerns,
          or tracking assistance.
        </p>
      </div>

    </div>

    <div class="gp-contact-card">

      <h3>Contact Support</h3>

      <p>
        For shipping or delivery-related assistance,
        feel free to contact us anytime.
      </p>

      <div class="gp-contact-box">
        hello@girlypop.in
      </div>

    </div>

    <div class="gp-footer">
      © 2026 Girlypop — Cute. Confident. Unfiltered.
    </div>

  </div>

</div>

<style>

.gp-policy-page{
  position:relative;
  overflow:hidden;
  background:#ffffff;
  padding:90px 0;
  font-family:Poppins,sans-serif;
}

.gp-bg{
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  opacity:.18;
  z-index:0;
  animation:floatMove 8s ease-in-out infinite;
}

.gp-bg-1{
  width:320px;
  height:320px;
  background:#ffd4e7;
  top:80px;
  left:-120px;
}

.gp-bg-2{
  width:260px;
  height:260px;
  background:#ffc1dc;
  bottom:80px;
  right:-80px;
}

@keyframes floatMove{
  0%{transform:translateY(0px);}
  50%{transform:translateY(-20px);}
  100%{transform:translateY(0px);}
}

.gp-policy-container{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1380px;
  margin:auto;
  padding:0 40px;
  box-sizing:border-box;
}

.gp-policy-hero{
  text-align:center;
  max-width:850px;
  margin:0 auto 70px;
}

.gp-policy-badge{
  display:inline-block;
  background:#ffeaf3;
  color:#ff4f93;
  padding:10px 18px;
  border-radius:100px;
  font-size:13px;
  font-weight:600;
  margin-bottom:24px;
}

.gp-policy-hero h1{
  font-size:72px;
  line-height:1;
  letter-spacing:-3px;
  font-weight:700;
  color:#111;
  margin:0 0 24px;
}

.gp-policy-hero p{
  font-size:18px;
  color:#666;
  line-height:1.9;
  margin:0;
}

.gp-policy-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.gp-policy-card{
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  border:1px solid #f4e4eb;
  border-radius:30px;
  padding:38px;
  box-shadow:0 12px 40px rgba(0,0,0,.04);
  transition:.35s ease;
}

.gp-policy-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 50px rgba(255,79,147,.12);
}

.gp-policy-card h2{
  font-size:28px;
  line-height:1.3;
  margin-bottom:18px;
  color:#111;
  font-weight:600;
}

.gp-policy-card p{
  font-size:15px;
  line-height:1.9;
  color:#555;
  margin:0;
}

.gp-contact-card{
  margin-top:30px;
  background:#fff7fa;
  border-radius:32px;
  padding:50px;
  text-align:center;
  border:1px solid #f7dfe8;
}

.gp-contact-card h3{
  font-size:38px;
  margin-bottom:18px;
  color:#111;
}

.gp-contact-card p{
  color:#666;
  font-size:16px;
  line-height:1.8;
  max-width:650px;
  margin:0 auto 28px;
}

.gp-contact-box{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 28px;
  background:#ffffff;
  border-radius:100px;
  font-size:15px;
  color:#ff4f93;
  font-weight:600;
  box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.gp-footer{
  text-align:center;
  margin-top:40px;
  color:#888;
  font-size:14px;
}

/* MOBILE */

@media screen and (max-width:768px){

  .gp-policy-page{
    padding:60px 0;
  }

  .gp-policy-container{
    padding:0 16px;
  }

  .gp-policy-hero{
    margin-bottom:40px;
  }

  .gp-policy-hero h1{
    font-size:44px;
    letter-spacing:-1px;
  }

  .gp-policy-hero p{
    font-size:15px;
    line-height:1.8;
  }

  .gp-policy-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .gp-policy-card{
    padding:24px;
    border-radius:24px;
  }

  .gp-policy-card h2{
    font-size:22px;
  }

  .gp-policy-card p{
    font-size:14px;
    line-height:1.8;
  }

  .gp-contact-card{
    padding:30px 22px;
    border-radius:24px;
  }

  .gp-contact-card h3{
    font-size:28px;
  }

  .gp-contact-card p{
    font-size:14px;
  }

  .gp-contact-box{
    width:100%;
    font-size:14px;
    padding:14px 18px;
  }

}

</style>