
    :root {
      --p4-red: #d62828;
      --p4-red-dark: #a31621;
      --p4-yellow: #ffbf69;
      --p4-gold: #e9b44c;
      --p4-green: #276749;
      --p4-cream: #fff7e6;
      --p4-brown: #402218;
      --p4-soft: #fff2d9;
      --p4-radius-lg: 22px;
      --p4-shadow-soft: 0 18px 40px rgba(0,0,0,0.14);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: #42241b;
      background: #fffdf7;
    }

    .p4-container {
      width: min(1180px, 100% - 2.6rem);
      margin: 0 auto;
    }

    a { text-decoration: none; color: inherit; }

    /* ---- Floating icons ---- */
    .p4-float-btn {
      position: fixed;
      right: 18px;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 26px rgba(0,0,0,0.2);
      z-index: 999;
    }
    .p4-float-whatsapp { bottom: 100px; }
    .p4-float-call { bottom: 30px; }
    .p4-float-btn img { width: 28px; }

    /* ---- Header ---- */
    .p4-header-wrap {
      position: sticky;
      top: 0;
      z-index: 900;
      background: linear-gradient(to bottom, rgba(255,247,230,0.98), rgba(255,247,230,0.85));
      border-bottom: 1px solid rgba(0,0,0,0.05);
      backdrop-filter: blur(10px);
    }

    .p4-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.6rem 0;
    }

    .p4-logo img {
      height: 58px;
    }

    .p4-nav {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      font-size: 0.93rem;
      font-weight: 500;
    }

    .p4-nav a {
      position: relative;
      padding-bottom: 0.25rem;
      color: #5a3b2b;
    }

    .p4-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--p4-red), var(--p4-gold));
      transition: width 0.18s ease;
    }

    .p4-nav a:hover::after,
    .p4-nav a.p4-active::after {
      width: 100%;
    }

    .p4-nav a.p4-active {
      color: var(--p4-red-dark);
    }

    .p4-nav-cta {
      padding: 0.45rem 1.1rem;
      border-radius: 999px;
      border: 1px solid rgba(214,40,40,0.4);
      color: var(--p4-red-dark);
      font-size: 0.85rem;
      background: #fff;
    }

    .p4-nav-cta:hover {
      background: rgba(214,40,40,0.06);
    }

    .p4-nav-toggle {
      display: none;
      border: none;
      background: transparent;
      font-size: 1.7rem;
    }

    /* ---- Hero ---- */
    .p4-hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at top left, #ffffff, transparent 60%),
        radial-gradient(circle at top right, #ffe0b0, transparent 65%),
        linear-gradient(145deg, #fff7e6, #ffd9a3);
      padding: 2.4rem 0 3.3rem;
      border-bottom: 2px solid #f5d4a2;
    }

    .p4-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.45) 1px, transparent 0);
      background-size: 18px 18px;
      opacity: 0.45;
      pointer-events: none;
    }

    .p4-hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.05fr);
      gap: 2.6rem;
      align-items: center;
    }

    .p4-hero-left-label {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem 0.8rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(0,0,0,0.04);
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 600;
      color: #7b5238;
    }

    .p4-hero-left-label::before {
      content: "ॐ";
      font-size: 0.9rem;
      color: var(--p4-red);
    }

    .p4-hero h1 {
      margin: 0.7rem 0 0.5rem;
      font-size: 2.7rem;
      line-height: 1.18;
      font-family: "Playfair Display", serif;
      color: var(--p4-brown);
    }

    .p4-hero h1 span {
      color: var(--p4-red-dark);
    }

    .p4-hero-sub {
      font-size: 0.98rem;
      max-width: 33rem;
      color: #5a3b2b;
      margin-bottom: 1.5rem;
    }

    .p4-hero-badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-bottom: 1.3rem;
      font-size: 0.82rem;
    }

    .p4-hero-badge {
      padding: 0.35rem 0.75rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.9);
      border: 1px dashed rgba(0,0,0,0.07);
    }

    .p4-hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-bottom: 1.4rem;
    }

    .p4-btn-red,
    .p4-btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.7rem 1.6rem;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.18s ease;
    }

    .p4-btn-red {
      background: linear-gradient(130deg, var(--p4-red), var(--p4-red-dark));
      color: #fff;
      box-shadow: 0 14px 30px rgba(164,17,24,0.45);
    }

    .p4-btn-red:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(164,17,24,0.55);
    }

    .p4-btn-outline {
      background: rgba(255,255,255,0.98);
      border-color: rgba(214,40,40,0.4);
      color: var(--p4-red-dark);
    }

    .p4-btn-outline:hover {
      background: rgba(255,255,255,1);
      box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    }

    .p4-hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .p4-hero-stat {
      min-width: 120px;
      padding: 0.6rem 0.9rem;
      border-radius: 16px;
      background: rgba(255,255,255,0.96);
      border: 1px solid rgba(0,0,0,0.02);
      box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    }

    .p4-hero-stat strong {
      display: block;
      font-size: 1.1rem;
      color: var(--p4-red-dark);
    }

    .p4-hero-stat span {
      font-size: 0.78rem;
      color: #71513c;
    }

    .p4-hero-right-wrap {
      display: flex;
      justify-content: flex-end;
      position: relative;
      z-index: 2;
    }

    .p4-hero-right {
      position: relative;
      border-radius: 28px;
      padding: 1.4rem 1.4rem 1.8rem;
      background: linear-gradient(145deg, #f9e0b5, #fdd9a0);
      box-shadow: var(--p4-shadow-soft);
      overflow: hidden;
      max-width: 320px;
    }

    .p4-hero-right::before {
      content: "";
      position: absolute;
      inset: 0;
      border: 1px solid rgba(255,255,255,0.4);
      border-radius: inherit;
      pointer-events: none;
    }

    .p4-hero-motif-top,
    .p4-hero-motif-bottom {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      font-size: 1.3rem;
      color: rgba(133,78,33,0.4);
    }
    .p4-hero-motif-top { top: 0.6rem; }
    .p4-hero-motif-bottom { bottom: 0.6rem; }

    .p4-hero-circle {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      margin: 1.5rem auto 0.8rem;
      background:
        radial-gradient(circle at top, #fffdf7, #ffe2b3),
        conic-gradient(from 220deg, var(--p4-yellow), var(--p4-gold), var(--p4-red), var(--p4-yellow));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      box-shadow: 0 16px 32px rgba(0,0,0,0.25);
    }

    .p4-hero-circle::after {
      content: "";
      position: absolute;
      inset: 12px;
      border-radius: 50%;
      background: radial-gradient(circle, #fff9ec, #ffd89e);
    }

    .p4-hero-circle-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0.7rem;
    }

    .p4-hero-circle-inner img {
      width: 90px;
      margin: 0 auto 0.4rem;
    }

    .p4-hero-circle-inner h3 {
      font-size: 0.95rem;
      margin: 0;
      color: #5a3117;
    }

    .p4-hero-note {
      font-size: 0.8rem;
      text-align: center;
      color: #674431;
      margin-bottom: 0.6rem;
    }

    .p4-hero-list {
      margin: 0;
      padding-left: 1.1rem;
      font-size: 0.82rem;
      color: #5a3b2b;
    }

    /* Floating spice dots */
    .p4-float-spice {
      position: absolute;
      width: 60px;
      height: 60px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(255,210,152,0.7));
      border: 1px solid rgba(255,255,255,0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: #a75027;
      animation: p4-float 6s ease-in-out infinite;
      opacity: 0.9;
      z-index: 1;
    }

    .p4-float-spice.p4-s1 { top: 16%; left: 8%; animation-delay: 0s; }
    .p4-float-spice.p4-s2 { top: 65%; left: 4%; animation-delay: 1.5s; }
    .p4-float-spice.p4-s3 { top: 20%; right: 10%; animation-delay: 2.5s; }

    @keyframes p4-float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
      100% { transform: translateY(0); }
    }

    /* === NEW: ANIMATED SVG MOTIFS === */
    .p4-svg-motif {
      position: absolute;
      pointer-events: none;
      opacity: 0.45;
      z-index: 0;
    }

    .p4-svg-motif-hero {
      width: 230px;
      height: 230px;
      top: 0.2rem;
      right: 0.2rem;
    }

    .p4-svg-motif-hero svg {
      width: 100%;
      height: 100%;
    }

    .p4-rotate-slow {
      animation: p4-spin 26s linear infinite;
      transform-origin: center;
    }

    @keyframes p4-spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .p4-section-divider {
      text-align: center;
      margin: -0.3rem 0 2.4rem;
    }

    .p4-section-divider svg {
      width: 210px;
      height: auto;
      opacity: 0.4;
    }

    .p4-dash-anim {
      stroke-dasharray: 4 6;
      animation: p4-dash 11s linear infinite;
    }

    @keyframes p4-dash {
      to { stroke-dashoffset: -80; }
    }
    /* === END SVG MOTIFS === */

    /* ---- Hero bottom cards ---- */
    .p4-hero-cards {
      margin-top: 2.4rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 1.4rem;
    }

    .p4-hero-card {
      background: #fffdf7;
      border-radius: var(--p4-radius-lg);
      padding: 1.3rem 1.2rem 1.4rem;
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
      border: 1px solid rgba(222,175,111,0.45);
      position: relative;
      overflow: hidden;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .p4-hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.6), transparent 60%);
      opacity: 0;
      transition: opacity 0.18s ease;
    }

    .p4-hero-card h3 {
      margin-bottom: 0.4rem;
      color: var(--p4-green);
      font-size: 1.02rem;
    }

    .p4-hero-card p {
      font-size: 0.86rem;
      color: #6a4b3a;
    }

    .p4-hero-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.16);
    }

    .p4-hero-card:hover::before {
      opacity: 1;
    }

    /* ---- Sections ---- */
    .p4-section {
      padding: 2.7rem 0;
    }

    .p4-section-soft {
      background: var(--p4-soft);
      border-top: 1px solid #f1d2a4;
      border-bottom: 1px solid #f1d2a4;
    }

    .p4-section-title {
      margin: 0 0 0.4rem;
      font-size: 1.8rem;
      text-align: center;
      color: var(--p4-brown);
      font-family: "Playfair Display", serif;
    }

    .p4-section-sub {
      margin: 0 auto 2rem;
      max-width: 540px;
      text-align: center;
      font-size: 0.94rem;
      color: #6b4a37;
    }

    .p4-products-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 1.4rem;
    }

    .p4-product-card {
      background: #ffffff;
      border-radius: 18px;
      padding: 1.3rem 1.2rem 1.4rem;
      box-shadow: 0 10px 26px rgba(0,0,0,0.06);
      border: 1px solid rgba(222,175,111,0.35);
      position: relative;
      overflow: hidden;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .p4-product-pill {
      position: absolute;
      top: 12px;
      right: 12px;
      padding: 0.18rem 0.5rem;
      border-radius: 999px;
      font-size: 0.7rem;
      background: rgba(255,191,105,0.15);
      border: 1px solid rgba(255,191,105,0.7);
      color: #815228;
    }

    .p4-product-card h3 {
      margin-bottom: 0.35rem;
      color: var(--p4-green);
    }

    .p4-product-card p {
      font-size: 0.86rem;
      color: #6a4b3a;
      margin-bottom: 0.4rem;
    }

    .p4-product-card ul {
      margin: 0;
      padding-left: 1.1rem;
      font-size: 0.82rem;
      color: #5b3b2b;
    }

    .p4-product-card li {
      margin-bottom: 0.18rem;
    }

    .p4-product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px rgba(0,0,0,0.14);
    }

    /* ---- India strip ---- */
    .p4-india-strip {
      background: linear-gradient(90deg, #fff0c9, #ffe0b2);
      border-top: 1px solid #f5cf98;
      border-bottom: 1px solid #f5cf98;
      text-align: center;
      padding: 2.2rem 0;
      position: relative;
      overflow: hidden;
    }

    .p4-india-strip::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.25) 6px,
        transparent 6px,
        transparent 12px
      );
      opacity: 0.4;
      pointer-events: none;
    }

    .p4-india-strip-inner {
      position: relative;
      z-index: 1;
    }

    .p4-india-strip h2 {
      margin-bottom: 0.4rem;
      font-size: 1.6rem;
      font-family: "Playfair Display", serif;
      color: var(--p4-brown);
    }

    .p4-india-strip p {
      font-size: 0.9rem;
      color: #6d4a35;
    }

    /* ---- Why section ---- */
    .p4-why-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 1.2rem;
    }

    .p4-why-card {
      background: #ffffff;
      border-radius: 18px;
      padding: 1.3rem 1.1rem 1.5rem;
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
      border: 1px solid rgba(0,0,0,0.02);
      text-align: center;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .p4-why-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: var(--p4-soft);
      margin-bottom: 0.6rem;
      font-size: 1.3rem;
    }

    .p4-why-card h3 {
      margin-bottom: 0.25rem;
      color: var(--p4-brown);
      font-size: 0.98rem;
    }

    .p4-why-card p {
      font-size: 0.82rem;
      color: #6b4a37;
    }

    .p4-why-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 34px rgba(0,0,0,0.15);
    }

    .p4-center-btn {
      text-align: center;
      margin-top: 2rem;
    }

    /* ---- CTA ---- */
    .p4-cta {
      background: radial-gradient(circle at left, #ffbb6e, #d62828);
      color: #fff;
    }

    .p4-cta-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
      gap: 1.4rem;
      align-items: center;
    }

    .p4-cta-title {
      font-size: 1.7rem;
      margin-bottom: 0.4rem;
      font-family: "Playfair Display", serif;
    }

    .p4-cta-text {
      font-size: 0.94rem;
      max-width: 420px;
    }

    .p4-cta-badges {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      font-size: 0.84rem;
    }

    .p4-cta-badges span {
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.65);
      background: rgba(0,0,0,0.1);
    }

    .p4-btn-white-outline {
      margin-top: 0.9rem;
      display: inline-flex;
      padding: 0.7rem 1.6rem;
      border-radius: 999px;
      border: 2px solid #fff;
      font-size: 0.9rem;
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      transition: background 0.18s ease, transform 0.18s ease;
    }

    .p4-btn-white-outline:hover {
      background: rgba(255,255,255,0.12);
      transform: translateY(-1px);
    }

    
    /* ---- Responsive ---- */
    @media (max-width: 900px) {
      .p4-hero-grid {
        grid-template-columns: 1fr;
      }
      .p4-hero-right-wrap {
        justify-content: flex-start;
        margin-top: 1rem;
      }
      .p4-hero-cards {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }
      .p4-products-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }
      .p4-why-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }
      .p4-cta-inner {
        grid-template-columns: 1fr;
      }
      
    }

    @media (max-width: 700px) {
      .p4-container {
        width: min(100% - 1.6rem, 100%);
      }

      .p4-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        flex-direction: column;
        background: rgba(255,247,230,0.98);
        padding: 0.7rem 1.4rem 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transform: translateY(-130%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.16s ease, opacity 0.16s ease;
      }

      .p4-nav.p4-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }

      .p4-nav-toggle {
        display: block;
      }

      .p4-hero {
        padding-top: 1.8rem;
      }

      .p4-hero h1 {
        font-size: 2.2rem;
      }

      .p4-hero-cards,
      .p4-products-grid,
      .p4-why-grid {
        grid-template-columns: 1fr;
      }

      
    }
    .pf-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.pf-social .pf-icon {
    font-size: 28px;
    color: #fcd9b0;
    transition: 0.25s ease;
}

.pf-social .pf-icon:hover {
    transform: scale(1.25) translateY(-4px);
    color: #ffbf69;
}

    /* PREMIUM FOOTER */
.premium-footer {
  position: relative;
  background: linear-gradient(180deg, #3d1f11, #2a140b);
  padding: 4rem 0 2rem;
  color: #f8e7d5;
  overflow: hidden;
  border-top: 2px solid #d9a76255;
}

/* Mandala Background */
.pf-mandala {
  position: absolute;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  width: 420px;
  height: 420px;
  background: url('images/motifs/mandala-gold.png') no-repeat center/contain;
  opacity: 0.12;
  animation: spinMandala 40s linear infinite;
}
@keyframes spinMandala {
  from { transform: translateX(-50%) rotate(0); }
  to { transform: translateX(-50%) rotate(360deg); }
}

/* Floating spices */
.pf-float {
  position: absolute;
  font-size: 36px;
  opacity: 0.20;
  animation: pfFloat 6s ease-in-out infinite;
}
.pf-1 { top: 20%; left: 8%; animation-delay: 0s; }
.pf-2 { top: 55%; right: 10%; animation-delay: 1.5s; }
.pf-3 { bottom: 18%; left: 45%; animation-delay: 3s; }

@keyframes pfFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Decorative Gold Divider */
.pf-divider svg {
  width: 100%;
  margin-bottom: 2rem;
}
.pf-dash {
  animation: dashMove 10s linear infinite;
}
@keyframes dashMove {
  to { stroke-dashoffset: -200; }
}

/* Footer Grid */
.pf-container {
  width: min(1150px, 100% - 2rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.pf-logo {
  width: 130px;
  margin-bottom: 1rem;
}

.pf-left p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* Social Icons */
.pf-social {
  display: flex;
  gap: 10px;
}
.pf-social img {
  width: 32px;
  filter: brightness(1.3);
  transition: 0.25s ease;
}
.pf-social img:hover {
  transform: scale(1.18) translateY(-4px);
  filter: brightness(1.6);
}

/* Links */
.pf-col h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: #ffdd9b;
}
.pf-col a {
  display: block;
  margin-bottom: 0.4rem;
  color: #f3dccb;
  transition: 0.20s ease;
}
.pf-col a:hover {
  color: #ffbf69;
  transform: translateX(5px);
}

/* Bottom Strip */
.pf-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ffffff25;
  font-size: 0.88rem;
  color: #c8b5a4;
}
.premium-footer-fixed {
  width: 100%;
  background: linear-gradient(180deg, #3d1f11, #2a140b) !important;
  padding: 4rem 0 2rem !important;
  color: #f9e7d5 !important;
  position: relative;
  overflow: visible !important;
  border-top: 3px solid #d9a76288;
}

/* Wave */
.pf-gold-wave {
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    to right,
    #d9a762 0 20px,
    transparent 20px 40px
  );
  opacity: 0.7;
  margin-bottom: 2rem;
}

/* Grid Layout */
.pf-wrapper {
  width: min(1150px, 90%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.pf-logo {
  width: 130px;
  margin-bottom: 1rem;
}

/* Social icons */
.pf-social span {
  font-size: 28px;
  margin-right: 8px;
  cursor: pointer;
  transition: 0.2s;
}
.pf-social span:hover {
  transform: scale(1.3) translateY(-4px);
}

/* Links */
.pf-links a {
  display: block;
  margin-bottom: 4px;
  color: #f0d5c0 !important;
}

/* Bottom strip */
.pf-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ffffff33;
  font-size: 14px;
  color: #cdb8a5;
}

/* Floating spices */
.pf-float {
  position: absolute;
  font-size: 33px;
  opacity: 0.22;
  animation: floatIt 6s ease-in-out infinite;
}
.pf-a { top: 15%; left: 8%; }
.pf-b { top: 55%; right: 10%; animation-delay: 0.8s; }
.pf-c { bottom: 20%; left: 48%; animation-delay: 1.4s; }

@keyframes floatIt {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}
/* Floating Buttons */
.p4-float-btn {
  position: fixed;
  right: 22px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: 0.25s ease-in-out;
}

/* WhatsApp Button */
.p4-float-whatsapp {
  bottom: 120px;
  background: #25D366;
}

/* Call Button */
.p4-float-call {
  bottom: 50px;
  background: #e63946;
}

/* Hover effect */
.p4-float-btn:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}
/* ---------------- MOBILE RESPONSIVE FIXES ---------------- */
@media (max-width: 1024px) {
  .p4-container { width: min(95%, 100%); }
}

/* Tablet */
@media (max-width: 900px) {
  .p4-hero h1 { font-size: 2.1rem; }
  .p4-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .p4-hero-right-wrap { justify-content: center; }
  .p4-hero-right { max-width: 340px; margin: auto; }
  .p4-products-grid,
  .p4-why-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-wrapper { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 700px) {

  /* Header nav */
  .p4-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    background: #fff9ef;
    padding: 0.7rem 1.4rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    border-bottom: 1px solid #f3dfc6;
  }
  .p4-nav.p4-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .p4-nav-toggle { display: block; }

  /* Hero */
  .p4-hero {
    padding: 1.6rem 0 2.2rem;
    text-align: center;
  }
  .p4-hero-left-label { margin: auto; }
  .p4-hero h1 { font-size: 1.9rem; }
  .p4-hero-sub { margin: .8rem auto 1.2rem; }
  .p4-hero-badge-row {
    justify-content: center;
  }
  .p4-hero-ctas { justify-content: center; }
  .p4-hero-stats {
    justify-content: center;
    text-align: center;
  }
  .p4-hero-stat { min-width: 150px; }

  /* Floating spices smaller */
  .p4-float-spice {
    width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
  }

  /* Hero right card */
  .p4-hero-right-wrap { justify-content: center; }
  .p4-hero-right {
    max-width: 300px;
    margin-top: 1.2rem;
  }

  /* SVG motif scaled */
  .p4-svg-motif-hero {
    width: 160px;
    height: 160px;
    opacity: .3;
  }

  /* Grids become 1-column */
  .p4-products-grid,
  .p4-why-grid,
  .p4-hero-cards {
    grid-template-columns: 1fr;
  }

  /* India strip */
  .p4-india-strip { padding: 1.6rem 1rem; }

  /* CTA */
  .p4-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .p4-btn-white-outline { margin-left: auto; margin-right: auto; }

  /* Footer */
  .pf-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pf-social { justify-content: center; }
  .pf-contact, .pf-links, .pf-left { margin-bottom: 1.8rem; }
  .pf-logo { margin: auto; }

  /* Floating buttons */
  .p4-float-btn {
    width: 52px;
    height: 52px;
    right: 14px;
    font-size: 24px;
  }
  .p4-float-whatsapp { bottom: 110px; }
  .p4-float-call { bottom: 42px; }
}

/* Extra small screens */
@media (max-width: 480px) {
  .p4-hero h1 { font-size: 1.6rem; }
  .p4-hero-right { max-width: 260px; }
  .p4-hero-circle { width: 160px; height: 160px; }
  .p4-hero-circle-inner img { width: 70px; }
  .p4-products-grid { gap: 1rem; }
}
/* -------------------- TESTIMONIALS SLIDER -------------------- */
.p4-testimonials { background: #fff7e9; }
.p4-testimonials-slider {
  display: flex;
  gap: 1.4rem;
  overflow: hidden;
  padding: 1rem 0;
  scroll-behavior: smooth;
}
.p4-testimonial-card {
  min-width: 330px;
  background: #ffffff;
  padding: 1.4rem 1rem;
  border-radius: 18px;
  border: 1px solid #e7cba3;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}
.p4-t-stars {
  color: #ffbf69;
  font-size: 1.2rem;
  margin-bottom: .6rem;
}
.p4-testimonial-card h4 {
  margin-top: .8rem;
  color: #7a5638;
}

/* Auto-slide animation */
@keyframes p4AutoSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -------------------- STORY SECTION -------------------- */
.p4-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}
.p4-story-list li {
  margin-bottom: .4rem;
  font-size: .92rem;
  color: #66432b;
}
.p4-story-img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.15);
  object-fit: cover;
}


/* -------------------- FRANCHISE COUNTERS -------------------- */
.p4-counters { background: #fff0d9; }
.p4-counter-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.4rem;
}
.p4-counter-card {
  background: #ffffff;
  text-align: center;
  padding: 1.3rem;
  border-radius: 18px;
  border: 1px solid #e2c089;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}
.p4-counter-card strong {
  font-size: 2rem;
  color: #c03b2f;
}

/* -------------------- TIMELINE -------------------- */
.p4-timeline-wrapper {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.p4-step {
  text-align: center;
  background: #ffffff;
  padding: 1.3rem;
  border-radius: 18px;
  border: 1px solid #e2c089;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}
.p4-step-icon {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: .5rem;
}
/* ------------------ MOBILE FIXES FOR NEW SECTIONS ------------------ */

/* ---------- TESTIMONIALS ---------- */
@media (max-width: 700px) {
  .p4-testimonials-slider {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .p4-testimonial-card {
    min-width: 85%;
    scroll-snap-align: center;
  }
}

/* ---------- STORY SECTION ---------- */
@media (max-width: 900px) {
  .p4-story-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .p4-story-img {
    height: 240px;
    margin-top: 1rem;
  }
  .p4-story-list {
    text-align: left;
    margin: auto;
    width: 90%;
  }
}

/* ---------- COUNTERS SECTION ---------- */
@media (max-width: 900px) {
  .p4-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .p4-counter-grid {
    grid-template-columns: 1fr;
  }
  .p4-counter-card {
    padding: 1.1rem;
  }
  .p4-counter-card strong {
    font-size: 1.7rem;
  }
}

/* ---------- TIMELINE SECTION ---------- */
@media (max-width: 1100px) {
  .p4-timeline-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .p4-timeline-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .p4-step {
    padding: 1.1rem;
  }
}

@media (max-width: 500px) {
  .p4-timeline-wrapper {
    grid-template-columns: 1fr;
  }
  .p4-step {
    padding: 1.1rem 1rem;
  }
  .p4-step-icon {
    font-size: 1.7rem;
  }
}
[p4-anim] {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease-out;
}

[p4-anim].visible {
  opacity: 1;
  transform: translateY(0);
}
.p4-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #ffffff;
  border-top: 1px solid #ddd;
  padding: .6rem 0;
  display: flex;
  justify-content: space-around;
  z-index: 9999;
}

.p4-mobile-cta a {
  font-size: .85rem;
  color: #d62828;
  text-align: center;
}

@media (max-width: 700px) {
  .p4-mobile-cta { display: flex; }
}
/* ABOUT SECTION STYLES */
.p4-about-detail {
  background: #fffdf7;
}

.p4-about-block {
  max-width: 850px;
  margin: auto;
  padding: 1rem 0;
}

.p4-about-line {
  font-size: 1rem;
  color: #573d2c;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.p4-about-icon {
  color: #2ca14f;
  font-size: 1.1rem;
  margin-top: 4px;
}

.p4-about-full-img {
  width: 100%;
  border-radius: 16px;
  margin-top: 1.5rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
