/* ============================================================
   PYKAR — Main Stylesheet
   Emerald Green Grocery Design System
   ============================================================ */

/* ─── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --pk-primary: #1FB04B;
  /* Emerald Green */
  --pk-primary-rgb: 31, 176, 75;
  --pk-primary-dark: #1a943f;
  --pk-secondary: #0a1a1e;
  /* Deep Dark */
  --pk-accent: #F7A223;
  /* Amber for Sales/Badges */
  --pk-bg: #ffffff;
  --pk-bg-soft: #f8f9fa;
  --pk-border: #eef1f4;
  --pk-text: #2c3e50;
  --pk-text-muted: #64748b;
  --pk-white: #ffffff;

  --pk-font-main: 'Open Sans', sans-serif;
  --pk-radius: 8px;
  --pk-radius-lg: 12px;
  --pk-radius-xl: 18px;
  --pk-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --pk-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── 2. BASE & RESET ──────────────────────────────────────── */
body {
  font-family: var(--pk-font-main);
  color: var(--pk-text);
  background: var(--pk-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--pk-transition);
}

a:hover {
  color: var(--pk-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── 3. ANNOUNCEMENT BAR ──────────────────────────────────── */
.dc-announce {
  background: linear-gradient(90deg, var(--pk-primary), var(--pk-primary-dark));
  color: var(--pk-white);
  padding: 8px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  z-index: 1100;
}

.dc-announce p {
  margin: 0;
}

.dc-announce__close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* ─── 4. HEADER ────────────────────────────────────────────── */
.dc-header {
  background: var(--pk-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.dc-header__inner {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Logo */
.dc-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.dc-logo__name {
  font-size: 28px;
  font-weight: 800;
  color: var(--pk-primary);
  letter-spacing: -1px;
}

.dc-logo__tagline {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pk-text-muted);
  font-weight: 600;
}

/* Custom Logo Support */
.custom-logo-link {
  display: inline-block;
  transition: var(--pk-transition);
}

.custom-logo-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.custom-logo {
  max-height: 55px;
  width: auto;
  display: block;
}

.pk-footer-brand .custom-logo-link {
  margin-bottom: 20px;
}

.dc-drawer__head .custom-logo {
  max-height: 45px;
}

/* Search Bar (Integrated) */
.dc-header__search {
  flex: 1;
  max-width: 600px;
}

.dc-search-form-integrated {
  position: relative;
  width: 100%;
}

.dc-search-input-integrated {
  width: 100%;
  height: 48px;
  background: var(--pk-bg-soft);
  border: 1px solid var(--pk-border);
  border-radius: 50px;
  padding: 0 50px 0 25px;
  font-size: 14px;
  transition: var(--pk-transition);
  outline: none;
}

.dc-search-input-integrated:focus {
  background: var(--pk-white);
  border-color: var(--pk-primary);
  box-shadow: 0 0 0 4px rgba(var(--pk-primary-rgb), 0.1);
}

.dc-search-submit-integrated {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--pk-primary);
  color: var(--pk-white);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--pk-transition);
}

.dc-search-submit-integrated:hover {
  background: var(--pk-primary-dark);
}

/* Action Icons */
.dc-header__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  /* Increased gap */
}

/* Call to Order Button CTA */
.dc-header-call-cta {
  display: inline-flex;
  align-items: center;
  background: var(--pk-primary-dark);
  border-radius: 50px;
  padding: 5px 22px 5px 6px;
  text-decoration: none;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-right: 0 !important;
}

.dc-header-call-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background: #0d4a24;
  /* Deeper forest green on hover */
}

.dc-header-call-icon {
  background: #f7a21a;
  /* Golden amber circle matching mockup */
  color: #115c2e;
  /* Deep green phone icon */
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.2), 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.dc-header-call-cta:hover .dc-header-call-icon {
  transform: rotate(15deg) scale(1.05);
}

.dc-header-call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.dc-header-call-label {
  font-size: 11px;
  color: #ffffff;
  /* Golden text matching label in mockup */
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 0;
  padding: 0;
  text-transform: none;
}

.dc-header-call-number {
  font-size: 17px;
  color: #ffffff;
  /* White text matching number in mockup */
  font-weight: 800;
  font-family: 'Outfit', 'Inter', sans-serif;
  letter-spacing: 0.5px;
  margin-top: 1px;
}

.dc-icon-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--pk-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  /* Gap between icon and text label */
  transition: var(--pk-transition);
  cursor: pointer;
}

.dc-icon-btn:hover {
  color: var(--pk-primary);
}

.dc-icon-btn--rel {
  position: relative;
}

.dc-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--pk-primary);
  color: var(--pk-white);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--pk-white);
}

/* Category Navigation Bar */
.dc-header__categories {
  border-top: 1px solid var(--pk-border);
  background: var(--pk-white);
}

.dc-cat-nav-main {
  display: flex;
  align-items: center;
  height: 45px;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
  /* Hide scrollbar for clean look */
}

.dc-cat-nav-main::-webkit-scrollbar {
  display: none;
}

.dc-cat-nav-list {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.dc-cat-nav-link,
.dc-cat-nav-list a {
  font-size: 13px;
  font-weight: 600;
  color: var(--pk-text);
  white-space: nowrap;
  padding: 5px 0;
  position: relative;
  text-decoration: none;
  transition: var(--pk-transition);
}

.dc-cat-nav-link:hover,
.dc-cat-nav-list a:hover {
  color: var(--pk-primary);
}

.dc-cat-nav-link:after,
.dc-cat-nav-list a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pk-primary);
  transition: var(--pk-transition);
}

.dc-cat-nav-link:hover:after,
.dc-cat-nav-list a:hover:after {
  width: 100%;
}

/* ─── 5. HERO SECTION ──────────────────────────────────────── */
.pk-hero-section {
  padding: 30px 0;
  background: var(--pk-bg-soft);
}

.pk-hero-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: var(--pk-radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: var(--pk-transition);
}

.pk-hero-banner:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 26, 30, 0.75) 0%, rgba(10, 26, 30, 0.3) 60%, transparent 100%);
  z-index: 1;
}

.pk-hero-banner--main {
  min-height: 480px;
  padding: 30px;
}

.pk-hero-banner--side {
  min-height: 232px;
  background-position: center right;
}

.pk-banner-content {
  position: relative;
  z-index: 2;
  max-width: 450px;
  padding: 20px;
}

/* Badges */
.pk-badge-amber {
  display: inline-block;
  background: var(--pk-accent);
  color: var(--pk-secondary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.pk-badge-green {
  display: inline-block;
  background: var(--pk-primary);
  color: var(--pk-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* Typography */
.pk-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--pk-white);
  line-height: 1.1;
  margin-bottom: 15px;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 4px rgba(10, 26, 30, 0.2);
}

.pk-hero-subtitle {
  font-size: 16px;
  color: var(--pk-white);
  opacity: 0.95;
  margin-bottom: 30px;
  text-shadow: 0 1px 3px rgba(10, 26, 30, 0.2);
}

.pk-banner-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--pk-white);
  margin-bottom: 15px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(10, 26, 30, 0.2);
}

/* Buttons */
.pk-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pk-primary);
  /* Changed to Green for better visibility */
  color: var(--pk-white);
  font-weight: 700;
  padding: 14px 35px;
  border-radius: 50px;
  transition: var(--pk-transition);
  box-shadow: 0 10px 20px rgba(31, 176, 75, 0.2);
  border: none;
}

.pk-btn-white:hover {
  background: var(--pk-primary-dark);
  color: var(--pk-white);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(31, 176, 75, 0.3);
}

.pk-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pk-primary);
  font-weight: 700;
  font-size: 14px;
  transition: var(--pk-transition);
}

.pk-btn-link:hover {
  gap: 12px;
  color: var(--pk-primary-dark);
}

/* Custom banner link styling overrides */
.pk-hero-banner .pk-btn-link {
  color: var(--pk-white);
  text-shadow: 0 1px 2px rgba(10, 26, 30, 0.2);
}

.pk-hero-banner .pk-btn-link:hover {
  color: var(--pk-accent);
}

/* ─── 6. COMMON SECTION STYLES ─────────────────────────────── */
.pk-section-padding {
  padding: 60px 0;
}

.pk-section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--pk-secondary);
  margin-bottom: 0;
}

.pk-link-green {
  color: var(--pk-primary);
  font-weight: 700;
  font-size: 14px;
}

.pk-link-green:hover {
  text-decoration: underline;
}

/* ─── 7. QUICK CATEGORIES ──────────────────────────────────── */
.pk-cat-swiper {
  position: relative;
  overflow: hidden;
  padding: 15px 15px 45px 15px;
  margin: -15px -15px;
}

.btn-swiper-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--pk-border);
  background: var(--pk-white);
  color: var(--pk-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: var(--pk-transition);
  padding: 0;
}

.btn-swiper-arrow:hover {
  background: var(--pk-primary);
  color: var(--pk-white);
  border-color: var(--pk-primary);
}

.btn-swiper-arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.pk-cat-pagination {
  bottom: 10px !important;
  text-align: center;
}

.pk-cat-pagination .swiper-pagination-bullet {
  background: #cbd5e1 !important;
  opacity: 1 !important;
  margin: 0 5px !important;
  transition: all 0.3s ease !important;
}

.pk-cat-pagination .swiper-pagination-bullet-active {
  background: var(--pk-primary) !important;
  width: 18px !important;
  border-radius: 4px !important;
}

.pk-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  width: 100%;
  text-decoration: none;
}

.pk-cat-img-wrap {
  width: 140px;
  /* Increased from 110px */
  height: 140px;
  /* Increased from 110px */
  border-radius: 50%;
  padding: 6px;
  border: 2px solid transparent;
  transition: var(--pk-transition);
  background: var(--pk-white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin: 0 auto;
}

.pk-cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.pk-cat-card:hover .pk-cat-img-wrap {
  border-color: var(--pk-primary);
  box-shadow: 0 10px 20px rgba(31, 176, 75, 0.1);
}

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

.pk-cat-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--pk-secondary);
}

@media (max-width: 575.98px) {
  .pk-cat-img-wrap {
    width: 90px;
    height: 90px;
    padding: 4px;
  }

  .pk-cat-name {
    font-size: 13px;
  }
}

/* ─── 8. FLASH SALE & PRODUCT CARDS ────────────────────────── */
.pk-flash-sale-section {
  padding: 80px 0;
  background: #f4fff8;
  /* Cleaner light green */
}

.pk-flash-sale-inner {
  background: var(--pk-white);
  border-radius: var(--pk-radius-lg);
  padding: 40px;
  box-shadow: var(--pk-shadow);
}

.pk-flash-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--pk-primary);
  margin-bottom: 10px;
}

.pk-flash-text {
  font-size: 16px;
  color: var(--pk-text-muted);
  margin-bottom: 30px;
}

/* Countdown Timer */
.pk-countdown {
  display: flex;
  align-items: center;
  gap: 15px;
}

.pk-cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pk-cd-num {
  width: 50px;
  height: 50px;
  background: var(--pk-white);
  color: var(--pk-primary);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.pk-cd-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pk-text-muted);
  margin-top: 5px;
}

.pk-cd-sep {
  font-size: 24px;
  font-weight: 800;
  color: var(--pk-primary);
  margin-top: -15px;
}

/* Product Card Styling */
.pk-prod-card {
  background: var(--pk-white);
  border-radius: var(--pk-radius-lg);
  padding: 15px;
  transition: var(--pk-transition);
  border: 1px solid var(--pk-border);
  position: relative;
  height: 100%;
}

.pk-prod-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: var(--pk-primary);
}

.pk-prod-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--pk-radius);
  margin-bottom: 15px;
  background: var(--pk-bg-soft);
}

.pk-prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pk-prod-card:hover .pk-prod-img-wrap img {
  transform: scale(1.1);
}

.pk-prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--pk-accent);
  color: var(--pk-secondary);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

.pk-prod-cat {
  font-size: 11px;
  color: var(--pk-text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pk-prod-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--pk-secondary);
  margin: 10px 0 15px;
  line-height: 1.4;
  height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.pk-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--pk-primary);
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  line-height: 1.25;
  flex: 1;
  min-width: 0;
}

.pk-price ins {
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  color: var(--pk-primary);
  display: block;
}

.pk-price del {
  font-size: 13px;
  color: #999;
  font-weight: 400;
  margin-right: 0;
  display: block;
}

.pk-add-btn {
  background: var(--pk-primary);
  color: var(--pk-white);
  border: none;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 50px;
  transition: var(--pk-transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.pk-add-btn:hover {
  background: var(--pk-accent);
  transform: translateY(-2px);
  color: var(--pk-bg);
}

/* 5 Column Grid Utility */
@media (min-width: 1200px) {
  .col-lg-2-4 {
    width: 20%;
    flex: 0 0 20%;
  }
}

/* ─── 9. PROMO BANNERS ─────────────────────────────────────── */
.pk-promo-banner {
  position: relative;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: var(--pk-radius-lg);
  overflow: hidden;
  padding: 40px;
  display: flex;
  align-items: center;
  transition: var(--pk-transition);
}

.pk-promo-banner:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 26, 30, 0.6) 0%, transparent 80%);
  z-index: 1;
}

.pk-promo-content {
  position: relative;
  z-index: 2;
  color: var(--pk-white);
  max-width: 300px;
}

.pk-promo-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(10, 26, 30, 0.2);
}

.pk-promo-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* ─── 10. TRUST STRIP ──────────────────────────────────────── */
/* ─── 10. TRUST STRIP ──────────────────────────────────────── */
.pk-trust-section {
  padding: 50px 0;
  border-top: 1.5px solid #f1f5f9;
  border-bottom: 1.5px solid #f1f5f9;
  background: var(--pk-bg-soft);
}

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

.pk-trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fdfbf9;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: var(--pk-radius-lg);
  padding: 24px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pk-trust-item:hover {
  transform: translateY(-5px);
  background: var(--pk-white);
  border-color: rgba(31, 176, 75, 0.15);
  box-shadow: 0 10px 25px rgba(31, 176, 75, 0.06);
}

.pk-trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pk-trust-icon svg,
.pk-trust-icon i {
  color: inherit !important;
  font-size: 22px;
}

/* Give each icon card dynamic color scheme mapping */
.pk-trust-item:nth-child(1) .pk-trust-icon {
  background: rgba(31, 176, 75, 0.08);
  color: #1fb04b;
}

.pk-trust-item:nth-child(2) .pk-trust-icon {
  background: rgba(247, 162, 35, 0.08);
  color: #f7a223;
}

.pk-trust-item:nth-child(3) .pk-trust-icon {
  background: rgba(14, 165, 233, 0.08);
  color: #0ea5e9;
}

.pk-trust-item:nth-child(4) .pk-trust-icon {
  background: rgba(236, 72, 153, 0.08);
  color: #ec4899;
}

.pk-trust-item:hover .pk-trust-icon {
  transform: scale(1.08);
}

.pk-trust-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pk-trust-info h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--pk-secondary);
}

.pk-trust-info p {
  font-size: 13px;
  color: var(--pk-text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ─── 11. TESTIMONIALS ─────────────────────────────────────── */
.pk-testimonial-slider {
  padding-bottom: 50px !important;
}

.pk-testimonial-slider .swiper-pagination {
  bottom: 10px !important;
}

.pk-testimonial-slider .swiper-pagination-bullet {
  background: #cbd5e1 !important;
  opacity: 1 !important;
}

.pk-testimonial-slider .swiper-pagination-bullet-active {
  background: var(--pk-primary) !important;
  width: 18px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
}

.pk-testimonial-card {
  background: var(--pk-white);
  padding: 30px;
  border-radius: var(--pk-radius-lg);
  border: 1px solid var(--pk-border);
  height: 100%;
  transition: var(--pk-transition);
}

.pk-testimonial-card:hover {
  border-color: var(--pk-primary);
  box-shadow: 0 10px 30px rgba(31, 176, 75, 0.05);
}

.pk-stars {
  color: var(--pk-accent);
  font-size: 18px;
}

.pk-test-text {
  font-style: italic;
  color: var(--pk-text);
  font-size: 15px;
  line-height: 1.7;
}

.pk-test-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pk-test-user img {
  width: 60px;
  height: 60px;
  border: 3px solid var(--pk-bg-soft);
  display: block;
  margin-bottom: 10px;
}

.pk-test-user h5 {
  font-size: 16px;
  font-weight: 700;
}

/* ─── 12. UTILITY BUTTONS ─────────────────────────────────── */
.pk-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 10px 25px;
  border: 2px solid var(--pk-primary);
  color: var(--pk-primary);
  font-weight: 700;
  border-radius: 50px;
  font-size: 14px;
  transition: var(--pk-transition);
}

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

/* ─── 18. LATEST BLOG SECTION ────────────────────────────── */
.pk-blog-section {
  padding: 100px 0;
  background: var(--pk-white);
}

.pk-blog-card {
  background: var(--pk-white);
  border-radius: var(--pk-radius-lg);
  overflow: hidden;
  transition: var(--pk-transition);
  border: 1px solid var(--pk-border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pk-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: var(--pk-primary);
}

.pk-blog-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.pk-blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pk-blog-card:hover .pk-blog-img-wrap img {
  transform: scale(1.1);
}

.pk-blog-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--pk-primary);
  color: var(--pk-white);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pk-blog-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pk-blog-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.4;
}

.pk-blog-title a {
  color: var(--pk-secondary);
  text-decoration: none;
  transition: var(--pk-transition);
}

.pk-blog-title a:hover {
  color: var(--pk-primary);
}

.pk-blog-excerpt {
  font-size: 14px;
  color: var(--pk-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pk-blog-more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 800;
  color: var(--pk-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  transition: var(--pk-transition);
}

/* ─── 19. UNIFIED EDITORIAL LINKS ────────────────────────── */
.pk-link-editorial {
  font-size: 13px;
  font-weight: 800;
  color: var(--pk-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  transition: var(--pk-transition);
}

.pk-link-editorial i {
  transition: transform 0.3s ease;
}

.pk-link-editorial:hover {
  color: var(--pk-primary-dark);
}

/* ─── 20. CATEGORY GLOW & OVERLAYS ────────────────────── */
.dc-cat-nav-link:hover {
  color: var(--pk-primary) !important;
  background: #f0fff4 !important;
  border-radius: 4px;
}

.dc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
}

.dc-overlay.is-active,
.dc-overlay.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ─── 13. FOOTER ───────────────────────────────────────────── */
.pk-footer {
  background: #f8fbf9;
  padding: 80px 0 0;
  border-top: 1px solid var(--pk-border);
}

.pk-logo-footer {
  font-size: 32px;
  font-weight: 800;
  color: var(--pk-primary);
  margin-bottom: 20px;
}

.pk-footer-desc {
  font-size: 14px;
  color: var(--pk-text-muted);
  line-height: 1.8;
  margin-bottom: 25px;
}

.pk-footer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--pk-secondary);
  margin-bottom: 25px;
}

.pk-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pk-footer-links li {
  margin-bottom: 12px;
}

.pk-footer-links a {
  font-size: 14px;
  color: var(--pk-text-muted);
}

.pk-footer-links a:hover {
  color: var(--pk-primary);
  padding-left: 5px;
}

/* Footer Newsletter */
.pk-footer-nl {
  display: flex;
  gap: 10px;
}

.pk-footer-nl input {
  flex: 1;
  background: var(--pk-white);
  border: 1px solid var(--pk-border);
  padding: 10px 15px;
  border-radius: var(--pk-radius);
  outline: none;
}

.pk-footer-nl button {
  background: var(--pk-primary);
  color: var(--pk-white);
  border: none;
  padding: 0 20px;
  border-radius: var(--pk-radius);
  font-weight: 700;
  transition: var(--pk-transition);
}

.pk-footer-nl button:hover {
  background: var(--pk-primary-dark);
}

.pk-footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  border-top: 1px solid var(--pk-border);
  font-size: 13px;
  color: var(--pk-text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* ─── 14. DRAWERS & OVERLAY ────────────────────────────────── */
.dc-drawer {
  position: fixed;
  top: 0;
  width: 320px;
  height: 100%;
  background: var(--pk-white);
  z-index: 2000;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.dc-drawer--left {
  left: 0;
  transform: translateX(-100%);
}

.dc-drawer--right {
  right: 0;
  transform: translateX(100%);
}

.dc-drawer.is-active {
  transform: translateX(0);
}

.dc-drawer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dc-drawer__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dc-drawer__head {
  padding: 20px 25px;
  border-bottom: 1px solid var(--pk-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.dc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--pk-transition);
  backdrop-filter: blur(2px);
}

.dc-overlay.is-active,
.dc-overlay.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ─── 16. MOBILE MENU STYLES (TOTAL LOCKDOWN) ───────────── */
#dcMobileDrawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: var(--pk-white);
  z-index: 2000;
  transform: translateX(-100%);
  transition: 0.3s;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  visibility: hidden;
}

#dcMobileDrawer.is-active {
  transform: translateX(0);
  visibility: visible;
}

@media (min-width: 992px) {
  #dcMobileDrawer {
    display: none !important;
  }
}

.pk-mobile-menu {
  list-style: none !important;
  padding: 15px 25px !important;
  margin: 0 !important;
}

.pk-mobile-menu li {
  list-style: none !important;
  border-bottom: 1px solid #f1f3f5 !important;
}

.pk-mobile-menu li:last-child {
  border-bottom: none !important;
}

.pk-mobile-menu li a {
  display: flex !important;
  align-items: center !important;
  padding: 16px 0 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--pk-secondary) !important;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.pk-mobile-menu li a i {
  font-size: 18px !important;
  color: var(--pk-text-muted) !important;
  transition: all 0.25s ease;
  width: 24px;
  text-align: center;
}

.pk-mobile-menu li a:hover {
  color: var(--pk-primary) !important;
  padding-left: 5px !important;
}

.pk-mobile-menu li a:hover i {
  color: var(--pk-primary) !important;
}

/* Mobile Drawer Footer */
.dc-drawer__footer {
  margin-top: auto;
  border-top: 1px solid var(--pk-border);
  background-color: #fafbfc;
  padding: 25px;
}

.pk-drawer-contact h6 {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  color: var(--pk-text-muted) !important;
  margin-bottom: 15px !important;
}

.pk-drawer-social {
  display: flex !important;
  gap: 12px !important;
  align-items: center !important;
}

.pk-drawer-social a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background-color: var(--pk-white) !important;
  border: 1.5px solid var(--pk-border) !important;
  color: var(--pk-secondary) !important;
  font-size: 16px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.pk-drawer-social a:hover {
  background-color: var(--pk-primary) !important;
  border-color: var(--pk-primary) !important;
  color: var(--pk-white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(31, 176, 75, 0.15) !important;
}

/* ─── 15. FINAL PRECISION: EMERALD BRANDED MINI CART ────────── */
.dc-drawer--right {
  width: 420px !important;
}

.widget_shopping_cart_content {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  flex: 1 !important;
}

.dc-mini-cart-scroll {
  flex: 1;
  overflow-y: auto;
}

.cart_list {
  list-style: none !important;
  padding: 0 25px !important;
  margin: 0 !important;
}

.mini_cart_item {
  position: relative !important;
  padding: 25px 0 !important;
  border-bottom: 1px solid #f0f0f0 !important;
}

.mini_cart_item>a:not(.remove) {
  display: flex !important;
  gap: 20px !important;
  text-decoration: none !important;
  align-items: flex-start !important;
}

.mini_cart_item img {
  width: 80px !important;
  height: 100px !important;
  object-fit: cover !important;
  border-radius: 4px !important;
  flex-shrink: 0 !important;
}

.dc-mini-cart-item-info {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.dc-mini-cart-item-title {
  display: block !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  color: #051820 !important;
  margin-bottom: 15px !important;
  line-height: 1.3 !important;
}

.dc-mini-cart-qty-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
}

.dc-qty-controls {
  display: inline-flex !important;
  align-items: center !important;
  background: #f0fff4 !important;
  border: 1px solid #dcfce7 !important;
  padding: 2px !important;
  border-radius: 4px !important;
}

.dc-qty-btn {
  width: 30px !important;
  height: 30px !important;
  background: transparent !important;
  border: none !important;
  color: #051820 !important;
  font-size: 18px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.dc-qty-input {
  width: 35px !important;
  height: 30px !important;
  background: transparent !important;
  border: none !important;
  text-align: center !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #051820 !important;
  padding: 0 !important;
}

.dc-mini-cart-price .amount {
  color: var(--pk-primary) !important;
  font-weight: 800 !important;
  font-size: 17px !important;
}

.mini_cart_item .remove {
  position: absolute !important;
  top: 20px;
  right: 0;
  color: #bbb !important;
  font-size: 20px !important;
  z-index: 10;
  text-decoration: none !important;
}

.dc-mini-cart-footer {
  padding: 30px 25px !important;
  border-top: 1px solid #f0f0f0 !important;
  background: #fff !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.woocommerce-mini-cart__total {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 25px !important;
  width: 100% !important;
}

.woocommerce-mini-cart__total strong {
  font-family: serif !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  color: #051820 !important;
}

.woocommerce-mini-cart__total .amount {
  color: var(--pk-primary) !important;
  font-family: sans-serif !important;
  font-weight: 800 !important;
}

.woocommerce-mini-cart__buttons {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-mini-cart__buttons .button {
  width: 100% !important;
  height: 55px !important;
  border-radius: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  font-size: 13px !important;
  transition: var(--pk-transition) !important;
  border-radius: 7px !important;
}

.button.wc-forward:not(.checkout) {
  background: #fff !important;
  color: #051820 !important;
  border: 1px solid #051820 !important;
}

.button.wc-forward:not(.checkout):hover {
  background: var(--pk-primary) !important;
  color: #fff !important;
  border-color: var(--pk-primary) !important;
}

.button.checkout {
  background: var(--pk-primary) !important;
  color: #fff !important;
  border: 1px solid var(--pk-primary) !important;
}

.button.checkout:hover {
  background: var(--pk-primary) !important;
  color: #fff !important;
  border-color: var(--pk-primary) !important;
}

.woocommerce-mini-cart__empty-message {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 !important;
  padding: 40px 25px !important;
  text-align: center !important;
}

/* ─── HOMEPAGE ADDITIONS ─────────────────────────────────── */

/* Harvest Calendar */
.pk-harvest-calendar-section {
  background-color: #f7faf8;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.pk-harvest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pk-harvest-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 12px;
  padding: 15px 15px 25px 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.pk-harvest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(31, 176, 75, 0.08);
  border-color: rgba(31, 176, 75, 0.2);
}

.pk-harvest-img-wrap {
  position: relative;
  width: 100%;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #f7faf8;
}

.pk-harvest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.pk-harvest-card .pk-harvest-badge-wrap {
  position: absolute;
  top: 10px;
  right: 10px;
  margin-bottom: 0;
  z-index: 2;
}

.pk-harvest-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  letter-spacing: 0.5px;
}

.pk-harvest-badge--active {
  background-color: rgba(31, 176, 75, 0.1);
  color: #1FB04B;
}

.pk-harvest-badge--upcoming {
  background-color: rgb(26 148 63);
  color: #ffffff;
}

.pk-harvest-badge--finished {
  background-color: #f0f0f0;
  color: #888;
}

.pk-harvest-name {
  font-size: 20px;
  font-weight: 700;
  color: #051820;
  margin-bottom: 8px;
}

.pk-harvest-time {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

/* WhatsApp & Hotline CTA */
.pk-whatsapp-cta-section {
  background: linear-gradient(135deg, #168e3c 0%, #1FB04B 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.pk-whatsapp-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.pk-whatsapp-cta-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.pk-whatsapp-cta-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.pk-cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pk-cta-btn {
  padding: 14px 28px;
  font-weight: 700;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pk-cta-btn--whatsapp {
  background-color: #fff;
  color: #1FB04B;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pk-cta-btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #168e3c;
}

.pk-cta-btn--call {
  background-color: #051820;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.pk-cta-btn--call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: #fff;
}

/* Sourcing Promise */
.pk-promise-section {
  background-color: #fff;
}

.pk-promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.pk-promise-card {
  text-align: center;
  padding: 20px;
}

.pk-promise-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(31, 176, 75, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: #1FB04B;
}

.pk-promise-card:hover .pk-promise-icon-wrap {
  background-color: #1FB04B;
  color: #fff;
  transition: 0.3s ease;
}

.pk-promise-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #051820;
  margin-bottom: 12px;
}

.pk-promise-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Video Showcase */
.pk-video-section {
  background-color: #fdfdfd;
}

.pk-video-container {
  max-width: 900px;
  margin: 40px auto 0 auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pk-video-aspect {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  background-color: #000;
}

.pk-video-aspect iframe,
.pk-video-aspect video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pk-video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.pk-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 24, 32, 0.4);
  transition: background 0.3s ease;
}

.pk-video-placeholder:hover .pk-video-overlay {
  background: rgba(5, 24, 32, 0.5);
}

.pk-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  color: #1FB04B;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pk-play-btn i {
  font-size: 28px;
  margin-left: 6px;
  /* offset play icon center */
}

.pk-video-placeholder:hover .pk-play-btn {
  transform: scale(1.1);
  background-color: #1FB04B;
  color: #fff;
}

/* ─────────────────────────────────────────────────────────────
   SHOP PAGE & ARCHIVE PRODUCT STYLING
   ───────────────────────────────────────────────────────────── */

.dc-shop-page {
  padding: 60px 0;
  background-color: var(--pk-bg);
}

.dc-shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

@media (max-width: 991.98px) {
  .dc-shop-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Sidebar Styling */
.dc-shop-sidebar {
  background: var(--pk-white);
  border-radius: var(--pk-radius-lg);
  padding: 25px;
  border: 1px solid var(--pk-border);
  align-self: start;
}

@media (max-width: 991.98px) {
  .dc-shop-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    z-index: 1050;
    overflow-y: auto;
    transition: all 0.3s ease;
    border-radius: 0;
    border: none;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
  }

  .dc-shop-sidebar.is-active,
  .dc-shop-sidebar.is-open {
    left: 0;
  }
}

/* Sidebar Head */
.dc-shop-sidebar__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--pk-border);
}

.dc-shop-sidebar__head h5 {
  margin: 0;
  font-weight: 700;
  color: var(--pk-secondary);
}

.dc-shop-sidebar__close {
  background: none;
  border: none;
  color: var(--pk-text-muted);
  cursor: pointer;
  padding: 5px;
  transition: var(--pk-transition);
}

.dc-shop-sidebar__close:hover {
  color: var(--pk-primary);
}

/* Filter Groups */
.dc-filter-group {
  margin-bottom: 30px;
}

.dc-filter-group:last-child {
  margin-bottom: 0;
}

.dc-filter-group__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--pk-secondary);
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pk-border);
  position: relative;
}

.dc-filter-group__title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--pk-primary);
}

.dc-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dc-filter-list li {
  margin-bottom: 10px;
}

.dc-filter-list li:last-child {
  margin-bottom: 0;
}

.dc-filter-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--pk-text);
  font-size: 14px;
  transition: var(--pk-transition);
  text-decoration: none;
}

.dc-filter-list a:hover,
.dc-filter-list li.active a {
  color: var(--pk-primary);
  font-weight: 600;
}

.dc-filter-list span {
  font-size: 12px;
  color: var(--pk-text-muted);
}

/* Layered Nav / WooCommerce Widgets overrides */
.dc-filter-layered-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dc-filter-layered-nav li {
  margin-bottom: 8px;
}

.dc-filter-layered-nav li a {
  color: var(--pk-text);
  font-size: 14px;
  text-decoration: none;
  transition: var(--pk-transition);
}

.dc-filter-layered-nav li a:hover {
  color: var(--pk-primary);
}

.dc-filter-layered-nav li.chosen a {
  color: var(--pk-primary);
  font-weight: 700;
}

/* Price Filter slider */
.widget_price_filter .price_slider_wrapper {
  padding-top: 5px;
}

.widget_price_filter .ui-slider {
  background: var(--pk-border);
  height: 6px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 15px;
}

.widget_price_filter .ui-slider .ui-slider-range {
  background: var(--pk-primary);
  position: absolute;
  height: 100%;
  border-radius: 4px;
}

.widget_price_filter .ui-slider .ui-slider-handle {
  background: var(--pk-white);
  border: 2px solid var(--pk-primary);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  margin-left: -8px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.1s ease;
}

.widget_price_filter .ui-slider .ui-slider-handle:hover {
  transform: scale(1.1);
}

.widget_price_filter .price_slider_amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.widget_price_filter .price_slider_amount .price_label {
  color: var(--pk-text-muted);
}

.widget_price_filter .price_slider_amount .button {
  background: var(--pk-secondary);
  color: var(--pk-white);
  border: none;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 30px;
  transition: var(--pk-transition);
}

.widget_price_filter .price_slider_amount .button:hover {
  background: var(--pk-primary);
}

.dc-filter-clear {
  display: block;
  text-align: center;
  margin-top: 25px;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid var(--pk-border);
  color: var(--pk-secondary);
  text-decoration: none;
  transition: var(--pk-transition);
}

.dc-filter-clear:hover {
  background: var(--pk-secondary);
  color: var(--pk-white);
  border-color: var(--pk-secondary);
}

/* Toolbar */
.dc-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background: var(--pk-white);
  padding: 15px 25px;
  border-radius: var(--pk-radius-lg);
  border: 1px solid var(--pk-border);
}

.dc-shop-toolbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dc-result-count {
  margin: 0;
  font-size: 14px;
  color: var(--pk-text-muted);
}

/* Sorting Dropdown */
.woocommerce-ordering select {
  border: 1px solid var(--pk-border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--pk-text);
  background-color: var(--pk-white);
  outline: none;
  transition: var(--pk-transition);
  cursor: pointer;
}

.woocommerce-ordering select:focus {
  border-color: var(--pk-primary);
}

/* Filter toggle mobile button */
#dcFilterToggle {
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border: 1.5px solid var(--pk-primary) !important;
  background: var(--pk-white) !important;
  color: var(--pk-primary) !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

#dcFilterToggle:hover {
  background: var(--pk-primary) !important;
  color: var(--pk-white) !important;
  border-color: var(--pk-primary) !important;
}

/* Grid/List layout buttons */
.dc-view-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dc-view-btn {
  background: none;
  border: 1px solid var(--pk-border);
  color: var(--pk-text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--pk-transition);
}

.dc-view-btn:hover,
.dc-view-btn.active {
  background: var(--pk-bg-soft);
  color: var(--pk-primary);
  border-color: var(--pk-primary);
}

/* Shop Products Grid */
.dc-product-grid--shop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1199.98px) {
  .dc-product-grid--shop {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .dc-product-grid--shop {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Product Card Styling (Duplicates the gorgeous .pk-prod-card layout) */
.dc-prod-card {
  background: var(--pk-white);
  border-radius: var(--pk-radius-lg);
  padding: 15px;
  transition: var(--pk-transition);
  border: 1px solid var(--pk-border);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dc-prod-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: var(--pk-primary);
}

.dc-prod-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--pk-radius);
  margin-bottom: 15px;
  background: var(--pk-bg-soft);
  flex-shrink: 0;
}

.dc-prod-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dc-prod-card:hover .dc-prod-card__img-wrap img {
  transform: scale(1.1);
}

.dc-prod-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--pk-accent);
  color: var(--pk-secondary);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}

.dc-prod-card__wish {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--pk-white);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pk-text-muted);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: var(--pk-transition);
  cursor: pointer;
  z-index: 2;
}

.dc-prod-card__wish:hover,
.dc-prod-card__wish.is-active {
  background: var(--pk-primary);
  color: var(--pk-white);
}

/* Quick Add Hover Styling */
.dc-prod-card__quick {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  justify-content: center;
  z-index: 3;
}

.dc-prod-card__img-wrap:hover .dc-prod-card__quick {
  bottom: 0;
}

.dc-prod-card__quick .dc-btn--quick {
  background: var(--pk-primary);
  color: var(--pk-white);
  border: none;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--pk-transition);
  box-shadow: 0 4px 15px rgba(31, 176, 75, 0.3);
  width: 100%;
}

.dc-prod-card__quick .dc-btn--quick:hover {
  background: var(--pk-accent);
  color: var(--pk-secondary);
  box-shadow: 0 4px 15px rgba(247, 162, 35, 0.4);
}

/* Product Info */
.dc-prod-card__info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dc-prod-card__cat {
  font-size: 11px;
  color: var(--pk-text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin-bottom: 5px;
}

.dc-prod-card__cat:hover {
  color: var(--pk-primary);
}

.dc-prod-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--pk-secondary);
  margin: 0 0 10px;
  line-height: 1.4;
  height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dc-prod-card__name a {
  color: inherit;
  text-decoration: none;
  transition: var(--pk-transition);
}

.dc-prod-card__name a:hover {
  color: var(--pk-primary);
}

.dc-prod-card__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.dc-prod-card__rating .dc-stars {
  color: #ffb800;
  display: flex;
}

.dc-prod-card__rev {
  font-size: 12px;
  color: var(--pk-text-muted);
}

.dc-prod-card__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--pk-primary);
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  line-height: 1.25;
  margin-top: auto;
}

.dc-prod-card__price ins {
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  color: var(--pk-primary);
  display: block;
}

.dc-prod-card__price del {
  font-size: 13px;
  color: #999;
  font-weight: 400;
  margin-top: 2px;
  display: block;
}

/* Pagination Styling */
.dc-shop-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.dc-shop-pagination ul.page-numbers {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.dc-shop-pagination ul.page-numbers li span.current {
  background: var(--pk-primary);
  color: var(--pk-white);
  border-color: var(--pk-primary);
}

.dc-shop-pagination ul.page-numbers li a,
.dc-shop-pagination ul.page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--pk-border);
  color: var(--pk-secondary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--pk-transition);
}

.dc-shop-pagination ul.page-numbers li a:hover {
  border-color: var(--pk-primary);
  color: var(--pk-primary);
  background: var(--pk-bg-soft);
}

/* Overlay */
.dc-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dc-overlay.is-active,
.dc-overlay.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Default Hero / Banner Styling */
.blog-hero {
  background: var(--pk-bg-soft);
  padding: 50px 0;
  border-bottom: 1px solid var(--pk-border);
}

.blog-hero__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--pk-secondary);
  margin: 0 0 10px;
}

/* Category header with background */
.dc-shop-header {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  text-align: center;
  color: var(--pk-white);
  margin-bottom: 50px;
}

.dc-shop-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 24, 32, 0.6);
  z-index: 1;
}

.dc-shop-header__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.dc-shop-header__title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
}

.dc-shop-header__desc {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
  margin-top: 15px;
}

.dc-shop-header .woocommerce-breadcrumb {
  color: rgba(255, 255, 255, 0.8);
}

.dc-shop-header .woocommerce-breadcrumb a {
  color: var(--pk-white);
}

/* Subcategory pills in header */
.dc-subcats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.dc-subcat-pill {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--pk-white);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--pk-transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dc-subcat-pill:hover {
  background: var(--pk-white);
  color: var(--pk-secondary);
}

.dc-subcat-pill__count {
  font-size: 11px;
  background: rgba(0, 0, 0, 0.15);
  padding: 2px 6px;
  border-radius: 10px;
}

/* ─────────────────────────────────────────────────────────────
   SINGLE PRODUCT PAGE STYLING
   ───────────────────────────────────────────────────────────── */

.dc-single-product {
  padding: 60px 0;
  background-color: var(--pk-bg);
}

/* Gallery styling */
.dc-gallery {
  position: relative;
}

.dc-gallery__main {
  position: relative;
  border-radius: var(--pk-radius-lg);
  overflow: hidden;
  background-color: var(--pk-white);
  border: 1px solid var(--pk-border);
  height: 520px;
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {
  .dc-gallery__main {
    height: 380px;
  }
}

.dc-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.5s ease;
}

.dc-gallery__main:hover .dc-gallery__main-img {
  transform: scale(1.05);
}

.dc-gallery__sale-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--pk-accent);
  color: var(--pk-secondary);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
}

.dc-gallery__wish-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--pk-primary);
  color: var(--pk-white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.dc-gallery__thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.dc-gallery__thumb {
  background: var(--pk-white);
  border: 2px solid var(--pk-border);
  width: 80px;
  height: 80px;
  border-radius: var(--pk-radius);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: var(--pk-transition);
}

.dc-gallery__thumb.active,
.dc-gallery__thumb:hover {
  border-color: var(--pk-primary);
}

.dc-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Information Info Column */
.dc-prod-info {
  display: flex;
  flex-direction: column;
}

.dc-prod-info__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.dc-prod-info__cat {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pk-primary);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.dc-prod-info__cat:hover {
  color: var(--pk-primary-dark);
}

.dc-prod-info__sku {
  font-size: 12px;
  color: var(--pk-text-muted);
}

.dc-prod-info__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--pk-secondary);
  margin-bottom: 15px;
  line-height: 1.25;
}

.dc-prod-info__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.dc-prod-info__rating .dc-stars {
  color: #ffb800;
  display: flex;
}

.dc-prod-info__rev-link {
  font-size: 14px;
  color: var(--pk-text-muted);
  text-decoration: none;
  transition: var(--pk-transition);
}

.dc-prod-info__rev-link:hover {
  color: var(--pk-primary);
}

/* Price */
.dc-prod-info__price {
  font-size: 28px;
  font-weight: 800;
  color: var(--pk-primary);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dc-prod-info__price ins {
  text-decoration: none;
}

.dc-prod-info__price del {
  font-size: 18px;
  color: var(--pk-text-muted);
  font-weight: 400;
}

.dc-prod-info__desc {
  font-size: 15px;
  color: var(--pk-text);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Variations */
.dc-variations {
  background: var(--pk-white);
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius-lg);
  padding: 20px;
  margin-bottom: 30px;
}

.dc-variation-group {
  margin-bottom: 15px;
}

.dc-variation-group:last-child {
  margin-bottom: 0;
}

.dc-variation-group__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--pk-secondary);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.dc-variation-group__selected {
  color: var(--pk-primary);
  font-weight: 800;
}

.dc-variation-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dc-swatch {
  border: 1px solid var(--pk-border);
  background: var(--pk-white);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--pk-transition);
  color: var(--pk-secondary);
}

.dc-swatch:hover,
.dc-swatch.active {
  border-color: var(--pk-primary);
  color: var(--pk-primary);
  background: var(--pk-bg-soft);
}

/* Add to Cart Actions Row */
.dc-qty-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dc-qty {
  display: inline-flex;
  align-items: center;
  background: var(--pk-white);
  border: 1.5px solid var(--pk-border);
  border-radius: 50px;
  padding: 6px 12px;
  height: 52px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.dc-qty:hover {
  border-color: var(--pk-primary);
}

.dc-qty__btn {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  color: var(--pk-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.dc-qty__btn:hover {
  background: #f0fff4;
  color: var(--pk-primary);
}

.dc-qty__input {
  width: 40px;
  border: none;
  background: none;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--pk-secondary);
  outline: none;
  -moz-appearance: textfield;
}

.dc-qty__input::-webkit-outer-spin-button,
.dc-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dc-btn--addcart {
  flex: 1;
  background: linear-gradient(135deg, var(--pk-primary), var(--pk-primary-dark));
  color: var(--pk-white) !important;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(31, 176, 75, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dc-btn--addcart:hover {
  background: linear-gradient(135deg, var(--pk-accent), #e08f1b);
  color: #0a1a1e !important;
  box-shadow: 0 6px 20px rgba(247, 162, 35, 0.4);
  transform: translateY(-2px) scale(1.02);
}

.dc-wish-btn {
  border: 1px solid var(--pk-border);
  background: var(--pk-white);
  color: var(--pk-text-muted);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.dc-wish-btn:hover,
.dc-wish-btn.is-active {
  border-color: #ffb2b7;
  background: #ffeef0;
  color: #ff3366;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 51, 102, 0.15);
}

/* Trust block */
.dc-prod-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-top: 25px;
  border-top: 1px solid var(--pk-border);
}

.dc-prod-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--pk-text-muted);
  line-height: 1.3;
}

.dc-prod-trust__item svg {
  color: var(--pk-primary);
  flex-shrink: 0;
}

/* Product Tabs Section */
.dc-product-tabs {
  margin: 60px 0;
}

.dc-product-tabs__nav {
  display: flex;
  border-bottom: 2px solid var(--pk-border);
  margin-bottom: 30px;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.dc-product-tabs__tab {
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--pk-text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--pk-transition);
  white-space: nowrap;
}

.dc-product-tabs__tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--pk-primary);
  transform: scaleX(0);
  transition: var(--pk-transition);
}

.dc-product-tabs__tab:hover,
.dc-product-tabs__tab.active {
  color: var(--pk-primary);
}

.dc-product-tabs__tab.active::after {
  transform: scaleX(1);
}

.dc-product-tabs__panel {
  display: none;
  animation: tabFadeIn 0.4s ease;
}

.dc-product-tabs__panel.active {
  display: block;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dc-product-tabs__panel p {
  line-height: 1.6;
  color: var(--pk-text);
  margin-bottom: 15px;
}

/* Custom Table Styles */
.dc-attr-table,
.dc-size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.dc-attr-table th,
.dc-attr-table td,
.dc-size-table th,
.dc-size-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--pk-border);
}

.dc-attr-table th {
  width: 30%;
  font-weight: 700;
  color: var(--pk-secondary);
  background-color: var(--pk-bg-soft);
}

.dc-attr-table td {
  color: var(--pk-text);
}

.dc-size-table thead th {
  background-color: var(--pk-secondary);
  color: var(--pk-white);
  font-weight: 700;
}

.dc-size-table tbody tr:nth-child(even) {
  background-color: var(--pk-bg-soft);
}

.dc-shipping-info ul,
.dc-size-guide ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.dc-shipping-info li,
.dc-size-guide li {
  margin-bottom: 8px;
  color: var(--pk-text);
}

/* Related Products */
.dc-related-products {
  padding-top: 50px;
  border-top: 1px solid var(--pk-border);
}

.dc-section__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--pk-secondary);
}

.dc-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dc-related-products .dc-product-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991.98px) {

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

@media (max-width: 575.98px) {

  .dc-product-grid,
  .dc-related-products .dc-product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Lightbox Popup Overlay */
.dc-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(5, 24, 32, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dc-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.dc-lightbox__content {
  max-width: 90%;
  max-height: 85%;
  border-radius: var(--pk-radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  object-fit: contain;
}

.dc-lightbox.is-active .dc-lightbox__content {
  transform: scale(1);
}

.dc-lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--pk-white);
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: var(--pk-transition);
}

.dc-lightbox__close:hover {
  color: var(--pk-primary);
  transform: scale(1.1);
}

/* ─────────────────────────────────────────────────────────────
   BLOG ARCHIVE & POSTS STYLING
   ───────────────────────────────────────────────────────────── */

/* Blog Hero */
.blog-hero {
  background: linear-gradient(135deg, var(--pk-secondary) 0%, var(--pk-primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--pk-white);
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.blog-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.blog-hero__title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--pk-bg);
}

.blog-hero__sub {
  font-size: 16px;
  opacity: 0.9;
  font-weight: 500;
  color: var(--pk-white);
  margin: 0;
}

/* Post Grid & Cards */
.dc-blog-index-grid {
  margin-top: 20px;
}

.dc-post-card {
  background: var(--pk-white);
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--pk-transition);
}

.dc-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--pk-shadow-lg);
  border-color: var(--pk-primary);
}

.dc-post-card__img {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--pk-bg-soft);
}

.dc-post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dc-post-card:hover .dc-post-card__img img {
  transform: scale(1.05);
}

.dc-post-card__date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--pk-secondary);
  color: var(--pk-white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.dc-post-card__body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dc-post-card__cat a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pk-primary);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.dc-post-card__cat a:hover {
  color: var(--pk-primary-dark);
}

.dc-post-card__title {
  font-size: 20px;
  font-weight: 800;
  margin: 12px 0;
  line-height: 1.35;
}

.dc-post-card__title a {
  color: var(--pk-secondary);
  text-decoration: none;
  transition: var(--pk-transition);
}

.dc-post-card__title a:hover {
  color: var(--pk-primary);
}

.dc-post-card__excerpt {
  font-size: 14px;
  color: var(--pk-text);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.dc-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--pk-primary);
  text-decoration: none;
  transition: var(--pk-transition);
  display: inline-flex;
  align-items: center;
}

.dc-link:hover {
  color: var(--pk-primary-dark);
  text-decoration: underline;
}

/* Pagination */
.dc-pagination-wrap .pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.dc-pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--pk-border);
  color: var(--pk-secondary);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: var(--pk-transition);
}

.dc-pagination-wrap .page-numbers:hover,
.dc-pagination-wrap .page-numbers.current {
  background: var(--pk-primary);
  color: var(--pk-white);
  border-color: var(--pk-primary);
}


/* ─────────────────────────────────────────────────────────────
   SINGLE BLOG POST STYLE
   ───────────────────────────────────────────────────────────── */

.dc-single-post {
  background: var(--pk-white);
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius-lg);
  padding: 40px;
}

@media (max-width: 767.98px) {
  .dc-single-post {
    padding: 20px;
  }
}

.dc-post-breadcrumbs {
  font-size: 13px;
  color: var(--pk-text-muted);
}

.dc-post-breadcrumbs a {
  color: var(--pk-text-muted);
  text-decoration: none;
  transition: var(--pk-transition);
}

.dc-post-breadcrumbs a:hover {
  color: var(--pk-primary);
}

.dc-post-breadcrumbs .sep {
  margin: 0 8px;
  color: var(--pk-border);
}

.dc-single-post__cat-list a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pk-white);
  background: var(--pk-primary);
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
}

.dc-single-post__cat-list a:hover {
  background: var(--pk-primary-dark);
}

.dc-single-post__title {
  color: var(--pk-secondary);
  line-height: 1.2;
}

.dc-single-post__author-bar {
  border-color: var(--pk-border) !important;
}

.dc-author-avatar img {
  border-radius: 50%;
  border: 2px solid var(--pk-border);
}

.dc-author-info span:first-child {
  color: var(--pk-secondary);
}

.dc-post-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pk-bg-soft);
  color: var(--pk-secondary);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  margin-left: 5px;
  transition: var(--pk-transition);
}

.dc-post-share a:hover {
  background: var(--pk-primary);
  color: var(--pk-white);
}

.dc-single-post__featured-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 500px;
  border-radius: var(--pk-radius-lg);
}

.dc-single-post__content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--pk-text);
}

.dc-single-post__content p {
  margin-bottom: 20px;
}

.dc-single-post__content h2,
.dc-single-post__content h3,
.dc-single-post__content h4 {
  color: var(--pk-secondary);
  font-weight: 800;
  margin-top: 35px;
  margin-bottom: 15px;
}

.dc-single-post__content h2 {
  font-size: 26px;
}

.dc-single-post__content h3 {
  font-size: 22px;
}

.dc-single-post__content blockquote {
  background: var(--pk-bg-soft);
  border-left: 4px solid var(--pk-primary);
  padding: 20px 30px;
  font-style: italic;
  font-size: 18px;
  color: var(--pk-secondary);
  margin: 30px 0;
  border-radius: 0 var(--pk-radius-lg) var(--pk-radius-lg) 0;
}

.dc-single-post__content blockquote p {
  margin-bottom: 0;
}

.dc-single-post__content img {
  border-radius: var(--pk-radius-lg);
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}


/* ─────────────────────────────────────────────────────────────
   BLOG SIDEBAR WIDGETS
   ───────────────────────────────────────────────────────────── */

.dc-sidebar--blog {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.dc-sidebar--blog .dc-widget {
  background: var(--pk-white);
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius-lg);
  padding: 25px;
}

.dc-sidebar--blog .dc-widget__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--pk-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pk-primary);
  display: inline-block;
}

/* Search widget */
.dc-widget_search .search-form {
  display: flex;
  gap: 10px;
}

.dc-widget_search .search-field {
  flex: 1;
  padding: 8px 15px;
  border: 1px solid var(--pk-border);
  border-radius: 30px;
  font-size: 13px;
  outline: none;
  background: var(--pk-bg-soft);
  transition: var(--pk-transition);
  color: var(--pk-secondary);
}

.dc-widget_search .search-field:focus {
  border-color: var(--pk-primary);
  background: var(--pk-white);
}

.dc-widget_search .search-submit {
  background: var(--pk-secondary);
  color: var(--pk-white);
  border: none;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--pk-transition);
}

.dc-widget_search .search-submit:hover {
  background: var(--pk-primary);
}

/* Recent posts list */
.dc-recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dc-recent-post-item {
  display: flex;
  gap: 12px;
  text-decoration: none;
  transition: var(--pk-transition);
}

.dc-recent-post-item:hover h6 {
  color: var(--pk-primary);
}

.dc-recent-post-item__thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--pk-radius);
  overflow: hidden;
  flex-shrink: 0;
}

.dc-recent-post-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dc-recent-post-item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dc-recent-post-item__content h6 {
  font-size: 13px;
  font-weight: 700;
  color: var(--pk-secondary);
  margin-bottom: 4px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dc-recent-post-item__date {
  font-size: 11px;
  color: var(--pk-text-muted);
}

/* Categories widget */
.dc-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dc-cat-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--pk-text);
  transition: var(--pk-transition);
}

.dc-cat-list li a:hover {
  color: var(--pk-primary);
}

.dc-cat-list .dc-cat-count {
  font-size: 11px;
  background: var(--pk-bg-soft);
  color: var(--pk-text-muted);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
}

/* Promo widget */
.dc-sidebar-promo {
  position: relative;
  border-radius: var(--pk-radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--pk-secondary) 0%, var(--pk-primary-dark) 100%);
  color: var(--pk-white);
  padding: 30px 20px;
  text-align: center;
}

.dc-sidebar-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1553279768-865429fa0078?auto=compress&cs=tinysrgb&w=600&h=400&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.dc-sidebar-promo__inner {
  position: relative;
  z-index: 1;
}

.dc-sidebar-promo__inner h5 {
  font-weight: 800;
  font-size: 18px;
  color: var(--pk-accent);
  margin-bottom: 10px;
}

.dc-sidebar-promo__inner p {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* ─────────────────────────────────────────────────────────────
   COMMENTS SECTION STYLING
   ───────────────────────────────────────────────────────────── */

.dc-comments-section {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid var(--pk-border);
}

.comments-title,
#reply-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--pk-secondary);
  margin-bottom: 30px;
}

/* Comment List */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.comment-list .comment {
  list-style: none;
}

.comment-body {
  position: relative;
  background: var(--pk-bg-soft);
  border: 1px solid var(--pk-border);
  padding: 25px;
  border-radius: var(--pk-radius-lg);
  display: flex;
  gap: 20px;
}

@media (max-width: 575.98px) {
  .comment-body {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
}

.comment-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 0;
}

.comment-meta img.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--pk-border);
}

.comment-author {
  font-weight: 700;
  color: var(--pk-secondary);
  font-size: 15px;
}

.comment-author .fn {
  font-style: normal;
}

.comment-metadata {
  font-size: 12px;
  color: var(--pk-text-muted);
  margin-top: 2px;
}

.comment-metadata a {
  color: var(--pk-text-muted);
  text-decoration: none;
}

.comment-metadata a:hover {
  color: var(--pk-primary);
}

.comment-content {
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.6;
  color: var(--pk-text);
  margin-top: 5px;
}

.comment-content p:last-child {
  margin-bottom: 0;
}

.reply {
  margin-top: 10px;
}

.comment-reply-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--pk-primary);
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--pk-primary);
  padding: 4px 12px;
  border-radius: 20px;
  transition: var(--pk-transition);
  display: inline-block;
}

.comment-reply-link:hover {
  background: var(--pk-primary);
  color: var(--pk-white);
}

/* Comment Form (Leave a Reply) */
#respond {
  background: var(--pk-white);
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius-lg);
  padding: 35px;
}

@media (max-width: 575.98px) {
  #respond {
    padding: 20px;
  }
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logged-in-as {
  font-size: 13px;
  color: var(--pk-text-muted);
  margin-bottom: 15px;
}

.logged-in-as a {
  color: var(--pk-primary);
  text-decoration: none;
  font-weight: 600;
}

.comment-form-comment {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
  font-size: 13px;
  font-weight: 700;
  color: var(--pk-secondary);
  text-transform: uppercase;
}

#comment {
  width: 100%;
  min-height: 150px;
  padding: 15px;
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius);
  font-size: 14px;
  line-height: 1.6;
  outline: none;
  background: var(--pk-bg-soft);
  transition: var(--pk-transition);
  resize: vertical;
  color: var(--pk-secondary);
}

#comment:focus {
  border-color: var(--pk-primary);
  background: var(--pk-white);
}

/* Author, Email, URL inputs row */
.comment-form-author,
.comment-form-email,
.comment-form-url {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {

  .comment-form-author,
  .comment-form-email,
  .comment-form-url {
    width: 31.33%;
    display: inline-flex;
    vertical-align: top;
    margin-right: 2%;
  }

  .comment-form-url {
    margin-right: 0;
  }
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius);
  font-size: 13px;
  outline: none;
  background: var(--pk-bg-soft);
  transition: var(--pk-transition);
  color: var(--pk-secondary);
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
  border-color: var(--pk-primary);
  background: var(--pk-white);
}

/* Submit Button */
.form-submit {
  margin-top: 10px;
  margin-bottom: 0;
}

.comment-form input[type="submit"],
#submit {
  background-color: var(--pk-primary);
  color: var(--pk-white);
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--pk-transition);
  box-shadow: 0 4px 12px rgba(31, 176, 75, 0.2);
}

.comment-form input[type="submit"]:hover,
#submit:hover {
  background-color: var(--pk-secondary);
  box-shadow: 0 4px 12px rgba(5, 24, 32, 0.2);
}

/* Footer Social Icons */
.pk-social-row {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.pk-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pk-white);
  border: 1px solid var(--pk-border);
  color: var(--pk-secondary);
  font-size: 14px;
  transition: var(--pk-transition);
}

.pk-social-icon:hover {
  background: var(--pk-primary);
  color: var(--pk-white);
  border-color: var(--pk-primary);
  transform: translateY(-3px);
}

/* ─── 21. ABOUT US TEMPLATE PAGE ────────────────────────── */

/* Section Spacing */
.dc-section {
  padding: 80px 0;
}

.about-intro {
  background: var(--pk-white);
}

/* About Intro Collage */
.about-intro__collage {
  position: relative;
  padding-bottom: 60px;
  padding-right: 40px;
}

.about-img-main {
  width: 85%;
  border-radius: var(--pk-radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.about-img-main img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: var(--pk-transition);
}

.about-img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  border-radius: var(--pk-radius-lg);
  overflow: hidden;
  border: 8px solid var(--pk-white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.about-img-sub img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: var(--pk-transition);
}

.about-intro__collage:hover .about-img-main img {
  transform: scale(1.03);
}

.about-intro__collage:hover .about-img-sub img {
  transform: scale(1.05);
}

/* About Intro Text */
.about-intro__text .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pk-primary);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.about-intro__text .section-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--pk-secondary);
  line-height: 1.25;
  margin-bottom: 24px;
}

.about-intro__text .description {
  font-size: 16px;
  color: var(--pk-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-intro__text .sub-description {
  font-size: 15px;
  color: var(--pk-text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Signature block */
.manager-signature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 35px;
  border-top: 1px solid var(--pk-border);
  padding-top: 25px;
}

.signature-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--pk-secondary);
  margin-bottom: 2px;
}

.signature-info span {
  font-size: 13px;
  color: var(--pk-text-muted);
}

/* About Stats Banner */
.about-stats {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--pk-secondary) 0%, #0d2c20 100%);
  position: relative;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.about-stat .num {
  font-size: 46px;
  font-weight: 850;
  color: var(--pk-accent);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(247, 162, 35, 0.2);
}

.about-stat .label {
  font-size: 13px;
  font-weight: 700;
  color: var(--pk-white);
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Additions for About page */
@media (max-width: 991.98px) {
  .about-intro__collage {
    max-width: 500px;
    margin: 0 auto 30px auto;
    padding-right: 20px;
  }

  .about-intro__text {
    text-align: center;
  }

  .about-intro__text .section-title {
    font-size: 30px;
  }

  .manager-signature {
    justify-content: center;
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .dc-section__title {
    font-size: 28px;
  }
}

@media (max-width: 767.98px) {
  .dc-section {
    padding: 60px 0;
  }

  .about-stats {
    padding: 50px 0;
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575.98px) {
  .about-intro__collage {
    max-width: 320px;
  }

  .about-intro__text .section-title {
    font-size: 24px;
  }

  .about-stats__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-stat .num {
    font-size: 38px;
  }
}

/* ─── 22. CONTACT US TEMPLATE PAGE ──────────────────────── */
.contact-area {
  padding: 80px 0;
  background: var(--pk-bg);
}

.dc-contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.dc-contact-card {
  background: var(--pk-white);
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius-lg);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.dc-contact-card__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--pk-secondary);
  margin-bottom: 10px;
}

.dc-contact-card__desc {
  font-size: 15px;
  color: var(--pk-text-muted);
  margin-bottom: 35px;
}

.dc-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.dc-form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dc-form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--pk-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dc-form-group input,
.dc-form-group select,
.dc-form-group textarea {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius);
  background: var(--pk-bg-soft);
  color: var(--pk-text);
  font-size: 14.5px;
  transition: var(--pk-transition);
  outline: none;
}

.dc-form-group input:focus,
.dc-form-group select:focus,
.dc-form-group textarea:focus {
  border-color: var(--pk-primary);
  background: var(--pk-white);
  box-shadow: 0 4px 12px rgba(31, 176, 75, 0.05);
}

.dc-form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.dc-contact-info-area {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.dc-contact-concierge {
  background: linear-gradient(135deg, #1a943f 0%, #277532 100%);
  border-radius: var(--pk-radius-lg);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--pk-white);
  position: relative;
  overflow: hidden;
}

.dc-contact-concierge::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(31, 176, 75, 0.08);
  border-radius: 50%;
  bottom: -50px;
  right: -50px;
}

.dc-concierge__avatar {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.dc-concierge__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.dc-concierge__status {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid var(--pk-secondary);
}

.dc-contact-concierge__text h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--pk-white);
}

.dc-contact-concierge__text p {
  font-size: 13.5px;
  margin: 0;
  opacity: 0.85;
  line-height: 1.5;
}

.dc-contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dc-info-card {
  background: var(--pk-white);
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius-lg);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--pk-transition);
}

.dc-info-card:hover {
  border-color: var(--pk-primary);
  box-shadow: 0 10px 25px rgba(31, 176, 75, 0.04);
  transform: translateY(-3px);
}

.dc-info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pk-bg-soft);
  color: var(--pk-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--pk-transition);
}

.dc-info-card:hover .dc-info-card__icon {
  background: var(--pk-primary);
  color: var(--pk-white);
}

.dc-info-card__content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--pk-secondary);
  margin: 0 0 6px 0;
}

.dc-info-card__content p {
  font-size: 14px;
  color: var(--pk-text-muted);
  margin: 0 0 10px 0;
  line-height: 1.5;
}

.dc-info-card__content .dc-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--pk-primary);
  text-decoration: none;
  transition: var(--pk-transition);
  display: inline-block;
}

.dc-info-card__content .dc-link:hover {
  color: var(--pk-secondary);
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .dc-contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 575.98px) {
  .dc-contact-card {
    padding: 25px 20px;
  }

  .dc-form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* ─── 12. GENERAL BUTTONS STYLING ──────────────────────────── */
.dc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: var(--pk-font-main);
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--pk-transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  outline: none;
  text-decoration: none;
}

/* Primary Button (Emerald Green) */
.dc-btn:not(.dc-btn--outline):not(.dc-btn--accent) {
  background: var(--pk-primary);
  color: var(--pk-white) !important;
  border-color: var(--pk-primary);
}

.dc-btn:not(.dc-btn--outline):not(.dc-btn--accent):hover {
  background: var(--pk-primary-dark);
  border-color: var(--pk-primary-dark);
  box-shadow: 0 4px 12px rgba(31, 176, 75, 0.25);
  transform: translateY(-1px);
}

/* Outline Button */
.dc-btn--outline {
  background: transparent;
  border-color: var(--pk-primary);
  color: var(--pk-primary) !important;
}

.dc-btn--outline:hover {
  background: var(--pk-primary);
  color: var(--pk-white) !important;
  box-shadow: 0 4px 12px rgba(31, 176, 75, 0.15);
  transform: translateY(-1px);
}

/* Accent Button (Amber) */
.dc-btn--accent {
  background: var(--pk-accent);
  color: var(--pk-secondary) !important;
  border-color: var(--pk-accent);
}

.dc-btn--accent:hover {
  background: #e08f1b;
  border-color: #e08f1b;
  box-shadow: 0 4px 12px rgba(247, 162, 35, 0.25);
  transform: translateY(-1px);
}

/* Disabled state */
.dc-btn:disabled,
.dc-btn[disabled] {
  background: #cbd5e1 !important;
  border-color: #cbd5e1 !important;
  color: #64748b !important;
  cursor: not-allowed;
  box-shadow: none !important;
  transform: none !important;
  opacity: 0.7;
}

/* ============================================================
   NEW PAGES REDESIGNS (404, CART, CHECKOUT, THANKYOU)
   ============================================================ */

/* ─── 404 PAGE STYLE ────────────────────────────────────────── */
.dc-404 {
  padding: 100px 0;
  background: transparent;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dc-404__inner {
  max-width: 550px;
  margin: 0 auto;
}

.dc-404__number {
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  color: var(--pk-primary);
  background: linear-gradient(135deg, var(--pk-primary) 0%, var(--pk-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(31, 176, 75, 0.15));
}

.dc-404__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--pk-secondary);
  margin-bottom: 15px;
}

.dc-404__text {
  font-size: 16px;
  color: var(--pk-text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.dc-404__actions .dc-btn {
  padding: 12px 30px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── CART PAGE STYLE ───────────────────────────────────────── */
.dc-cart-page {
  background: transparent;
  min-height: 80vh;
}

.dc-cart-page__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--pk-border);
  padding-bottom: 20px;
}

.dc-cart-page__header h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--pk-secondary);
  margin: 0;
}

.dc-cart-page__header .dc-link {
  font-weight: 600;
  color: var(--pk-primary);
  font-size: 14px;
}

/* Empty State */
.dc-cart-empty {
  text-align: center;
  padding: 80px 40px;
  background: var(--pk-white);
  border-radius: var(--pk-radius-lg);
  box-shadow: var(--pk-shadow);
}

.dc-cart-empty__icon {
  color: var(--pk-text-muted);
  margin-bottom: 24px;
  opacity: 0.7;
}

.dc-cart-empty h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--pk-secondary);
  margin-bottom: 10px;
}

.dc-cart-empty p {
  color: var(--pk-text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}

/* Cart Items Table Header */
.dc-cart-items__head {
  display: grid;
  grid-template-columns: 80px 2.5fr 1.2fr 1.5fr 1.2fr 0.5fr;
  padding: 15px 25px;
  background: var(--pk-secondary);
  color: var(--pk-white);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--pk-radius) var(--pk-radius) 0 0;
}

.dc-cart-items__head span:nth-child(1) {
  grid-column: span 2;
}

.dc-cart-items__head span:nth-child(2) {
  grid-column: 3;
}

.dc-cart-items__head span:nth-child(3) {
  grid-column: 4;
}

.dc-cart-items__head span:nth-child(4) {
  grid-column: 5;
}

/* Cart Item Row */
.dc-cart-items {
  background: var(--pk-white);
  border-radius: var(--pk-radius-lg);
  box-shadow: var(--pk-shadow);
  overflow: hidden;
}

.dc-cart-item {
  display: grid;
  grid-template-columns: 80px 2.5fr 1.2fr 1.5fr 1.2fr 0.5fr;
  align-items: center;
  padding: 25px;
  border-bottom: 1px solid var(--pk-border);
  transition: var(--pk-transition);
}

.dc-cart-item:hover {
  background: rgba(31, 176, 75, 0.02);
}

.dc-cart-item__img {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 70px !important;
  height: 70px !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
}

.dc-cart-item__img a {
  display: block !important;
  width: 70px !important;
  height: 70px !important;
}

.dc-cart-item__img img {
  width: 70px !important;
  height: 70px !important;
  object-fit: cover !important;
  border-radius: var(--pk-radius);
  border: 1px solid var(--pk-border);
}

.dc-cart-item__info {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  min-width: 0;
}

.dc-cart-item__name {
  font-weight: 700;
  color: var(--pk-secondary);
  font-size: 15px;
  margin-bottom: 4px;
}

.dc-cart-item__name a:hover {
  color: var(--pk-primary);
}

.dc-cart-item__sku {
  font-size: 12px;
  color: var(--pk-text-muted);
}

.dc-cart-item__price {
  font-weight: 600;
  color: var(--pk-text);
  font-size: 15px;
}

.dc-cart-item__qty {
  display: flex;
  align-items: center;
}

.dc-cart-item__subtotal {
  font-weight: 700;
  color: var(--pk-primary);
  font-size: 16px;
}

.dc-cart-item__remove {
  text-align: right;
}

.dc-cart-item__del {
  color: var(--pk-text-muted);
  font-size: 20px;
  line-height: 1;
  transition: var(--pk-transition);
}

.dc-cart-item__del:hover {
  color: #dc3545;
}

.dc-cart-item__remove-mob {
  display: none;
}

/* Quantity inputs */
.dc-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--pk-border);
  border-radius: 30px;
  background: var(--pk-bg-soft);
  overflow: hidden;
  padding: 2px;
}

.dc-qty__btn {
  border: none;
  background: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  color: var(--pk-text);
  transition: var(--pk-transition);
  border-radius: 50%;
}

.dc-qty__btn:hover {
  background: var(--pk-white);
  color: var(--pk-primary);
}

.dc-qty input.dc-qty__input {
  border: none;
  background: transparent;
  width: 45px;
  height: 32px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--pk-secondary);
}

/* Remove up/down buttons on quantity input */
.dc-qty input.dc-qty__input::-webkit-outer-spin-button,
.dc-qty input.dc-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Actions Row */
.dc-cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  background: var(--pk-bg-soft);
  border-top: 1px solid var(--pk-border);
}

.dc-coupon-row {
  display: flex;
  align-items: center;
}

.dc-coupon {
  display: flex;
  gap: 10px;
}

.dc-coupon__input {
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius);
  padding: 8px 15px;
  font-size: 14px;
  background: var(--pk-white);
  outline: none;
  transition: var(--pk-transition);
  width: 180px;
}

.dc-coupon__input:focus {
  border-color: var(--pk-primary);
  box-shadow: 0 0 0 3px rgba(31, 176, 75, 0.1);
}

/* Summary Card */
.dc-cart-summary {
  background: var(--pk-white);
  border-radius: var(--pk-radius-lg);
  box-shadow: var(--pk-shadow);
  padding: 30px;
  border: 1px solid var(--pk-border);
}

.dc-cart-summary__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--pk-secondary);
  margin-bottom: 25px;
  border-bottom: 1px solid var(--pk-border);
  padding-bottom: 15px;
}

.dc-cart-summary__lines {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.dc-cart-summary__line {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--pk-text-muted);
}

.dc-cart-summary__val {
  font-weight: 600;
  color: var(--pk-text);
}

.dc-cart-summary__line--discount .dc-discount {
  color: #28a745;
  font-weight: 700;
}

.dc-cart-summary__line--free .dc-free {
  color: var(--pk-primary);
  font-weight: 700;
}

.dc-cart-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--pk-secondary);
  border-top: 1px solid var(--pk-border);
  padding-top: 20px;
  margin-bottom: 25px;
}

.dc-cart-summary__total-val {
  font-size: 22px;
  color: var(--pk-primary);
}

.dc-btn--checkout {
  padding: 14px 20px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  border-radius: 30px !important;
}

.dc-cart-summary__trust {
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--pk-border);
  padding-top: 20px;
  gap: 10px;
}

.dc-cart-summary__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--pk-text-muted);
  font-weight: 600;
}

.dc-cart-summary__trust-item svg {
  color: var(--pk-primary);
}

.dc-cart-summary__payments {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 11px;
  color: var(--pk-text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
}

/* ─── CHECKOUT PAGE STYLE ───────────────────────────────────── */
.dc-checkout-page {
  background: transparent;
  min-height: 80vh;
}

.dc-checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--pk-border);
  padding-bottom: 20px;
}

.dc-checkout-header h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--pk-secondary);
  margin: 0;
}

/* Steps Indicator */
.dc-checkout-steps {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dc-checkout-step {
  font-size: 14px;
  color: var(--pk-text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dc-checkout-step.active {
  color: var(--pk-primary);
}

.dc-checkout-step__num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pk-border);
  color: var(--pk-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.dc-checkout-step.active .dc-checkout-step__num {
  background: var(--pk-primary);
  color: var(--pk-white);
}

.dc-checkout-step__arrow {
  color: var(--pk-text-muted);
  font-size: 16px;
  opacity: 0.5;
}

/* Sections */
.dc-checkout-section {
  background: var(--pk-white);
  border-radius: var(--pk-radius-lg);
  box-shadow: var(--pk-shadow);
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid var(--pk-border);
}

.dc-checkout-section__head {
  margin-bottom: 25px;
  border-bottom: 1px solid var(--pk-border);
  padding-bottom: 15px;
}

.dc-checkout-section__head h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--pk-secondary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dc-checkout-section__icon {
  color: var(--pk-primary);
  background: rgba(31, 176, 75, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Form field modifications */
.woocommerce-checkout .form-row {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.woocommerce-privacy-policy-text {
  margin-top: 10px;
}

.woocommerce-checkout label {
  font-size: 14px;
  font-weight: 700;
  color: var(--pk-secondary);
  margin-bottom: 6px;
}

.woocommerce-checkout label .required {
  color: #dc3545;
  text-decoration: none;
  font-weight: 700;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius);
  padding: 10px 15px;
  font-size: 14px;
  outline: none;
  background: var(--pk-white);
  color: var(--pk-text);
  transition: var(--pk-transition);
  width: 100%;
}

.woocommerce-checkout input[type="text"]:focus,
.woocommerce-checkout input[type="email"]:focus,
.woocommerce-checkout input[type="tel"]:focus,
.woocommerce-checkout input[type="password"]:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  border-color: var(--pk-primary);
  box-shadow: 0 0 0 3px rgba(31, 176, 75, 0.1);
}

.woocommerce-checkout select {
  height: 44px;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%232c3e50' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  padding-right: 40px;
}

/* Checkout summary card on the right */
.dc-checkout-summary {
  background: var(--pk-white);
  border-radius: var(--pk-radius-lg);
  box-shadow: var(--pk-shadow);
  padding: 30px;
  border: 1px solid var(--pk-border);
  position: sticky;
  top: 100px;
}

.dc-checkout-summary__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--pk-border);
  padding-bottom: 15px;
}

.dc-checkout-summary__head h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--pk-secondary);
  margin: 0;
}

.dc-checkout-summary__head .dc-link {
  font-weight: 600;
  color: var(--pk-primary);
  font-size: 14px;
}

/* Order review tables style override */
.dc-checkout-summary__review table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}

.dc-checkout-summary__review table.shop_table th,
.dc-checkout-summary__review table.shop_table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--pk-border);
  font-size: 14px;
}

.dc-checkout-summary__review table.shop_table th {
  color: var(--pk-secondary);
  font-weight: 700;
}

.dc-checkout-summary__review table.shop_table td {
  color: var(--pk-text-muted);
}

.dc-checkout-summary__review table.shop_table .product-name {
  color: var(--pk-secondary);
  font-weight: 600;
}

.dc-checkout-summary__review table.shop_table .product-total,
.dc-checkout-summary__review table.shop_table td.product-total {
  text-align: right;
  font-weight: 700;
  color: var(--pk-secondary);
}

.dc-checkout-summary__review table.shop_table .cart-subtotal th,
.dc-checkout-summary__review table.shop_table .cart-subtotal td,
.dc-checkout-summary__review table.shop_table .shipping th,
.dc-checkout-summary__review table.shop_table .shipping td {
  font-size: 14px;
}

.dc-checkout-summary__review table.shop_table .order-total th {
  font-size: 16px;
  font-weight: 800;
  color: var(--pk-secondary);
  border-bottom: none;
  padding-top: 20px;
}

.dc-checkout-summary__review table.shop_table .order-total td {
  font-size: 20px;
  font-weight: 800;
  color: var(--pk-primary);
  text-align: right;
  border-bottom: none;
  padding-top: 20px;
}

/* Payment gateways override styling */
.woocommerce-checkout #payment {
  background: var(--pk-bg-soft) !important;
  border-radius: var(--pk-radius) !important;
  padding: 20px !important;
  margin-bottom: 25px;
}

.woocommerce-checkout #payment ul.payment_methods {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
  margin-bottom: 15px !important;
  border-bottom: 1px solid var(--pk-border);
  padding-bottom: 15px !important;
}

.woocommerce-checkout #payment ul.payment_methods li:last-child {
  margin-bottom: 0 !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods li input {
  margin-right: 10px !important;
}

.woocommerce-checkout #payment ul.payment_methods li label {
  font-weight: 700 !important;
  color: var(--pk-secondary) !important;
  font-size: 14px !important;
  cursor: pointer;
}

.woocommerce-checkout #payment ul.payment_methods .payment_box {
  background: var(--pk-white) !important;
  border: 1px solid var(--pk-border) !important;
  border-radius: var(--pk-radius) !important;
  padding: 15px !important;
  font-size: 13px !important;
  color: var(--pk-text-muted) !important;
  margin-top: 10px !important;
  line-height: 1.5 !important;
}

.woocommerce-checkout #payment ul.payment_methods .payment_box::before {
  display: none !important;
}

/* Place Order button override */
.woocommerce-checkout #place_order {
  width: 100% !important;
  padding: 14px 20px !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  border-radius: 30px !important;
  background: var(--pk-primary) !important;
  border: 1px solid var(--pk-primary) !important;
  color: var(--pk-white) !important;
  transition: var(--pk-transition) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.woocommerce-checkout #place_order:hover {
  background: var(--pk-primary-dark) !important;
  border-color: var(--pk-primary-dark) !important;
}

/* Trust footer on checkout card */
.dc-checkout-trust {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--pk-border);
  padding-top: 20px;
  gap: 10px;
}

.dc-checkout-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--pk-text-muted);
  font-weight: 600;
}

.dc-checkout-trust__item svg {
  color: var(--pk-primary);
}

/* ─── ORDER SUCCESS / THANK YOU PAGE STYLE ───────────────────── */
.dc-thankyou {
  background: var(--pk-bg-soft);
  min-height: 80vh;
}

.dc-thankyou__card {
  border: 1px solid var(--pk-border);
}

.dc-thankyou__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(31, 176, 75, 0.1);
  color: var(--pk-primary);
  margin: 0 auto;
}

.dc-thankyou__icon svg {
  width: 50px;
  height: 50px;
}

.dc-thankyou__title {
  color: var(--pk-secondary);
  font-weight: 800;
}

.dc-thankyou__text {
  color: var(--pk-text-muted);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.dc-thankyou__meta {
  border-top: 1px dashed var(--pk-border);
  padding-top: 25px;
}

.dc-thankyou__meta span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--pk-text-muted);
  margin-bottom: 5px;
}

.dc-thankyou__meta strong {
  font-size: 16px;
  color: var(--pk-secondary);
}

.dc-thankyou__details,
.dc-thankyou__customer {
  border: 1px solid var(--pk-border);
}

.dc-thankyou__details h3,
.dc-thankyou__customer h2,
.dc-thankyou__customer h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--pk-secondary);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--pk-border);
  padding-bottom: 12px;
}

/* Custom WooCommerce Thankyou page tables override */
.dc-thankyou__details table.shop_table,
.dc-thankyou__customer table.shop_table {
  width: 100%;
  border-collapse: collapse;
}

.dc-thankyou__details table.shop_table th,
.dc-thankyou__details table.shop_table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--pk-border);
  font-size: 14px;
}

.dc-thankyou__details table.shop_table th {
  color: var(--pk-secondary);
  font-weight: 700;
}

.dc-thankyou__details table.shop_table td {
  color: var(--pk-text-muted);
}

.dc-thankyou__details table.shop_table .product-name strong {
  color: var(--pk-secondary);
}

.dc-thankyou__details table.shop_table tfoot th {
  font-weight: 600;
  color: var(--pk-text);
}

.dc-thankyou__details table.shop_table tfoot td {
  font-weight: 700;
  color: var(--pk-secondary);
  text-align: right;
}

.dc-thankyou__details table.shop_table tfoot tr:last-child th,
.dc-thankyou__details table.shop_table tfoot tr:last-child td {
  font-size: 18px;
  font-weight: 800;
  border-bottom: none;
  padding-top: 20px;
}

.dc-thankyou__details table.shop_table tfoot tr:last-child td {
  color: var(--pk-primary);
}

/* Thank you address wrapper overrides */
.woocommerce-customer-details address {
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius);
  padding: 20px;
  background: var(--pk-bg-soft);
  font-style: normal;
  font-size: 14px;
  color: var(--pk-text-muted);
  line-height: 1.7;
}

.woocommerce-column__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--pk-secondary);
  margin-bottom: 12px;
}

.dc-thankyou__actions .dc-btn {
  padding: 12px 30px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile responsive fixes */
@media (max-width: 991px) {
  .dc-cart-item {
    grid-template-columns: 80px 1fr;
    grid-gap: 15px;
    padding: 20px;
  }

  .dc-checkout-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .dc-checkout-summary {
    position: static;
    margin-top: 30px;
  }
}

/* ─── SEAMLESS BACKGROUND & BODY FIXES ─────────────────────── */
body.woocommerce-cart,
body.woocommerce-checkout,
body.woocommerce-account,
body.error404 {
  background-color: var(--pk-bg-soft) !important;
}

body.woocommerce-cart #dcMain,
body.woocommerce-checkout #dcMain,
body.woocommerce-account #dcMain,
body.error404 #dcMain {
  background-color: var(--pk-bg-soft) !important;
}

/* Make page wrappers transparent to show the full-width body background */
.dc-cart-page,
.dc-checkout-page,
.dc-account-page,
.dc-404 {
  background: transparent !important;
}

/* ─── WOOCOMMERCE NOTICES & MESSAGES ──────────────────────── */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 16px 24px;
  margin-bottom: 30px;
  border-radius: var(--pk-radius-lg);
  border: 1px solid var(--pk-border);
  background: var(--pk-white);
  color: var(--pk-secondary);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  box-shadow: var(--pk-shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none !important;
}

/* Success Messages (Green border) */
.woocommerce-message {
  border-left: 4px solid var(--pk-primary) !important;
  background: rgba(31, 176, 75, 0.02);
}

/* Info Messages (Amber border) */
.woocommerce-info {
  border-left: 4px solid var(--pk-accent) !important;
  background: rgba(247, 162, 35, 0.02);
}

/* Error Messages (Red border) */
.woocommerce-error {
  border-left: 4px solid #ef4444 !important;
  background: rgba(239, 68, 68, 0.02);
  display: block;
  /* Errors are lists, should stack */
}

.woocommerce-error li {
  margin-bottom: 8px;
  list-style-type: none;
}

.woocommerce-error li:last-child {
  margin-bottom: 0;
}

/* Notice Buttons (e.g. View Cart button inside "Added to cart" message) */
.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-error a.button,
.woocommerce-message .wc-forward,
.woocommerce-info .wc-forward {
  order: 2;
  /* Move button to the right side */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  background: var(--pk-secondary);
  color: var(--pk-white) !important;
  text-decoration: none !important;
  transition: var(--pk-transition);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.woocommerce-message a.button:hover,
.woocommerce-info a.button:hover,
.woocommerce-error a.button:hover,
.woocommerce-message .wc-forward:hover,
.woocommerce-info .wc-forward:hover {
  background: var(--pk-primary);
  color: var(--pk-white) !important;
  transform: translateY(-1px);
}

/* Empty Cart State Wrapper */
.dc-cart-empty {
  max-width: 600px;
  margin: 60px auto;
  background: var(--pk-white);
  padding: 50px 40px;
  border-radius: var(--pk-radius-lg);
  box-shadow: var(--pk-shadow);
  border: 1px solid var(--pk-border);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FLOATING WHATSAPP BUTTON
   ───────────────────────────────────────────────────────────────────────────── */
.pk-floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.pk-floating-whatsapp:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
  color: #fff !important;
}

/* Pulse ring effect */
.pk-floating-whatsapp::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid #25d366;
  border-radius: 50%;
  opacity: 0;
  animation: pk-whatsapp-pulse 2s infinite;
  pointer-events: none;
}

@keyframes pk-whatsapp-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* Tooltip style */
.pk-whatsapp-tooltip {
  position: absolute;
  right: 80px;
  background: #051820;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.pk-whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #051820;
}

.pk-floating-whatsapp:hover .pk-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .pk-floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .pk-whatsapp-tooltip {
    display: none;
    /* Hide tooltip on small screens */
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   MANGO PRODUCT LANDING PAGE
   ───────────────────────────────────────────────────────────────────────────── */
.pk-landing {
  background-color: #fcfbf7;
  color: #2b3a42;
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
}

/* Landing Hero Section */
.pk-landing-hero {
  position: relative;
  background: linear-gradient(135deg, #fff9e6 0%, #fff0cc 100%);
  padding: 80px 0 100px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pk-landing-hero__badge {
  display: inline-block;
  background: #ffc107;
  color: #3d2a00;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.2);
}

.pk-landing-hero__title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #1e2d2f;
  margin-bottom: 20px;
}

.pk-landing-hero__title span {
  color: #e67e22;
  position: relative;
}

.pk-landing-hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: #5d6d7e;
  margin-bottom: 35px;
  max-width: 540px;
}

.pk-landing-hero__image {
  position: relative;
  text-align: center;
}

.pk-landing-hero__image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
  animation: float 6s ease-in-out infinite;
  border-radius: var(--pk-radius-xl);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Landing Benefits & Quality Sections */
.pk-landing-benefits {
  padding: 80px 0;
  background: #fff;
}

.pk-section-title--landing {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: #1e2d2f;
  margin-bottom: 15px;
}

.pk-section-desc--landing {
  text-align: center;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-size: 16px;
}

.pk-benefit-card {
  background: #fdfefe;
  border: 1px solid #f2f4f4;
  border-radius: var(--pk-radius-lg);
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.pk-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: #f7dc6f;
}

.pk-benefit-card__icon {
  width: 70px;
  height: 70px;
  background: #fef9e7;
  color: #f39c12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 28px;
}

.pk-benefit-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e2d2f;
}

.pk-benefit-card__desc {
  font-size: 14px;
  color: #7f8c8d;
  line-height: 1.5;
}

/* Mango Quality Section */
.pk-landing-quality {
  padding: 80px 0;
  background: #fdfaf2;
}

.pk-quality-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.pk-quality-item__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #e67e22;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pk-quality-item__title {
  font-size: 18px;
  font-weight: 700;
  color: #1e2d2f;
  margin-bottom: 8px;
}

.pk-quality-item__desc {
  font-size: 14px;
  color: #5d6d7e;
  line-height: 1.5;
}

/* Product Gallery */
.pk-landing-gallery {
  padding: 80px 0;
  background: #fff;
}

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

.pk-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--pk-radius-lg);
  aspect-ratio: 1;
}

.pk-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pk-gallery-item:hover img {
  transform: scale(1.08);
}

/* Pricing Section */
.pk-landing-pricing {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fdfaf2, #fff9e6);
}

.pk-pricing-card {
  background: #fff;
  border: 2px solid #f2f4f4;
  border-radius: var(--pk-radius-xl);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pk-pricing-card--popular {
  border-color: #e67e22;
  box-shadow: 0 15px 40px rgba(230, 126, 34, 0.12);
  transform: translateY(-8px);
}

.pk-pricing-card--popular:hover {
  transform: translateY(-12px);
}

.pk-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.pk-pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #e67e22;
  color: #fff;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pk-pricing-title {
  font-size: 24px;
  font-weight: 800;
  color: #1e2d2f;
  margin-bottom: 10px;
}

.pk-pricing-qty {
  color: #7f8c8d;
  font-size: 15px;
  margin-bottom: 25px;
  font-weight: 600;
}

.pk-pricing-price {
  margin-bottom: 30px;
}

.pk-pricing-price .price-del {
  font-size: 16px;
  color: #bdc3c7;
  text-decoration: line-through;
  margin-right: 8px;
}

.pk-pricing-price .price-ins {
  font-size: 38px;
  font-weight: 800;
  color: #e67e22;
}

.pk-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  text-align: left;
}

.pk-pricing-features li {
  font-size: 14px;
  color: #5d6d7e;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.pk-pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: 700;
}

.pk-pricing-btn {
  width: 100%;
  padding: 14px 28px;
  border-radius: 30px;
  background: #e67e22;
  color: #fff;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.2);
}

.pk-pricing-btn:hover {
  background: #d35400;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.pk-pricing-card--popular .pk-pricing-btn {
  background: #27ae60;
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.2);
}

.pk-pricing-card--popular .pk-pricing-btn:hover {
  background: #219a52;
  box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

/* Integrated Order Form (Checkout) */
.pk-landing-checkout {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid #f2f4f4;
}

.pk-checkout-box-wrap {
  max-width: 1000px;
  margin: 0 auto;
  background: #fcfbf9;
  border: 1px solid #f0ebe0;
  border-radius: var(--pk-radius-xl);
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.pk-checkout-box-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #1e2d2f;
  margin-bottom: 10px;
}

.pk-checkout-box-subtitle {
  text-align: center;
  color: #7f8c8d;
  margin-bottom: 40px;
  font-size: 15px;
}

/* Customize WooCommerce layout inside the checkout box */
.pk-landing-checkout .woocommerce-checkout-review-order {
  background: #fff;
  border: 1px solid #f2f4f4;
  border-radius: var(--pk-radius-lg);
  padding: 25px;
}

/* Delivery Details & FAQs */
.pk-landing-delivery {
  padding: 80px 0;
  background: #fdfefe;
}

/* Sticky Bottom Call-To-Action Button */
.pk-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pk-sticky-cta.is-visible {
  transform: translateY(0);
}

.pk-sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pk-sticky-cta__product {
  display: flex;
  align-items: center;
  gap: 15px;
}

.pk-sticky-cta__img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #f2f4f4;
}

.pk-sticky-cta__name {
  font-weight: 700;
  font-size: 15px;
  color: #1e2d2f;
  margin: 0;
}

.pk-sticky-cta__price {
  font-weight: 800;
  color: #e67e22;
  font-size: 16px;
}

.pk-sticky-cta__btn {
  padding: 10px 24px;
  background: #e67e22;
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.25);
  transition: all 0.3s ease;
}

.pk-sticky-cta__btn:hover {
  background: #d35400;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .pk-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pk-checkout-box-wrap {
    padding: 30px 20px;
  }

  .pk-landing-hero__title {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .pk-sticky-cta__inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .pk-sticky-cta__product {
    justify-content: center;
  }

  .pk-sticky-cta__btn {
    width: 100%;
  }

  .pk-landing-hero {
    padding: 40px 0 60px 0;
  }

  .pk-section-title--landing {
    font-size: 28px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   FAQ PAGE DESIGN
   ───────────────────────────────────────────────────────────────────────────── */
.dc-faq {
  background-color: #fcfbf9;
}

.dc-faq__nav {
  background: #fff;
  border: 1px solid #f0ebe0;
  border-radius: var(--pk-radius-lg);
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.dc-faq__nav ul li a {
  text-decoration: none;
  font-size: 15px;
  color: #5d6d7e !important;
  transition: all 0.3s ease;
}

.dc-faq__nav ul li a:hover {
  background-color: #fdfaf2;
  color: var(--pk-primary) !important;
  padding-left: 12px !important;
}

/* Accordion customization */
.dc-accordion .accordion-item {
  border: 1px solid #f0ebe0 !important;
  background-color: #fff;
  margin-bottom: 15px !important;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dc-accordion .accordion-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  border-color: #ffc107 !important;
}

.dc-accordion .accordion-button {
  background-color: #fff;
  color: #2b3a42;
  font-size: 16px;
  padding: 20px 24px;
  border: none;
  box-shadow: none;
}

.dc-accordion .accordion-button:not(.collapsed) {
  background-color: #fdfaf2;
  color: var(--pk-primary);
}

.dc-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3e50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.dc-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231FB04B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.dc-accordion .accordion-body {
  padding: 0 24px 24px 24px;
  line-height: 1.7;
  font-size: 14.5px;
  color: #5d6d7e !important;
  background-color: #fff;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SINGLE PRODUCT PAGE STYLING (DISCOUNT BADGE & QUICK CONTACT ROW)
   ───────────────────────────────────────────────────────────────────────────── */
.pk-discount-badge {
  background-color: rgba(255, 107, 0, 0.1) !important;
  color: #ff6b00 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 6px 12px !important;
  border-radius: 30px !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  margin-left: 12px !important;
  text-shadow: none !important;
}

.single_add_to_cart_button {
  flex: 1;
  background: linear-gradient(135deg, #F7A223, #ff8c00) !important;
  color: #0c1c20 !important;
  border: none !important;
  padding: 16px 32px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 6px 20px rgba(247, 162, 35, 0.25) !important;
}

.single_add_to_cart_button:hover {
  background: linear-gradient(135deg, #ff9800, #e65100) !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.35) !important;
  transform: translateY(-2px) scale(1.02);
}

.pk-quick-contact-row {
  display: flex !important;
  gap: 12px !important;
  margin: 25px 0 !important;
}

.pk-quick-contact-row .btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.pk-quick-contact-row .btn i {
  font-size: 16px;
}

/* WhatsApp Button: Soft modern border style */
.pk-quick-contact-row .btn-success {
  background: #e8f7ed !important;
  color: #1b8a5a !important;
  border: 1.5px solid #c2ebcf !important;
  box-shadow: 0 4px 10px rgba(27, 138, 90, 0.02) !important;
}

.pk-quick-contact-row .btn-success:hover {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25) !important;
  transform: translateY(-2px);
}

/* Call Button: Soft modern border style */
.pk-quick-contact-row .btn-warning {
  background: #fff9e6 !important;
  color: #d48806 !important;
  border: 1.5px solid #ffe58f !important;
  box-shadow: 0 4px 10px rgba(212, 136, 6, 0.02) !important;
}

.pk-quick-contact-row .btn-warning:hover {
  background: linear-gradient(135deg, #ffc107, #ff9800) !important;
  color: #1e2d2f !important;
  border-color: transparent !important;
  box-shadow: 0 6px 18px rgba(255, 152, 0, 0.25) !important;
  transform: translateY(-2px);
}

/* Trust Badges Restyle */
.dc-prod-trust {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 20px 0 !important;
  border-top: 1px dashed #e2e8f0 !important;
  border-bottom: 1px dashed #e2e8f0 !important;
  margin-top: 30px !important;
  margin-bottom: 30px !important;
  gap: 15px !important;
}

.dc-prod-trust__item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 13px !important;
  color: #64748b !important;
  font-weight: 600 !important;
}

.dc-prod-trust__item svg {
  color: #1FB04B !important;
  stroke-width: 2px !important;
  width: 16px !important;
  height: 16px !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CHECKOUT PAGE: ALWAYS SHOW COUPON FORM
   ───────────────────────────────────────────────────────────────────────────── */
.woocommerce-form-coupon-toggle {
  display: none !important;
  /* Hide the "Have a coupon? Click here" toggle button */
}

form.checkout_coupon.woocommerce-form-coupon {
  display: block !important;
  /* Force coupon form to be always visible */
  background: #fdfbf9;
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius-lg);
  padding: 24px;
  margin-bottom: 30px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

form.checkout_coupon.woocommerce-form-coupon::before,
form.checkout_coupon.woocommerce-form-coupon::after {
  content: "";
  display: table;
  clear: both;
}

form.checkout_coupon.woocommerce-form-coupon p {
  font-size: 14px;
  color: var(--pk-text);
  margin-bottom: 15px;
}

form.checkout_coupon.woocommerce-form-coupon p.form-row-first {
  width: 70%;
  float: left;
  margin: 0;
  padding-right: 12px;
  box-sizing: border-box;
}

form.checkout_coupon.woocommerce-form-coupon p.form-row-last {
  width: 30%;
  float: right;
  margin: 0;
  box-sizing: border-box;
}

form.checkout_coupon.woocommerce-form-coupon input.input-text {
  width: 100% !important;
  height: 48px !important;
  padding: 10px 18px !important;
  border: 1.5px solid var(--pk-border) !important;
  background: var(--pk-white) !important;
  border-radius: 30px !important;
  font-size: 14px !important;
  outline: none !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box;
}

form.checkout_coupon.woocommerce-form-coupon input.input-text:focus {
  border-color: var(--pk-primary) !important;
  box-shadow: 0 0 0 3px rgba(31, 176, 75, 0.1) !important;
}

form.checkout_coupon.woocommerce-form-coupon button.button {
  width: 100% !important;
  height: 48px !important;
  background: var(--pk-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box;
  text-align: center;
  padding: 0 !important;
}

form.checkout_coupon.woocommerce-form-coupon button.button:hover {
  background: var(--pk-primary-dark) !important;
  box-shadow: 0 4px 12px rgba(31, 176, 75, 0.25) !important;
}

@media (max-width: 576px) {

  form.checkout_coupon.woocommerce-form-coupon p.form-row-first,
  form.checkout_coupon.woocommerce-form-coupon p.form-row-last {
    width: 100% !important;
    float: none !important;
    padding-right: 0;
  }

  form.checkout_coupon.woocommerce-form-coupon p.form-row-last {
    margin-top: 10px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   MY ACCOUNT PAGE: STYLING & AUTH LAYOUTS
   ───────────────────────────────────────────────────────────────────────────── */
.dc-account-page {
  max-width: 1200px;
  margin: 40px auto 80px auto;
  padding: 0 15px;
}

.dc-account-header {
  margin-bottom: 40px;
  background: var(--pk-white);
  padding: 30px 40px;
  border-radius: var(--pk-radius-lg);
  border: 1px solid var(--pk-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.dc-account-header h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--pk-secondary);
  margin-bottom: 8px;
}

.dc-account-header__sub {
  font-size: 15px;
  color: var(--pk-text-muted);
  margin: 0;
  line-height: 1.6;
}

.dc-account-header__sub a {
  color: var(--pk-primary);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1.5px dotted var(--pk-primary);
  transition: all 0.2s ease;
}

.dc-account-header__sub a:hover {
  color: var(--pk-primary-dark);
  border-bottom-style: solid;
}

.dc-account-layout {
  display: flex;
  gap: 30px;
  align-items: start;
}

/* Sidebar Nav styling */
.dc-account-nav {
  width: 280px;
  background: var(--pk-white);
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius-lg);
  padding: 15px 0;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.dc-account-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dc-account-nav ul li {
  margin: 0;
  border-bottom: 1px solid #f8f9fa;
}

.dc-account-nav ul li:last-child {
  border-bottom: none;
}

.dc-account-nav ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #5d6d7e !important;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dc-account-nav ul li a svg {
  color: #94a3b8;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.dc-account-nav ul li a:hover {
  color: var(--pk-primary) !important;
  background: #fdfbf9;
}

.dc-account-nav ul li a:hover svg {
  color: var(--pk-primary);
  transform: translateX(2px);
}

.dc-account-nav ul li.is-active a {
  color: var(--pk-primary) !important;
  background: #f2faf5;
  border-left-color: var(--pk-primary);
}

.dc-account-nav ul li.is-active a svg {
  color: var(--pk-primary);
}

/* Content Area styling */
.dc-account-content {
  flex: 1;
  background: var(--pk-white);
  border: 1px solid var(--pk-border);
  border-radius: var(--pk-radius-lg);
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  min-height: 400px;
}

/* Form Styles inside Account Area */
.dc-account-content form .form-row {
  margin-bottom: 20px;
}

.dc-account-content form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #5d6d7e;
  margin-bottom: 8px;
}

.dc-account-content form input.input-text,
.dc-account-content form select,
.dc-account-content form textarea {
  width: 100%;
  height: 48px;
  padding: 10px 16px;
  border: 1.5px solid var(--pk-border);
  background: var(--pk-white);
  border-radius: 30px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.dc-account-content form input.input-text:focus,
.dc-account-content form select:focus,
.dc-account-content form textarea:focus {
  border-color: var(--pk-primary);
  box-shadow: 0 0 0 3px rgba(31, 176, 75, 0.1);
}

.dc-account-content form button.button {
  height: 48px;
  background: var(--pk-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  padding: 0 32px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dc-account-content form button.button:hover {
  background: var(--pk-primary-dark) !important;
  box-shadow: 0 4px 12px rgba(31, 176, 75, 0.25) !important;
  transform: translateY(-1px);
}

/* Orders Table styling */
.dc-account-content table.shop_table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin-bottom: 25px !important;
  border-radius: var(--pk-radius-lg) !important;
  overflow: hidden !important;
  border: 1px solid var(--pk-border) !important;
}

.dc-account-content table.shop_table th {
  background: #fdfbf9 !important;
  color: var(--pk-secondary) !important;
  padding: 16px 20px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  border-bottom: 2px solid var(--pk-border) !important;
  text-align: left !important;
}

.dc-account-content table.shop_table td {
  padding: 16px 20px !important;
  font-size: 14px !important;
  color: var(--pk-text) !important;
  border-bottom: 1px solid var(--pk-border) !important;
  vertical-align: middle !important;
}

.dc-account-content table.shop_table tr:last-child td {
  border-bottom: none !important;
}

.dc-account-content table.shop_table td a.button {
  background: #e8f7ed !important;
  color: #1b8a5a !important;
  border: 1.5px solid #c2ebcf !important;
  padding: 6px 16px !important;
  border-radius: 30px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

.dc-account-content table.shop_table td a.button:hover {
  background: var(--pk-primary) !important;
  color: #fff !important;
  border-color: var(--pk-primary) !important;
  box-shadow: 0 4px 10px rgba(31, 176, 75, 0.15) !important;
}

/* Authentication (Login/Register) Panels */
.dc-account-auth {
  max-width: 900px;
  margin: 20px auto;
}

.dc-auth-box {
  background: var(--pk-white);
  border: 1px solid var(--pk-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  height: 100%;
}

.dc-auth-box h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--pk-secondary);
  margin-bottom: 25px;
  text-align: center;
}

.dc-auth-box form .form-row {
  margin-bottom: 20px;
}

.dc-auth-box form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #5d6d7e;
  margin-bottom: 8px;
}

.dc-auth-box form input.input-text {
  width: 100% !important;
  height: 48px !important;
  padding: 10px 18px !important;
  border: 1.5px solid var(--pk-border) !important;
  background: var(--pk-white) !important;
  border-radius: 30px !important;
  font-size: 14px !important;
  outline: none !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box;
}

.dc-auth-box form input.input-text:focus {
  border-color: var(--pk-primary) !important;
  box-shadow: 0 0 0 3px rgba(31, 176, 75, 0.1) !important;
}

.dc-auth-box form button.button {
  width: 100% !important;
  height: 48px !important;
  background: var(--pk-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-sizing: border-box;
}

.dc-auth-box form button.button:hover {
  background: var(--pk-primary-dark) !important;
  box-shadow: 0 4px 12px rgba(31, 176, 75, 0.25) !important;
}

.dc-auth-box form label.woocommerce-form-login__rememberme,
.dc-auth-box form label.woocommerce-form-login__privacy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  margin-top: 10px;
  cursor: pointer;
}

.dc-auth-box form label.woocommerce-form-login__rememberme input,
.dc-auth-box form label.woocommerce-form-login__privacy input {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--pk-primary);
}

.dc-auth-box .woocommerce-LostPassword {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

.dc-auth-box .woocommerce-LostPassword a {
  color: var(--pk-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.dc-auth-box .woocommerce-LostPassword a:hover {
  color: var(--pk-primary-dark);
  text-decoration: underline;
}

/* Responsiveness for Account and Auth Sections */
@media (max-width: 991px) {
  .dc-account-layout {
    flex-direction: column;
    gap: 30px;
  }

  .dc-account-nav {
    width: 100%;
  }

  .dc-account-nav ul {
    display: flex;
    flex-wrap: wrap;
  }

  .dc-account-nav ul li {
    flex: 1 1 50%;
    border-bottom: 1px solid #f1f5f9;
  }

  .dc-account-nav ul li:nth-child(even) {
    border-left: 1px solid #f1f5f9;
  }
}

@media (max-width: 576px) {
  .dc-account-nav ul li {
    flex: 1 1 100%;
    border-left: none !important;
  }

  .dc-account-header,
  .dc-account-content,
  .dc-auth-box {
    padding: 24px 20px;
  }

  .dc-account-header h1 {
    font-size: 24px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   WOOCOMMERCE PASSWORD VISIBILITY ICON FIX
   ───────────────────────────────────────────────────────────────────────────── */
.woocommerce-form-row,
.form-row,
.woocommerce-input-wrapper {
  position: relative !important;
}

.woocommerce-Input+.show-password-input,
input[type="password"]+.show-password-input {
  position: absolute !important;
  bottom: 0px !important;
  right: 15px !important;
  cursor: pointer !important;
  width: 20px !important;
  height: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  text-indent: 0 !important;
}

.woocommerce-Input+.show-password-input::after,
input[type="password"]+.show-password-input::after {
  content: "\f070" !important;
  /* Eye Slash */
  font-family: "Font Awesome 5 Free", "Font Awesome 6 Free", "FontAwesome" !important;
  font-weight: 900 !important;
  font-size: 16px !important;
  color: #94a3b8 !important;
  transition: color 0.2s ease !important;
}

.woocommerce-Input+.show-password-input.display::after,
input[type="password"]+.show-password-input.display::after {
  content: "\f06e" !important;
  /* Eye */
  color: var(--pk-primary) !important;
}

.woocommerce-Input+.show-password-input:hover::after,
input[type="password"]+.show-password-input:hover::after {
  color: var(--pk-primary) !important;
}

.dc-auth-box p.reg-note {
  font-size: 14px;
  color: var(--pk-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.toggle-auth-link {
  margin-top: 25px;
  font-size: 14px;
  color: var(--pk-text-muted);
  text-align: center;
}

.toggle-auth-link a {
  color: var(--pk-primary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.toggle-auth-link a:hover {
  color: var(--pk-primary-dark);
  text-decoration: underline;
}

.dc-auth-box form.login,
.dc-auth-box form.register,
.dc-auth-box form.lost_reset_password {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

.dc-auth-box p.lost-pass-note {
  font-size: 14px;
  color: var(--pk-text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
}


/* Legal Page css */

.dc-legal__content h2 {
  font-size: 25px;
  font-weight: 600;
}

/* ─── ALL CATEGORIES PAGE STYLE ──────────────────────────────── */
.dc-all-categories {
  padding: 80px 0;
  background: var(--pk-bg-soft);
}

.dc-cat-card--static {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--pk-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  text-decoration: none;
}

.dc-cat-card--static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dc-cat-card--static .dc-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 26, 30, 0.8) 0%, rgba(10, 26, 30, 0.2) 60%, rgba(10, 26, 30, 0.1) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.dc-cat-card--static .dc-cat-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 2;
  color: var(--pk-white);
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
}

.dc-cat-card--static .dc-cat-card__name {
  font-size: 20px;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--pk-white);
}

.dc-cat-card--static .dc-cat-card__count {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--pk-white);
}

/* Hover effects */
.dc-cat-card--static:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 26, 30, 0.15);
}

.dc-cat-card--static:hover img {
  transform: scale(1.1);
}

.dc-cat-card--static:hover .dc-cat-card__overlay {
  background: linear-gradient(to top, rgba(31, 176, 75, 0.85) 0%, rgba(10, 26, 30, 0.4) 60%, rgba(10, 26, 30, 0.2) 100%);
}

.blog-hero .dc-post-breadcrumbs,
.blog-hero .dc-post-breadcrumbs a {
  color: rgba(255, 255, 255, 0.75);
}

.blog-hero .dc-post-breadcrumbs a:hover {
  color: var(--pk-primary);
}

.blog-hero .dc-post-breadcrumbs .sep {
  color: rgba(255, 255, 255, 0.35);
}

/* ─── HERO SWIPER STYLING ──────────────────────────────────── */
.pk-hero-swiper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--pk-radius-lg);
  overflow: hidden;
}

.pk-hero-swiper .swiper-slide {
  height: auto;
}

.pk-hero-swiper .pk-hero-banner--main {
  height: 100%;
  min-height: 480px;
  position: relative;
  background-image: none !important;
}

.pk-hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 6.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .pk-hero-bg-img {
  transform: scale(1.08);
}

/* Custom Navigation arrows */
.pk-hero-prev,
.pk-hero-next {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--pk-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: var(--pk-transition);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 0;
}

.pk-hero-prev:hover,
.pk-hero-next:hover {
  background: var(--pk-white);
  color: var(--pk-secondary);
  border-color: var(--pk-white);
}

.pk-hero-prev {
  left: 20px;
}

.pk-hero-next {
  right: 20px;
}

/* Custom Pagination dots */
.pk-hero-pagination {
  bottom: 25px !important;
  left: 50% !important;
  transform: translateX(-50%);
  text-align: center !important;
  width: auto !important;
  z-index: 10;
}

.pk-hero-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease !important;
}

.pk-hero-pagination .swiper-pagination-bullet-active {
  background: var(--pk-white) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ==========================================================================
   FUNNEL CHECKOUT STYLES
   ========================================================================== */
.pk-landing-checkout {
  background-color: #f9f5eb;
  padding: 60px 0;
}

.pk-funnel-product-selector {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 30px;
  border: 1px solid #e8dec8;
}

.pk-funnel-step-title {
  font-size: 20px;
  font-weight: 700;
  color: #006400;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e8dec8;
}

.pk-funnel-radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pk-funnel-radio-card {
  flex: 1;
  min-width: 280px;
  border: 2px solid #e8dec8;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  background: #fff;
}

.pk-funnel-radio-card.is-selected {
  border-color: #006400;
  background-color: #f6fdf6;
}

.pk-funnel-radio-input {
  margin-right: 15px;
  accent-color: #006400;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.pk-funnel-radio-content {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 15px;
}

.pk-funnel-radio-img img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.pk-funnel-radio-info {
  flex: 1;
}

.pk-funnel-radio-title {
  font-size: 16px;
  font-weight: 700;
  color: #006400;
  margin: 0 0 5px 0;
}

.pk-funnel-radio-price {
  font-size: 15px;
  color: #555;
  font-weight: 600;
}

.pk-funnel-radio-badge {
  position: absolute;
  top: -12px;
  right: 15px;
  background: #006400;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Two Column Checkout Layout */
.pk-landing-checkout form.woocommerce-checkout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  align-items: start;
}

@media (max-width: 991.98px) {
  .pk-landing-checkout form.woocommerce-checkout {
    grid-template-columns: 1fr;
  }
}

.pk-landing-checkout #customer_details {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e8dec8;
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.pk-landing-checkout #customer_details .col-1 {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
}

.pk-landing-checkout #customer_details .col-2 {
  display: none !important;
}

.pk-landing-checkout #order_review_heading {
  font-size: 20px;
  font-weight: 700;
  color: #006400;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e8dec8;
  display: block;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  background: #fff;
  border-radius: 12px 12px 0 0;
  padding: 24px 24px 0 24px;
  border: 1px solid #e8dec8;
  border-bottom: none;
}

.pk-landing-checkout #order_review {
  background: #fff;
  border-radius: 0 0 12px 12px;
  padding: 0 24px 24px 24px;
  border: 1px solid #e8dec8;
  border-top: none;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* Hide coupon form */
.pk-landing-checkout .woocommerce-form-coupon-toggle,
.pk-landing-checkout .checkout_coupon {
  display: none !important;
}

/* Style checkout headings */
.pk-landing-checkout h3 {
  font-size: 18px;
  font-weight: bold;
  color: #004b23;
  margin-bottom: 20px;
}

/* Form inputs styling */
.pk-landing-checkout .woocommerce-checkout label {
  color: #006400;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.pk-landing-checkout .woocommerce-checkout label .required {
  color: red;
}

.pk-landing-checkout .woocommerce-checkout input[type="text"],
.pk-landing-checkout .woocommerce-checkout input[type="tel"],
.pk-landing-checkout .woocommerce-checkout input[type="email"],
.pk-landing-checkout .woocommerce-checkout select,
.pk-landing-checkout .woocommerce-checkout textarea {
  background-color: #f9f5eb;
  border: 1px solid #e8dec8;
  border-radius: 4px;
  padding: 12px;
  width: 100%;
}

.pk-landing-checkout .woocommerce-checkout input:focus,
.pk-landing-checkout .woocommerce-checkout textarea:focus {
  border-color: #006400;
  outline: none;
}

/* Make right column look like the screenshot */
.pk-landing-checkout .woocommerce-checkout-review-order-table {
  width: 100%;
  margin-bottom: 20px;
}

.pk-landing-checkout .woocommerce-checkout-review-order-table th {
  color: #006400;
  border-bottom: 1px dashed #e8dec8;
  padding-bottom: 10px;
}

.pk-landing-checkout .woocommerce-checkout-review-order-table td {
  border-bottom: 1px dashed #e8dec8;
  padding: 15px 0;
  color: #333;
}

.pk-landing-checkout .woocommerce-checkout-review-order-table tfoot th,
.pk-landing-checkout .woocommerce-checkout-review-order-table tfoot td {
  color: #006400;
}

.pk-landing-checkout .woocommerce-checkout-review-order-table .order-total .woocommerce-Price-amount {
  font-weight: bold;
  font-size: 18px;
}

.pk-landing-checkout #place_order {
  background: #e68a00;
  color: #000;
  font-size: 20px;
  font-weight: 800;
  padding: 15px;
  width: 100%;
  border-radius: 8px;
  border: none;
  margin-top: 15px;
  transition: background 0.3s;
}

.pk-landing-checkout #place_order:hover {
  background: #cc7a00;
}