<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>Terms & Conditions</h1>

      <p>
        Welcome to Girlypop. By accessing or using our website,
        you agree to follow the terms and conditions mentioned below.
        Please read them carefully before placing an order or using our services.
      </p>

    </div>

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

      <div class="gp-policy-card">
        <h2>1. General Use</h2>

        <p>
          By using Girlypop, you confirm that you are legally capable
          of entering into binding agreements and agree to comply with
          all applicable laws and regulations.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>2. Product Information</h2>

        <p>
          We try our best to display product colors, details,
          and designs accurately. However, slight variations may occur
          due to lighting, photography, screen settings, or manufacturing updates.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>3. Pricing & Payments</h2>

        <p>
          All prices listed on Girlypop are in INR and may change without notice.
          Payments are securely processed through trusted payment gateways.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>4. Orders & Cancellations</h2>

        <p>
          Once an order is placed, you will receive an order confirmation.
          Girlypop reserves the right to cancel or refuse orders
          in cases of stock issues, fraud detection, or pricing errors.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>5. Shipping & Delivery</h2>

        <p>
          Delivery timelines may vary depending on location and logistics availability.
          Girlypop is not responsible for courier delays caused by external factors.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>6. Returns & Refunds</h2>

        <p>
          Returns, exchanges, and refunds are governed by our official
          Return & Refund Policy. Customers are advised to review the policy
          carefully before purchasing.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>7. Intellectual Property</h2>

        <p>
          All content including logos, graphics, product images,
          website designs, branding, and visual assets belong to Girlypop
          and may not be copied or reused without permission.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>8. User Responsibilities</h2>

        <p>
          Users agree not to misuse the website, attempt unauthorized access,
          distribute harmful content, or perform actions that may affect
          website security or performance.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>9. Limitation of Liability</h2>

        <p>
          Girlypop shall not be responsible for indirect losses,
          damages, technical interruptions, or delays resulting from
          website usage or third-party services.
        </p>
      </div>

      <div class="gp-policy-card">
        <h2>10. Policy Updates</h2>

        <p>
          Girlypop reserves the right to update or modify these
          Terms & Conditions at any time. Updated versions will always
          be available on this page.
        </p>
      </div>

    </div>

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

      <h3>Need Help?</h3>

      <p>
        If you have any questions regarding these Terms & Conditions,
        feel free to contact our support team 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,.9);
  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>