@import url("colors.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #eef2ff, #ecfeff);
  color: var(--dark);
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(90deg, var(--blue), var(--purple));
  padding: 12px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: bold;
  font-size: 18px;
}

.logo-box img {
  height: 40px;
}

.menu a {
  color: var(--white);
  margin: 0 12px;
  text-decoration: none;
  font-weight: 600;
}

.menu a:hover {
  color: var(--orange);
}

/* ===== HERO ===== */
.hero {
  background:
    linear-gradient(135deg, rgba(124,58,237,0.85), rgba(37,99,235,0.85)),
    url("../images/banner.png ") center/cover no-repeat;

  color: var(--white);
  text-align: center;
  padding: 90px 20px;
}

.hero h1 {
  font-size: 2.8rem;
}

.hero p {
  margin: 15px 0;
  font-size: 1.1rem;
}

/* ===== BUTTON ===== */
.btn {
  background: linear-gradient(90deg, var(--orange), var(--green));
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  transform: scale(1.05);
}

/* ===== SECTION ===== */
.section {
  padding: 50px 20px;
  background: var(--white);
  margin: 30px auto;
  border-radius: 15px;
  width: 90%;
  text-align: center;
}

.title {
  color: var(--purple);
  margin-bottom: 30px;
}

/* ===== CARDS ===== */
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: linear-gradient(135deg, #f0f9ff, #ecfeff);
  padding: 20px;
  margin: 15px;
  width: 230px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.card h3 {
  margin: 10px 0;
  color: var(--blue);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(90deg, var(--blue), var(--purple));
  color: var(--white);
  text-align: center;
  padding: 15px;
}

/* ===== AUTH PAGES (LOGIN / REGISTER) ===== */

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
}

/* LEFT SIDE */
.auth-left {
  flex: 1;
  color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-left img {
  width: 70px;
  margin-bottom: 20px;
}

.auth-left h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.auth-left p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* RIGHT SIDE */
.auth-right {
  flex: 1;
  background: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}

.auth-right h2 {
  color: #4f46e5;
  margin-bottom: 25px;
  font-size: 2rem;
}

/* INPUT */
.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input {
  width: 100%;
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px solid #c7d2fe;
  outline: none;
  font-size: 1rem;
}

.input-group label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 0 5px;
  color: #64748b;
  pointer-events: none;
  transition: 0.3s;
}

.input-group input:focus + label,
.input-group input:valid + label {
  top: -8px;
  font-size: 0.75rem;
  color: #4f46e5;
}

/* BUTTON */
.btn.full {
  width: 100%;
  margin-top: 10px;
}

/* TEXT */
.auth-text {
  margin-top: 15px;
  text-align: center;
}

.auth-text a {
  color: #4f46e5;
  font-weight: bold;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .auth-wrapper {
    flex-direction: column;
  }

  .auth-right {
    border-radius: 0;
  }
}

/* ===== CONTACT PAGE ===== */

.contact-wrapper {
  min-height: 100vh;
  display: flex;
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
  color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left img {
  width: 70px;
  margin-bottom: 20px;
}

.contact-left h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-left p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.contact-info {
  margin-top: 25px;
  font-size: 1rem;
}

/* RIGHT SIDE */
.contact-right {
  flex: 1;
  background: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}

.contact-right h2 {
  color: #0ea5e9;
  margin-bottom: 25px;
  font-size: 2rem;
}

/* TEXTAREA FIX */
.input-group.textarea textarea {
  height: 120px;
  resize: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-right {
    border-radius: 0;
  }
}

/* ===== ABOUT PAGE ===== */

.about-wrapper {
  min-height: 100vh;
  display: flex;
  background: linear-gradient(135deg, #f97316, #ec4899);
}

/* LEFT */
.about-left {
  flex: 1;
  color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-left img {
  width: 80px;
  margin-bottom: 20px;
}

.about-left h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.about-left .tagline {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* RIGHT */
.about-right {
  flex: 1.2;
  background: white;
  padding: 60px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-right h2 {
  color: #ec4899;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-right p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #334155;
}

/* SERVICES TAGS */
.about-services {
  margin-top: 20px;
}

.about-services span {
  display: inline-block;
  background: linear-gradient(90deg, #6366f1, #22d3ee);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  margin: 6px 6px 0 0;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-right {
    border-radius: 0;
  }
}

/* ===== SHOP PAGE ===== */

.shop-header {
  background: #131921;
  color: white;
  padding: 15px 0;
}

.shop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-nav h1 {
  font-size: 1.6rem;
}

.shop-links a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-weight: 600;
}

.cart-btn {
  background: #facc15;
  color: #111827 !important;
  padding: 6px 14px;
  border-radius: 20px;
}

/* HERO */
.shop-hero {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.shop-hero h2 {
  font-size: 2.2rem;
}

/* PRODUCTS GRID */
.shop-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* PRODUCT CARD */
.product-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* IMAGE PLACEHOLDER */
.product-img {
  height: 160px;
  border-radius: 10px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.placeholder {
  background: repeating-linear-gradient(
    45deg,
    #e5e7eb,
    #e5e7eb 10px,
    #f3f4f6 10px,
    #f3f4f6 20px
  );
  color: #6b7280;
}

/* PRICE */
.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #16a34a;
  margin: 8px 0;
}

.rating {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* ===== HERO INFO BAR ===== */

.info-bar {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  display: inline-flex;
  gap: 15px;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.95rem;
  margin-bottom: 25px;
  align-items: center;
}

.info-bar span {
  color: white;
  font-weight: 500;
}

/* OPEN / CLOSED */
.status {
  display: flex;
  align-items: center;
  gap: 5px;
}

.status.open {
  color: #22c55e;
}

.status.closed {
  color: #ef4444;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== SERVICE PAGE ===== */

.service-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 👈 3 cards per row */
  gap: 25px;
  margin: 40px auto;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 70px;
  margin-bottom: 10px;
}

.service-card h3 {
  color: #2563eb;
  margin-bottom: 10px;
}

.service-card ul {
  padding-left: 18px;
}

.service-card li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* CONTACT STRIP */
.contact-strip {
  background: linear-gradient(90deg,#16a34a,#22c55e);
  color: white;
  text-align: center;
  padding: 35px 15px;
}

/* ===== RETAILER SECTION ===== */

.retailer-section {
  margin: 60px auto;
}

.retailer-header {
  text-align: center;
  margin-bottom: 40px;
}

.retailer-header img {
  width: 70px;
  margin-bottom: 10px;
}

.retailer-header h2 {
  color: #2563eb;
  margin-bottom: 10px;
}

.retailer-header p {
  font-size: 1.05rem;
  color: #374151;
}

.retailer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.retailer-card {
  background: linear-gradient(135deg, #f0f9ff, #ecfeff);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.retailer-card:hover {
  transform: translateY(-6px);
}

.retailer-card img {
  width: 60px;
  margin-bottom: 10px;
}

.retailer-card h3 {
  color: #16a34a;
  margin-bottom: 10px;
}

.retailer-card ul {
  padding-left: 18px;
}

.retailer-card li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* CONTACT STRIP */
.retailer-contact {
  margin-top: 50px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: white;
  padding: 35px 20px;
  text-align: center;
  border-radius: 20px;
}

.retailer-contact h3 {
  margin-bottom: 10px;
}

.retailer-contact .tagline {
  margin-top: 10px;
  font-weight: bold;
}

/* ===== RETAILER SECTION ===== */

.retailer-section {
  margin: 70px auto;
}

/* HEADER */
.retailer-header {
  text-align: center;
  margin-bottom: 45px;
}

.retailer-header img {
  width: 70px;
  margin-bottom: 10px;
}

.retailer-header h2 {
  color: #2563eb;
  margin-bottom: 8px;
}

.retailer-header p {
  color: #374151;
  font-size: 1.05rem;
}

/* HOURS BAR */
.hours-bar {
  margin-top: 15px;
  display: inline-flex;
  gap: 15px;
  padding: 8px 18px;
  border-radius: 30px;
  background: linear-gradient(90deg,#22c55e,#16a34a);
  color: white;
  font-size: 0.9rem;
}

.hours-bar .open {
  font-weight: bold;
}

/* GRID */
.retailer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.retailer-card {
  background: white;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: 0.3s;
}

.retailer-card:hover {
  transform: translateY(-6px);
}

.retailer-card img {
  width: 65px;
  margin-bottom: 10px;
}

.retailer-card h3 {
  color: #0f172a;
  margin-bottom: 5px;
}

/* TAG */
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-bottom: 10px;
  background: #facc15;
}

.tag.green { background: #22c55e; color: white; }
.tag.orange { background: #f97316; color: white; }
.tag.purple { background: #7c3aed; color: white; }
.tag.blue { background: #2563eb; color: white; }

.retailer-card ul {
  padding-left: 18px;
}

.retailer-card li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* CONTACT STRIP */
.retailer-contact {
  margin-top: 50px;
  background: linear-gradient(90deg,#5f8be9,#7c3aed);
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 22px;
}

.retailer-contact .tagline {
  margin-top: 10px;
  font-weight: bold;
}


@media (max-width: 1200px) {
  .service-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-section {
    grid-template-columns: 1fr;
  }
}


/* ===== MODERN SERVICES SECTION ===== */

.services-modern {
  position: relative;
  overflow: hidden;
}

/* HOURS BAR */
.service-hours {
  display: inline-flex;
  gap: 15px;
  padding: 8px 20px;
  border-radius: 30px;
  background: linear-gradient(90deg,#22c55e,#76de9c);
  color: white;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.service-hours .open {
  font-weight: bold;
}

/* CARD MODERN LOOK */
.service-card {
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  background: linear-gradient(135deg,#6366f1,#458f9b);
  color: white;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* TEXT COLOR CHANGE ON HOVER */
.service-card:hover h3,
.service-card:hover p {
  color: white;
}

/* IMAGE EFFECT */
.service-card img {
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: rotate(-5deg) scale(1.1);
}


/* ===== WALLET PAGE ===== */

.wallet-hero {
  background: linear-gradient(135deg,#2563eb,#7c3aed);
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.wallet-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.wallet-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* HOURS BAR */
.wallet-hours {
  margin-top: 20px;
  display: inline-flex;
  gap: 15px;
  padding: 8px 20px;
  border-radius: 30px;
  background: linear-gradient(90deg,#22c55e,#16a34a);
  font-size: 0.9rem;
}

.wallet-hours .open {
  font-weight: bold;
}

/* MAIN SECTION */
.wallet-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 60px auto;
}

/* CARD */
.wallet-card {
  background: white;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  text-align: center;
  transition: 0.3s;
}

.wallet-card:hover {
  transform: translateY(-8px);
}

/* QR */
.qr-img {
  width: 260px;
  max-width: 100%;
  margin: 20px auto;
  border-radius: 20px;
  border: 6px solid #e0e7ff;
}

.upi-text {
  font-size: 0.9rem;
  color: #2563eb;
  font-weight: 600;
}

/* DETAILS */
.wallet-info {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 1rem;
}

.wallet-info li {
  margin-bottom: 10px;
}

.wallet-note {
  margin-top: 20px;
  background: linear-gradient(90deg,#facc15,#f97316);
  padding: 15px;
  border-radius: 15px;
  color: #111827;
  font-weight: bold;
}

/* FOOTER */
.wallet-footer {
  background: linear-gradient(90deg,#131921,#1f2937);
  color: white;
  text-align: center;
  padding: 25px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .wallet-section {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT PAGE MODERN ===== */

.about-hero {
  background: linear-gradient(135deg,#2563eb,#7c3aed);
  color: white;
  text-align: center;
  padding: 90px 20px;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* STATS */
.about-stats {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.about-stats div {
  background: rgba(255,255,255,0.15);
  padding: 15px 25px;
  border-radius: 18px;
}

.about-stats h3 {
  font-size: 1.6rem;
}

/* MAIN */
.about-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  margin: 70px auto;
}

/* CARD */
.about-card {
  background: white;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.about-card img {
  width: 80px;
  margin-bottom: 15px;
}

.about-card h2 {
  color: #2563eb;
  margin-bottom: 15px;
}

.about-card p {
  line-height: 1.7;
  color: #334155;
  margin-bottom: 12px;
}

/* HIGHLIGHT */
.about-card.highlight {
  background: linear-gradient(135deg,#f97316,#ec4899);
  color: white;
}

.about-card.highlight h2,
.about-card.highlight p {
  color: white;
}

/* POINTS */
.about-points {
  list-style: none;
  padding: 0;
}

.about-points li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* TAGS */
.about-tags span {
  display: inline-block;
  margin: 6px 6px 0 0;
  padding: 7px 14px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.85rem;
}

/* FOOTER */
.about-footer {
  background: linear-gradient(90deg,#131921,#1f2937);
  color: white;
  text-align: center;
  padding: 40px 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-main {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }
}


/* ===== WHATSAPP FLOAT WITH TEXT ===== */

.whatsapp-with-text {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  width: auto;
  height: auto;
  border-radius: 40px;
}

/* TEXT BUBBLE */
.whatsapp-text {
  background: rgb(182, 200, 175);
  color: #111827;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.whatsapp-text small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: #2563eb;
}

/* IMAGE SAME */
.whatsapp-with-text img {
  width: 35px;
  height: 35px;
}

/* HOVER EFFECT */
.whatsapp-with-text:hover {
  transform: scale(1.05);
}

/* MOBILE – TEXT HIDE (OPTIONAL) */
@media (max-width: 480px) {
  .whatsapp-text {
    display: none;
  }
}


/* ===== WALLET STEPS DESIGN ===== */

.wallet-steps {
  list-style: none;
  padding: 0;
  margin: 20px 0 25px;
}

.wallet-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  margin-bottom: 10px;
  background: #f8fafc;
  border-radius: 12px;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.step-icon {
  font-size: 1.4rem;
}

/* TRUST LINE */
.wallet-trust {
  margin: 20px 0;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(90deg,#2563eb,#7c3aed);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

/* INFO LIST */
.wallet-info {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.wallet-info li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}




