/* ====== PRAKASH HOMEPAGE CUSTOM STYLES ====== */
:root {
  --pk-red: #B40228;
  --pk-red-dark: #8a011e;
  --pk-red-light: #fce4ec;
  --pk-gold: #D4AF37;
  --pk-gold-light: #fef3cd;
  --pk-cream: #fdf8f0;
  --pk-dark: #1a1a1a;
  --pk-gray-800: #2d2d2d;
  --pk-gray-600: #555;
  --pk-gray-400: #999;
  --pk-gray-200: #e8e8e8;
  --pk-gray-100: #f5f5f5;
  --pk-white: #ffffff;
  --pk-font-display: 'Playfair Display', Georgia, serif;
  --pk-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --pk-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --pk-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --pk-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --pk-radius: 12px;
  --pk-radius-sm: 8px;
  /* Aliases used by page-level styles */
  --pk-display: var(--pk-font-display);
  --pk-body: var(--pk-font-body);
  --pk-gray: #555;
}

/* Reset only within our homepage scope */
.pk-homepage * {
  box-sizing: border-box;
}

.pk-homepage img {
  max-width: 100%;
  height: auto;
}

:where(.pk-homepage) a {
  text-decoration: none;
  color: inherit;
}

.pk-homepage section {
  font-family: var(--pk-font-body);
}

/* Container */
.pk-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====== ANNOUNCEMENT BAR ====== */
.pk-announcement {
  background: var(--pk-red);
  color: var(--pk-white);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--pk-font-body);
  line-height: 1.5;
}

.pk-announcement span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pk-announcement .pk-divider {
  color: var(--pk-gold);
}

/* ====== TRUST BAR ====== */
.pk-trust-bar {
  background: var(--pk-cream);
  border-bottom: 1px solid var(--pk-gray-200);
  padding: 14px 0;
  font-family: var(--pk-font-body);
}

.pk-trust-bar .pk-container {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.pk-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pk-gray-600);
}

.pk-trust-icon {
  width: 28px;
  height: 28px;
  background: var(--pk-red);
  color: var(--pk-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  line-height: 1;
}

/* ====== PROMO STRIP ====== */
.pk-promo-strip {
  text-align: center;
  padding: 10px 44px 10px 16px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 10;
}
.pk-promo-strip-link {
  color: inherit;
  text-decoration: none;
}
.pk-promo-cta {
  color: var(--pk-gold);
  text-decoration: underline;
  margin-left: 8px;
}
.pk-promo-dismiss {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: inherit;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.7;
  line-height: 1;
  padding: 4px;
}
.pk-promo-dismiss:hover { opacity: 1; }

/* ====== BANNER CAROUSEL ====== */
.pk-banner-carousel {
  position: relative;
  overflow: hidden;
  background: var(--pk-dark);
  --pk-banner-speed: 0.5s;
}
.pk-banner-track {
  display: flex;
  will-change: transform;
}
.pk-banner-slide {
  min-width: 100%;
  flex-shrink: 0;
  aspect-ratio: 21/9;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.pk-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.pk-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 700px;
}
/* Position: vertical (slide flex) × horizontal (content margin) — 9 combos */
/* Default = center center */
.pk-banner-pos-center .pk-banner-content { margin: 0 auto; text-align: center; }
.pk-banner-pos-left .pk-banner-content { margin-right: auto; }
.pk-banner-pos-right .pk-banner-content { margin-left: auto; }

/* Top row */
.pk-banner-pos-top-left,
.pk-banner-pos-top-center,
.pk-banner-pos-top-right { align-items: flex-start; }
.pk-banner-pos-top-left .pk-banner-content,
.pk-banner-pos-top-center .pk-banner-content,
.pk-banner-pos-top-right .pk-banner-content { padding-top: 48px; }
.pk-banner-pos-top-left .pk-banner-content { margin-right: auto; }
.pk-banner-pos-top-center .pk-banner-content { margin: 0 auto; text-align: center; }
.pk-banner-pos-top-right .pk-banner-content { margin-left: auto; }

/* Bottom row */
.pk-banner-pos-bottom-left,
.pk-banner-pos-bottom-center,
.pk-banner-pos-bottom-right { align-items: flex-end; }
.pk-banner-pos-bottom-left .pk-banner-content,
.pk-banner-pos-bottom-center .pk-banner-content,
.pk-banner-pos-bottom-right .pk-banner-content { padding-bottom: 48px; }
.pk-banner-pos-bottom-left .pk-banner-content { margin-right: auto; }
.pk-banner-pos-bottom-center .pk-banner-content { margin: 0 auto; text-align: center; }
.pk-banner-pos-bottom-right .pk-banner-content { margin-left: auto; }
.pk-banner-title {
  font-family: var(--pk-font-display);
  font-size: 48px;
  line-height: 1.15;
  color: var(--pk-white);
  margin: 0 0 12px 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.pk-banner-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin: 0 0 24px 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  line-height: 1.5;
  font-family: var(--pk-font-body);
}
.pk-banner-cta {
  box-shadow: 0 4px 15px rgba(180,2,40,0.3);
}
.pk-banner-text-dark .pk-banner-title { color: var(--pk-dark); text-shadow: none; }
.pk-banner-text-dark .pk-banner-subtitle { color: var(--pk-gray-600); text-shadow: none; }

/* Banner arrows */
.pk-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.pk-banner-arrow:hover { background: var(--pk-white); }
.pk-banner-arrow--prev { left: 20px; }
.pk-banner-arrow--next { right: 20px; }

/* Banner dots */
.pk-banner-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.pk-banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.pk-banner-dot.active {
  background: var(--pk-white);
  width: 28px;
  border-radius: 5px;
}

/* ── Slide mode (default) ── */
.pk-banner-carousel--slide .pk-banner-track {
  transition: transform var(--pk-banner-speed) ease;
}

/* ── Fade mode ── */
.pk-banner-carousel--fade .pk-banner-track {
  transition: none;
}
.pk-banner-carousel--fade .pk-banner-slide {
  position: absolute;
  inset: 0;
  min-width: 100%;
  opacity: 0;
  transition: opacity var(--pk-banner-speed) ease;
  z-index: 0;
}
.pk-banner-carousel--fade .pk-banner-slide.pk-active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

/* ── Zoom mode ── */
.pk-banner-carousel--zoom .pk-banner-track {
  transition: none;
}
.pk-banner-carousel--zoom .pk-banner-slide {
  position: absolute;
  inset: 0;
  min-width: 100%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity var(--pk-banner-speed) ease, transform var(--pk-banner-speed) ease;
  z-index: 0;
}
.pk-banner-carousel--zoom .pk-banner-slide.pk-active {
  opacity: 1;
  transform: scale(1);
  position: relative;
  z-index: 1;
}

/* Reduced-motion: disable carousel transition */
@media (prefers-reduced-motion: reduce) {
  .pk-banner-track,
  .pk-banner-slide { transition: none !important; }
}

/* ====== HERO ====== */
.pk-hero {
  background: linear-gradient(135deg, var(--pk-cream) 0%, #fff5e6 50%, var(--pk-cream) 100%);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.pk-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pk-hero .pk-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pk-white);
  border: 1px solid var(--pk-gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pk-red);
  margin-bottom: 18px;
  font-family: var(--pk-font-body);
}

.pk-hero-badge .pk-dot {
  width: 6px;
  height: 6px;
  background: var(--pk-gold);
  border-radius: 50%;
}

.pk-hero h1 {
  font-family: var(--pk-font-display);
  font-size: 46px;
  line-height: 1.15;
  color: var(--pk-dark);
  margin: 0 0 14px 0;
}

.pk-hero h1 .pk-highlight {
  color: var(--pk-red);
}

.pk-hero-desc {
  font-size: 17px;
  color: var(--pk-gray-600);
  max-width: 480px;
  margin: 0 0 26px 0;
  line-height: 1.7;
  font-family: var(--pk-font-body);
}

.pk-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.pk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--pk-radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: var(--pk-font-body);
  line-height: 1.4;
}

.pk-btn-primary {
  background: var(--pk-red);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.pk-btn-primary:hover {
  background: var(--pk-red-dark);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.pk-btn-outline {
  background: transparent;
  color: var(--pk-dark) !important;
  border: 2px solid var(--pk-gray-200);
}

.pk-btn-outline:hover {
  border-color: var(--pk-red);
  color: var(--pk-red) !important;
}

.pk-btn-gold {
  background: var(--pk-gold);
  color: var(--pk-dark) !important;
  font-weight: 700;
}

.pk-btn-gold:hover {
  background: #e6b800;
  color: var(--pk-dark) !important;
  transform: translateY(-1px);
}

.pk-btn-white-outline {
  border: 2px solid var(--pk-white);
  color: #ffffff !important;
  background: transparent;
}

.pk-btn-white-outline:hover {
  background: var(--pk-white);
  color: var(--pk-red) !important;
}

/* Hero stats */
.pk-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--pk-gray-200);
}

.pk-stat-number {
  font-family: var(--pk-font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--pk-red);
}

.pk-stat-label {
  font-size: 12px;
  color: var(--pk-gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--pk-font-body);
}

/* Hero image */
.pk-hero-img {
  position: relative;
  display: flex;
  justify-content: center;
}

.pk-hero-img img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--pk-radius);
  box-shadow: var(--pk-shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.pk-floating {
  position: absolute;
  background: var(--pk-white);
  border-radius: var(--pk-radius-sm);
  padding: 10px 14px;
  box-shadow: var(--pk-shadow-md);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--pk-font-body);
  z-index: 3;
}

.pk-floating.pk-top-right {
  top: -8px;
  right: 10px;
}

.pk-floating.pk-bottom-left {
  bottom: 16px;
  left: -6px;
}

.pk-floating .pk-stars {
  color: var(--pk-gold);
}

/* ====== CLIENTS ====== */
.pk-clients {
  padding: 28px 0;
  background: var(--pk-white);
  border-bottom: 1px solid var(--pk-gray-200);
}

.pk-clients-label {
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pk-gray-400);
  font-weight: 600;
  margin-bottom: 18px;
  font-family: var(--pk-font-body);
}

.pk-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.pk-logos img {
  height: 48px;
  width: auto;
  opacity: 0.85;
  transition: transform 0.25s ease, opacity 0.25s ease;
  filter: none;
}

.pk-logos img:hover {
  opacity: 1;
  transform: scale(1.12);
}

/* Mobile-only corporate logos (shown at bottom, before footer) */
.pk-clients-mobile {
  display: none;
}

/* ====== SECTION HEADER ====== */
.pk-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.pk-overline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pk-red);
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--pk-font-body);
}

.pk-section-header h2 {
  font-family: var(--pk-font-display);
  font-size: 36px;
  color: var(--pk-dark);
  margin: 0;
}

.pk-section-header p {
  color: var(--pk-gray-600);
  font-size: 16px;
  max-width: 500px;
  margin: 10px auto 0;
  font-family: var(--pk-font-body);
}

/* ====== CATEGORIES ====== */
.pk-categories {
  padding: 64px 0;
  background: var(--pk-white);
}

.pk-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pk-cat-card {
  position: relative;
  border-radius: var(--pk-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.pk-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pk-shadow-md);
}

.pk-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pk-cat-card .pk-cat-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.pk-cat-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.4s ease;
}

.pk-cat-card:hover .pk-cat-bg img {
  transform: scale(1.08);
}

.pk-cat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--pk-white);
}

.pk-cat-overlay h3 {
  font-family: var(--pk-font-display);
  font-size: 19px;
  margin: 0 0 2px 0;
}

.pk-cat-overlay .pk-count {
  font-size: 13px;
  opacity: 0.8;
  font-family: var(--pk-font-body);
}

/* Category background colors (used when no image) */
.pk-bg-sweets {
  background: linear-gradient(135deg, #fff1eb, #fce4ec);
}

.pk-bg-namkeen {
  background: linear-gradient(135deg, #fff8e1, #ffe0b2);
}

.pk-bg-snacks {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.pk-bg-cookies {
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}

.pk-bg-dryfruits {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.pk-bg-gifts {
  background: linear-gradient(135deg, var(--pk-gold-light), #f5c518);
}

.pk-bg-clap {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.pk-bg-festive {
  background: linear-gradient(135deg, #fce4ec, #ef9a9a);
}

/* ====== BESTSELLERS ====== */
.pk-bestsellers {
  padding: 64px 0;
  background: var(--pk-gray-100);
}

.pk-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pk-product-card {
  background: var(--pk-white);
  border-radius: var(--pk-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--pk-shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pk-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pk-shadow-md);
}

.pk-product-card a {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pk-product-thumb {
  aspect-ratio: 1;
  background: var(--pk-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.pk-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pk-product-card:hover .pk-product-thumb img {
  transform: scale(1.05);
}

.pk-product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--pk-red);
  color: var(--pk-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--pk-font-body);
}

.pk-product-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pk-product-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--pk-red);
  font-weight: 600;
  margin-bottom: 3px;
  font-family: var(--pk-font-body);
}

.pk-product-info h3 {
  font-family: var(--pk-font-display);
  font-size: 16px;
  margin: 0 0 3px 0;
  color: var(--pk-dark);
}

.pk-product-weight {
  font-size: 13px;
  color: var(--pk-gray-400);
  margin-bottom: 10px;
  font-family: var(--pk-font-body);
}

.pk-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  /* Pushes the price row to the bottom of the info block */
}

.pk-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--pk-dark);
  font-family: var(--pk-font-body);
}

.pk-add-cart {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  background: var(--pk-red);
  color: var(--pk-white);
  border: none;
  padding: 8px 16px;
  border-radius: var(--pk-radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--pk-font-body);
}

.pk-add-cart:hover {
  background: var(--pk-red-dark);
}

.pk-center-cta {
  text-align: center;
  margin-top: 36px;
}

/* ====== DELIVERY ZONES ====== */
.pk-delivery {
  padding: 60px 0;
  background: var(--pk-white);
}

.pk-delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pk-delivery-card {
  border: 2px solid var(--pk-gray-200);
  border-radius: var(--pk-radius);
  padding: 32px;
  transition: border-color 0.3s;
}

.pk-delivery-card:hover {
  border-color: var(--pk-red);
}

.pk-delivery-card .pk-emoji {
  font-size: 32px;
  margin-bottom: 12px;
}

.pk-delivery-card h3 {
  font-family: var(--pk-font-display);
  font-size: 22px;
  margin: 0 0 8px 0;
  color: var(--pk-dark);
}

.pk-delivery-card p {
  font-size: 15px;
  color: var(--pk-gray-600);
  margin: 0 0 12px 0;
  line-height: 1.6;
  font-family: var(--pk-font-body);
}

.pk-delivery-meta {
  font-size: 13px;
  color: var(--pk-gray-400);
  line-height: 1.7;
  font-family: var(--pk-font-body);
}

.pk-delivery-meta strong {
  color: var(--pk-dark);
}

/* ====== TESTIMONIALS ====== */
.pk-testimonials {
  padding: 64px 0 48px;
  background: var(--pk-cream);
  overflow: hidden;
}

/* Scrolling carousel wrapper */
.pk-test-scroll-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  padding: 8px 0;
}

.pk-test-scroll {
  display: flex;
  gap: 22px;
  animation: pk-scroll-reviews 40s linear infinite;
  width: max-content;
}

.pk-test-scroll:hover {
  animation-play-state: paused;
}

@keyframes pk-scroll-reviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Keep old grid class for backward compat */
.pk-test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pk-test-card {
  background: var(--pk-white);
  border-radius: var(--pk-radius);
  padding: 26px;
  box-shadow: var(--pk-shadow-sm);
  min-width: 320px;
  max-width: 360px;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pk-test-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.pk-test-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pk-test-stars {
  color: var(--pk-gold);
  font-size: 16px;
  margin-bottom: 12px;
}

.pk-test-text {
  font-size: 15px;
  color: var(--pk-gray-600);
  margin: 0 0 6px 0;
  line-height: 1.7;
  font-style: italic;
  font-family: var(--pk-font-body);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pk-test-text.pk-expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.pk-test-readmore {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  color: var(--pk-red);
  cursor: pointer;
  margin-bottom: 10px;
  display: none;
}

.pk-test-readmore:hover {
  text-decoration: underline;
}

.pk-test-author {
  font-weight: 600;
  font-size: 14px;
  font-family: var(--pk-font-body);
}

.pk-test-source {
  font-size: 12px;
  color: var(--pk-gray-400);
  font-family: var(--pk-font-body);
}

.pk-test-gmaps {
  font-size: 12px;
  color: var(--pk-red);
  font-weight: 600;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pk-test-link:hover .pk-test-gmaps {
  opacity: 1;
}

/* ====== GIFTING CTA ====== */
.pk-gifting-cta {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--pk-red) 0%, var(--pk-red-dark) 100%);
  color: var(--pk-white);
  text-align: center;
}

.pk-gifting-cta h2 {
  font-family: var(--pk-font-display);
  font-size: 36px;
  margin: 0 0 12px 0;
}

.pk-gifting-cta>.pk-container>p {
  font-size: 17px;
  opacity: 0.9;
  max-width: 550px;
  margin: 0 auto 26px;
  font-family: var(--pk-font-body);
}

.pk-gifting-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.pk-gifting-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  font-size: 14px;
  opacity: 0.9;
  flex-wrap: wrap;
  font-family: var(--pk-font-body);
}

.pk-gifting-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ====== INSTAGRAM ====== */
.pk-instagram {
  padding: 48px 0;
  background: var(--pk-white);
  text-align: center;
}

.pk-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 28px;
}

.pk-insta-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.3s;
}

.pk-insta-grid img:hover {
  opacity: 0.8;
}

.pk-insta-follow {
  margin-top: 24px;
}

/* ====== MOBILE RESPONSIVE ====== */
@media (max-width: 992px) {
  .pk-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pk-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  /* Promo strip mobile */
  .pk-promo-strip { font-size: 12px; padding: 8px 36px 8px 12px; }
  .pk-promo-dismiss { right: 8px; font-size: 18px; }

  /* Hide hero, delivery zones, corporate logos on mobile — banner carousel replaces hero */
  .pk-hero { display: none; }
  .pk-delivery { display: none; }
  .pk-clients { display: none; }

  /* Show mobile-only corporate logos section */
  .pk-clients-mobile { display: block !important; }

  /* Banner carousel mobile */
  .pk-banner-slide { 
    aspect-ratio: 16/9; 
    flex: 0 0 100%; 
    width: 100%; 
    box-sizing: border-box; 
    overflow: hidden; 
  }

  .pk-banner-carousel--slide .pk-banner-track {
    transition: transform var(--pk-banner-speed) ease;
  }
  .pk-banner-content { padding: 0 16px; max-width: 100%; }
  .pk-banner-title { font-size: 18px; line-height: 1.25; margin-bottom: 8px; word-wrap: break-word; overflow-wrap: break-word; hyphens: auto; }
  .pk-banner-subtitle { font-size: 11px; margin-bottom: 12px; }
  .pk-banner-cta { padding: 8px 18px; font-size: 12px; }
  .pk-banner-arrow { width: 32px; height: 32px; font-size: 12px; }
  .pk-banner-arrow--prev { left: 8px; }
  .pk-banner-arrow--next { right: 8px; }
  .pk-banner-dots { bottom: 10px; gap: 6px; }
  .pk-banner-dot { width: 7px; height: 7px; }
  .pk-banner-dot.active { width: 18px; }
  /* On mobile, horizontally center all text positions */
  .pk-banner-pos-left .pk-banner-content,
  .pk-banner-pos-right .pk-banner-content,
  .pk-banner-pos-top-left .pk-banner-content,
  .pk-banner-pos-top-right .pk-banner-content,
  .pk-banner-pos-bottom-left .pk-banner-content,
  .pk-banner-pos-bottom-right .pk-banner-content {
    text-align: center;
    margin: 0 auto;
  }
  .pk-banner-pos-top-left .pk-banner-content,
  .pk-banner-pos-top-center .pk-banner-content,
  .pk-banner-pos-top-right .pk-banner-content { padding-top: 24px; }
  .pk-banner-pos-bottom-left .pk-banner-content,
  .pk-banner-pos-bottom-center .pk-banner-content,
  .pk-banner-pos-bottom-right .pk-banner-content { padding-bottom: 24px; }

  .pk-hero .pk-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pk-hero h1 {
    font-size: 32px;
  }

  .pk-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .pk-hero-ctas {
    justify-content: center;
  }

  .pk-hero-stats {
    justify-content: center;
  }

  .pk-hero-img {
    order: -1;
    margin-bottom: 10px;
  }

  .pk-hero-img img {
    max-width: 320px;
  }

  .pk-floating {
    display: none;
  }

  .pk-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pk-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pk-delivery-grid {
    grid-template-columns: 1fr;
  }

  .pk-test-grid {
    grid-template-columns: 1fr;
  }

  .pk-test-card {
    min-width: 280px;
    max-width: 300px;
    padding: 20px;
  }

  .pk-test-scroll {
    animation-duration: 30s;
  }

  .pk-insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pk-gifting-features {
    flex-direction: column;
    gap: 8px;
  }

  .pk-announcement {
    font-size: 11px;
    gap: 8px;
    padding: 8px 12px;
  }

  .pk-trust-bar .pk-container {
    gap: 14px;
  }

  .pk-trust-item {
    font-size: 11px;
  }

  .pk-section-header h2 {
    font-size: 28px;
  }

  .pk-logos {
    gap: 20px;
  }

  .pk-logos img {
    height: 36px;
  }
}

@media (max-width: 480px) {
  .pk-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pk-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pk-hero h1 {
    font-size: 28px;
  }

  .pk-btn {
    padding: 12px 22px;
    font-size: 14px;
  }

  .pk-hero-stats {
    gap: 20px;
  }

  .pk-stat-number {
    font-size: 24px;
  }
}

/* ====== FOOTER FIX (ElementsKit/Woostify) ====== */
footer,
.site-footer,
#colophon,
.woostify-footer-widgets,
[class*="footer"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
}

.site-footer .widget-title,
footer:not(.footer-b) .widget-title {
  color: #f5c518 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
}

body .ekit-template-content-footer ul,
body footer:not(.footer-b) .elementor-nav-menu ul,
body footer:not(.footer-b) .widget_nav_menu ul {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
  position: static !important;
  background: transparent !important;
}

body .ekit-template-content-footer ul li,
body footer:not(.footer-b) .elementor-nav-menu ul li,
body footer:not(.footer-b) .widget_nav_menu ul li {
  display: block !important;
  visibility: visible !important;
}

body .ekit-template-content-footer ul li a,
body footer:not(.footer-b) .elementor-nav-menu--main li a,
body footer:not(.footer-b) .widget_nav_menu ul li a,
body footer:not(.footer-b) a {
  display: block !important;
  visibility: visible !important;
  color: #fff !important;
  font-size: 14px !important;
  padding: 4px 0 !important;
  opacity: 1 !important;
}

body footer:not(.footer-b) a:hover,
body .ekit-template-content-footer ul li a:hover,
body footer:not(.footer-b) .elementor-nav-menu--main li a:hover {
  color: #fac213 !important;
}

footer:not(.footer-b) .elementor-column,
footer:not(.footer-b) .elementor-widget-wrap {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ====== PROMO POPUP ====== */
.pk-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.pk-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.pk-popup {
  width: 660px;
  max-width: 100%;
  background: var(--pk-cream, #fdf8f0);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pk-popup-overlay.active .pk-popup {
  transform: translateY(0) scale(1);
}

/* Close button */
.pk-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: #999;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.pk-popup-close:hover {
  background: rgba(0, 0, 0, 0.12);
  color: #555;
}

/* ── Left visual panel (desktop) ── */
.pk-popup-visual {
  width: 260px;
  flex-shrink: 0;
  background: linear-gradient(160deg, var(--pk-red, #c8102e) 0%, #8b0a1e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  position: relative;
  overflow: hidden;
}

.pk-popup-visual::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(197, 160, 89, 0.15);
  border-radius: 50%;
  top: -80px;
  left: -80px;
}

.pk-popup-visual::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -50px;
  right: -50px;
}

.pk-popup-brand {
  font-family: var(--pk-font-display, 'Playfair Display', serif);
  color: var(--pk-gold, #c5a059);
  font-size: 16px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.pk-popup-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.pk-popup-img-grid img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.pk-popup-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* Hide mobile-only elements on desktop */
.pk-popup-visual-text {
  display: none;
}

/* ── Right form panel ── */
.pk-popup-form {
  flex: 1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.pk-popup-eyebrow {
  display: inline-block;
  background: #fff0f2;
  color: var(--pk-red, #c8102e);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #ffc5cc;
  align-self: flex-start;
}

.pk-popup-title {
  font-family: var(--pk-font-display, 'Playfair Display', serif);
  font-size: 24px;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0;
}

.pk-popup-title span {
  color: var(--pk-red, #c8102e);
}

.pk-popup-subtitle {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  margin: -2px 0 0;
}

.pk-popup-form input[type="email"],
.pk-popup-form input[type="tel"] {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e4ddd0;
  border-radius: 8px;
  font-family: var(--pk-font-body, 'DM Sans', sans-serif);
  font-size: 13px;
  outline: none;
  background: #fffdf9;
  color: #333;
  transition: border-color 0.2s;
}

.pk-popup-form input:focus {
  border-color: var(--pk-red, #c8102e);
}

.pk-popup-form input::placeholder {
  color: #bbb;
}

.pk-popup-phone-row {
  display: flex;
  gap: 8px;
}

.pk-popup-cc {
  padding: 11px 12px;
  border: 1.5px solid #e4ddd0;
  border-radius: 8px;
  font-size: 13px;
  color: #555;
  background: #f5f0e8;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--pk-font-body, 'DM Sans', sans-serif);
}

.pk-popup-cta {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--pk-red, #c8102e), #a00d24);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--pk-font-body, 'DM Sans', sans-serif);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.pk-popup-cta:hover {
  opacity: 0.92;
}

.pk-popup-skip {
  font-size: 11px;
  color: #bbb;
  text-align: center;
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  font-family: var(--pk-font-body, 'DM Sans', sans-serif);
}

.pk-popup-skip:hover {
  color: #999;
}

/* ── Success state (after submission) ── */
.pk-popup-success {
  display: none;
  text-align: center;
  padding: 40px 28px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
}

.pk-popup-success.active {
  display: flex;
}

.pk-popup-form.hidden {
  display: none;
}

.pk-popup-success .pk-code-box {
  background: #f0fdf4;
  border: 2px dashed #22c55e;
  border-radius: 10px;
  padding: 14px 28px;
  font-family: 'Courier New', monospace;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #15803d;
}

.pk-popup-success h3 {
  font-family: var(--pk-font-display, 'Playfair Display', serif);
  font-size: 22px;
  color: #1a1a1a;
  margin: 0;
}

.pk-popup-success p {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

/* ── Mobile stacked layout ── */
@media (max-width: 640px) {
  .pk-popup {
    flex-direction: column;
    max-width: 340px;
    max-height: 90vh;
    overflow-y: auto;
  }

  /* Visual panel becomes horizontal strip at top */
  .pk-popup-visual {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
  }

  .pk-popup-visual::before {
    width: 200px;
    height: 200px;
    top: -80px;
    right: -60px;
    left: auto;
  }

  .pk-popup-brand {
    display: none;
  }

  .pk-popup-img-grid {
    display: flex;
    gap: 8px;
  }

  .pk-popup-img-grid img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
  }

  .pk-popup-visual-text {
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .pk-popup-mobile-brand {
    font-family: var(--pk-font-display, 'Playfair Display', serif);
    color: var(--pk-gold, #c5a059);
    font-size: 14px;
    font-weight: 600;
  }

  .pk-popup-tagline {
    margin-top: 2px;
    font-size: 8px;
  }

  /* Form panel — centered text */
  .pk-popup-form {
    padding: 18px 16px 14px;
    gap: 9px;
    text-align: center;
    align-items: center;
  }

  .pk-popup-eyebrow {
    align-self: center;
    font-size: 9px;
  }

  .pk-popup-title {
    font-size: 18px;
  }

  .pk-popup-subtitle {
    font-size: 12px;
  }

  .pk-popup-phone-row {
    width: 100%;
  }

  .pk-popup-form input[type="email"] {
    width: 100%;
  }

  .pk-popup-cta {
    font-size: 13px;
    padding: 12px;
  }

  .pk-popup-close {
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.8);
  }

  .pk-popup-success {
    padding: 28px 16px;
  }

  .pk-popup-success .pk-code-box {
    font-size: 18px;
    padding: 12px 20px;
  }
}

/* ====== INSTAGRAM FEED GRID ====== */
.pk-instagram {
  padding: 72px 0 80px;
  background: var(--pk-cream, #fdf8f0);
}

.pk-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 32px 0 28px;
}

.pk-insta-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: #e8dfd0;
  text-decoration: none;
  cursor: pointer;
}

.pk-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.pk-insta-item:hover img {
  transform: scale(1.07);
}

.pk-insta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(200, 16, 46, 0.72) 0%, rgba(30, 10, 0, 0.62) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
}

.pk-insta-item:hover .pk-insta-overlay {
  opacity: 1;
}

.pk-insta-ig-icon {
  display: block;
  margin-bottom: 8px;
}

.pk-insta-caption {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pk-insta-video-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(2px);
}

.pk-insta-follow {
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .pk-insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .pk-insta-caption {
    display: none;
  }

  .pk-insta-overlay {
    opacity: 0 !important;
  }
}

@media (max-width: 480px) {
  .pk-insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
}

/* ── Toast notification ── */
.pk-toast{position:fixed;bottom:24px;left:50%;transform:translateX(-50%) translateY(100%);background:#2e7d32;color:#fff;padding:10px 20px;border-radius:8px;font-size:14px;font-weight:500;z-index:9999;opacity:0;transition:transform .3s ease,opacity .3s ease;pointer-events:none;white-space:nowrap;max-width:90vw;overflow:hidden;text-overflow:ellipsis;box-shadow:0 4px 12px rgba(0,0,0,.15);}
.pk-toast.pk-show{transform:translateX(-50%) translateY(0);opacity:1;}