/* ==========================================================================
   ART OF PINK CITY - ROYAL JAIPUR LUXURY STOREFRONT THEME
   Brand Color System: Jaipur Rose Pink (#C81E56), Imperial Gold (#D4AF37),
   Onyx Charcoal (#181818) & Regal Silk (#FAF6F3)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400;1,600&family=Dancing+Script:wght@500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --apc-pink: #C81E56;
  --apc-pink-dark: #9F1242;
  --apc-pink-light: #FDF0F4;
  --apc-pink-glow: rgba(200, 30, 86, 0.18);
  
  --apc-gold: #D4AF37;
  --apc-gold-light: #FBF4DE;
  --apc-gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #C59B27 100%);
  --apc-pink-gradient: linear-gradient(135deg, #C81E56 0%, #E63974 50%, #B3174B 100%);
  --apc-hero-gradient: linear-gradient(180deg, rgba(20,20,20,0.1) 0%, rgba(20,20,20,0.65) 100%);

  --apc-dark: #141414;
  --apc-charcoal: #242424;
  --apc-body: #4A4A4A;
  --apc-muted: #7A7A7A;
  --apc-cream: #FAF6F3;
  --apc-sand: #F5EFEB;
  --apc-border: #EFE8E2;
  --apc-border-light: #F5F0EB;
  --apc-white: #FFFFFF;
  --apc-green: #2E7D32;
  --apc-red: #D32F2F;

  --apc-font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --apc-font-sans: 'Assistant', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --apc-font-script: 'Dancing Script', cursive;

  --apc-radius-sm: 6px;
  --apc-radius-md: 12px;
  --apc-radius-lg: 20px;
  --apc-radius-full: 9999px;

  --apc-shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
  --apc-shadow-card: 0 8px 30px rgba(0, 0, 0, 0.06);
  --apc-shadow-hover: 0 16px 40px rgba(200, 30, 86, 0.16);
  --apc-shadow-drawer: -10px 0 40px rgba(0, 0, 0, 0.2);

  --apc-container-w: 1360px;
}

/* Base resets & typography */
.pw-storefront {
  font-family: var(--apc-font-sans);
  color: var(--apc-body);
  background-color: var(--apc-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.pw-storefront * {
  box-sizing: border-box;
}

.pw-storefront a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.pw-container {
  width: 100%;
  max-width: var(--apc-container-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   TOP TICKER / ANNOUNCEMENT BAR
   ========================================================================== */
.pw-ticker-bar {
  background: var(--apc-pink-gradient);
  color: #FFFFFF;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  z-index: 100;
  white-space: nowrap;
  padding: 11px 0;
  box-shadow: 0 2px 10px rgba(200, 30, 86, 0.25);
}

.pw-ticker-track {
  display: inline-flex;
  animation: apcTickerScroll 30s linear infinite;
}

.pw-ticker-track:hover {
  animation-play-state: paused;
}

.pw-ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 40px;
}

.pw-ticker-item span.code-pill {
  background: rgba(255, 255, 255, 0.22);
  padding: 3px 10px;
  border-radius: var(--apc-radius-full);
  margin: 0 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  border: 1px dashed rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pw-ticker-sep {
  color: var(--apc-gold);
  margin: 0 14px;
  font-size: 14px;
}

@keyframes apcTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   LUXURY HEADER NAVIGATION
   ========================================================================== */
.pw-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  z-index: 999;
  border-bottom: 1px solid var(--apc-border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.pw-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
}

.pw-brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1;
}

.pw-brand-logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.pw-brand-logo:hover img {
  transform: scale(1.03);
}

.pw-nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pw-nav-item {
  position: relative;
}

.pw-nav-link {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--apc-dark);
  padding: 12px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.pw-nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--apc-pink-gradient);
  border-radius: var(--apc-radius-full);
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pw-nav-link:hover::after,
.pw-nav-item.active .pw-nav-link::after {
  width: 100%;
}

.pw-nav-link:hover,
.pw-nav-item.active .pw-nav-link {
  color: var(--apc-pink);
}

.pw-badge {
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--apc-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}

.pw-badge-hot {
  background: var(--apc-pink-gradient);
  color: #FFF;
  box-shadow: 0 2px 8px var(--apc-pink-glow);
}

.pw-badge-gold {
  background: var(--apc-gold-gradient);
  color: #222;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Mega dropdown */
.pw-dropdown-mega {
  position: absolute;
  top: 100%;
  left: -140px;
  width: 620px;
  background: #FFFFFF;
  border: 1px solid var(--apc-border);
  border-radius: var(--apc-radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  z-index: 1000;
}

.pw-nav-item:hover .pw-dropdown-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pw-mega-col h4 {
  font-family: var(--apc-font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--apc-pink);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--apc-pink-light);
  letter-spacing: 0.04em;
}

.pw-mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pw-mega-col ul li a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--apc-body);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pw-mega-col ul li a:hover {
  color: var(--apc-pink);
  transform: translateX(6px);
  font-weight: 600;
}

/* Header Utilities */
.pw-header-utils {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Header Search Bar */
.pw-header-search {
  display: flex;
  align-items: center;
  background: #F4F4F0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 25px;
  padding: 6px 14px;
  gap: 8px;
  width: 210px;
  transition: all 0.3s ease;
}

.pw-header-search:focus-within {
  width: 250px;
  background: #FFFFFF;
  border-color: var(--apc-pink);
  box-shadow: 0 4px 15px rgba(200, 30, 86, 0.12);
}

.pw-search-icon {
  font-size: 13px;
  opacity: 0.65;
}

.pw-search-input {
  border: none;
  background: none;
  font-family: inherit;
  font-size: 12.5px;
  outline: none;
  width: 100%;
  color: var(--apc-charcoal);
}

.pw-search-input::placeholder {
  color: #888;
}

/* Header WhatsApp Concierge Link */
.pw-header-concierge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: #128C7E !important;
  transition: all 0.25s ease;
}

.pw-header-concierge:hover {
  background: #25D366;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.pw-concierge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 6px #25D366;
  animation: pulseConcierge 1.8s infinite ease-in-out;
}

@keyframes pulseConcierge {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

@media (max-width: 1200px) {
  .pw-header-search { display: none; }
  .pw-header-concierge { display: none; }
}

.pw-util-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--apc-dark);
  font-size: 20px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--apc-radius-full);
  transition: all 0.25s ease;
}

.pw-util-btn:hover {
  background-color: var(--apc-pink-light);
  border-color: var(--apc-pink-glow);
  color: var(--apc-pink);
  transform: translateY(-2px);
}

.pw-cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--apc-pink-gradient);
  color: #FFF;
  font-size: 10px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: var(--apc-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 6px var(--apc-pink-glow);
}

.pw-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--apc-dark);
  cursor: pointer;
}

/* ==========================================================================
   HERO BANNER SLIDER
   ========================================================================== */
.pw-hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pw-slider-wrapper {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.pw-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.pw-slide a {
  display: block;
  width: 100%;
  line-height: 0;
  position: relative;
}

.pw-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 6s ease-out;
}

.pw-slide:hover img {
  transform: scale(1.02);
}

/* Slider Controls */
.pw-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: var(--apc-radius-full);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--apc-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.pw-slider-arrow:hover {
  background: var(--apc-pink);
  color: #FFFFFF;
  border-color: var(--apc-pink);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px var(--apc-pink-glow);
}

.pw-arrow-prev { left: 28px; }
.pw-arrow-next { right: 28px; }

.pw-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: var(--apc-radius-full);
}

.pw-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--apc-radius-full);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pw-dot.active {
  width: 32px;
  background: var(--apc-gold-gradient);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

/* ==========================================================================
   SHOP BY CATEGORY (Elevated Luxury Circles)
   ========================================================================== */
.pw-section {
  padding: 70px 0;
}

.pw-section-header {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
}

.pw-section-subtitle {
  font-family: var(--apc-font-script);
  font-size: 26px;
  color: var(--apc-pink);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.pw-section-title {
  font-family: var(--apc-font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--apc-dark);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.2;
}

.pw-section-title span {
  color: var(--apc-pink);
}

.pw-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px auto 0;
  color: var(--apc-gold);
}

.pw-section-divider::before,
.pw-section-divider::after {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--apc-gold);
  opacity: 0.5;
}

.pw-section-desc {
  color: var(--apc-muted);
  font-size: 15px;
  max-width: 640px;
  margin: 12px auto 0;
}

.pw-categories-wrapper {
  position: relative;
  width: 100%;
}

.pw-categories-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  justify-items: center;
}

.pw-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.pw-cat-circle {
  width: 124px;
  height: 124px;
  border-radius: var(--apc-radius-full);
  overflow: hidden;
  padding: 4px;
  background: linear-gradient(135deg, rgba(200,30,86,0.2) 0%, rgba(212,175,55,0.4) 100%);
  box-shadow: var(--apc-shadow-subtle);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-bottom: 14px;
  position: relative;
}

.pw-cat-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--apc-radius-full);
  overflow: hidden;
  background: #FFF;
}

.pw-cat-circle img {
  width: 100%;
  height: 100%;
  border-radius: var(--apc-radius-full);
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pw-cat-card:hover .pw-cat-circle {
  background: var(--apc-pink-gradient);
  box-shadow: 0 10px 24px var(--apc-pink-glow);
  transform: translateY(-6px) scale(1.04);
}

.pw-cat-card:hover .pw-cat-circle img {
  transform: scale(1.12);
}

.pw-cat-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--apc-dark);
  letter-spacing: 0.02em;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.pw-cat-card:hover .pw-cat-title {
  color: var(--apc-pink);
}

/* Category Carousel Dots */
.pw-cat-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.pw-cat-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--apc-radius-full);
  background: rgba(123, 17, 58, 0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pw-cat-dot.active {
  width: 26px;
  background: linear-gradient(135deg, #C81E56 0%, #7B113A 100%);
  box-shadow: 0 2px 8px rgba(200, 30, 86, 0.35);
}

/* ==========================================================================
   FEATURED PRODUCTS (ROYAL BESTSELLERS)
   ========================================================================== */
.pw-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.pw-tab-btn {
  background: #FFFFFF;
  border: 1px solid var(--apc-border);
  padding: 10px 24px;
  border-radius: var(--apc-radius-full);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--apc-body);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.pw-tab-btn:hover,
.pw-tab-btn.active {
  background: var(--apc-pink-gradient);
  border-color: var(--apc-pink);
  color: #FFFFFF;
  box-shadow: 0 6px 18px var(--apc-pink-glow);
  transform: translateY(-2px);
}

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

.pw-prod-card {
  background: #FFFFFF;
  border-radius: var(--apc-radius-md);
  overflow: hidden;
  border: 1px solid var(--apc-border-light);
  box-shadow: var(--apc-shadow-subtle);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pw-prod-card:hover {
  box-shadow: var(--apc-shadow-hover);
  border-color: rgba(200, 30, 86, 0.3);
  transform: translateY(-6px);
}

.pw-prod-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #FAF6F3;
}

.pw-prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.pw-thumb-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.pw-prod-card:hover .pw-thumb-primary {
  opacity: 0;
}

.pw-prod-card:hover .pw-thumb-hover {
  opacity: 1;
  transform: scale(1.06);
}

.pw-prod-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.pw-badge-sale {
  background: var(--apc-pink-gradient);
  color: #FFF;
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--apc-radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 3px 8px var(--apc-pink-glow);
}

.pw-badge-bestseller {
  background: var(--apc-gold-gradient);
  color: #1A1A1A;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--apc-radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pw-quickview-btn {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--apc-dark);
  border: 1px solid var(--apc-border);
  padding: 10px 22px;
  border-radius: var(--apc-radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.pw-prod-card:hover .pw-quickview-btn {
  bottom: 16px;
}

.pw-quickview-btn:hover {
  background: var(--apc-pink);
  color: #FFF;
  border-color: var(--apc-pink);
  box-shadow: 0 6px 18px var(--apc-pink-glow);
}

.pw-prod-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pw-prod-type {
  font-size: 11.5px;
  text-transform: uppercase;
  color: var(--apc-muted);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-weight: 600;
}

.pw-prod-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--apc-dark);
  line-height: 1.35;
  margin-bottom: 6px;
  min-height: 42px;
}

.pw-prod-title a:hover {
  color: var(--apc-pink);
}

.pw-prod-stars {
  color: var(--apc-gold);
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pw-prod-stars span.count {
  font-size: 12px;
  color: var(--apc-muted);
  margin-left: 4px;
}

.pw-prod-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.pw-price-current {
  font-size: 18px;
  font-weight: 800;
  color: var(--apc-pink);
}

.pw-price-regular {
  font-size: 14px;
  color: var(--apc-muted);
  text-decoration: line-through;
}

.pw-price-save {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--apc-green);
  background: rgba(46, 125, 50, 0.08);
  padding: 2px 6px;
  border-radius: var(--apc-radius-sm);
}

.pw-size-chips {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pw-size-chip {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--apc-radius-sm);
  background: var(--apc-cream);
  color: var(--apc-charcoal);
  border: 1px solid var(--apc-border);
  cursor: pointer;
  transition: all 0.2s;
}

.pw-size-chip:hover,
.pw-size-chip.selected {
  background: var(--apc-pink-light);
  border-color: var(--apc-pink);
  color: var(--apc-pink);
}

.pw-add-btn {
  width: 100%;
  background: var(--apc-pink-gradient);
  color: #FFF;
  border: none;
  padding: 12px 18px;
  border-radius: var(--apc-radius-sm);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  box-shadow: 0 4px 14px var(--apc-pink-glow);
}

.pw-add-btn:hover {
  background: var(--apc-pink-dark);
  box-shadow: 0 6px 18px var(--apc-pink-glow);
  transform: translateY(-2px);
}

/* ==========================================================================
   BRAND STORY & JAIPUR HERITAGE BANNER
   ========================================================================== */
.pw-story-banner {
  background: linear-gradient(135deg, #FAF4EF 0%, #F5EAE1 100%);
  padding: 85px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--apc-border);
  border-bottom: 1px solid var(--apc-border);
}

.pw-story-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.pw-story-content h3 {
  font-family: var(--apc-font-script);
  font-size: 28px;
  color: var(--apc-pink);
  margin-bottom: 6px;
}

.pw-story-content h2 {
  font-family: var(--apc-font-serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--apc-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.pw-story-content h2 span {
  color: var(--apc-pink);
}

.pw-story-content p {
  color: var(--apc-body);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 28px;
}

.pw-story-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.pw-story-perk {
  background: #FFF;
  padding: 16px;
  border-radius: var(--apc-radius-md);
  text-align: center;
  border: 1px solid var(--apc-border);
  box-shadow: var(--apc-shadow-subtle);
}

.pw-story-perk .icon {
  font-size: 26px;
  margin-bottom: 6px;
}

.pw-story-perk .label {
  font-size: 13px;
  font-weight: 700;
  color: var(--apc-dark);
}

.pw-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--apc-pink-gradient);
  color: #FFF;
  padding: 16px 36px;
  border-radius: var(--apc-radius-full);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px var(--apc-pink-glow);
}

.pw-btn-primary:hover {
  background: var(--apc-pink-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 26px var(--apc-pink-glow);
  color: #FFF;
}

.pw-story-image {
  position: relative;
}

.pw-story-image img {
  border-radius: var(--apc-radius-lg);
  box-shadow: var(--apc-shadow-card);
  width: 100%;
}

.pw-story-badge-float {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #FFF;
  padding: 20px 28px;
  border-radius: var(--apc-radius-md);
  box-shadow: var(--apc-shadow-hover);
  border: 1px solid var(--apc-border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.pw-story-badge-float .num {
  font-family: var(--apc-font-serif);
  font-size: 36px;
  font-weight: 800;
  color: var(--apc-pink);
  line-height: 1;
}

.pw-story-badge-float .txt {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--apc-dark);
  line-height: 1.35;
}

/* ==========================================================================
   CELEBRITIES & INFLUENCERS SPOTLIGHT
   ========================================================================== */
.pw-celeb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.pw-celeb-card {
  position: relative;
  border-radius: var(--apc-radius-md);
  overflow: hidden;
  box-shadow: var(--apc-shadow-card);
  background: #111;
}

.pw-celeb-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.pw-celeb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pw-celeb-card:hover .pw-celeb-img img {
  transform: scale(1.08);
}

.pw-celeb-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(18,18,18,0.92) 100%);
  padding: 28px 20px 20px;
  color: #FFF;
  display: flex;
  flex-direction: column;
}

.pw-celeb-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--apc-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}

.pw-celeb-name {
  font-family: var(--apc-font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 4px;
}

.pw-celeb-outfit {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.pw-celeb-btn {
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  padding: 7px 16px;
  border-radius: var(--apc-radius-full);
  color: #FFF;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.3s;
}

.pw-celeb-card:hover .pw-celeb-btn {
  background: var(--apc-pink-gradient);
  border-color: var(--apc-pink);
  box-shadow: 0 4px 14px var(--apc-pink-glow);
}

/* ==========================================================================
   CUSTOMER REVIEWS & TESTIMONIALS CAROUSEL
   ========================================================================== */
.pw-testimonials-section {
  background: #FAF7F4;
  padding: 80px 0;
}

.pw-reviews-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.pw-reviews-track {
  display: flex;
  gap: 26px;
  transition: transform 0.6s ease;
}

.pw-review-card {
  min-width: calc(33.333% - 18px);
  background: #FFFFFF;
  border-radius: var(--apc-radius-md);
  padding: 32px;
  box-shadow: var(--apc-shadow-subtle);
  border: 1px solid var(--apc-border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.pw-review-quote-mark {
  font-family: var(--apc-font-serif);
  font-size: 56px;
  color: var(--apc-pink-light);
  position: absolute;
  top: 18px;
  right: 26px;
  line-height: 1;
}

.pw-review-stars {
  color: var(--apc-gold);
  font-size: 17px;
  margin-bottom: 14px;
}

.pw-review-text {
  font-size: 15px;
  color: var(--apc-charcoal);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}

.pw-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--apc-border-light);
  padding-top: 16px;
}

.pw-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--apc-radius-full);
  background: var(--apc-pink-gradient);
  color: #FFF;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 3px 10px var(--apc-pink-glow);
}

.pw-author-info .name {
  font-size: 14px;
  font-weight: 800;
  color: var(--apc-dark);
}

.pw-author-info .badge {
  font-size: 11.5px;
  color: var(--apc-green);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

/* ==========================================================================
   PERKS & ROYAL VALUE PROPOSITIONS
   ========================================================================== */
.pw-perks-section {
  border-top: 1px solid var(--apc-border-light);
  border-bottom: 1px solid var(--apc-border-light);
  padding: 48px 0;
  background: #FFF;
}

.pw-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.pw-perk-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pw-perk-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--apc-radius-full);
  background: var(--apc-pink-light);
  color: var(--apc-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px var(--apc-pink-glow);
}

.pw-perk-item:hover .pw-perk-icon {
  transform: scale(1.1) rotate(6deg);
  background: var(--apc-pink-gradient);
  color: #FFF;
}

.pw-perk-text h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--apc-dark);
  margin: 0 0 4px;
}

.pw-perk-text p {
  font-size: 13px;
  color: var(--apc-muted);
  margin: 0;
}

/* ==========================================================================
   INSTAGRAM FEED
   ========================================================================== */
.pw-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.pw-insta-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--apc-radius-md);
  box-shadow: var(--apc-shadow-subtle);
}

.pw-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pw-insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200, 30, 86, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.pw-insta-item:hover img {
  transform: scale(1.12);
}

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.pw-newsletter-box {
  background: linear-gradient(135deg, #FDF0F4 0%, #FAF0EC 100%);
  border-radius: var(--apc-radius-lg);
  padding: 56px 36px;
  text-align: center;
  border: 1px solid var(--apc-border);
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--apc-shadow-card);
}

.pw-nl-form {
  display: flex;
  max-width: 540px;
  margin: 26px auto 0;
  border-radius: var(--apc-radius-full);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--apc-border);
  background: #FFF;
}

.pw-nl-input {
  flex-grow: 1;
  border: none;
  padding: 16px 24px;
  font-size: 14.5px;
  outline: none;
  font-family: inherit;
}

.pw-nl-btn {
  background: var(--apc-pink-gradient);
  color: #FFF;
  border: none;
  padding: 0 32px;
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.3s;
}

.pw-nl-btn:hover {
  background: var(--apc-pink-dark);
}

/* ==========================================================================
   LUXURY FOOTER
   ========================================================================== */
.pw-footer {
  background: #111111;
  color: #A6A6A6;
  padding-top: 70px;
  font-size: 14px;
}

.pw-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pw-footer-col h4 {
  font-family: var(--apc-font-serif);
  color: #FFFFFF;
  font-size: 17px;
  margin: 0 0 22px;
  letter-spacing: 0.05em;
}

.pw-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pw-footer-links a:hover {
  color: var(--apc-pink);
  padding-left: 6px;
}

.pw-footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.pw-social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--apc-radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.25s;
}

.pw-social-icon:hover {
  background: var(--apc-pink-gradient);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px var(--apc-pink-glow);
}

.pw-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 18px;
}

.pw-payment-badges {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pw-pay-badge {
  background: #FFF;
  color: #222;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--apc-radius-sm);
}

/* ==========================================================================
   CART DRAWER & OVERLAY
   ========================================================================== */
.pw-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.pw-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.pw-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 450px;
  max-width: 92vw;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: var(--apc-shadow-drawer);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.pw-cart-drawer.active {
  transform: translateX(0);
}

.pw-drawer-header {
  padding: 22px 26px;
  border-bottom: 1px solid var(--apc-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pw-drawer-title {
  font-family: var(--apc-font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--apc-dark);
  margin: 0;
}

.pw-drawer-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--apc-muted);
  cursor: pointer;
  padding: 4px;
}

.pw-drawer-close:hover {
  color: var(--apc-pink);
}

.pw-free-shipping-meter {
  background: var(--apc-pink-light);
  padding: 16px 26px;
  border-bottom: 1px solid var(--apc-border-light);
}

.pw-meter-text {
  font-size: 13px;
  color: var(--apc-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pw-progress-bar {
  width: 100%;
  height: 7px;
  background: #E8D9DF;
  border-radius: var(--apc-radius-full);
  overflow: hidden;
}

.pw-progress-fill {
  height: 100%;
  background: var(--apc-pink-gradient);
  border-radius: var(--apc-radius-full);
  transition: width 0.4s ease;
}

.pw-cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pw-cart-item {
  display: grid;
  grid-template-columns: 75px 1fr 24px;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--apc-border-light);
}

.pw-cart-item-img {
  width: 75px;
  height: 92px;
  border-radius: var(--apc-radius-sm);
  overflow: hidden;
  background: #F4EFEB;
}

.pw-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pw-cart-item-details .title {
  font-size: 14px;
  font-weight: 700;
  color: var(--apc-dark);
  line-height: 1.3;
  margin-bottom: 3px;
}

.pw-cart-item-details .size {
  font-size: 12px;
  color: var(--apc-muted);
  margin-bottom: 6px;
}

.pw-cart-item-details .price {
  font-size: 15px;
  font-weight: 800;
  color: var(--apc-pink);
  margin-bottom: 8px;
}

.pw-qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--apc-border);
  border-radius: var(--apc-radius-sm);
  overflow: hidden;
}

.pw-qty-btn {
  background: var(--apc-cream);
  border: none;
  width: 28px;
  height: 28px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pw-qty-val {
  width: 34px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.pw-cart-item-remove {
  background: none;
  border: none;
  color: var(--apc-muted);
  cursor: pointer;
  font-size: 18px;
}

.pw-cart-item-remove:hover {
  color: var(--apc-red);
}

.pw-drawer-footer {
  padding: 22px 26px;
  border-top: 1px solid var(--apc-border-light);
  background: #FFF;
}

.pw-coupon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--apc-pink-light);
  padding: 10px 14px;
  border-radius: var(--apc-radius-sm);
  font-size: 12.5px;
  color: var(--apc-pink);
  margin-bottom: 16px;
  font-weight: 700;
  border: 1px dashed var(--apc-pink);
}

.pw-drawer-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.pw-drawer-summary .subtotal-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--apc-dark);
}

.pw-drawer-summary .subtotal-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--apc-pink);
}

.pw-checkout-btn {
  width: 100%;
  background: var(--apc-pink-gradient);
  color: #FFF;
  border: none;
  padding: 15px;
  border-radius: var(--apc-radius-sm);
  font-size: 14.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px var(--apc-pink-glow);
}

.pw-checkout-btn:hover {
  background: var(--apc-pink-dark);
}

/* ==========================================================================
   QUICK VIEW MODAL
   ========================================================================== */
.pw-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.pw-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.pw-modal-content {
  background: #FFF;
  border-radius: var(--apc-radius-md);
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  transform: translateY(24px);
  transition: transform 0.3s ease;
}

.pw-modal-backdrop.active .pw-modal-content {
  transform: translateY(0);
}

.pw-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #FFF;
  border: 1px solid var(--apc-border);
  width: 36px;
  height: 36px;
  border-radius: var(--apc-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
}

.pw-modal-img {
  width: 100%;
  height: 100%;
  background: #FAF6F3;
}

.pw-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pw-modal-body {
  padding: 34px;
  display: flex;
  flex-direction: column;
}

/* Floating WhatsApp badge */
.pw-whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  background: #25D366;
  color: #FFF;
  width: 58px;
  height: 58px;
  border-radius: var(--apc-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 998;
  transition: transform 0.3s ease;
}

.pw-whatsapp-float:hover {
  transform: scale(1.12);
  color: #FFF;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================================================== */
@media (max-width: 1200px) {
  .pw-categories-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
  .pw-nav-menu { display: none; }
  .pw-mobile-toggle { display: block; }
  .pw-products-grid { grid-template-columns: repeat(2, 1fr); }
  .pw-celeb-grid { grid-template-columns: repeat(2, 1fr); }
  .pw-story-inner { grid-template-columns: 1fr; }
  .pw-perks-grid { grid-template-columns: repeat(2, 1fr); }
  .pw-insta-grid { grid-template-columns: repeat(3, 1fr); }
  .pw-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .pw-review-card { min-width: calc(50% - 14px); }
  .pw-modal-content { grid-template-columns: 1fr; }
}

/* ==========================================================================
   DEVELOPER CREDIT & FOOTER COPYRIGHT ENHANCEMENT
   ========================================================================== */
.pw-footer-copy-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13.5px;
  color: #AAA;
}

.pw-copy-divider {
  color: #555;
}

.pw-cognify-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pw-cognify-link {
  color: var(--apc-gold) !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pw-cognify-link:hover {
  color: #FFFFFF !important;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
  text-decoration: underline;
}

/* Footer Authentic SVG Social Icons */
.pw-footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.pw-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #CCCCCC !important;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pw-social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.pw-social-icon:hover {
  transform: translateY(-3px) scale(1.08);
}

.pw-social-icon.pw-social-ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(214, 36, 159, 0.45);
}

.pw-social-icon.pw-social-fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.45);
}

.pw-social-icon.pw-social-wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   MOBILE OFFCANVAS DRAWER & INTERACTION
   ========================================================================== */
.pw-mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.pw-mobile-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.pw-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #FFFFFF;
  z-index: 2501;
  box-shadow: 5px 0 35px rgba(0, 0, 0, 0.25);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.pw-mobile-drawer.active {
  transform: translateX(0);
}

.pw-mobile-drawer-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--apc-border);
  background: #FFF;
}

.pw-mobile-drawer-close {
  background: none;
  border: 1px solid var(--apc-border);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--apc-charcoal);
  cursor: pointer;
  line-height: 1;
}

.pw-mobile-drawer-content {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.pw-mobile-promo-banner {
  background: var(--apc-pink-gradient);
  color: #FFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  text-align: center;
}

.pw-mobile-nav {
  padding: 16px 20px;
  flex: 1;
}

.pw-mobile-nav-group-title {
  font-family: var(--apc-font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--apc-gold);
  margin: 16px 0 8px;
}

.pw-mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pw-mobile-menu-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pw-mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--apc-charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.pw-mobile-nav-link:hover,
.pw-mobile-nav-link.active {
  color: var(--apc-pink);
}

.pw-mobile-drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--apc-border);
  background: var(--apc-cream);
}

.pw-mobile-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #FFF !important;
  text-decoration: none;
  padding: 11px 16px;
  border-radius: var(--apc-radius-sm);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.pw-mobile-contact-line {
  font-size: 11px;
  color: var(--apc-gray);
  text-align: center;
  margin-top: 10px;
}

/* ==========================================================================
   MOBILE STICKY BOTTOM BAR (App-like UX)
   ========================================================================== */
.pw-mobile-bottom-bar {
  display: none;
}

/* ==========================================================================
   SUPPRESS ALL WOODMART DEMO BRANDS & PREFOOTER CONTENT
   ========================================================================== */
.wd-prefooter,
.woodmart-prefooter,
.footer-container,
.wd-footer,
.woodmart-footer,
.copyrights-wrapper,
.wd-brands,
.woodmart-woocommerce-brands,
.main-footer,
.footer-sidebar {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================================================== */
@media (max-width: 768px) {
  body {
    padding-bottom: 64px !important;
  }
  
  .pw-whatsapp-float {
    bottom: 80px !important;
    right: 18px !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 26px !important;
  }

  .pw-mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
    z-index: 1999;
    align-items: center;
    justify-content: space-around;
    padding: 0 10px;
  }

  .pw-mobile-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--apc-gray);
    text-decoration: none;
    cursor: pointer;
    padding: 4px 0;
    transition: all 0.2s ease;
  }

  .pw-mobile-bar-item:hover,
  .pw-mobile-bar-item.active {
    color: var(--apc-pink);
  }

  .pw-mobile-bar-icon {
    font-size: 19px;
    line-height: 1;
    position: relative;
    display: inline-block;
  }

  .pw-bar-cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--apc-pink);
    color: #FFF;
    font-size: 10px;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pw-mobile-bar-label {
    font-size: 10.5px;
    font-weight: 600;
    margin-top: 3px;
    letter-spacing: 0.02em;
  }

  .pw-container {
    padding: 0 16px;
  }

  .pw-header-inner {
    height: 64px;
  }

  .pw-brand-logo img {
    height: 38px;
  }

  .pw-hero-slider {
    min-height: auto;
  }

  .pw-slide {
    min-height: 220px;
  }

  .pw-slide img {
    height: auto;
    min-height: 200px;
    max-height: 480px;
    object-fit: cover;
  }

  .pw-slider-arrow {
    display: none;
  }

  .pw-categories-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding: 4px 16px 14px;
    margin: 0 -16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pw-categories-grid::-webkit-scrollbar {
    display: none;
  }

  .pw-cat-card {
    min-width: 82px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .pw-cat-circle {
    width: 82px;
    height: 82px;
    border-width: 2px;
  }

  .pw-cat-title {
    font-size: 11.5px;
  }

  /* 2-Column Product Grid on Mobile like Luxury Apps */
  .pw-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .pw-prod-card {
    border-radius: var(--apc-radius-sm);
  }

  .pw-prod-img {
    aspect-ratio: 3/4;
  }

  .pw-prod-info {
    padding: 10px 8px;
  }

  .pw-prod-category {
    font-size: 9.5px;
  }

  .pw-prod-title {
    font-size: 12.5px !important;
    line-height: 1.35;
    min-height: 34px !important;
    margin-bottom: 6px;
  }

  .pw-price-current {
    font-size: 15px !important;
  }

  .pw-price-regular {
    font-size: 11px !important;
  }

  .pw-price-save {
    font-size: 9.5px !important;
    padding: 1px 4px !important;
  }

  .pw-prod-sizes {
    gap: 4px !important;
    margin: 6px 0 !important;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .pw-prod-sizes::-webkit-scrollbar {
    display: none;
  }

  .pw-size-chip {
    font-size: 9.5px !important;
    padding: 3px 6px !important;
  }

  .pw-add-btn {
    padding: 9px 10px !important;
    font-size: 11.5px !important;
  }

  .pw-badge-top {
    font-size: 9.5px !important;
    padding: 3px 6px !important;
  }

  /* Celebrity Section Mobile */
  .pw-celeb-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .pw-celeb-card {
    height: 240px !important;
  }

  .pw-celeb-name {
    font-size: 15px !important;
  }

  .pw-celeb-info {
    padding: 14px 10px !important;
  }

  .pw-celeb-btn {
    padding: 6px 12px !important;
    font-size: 10.5px !important;
  }

  /* Story Section Mobile */
  .pw-story-inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .pw-story-text h3 {
    font-size: 24px !important;
  }

  /* Reviews Track Mobile */
  .pw-reviews-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 6px 16px 16px;
    margin: 0 -16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .pw-reviews-track::-webkit-scrollbar {
    display: none;
  }

  .pw-review-card {
    min-width: 82% !important;
    scroll-snap-align: center;
  }

  /* Club Newsletter Box Mobile */
  .pw-club-box {
    padding: 30px 18px !important;
  }

  .pw-club-box h3 {
    font-size: 26px !important;
  }

  .pw-club-form {
    flex-direction: column !important;
    border-radius: var(--apc-radius-sm) !important;
    box-shadow: none !important;
  }

  .pw-club-form input {
    width: 100% !important;
    border-radius: var(--apc-radius-sm) !important;
    border: 1px solid var(--apc-border) !important;
    margin-bottom: 8px;
    padding: 12px 14px !important;
  }

  .pw-club-form button {
    width: 100% !important;
    border-radius: var(--apc-radius-sm) !important;
    padding: 12px !important;
  }

  /* Footer Mobile */
  .pw-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  .pw-footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 14px !important;
  }

  .pw-footer-copy-wrap {
    justify-content: center !important;
    text-align: center !important;
  }

  .pw-payment-badges {
    justify-content: center !important;
  }
}

/* ==========================================================================
   POLICY & CONTENT PAGES STYLING (Shipping, Returns, Privacy, Terms, Contact)
   ========================================================================== */
.apc-policy-page {
  background: #FAFAF7;
  min-height: 80vh;
  padding: 40px 0 80px;
}

.apc-policy-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.apc-policy-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--apc-pink);
  margin-bottom: 8px;
}

.apc-policy-title {
  font-family: var(--apc-font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--apc-charcoal);
  margin: 0 0 14px;
}

.apc-policy-desc {
  font-size: 15px;
  color: var(--apc-gray);
  line-height: 1.6;
}

.apc-policy-card {
  max-width: 880px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: var(--apc-radius-md);
  padding: 46px 52px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--apc-border);
  line-height: 1.8;
  color: #333333;
}

.apc-policy-card h2,
.apc-policy-card h3 {
  font-family: var(--apc-font-display);
  color: var(--apc-charcoal);
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 700;
}

.apc-policy-card h2:first-child {
  margin-top: 0;
}

.apc-policy-card p,
.apc-policy-card li {
  font-size: 14.5px;
  color: #555555;
}

.apc-policy-card ul {
  padding-left: 20px;
  margin: 14px 0;
}

.apc-policy-card li {
  margin-bottom: 8px;
}

.apc-policy-highlight {
  background: #FDF4F6;
  border-left: 4px solid var(--apc-pink);
  padding: 16px 20px;
  border-radius: 0 var(--apc-radius-sm) var(--apc-radius-sm) 0;
  margin: 24px 0;
  font-size: 14px;
  color: var(--apc-charcoal);
}

@media (max-width: 768px) {
  .apc-policy-card {
    padding: 26px 20px;
    border-radius: var(--apc-radius-sm);
  }
  .apc-policy-title {
    font-size: 28px;
  }
}

/* ==========================================================================
   UNIFIED ART OF PINK CITY 3-COLUMN HEADER & FOOTER SYSTEM
   ========================================================================== */

/* Reset any WoodMart wrapper top offsets / white space */
html, body, .website-wrapper,
.header-banner-enabled .website-wrapper,
.header-banner-display .website-wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
  --wd-header-banner-mt: 0px !important;
  --wd-header-banner-h: 0px !important;
}

/* ==========================================================================
   0. TOP ROYAL OFFER BANNER & WOODMART BANNER SUPPRESSION
   ========================================================================== */
/* Suppress WoodMart's unstyled default header banner to prevent plain white block */
.header-banner,
.header-banner-link,
.header-banner-container,
.close-header-banner,
body.header-banner-enabled .header-banner,
.woodmart-header-banner {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

.apc-top-banner {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: #700B33 !important;
  background-color: #700B33 !important;
  color: #FFFFFF !important;
  text-align: center;
  padding: 8px 16px;
  position: relative;
  z-index: 1003;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
  line-height: 1.3;
}

.apc-top-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1440px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.apc-banner-tag {
  background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #C59B27 100%);
  color: #2A0410;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.apc-banner-text {
  font-family: 'Assistant', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #FFFFFF;
}

.apc-banner-code {
  background: rgba(255, 255, 255, 0.16);
  border: 1px dashed rgba(255, 255, 255, 0.5);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #FFE8B8;
  font-family: 'Montserrat', sans-serif;
}

.apc-banner-code strong {
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.apc-banner-sparkle {
  font-size: 13px;
  line-height: 1;
}

.apc-banner-script {
  font-family: var(--apc-font-script), 'Playfair Display', cursive, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 1. TOP ANNOUNCEMENT BAR */
.apc-top-bar {
  background: #981A4C;
  color: #FFFFFF;
  padding: 9px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  z-index: 1002;
  white-space: nowrap;
}

.apc-top-bar-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}


.apc-ticker-wrap {
  display: flex;
  overflow: hidden;
}

.apc-ticker-content {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: apcTickerScroll 35s linear infinite;
}

.apc-ticker-content:hover {
  animation-play-state: paused;
}

.apc-code-pill {
  background: rgba(255, 255, 255, 0.22);
  border: 1px dashed rgba(255, 255, 255, 0.85);
  padding: 2px 9px;
  border-radius: 20px;
  margin: 0 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.apc-ticker-sep {
  color: #D4AF37;
  margin: 0 16px;
  font-size: 13px;
}

/* HIDE WOODMART DEMO HEADER BANNER GLOBALLY */
.header-banner,
.woodmart-header-banner,
.whb-top-bar,
.whb-header {
  display: none !important;
}

/* 2. MAIN BALANCED LUXURY HEADER (Logo Left, Centered Clean Nav, Right Utilities) */
.apc-main-header {
  background: #FFFFFF;
  border-bottom: 1px solid #ECECEC;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.apc-header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.apc-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  position: relative;
  gap: 24px;
}

/* COLUMN 1: BRAND LOGO (Left) */
.apc-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.apc-brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.apc-logo-img {
  height: 72px;
  max-height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.apc-brand-logo:hover .apc-logo-img {
  transform: scale(1.03);
}

/* Mobile Toggle - Strictly Hidden on Desktop */
.apc-mobile-toggle {
  display: none !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  color: #222222 !important;
  cursor: pointer;
  outline: none;
  line-height: 1;
}

/* COLUMN 2: CENTER NAVIGATION (Single-line, Title Case, No Wrapping) */
.apc-header-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.apc-nav-list {
  display: flex;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap !important;
}

.apc-nav-item {
  position: relative;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  display: flex;
  align-items: center;
}

.apc-nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #222222;
  text-decoration: none;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  white-space: nowrap !important;
  line-height: 1;
  transition: color 0.2s ease;
}

.apc-nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #981A4C;
  transition: width 0.25s ease;
}

.apc-nav-link:hover::after,
.apc-nav-link.active::after {
  width: 100%;
}

.apc-nav-link:hover,
.apc-nav-link.active {
  color: #981A4C;
}

.apc-arrow-down {
  transition: transform 0.2s ease;
}

.apc-has-dropdown:hover .apc-arrow-down {
  transform: rotate(180deg);
}

.apc-badge {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}

.apc-badge-hot {
  background: #C81E56;
  color: #FFFFFF;
}

.apc-badge-new {
  background: #981A4C;
  color: #FFFFFF;
}

.apc-badge-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #AA771C 100%);
  color: #FFFFFF;
}

/* DROPDOWN MENU */
.apc-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 480px;
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
}

.apc-has-dropdown:hover .apc-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.apc-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.apc-dropdown-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: #981A4C;
  margin-bottom: 12px;
  display: block;
  border-bottom: 1px solid #F0F0F0;
  padding-bottom: 6px;
}

.apc-dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apc-dropdown-col a {
  font-size: 13px;
  color: #444444;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.apc-dropdown-col a:hover {
  color: #981A4C;
  transform: translateX(4px);
}

/* COLUMN 3: RIGHT UTILITIES */
.apc-header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  white-space: nowrap !important;
}

.apc-account-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #222222;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.apc-account-btn:hover {
  color: #981A4C;
}

.apc-account-icon {
  display: none;
}

.apc-util-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #222222;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

.apc-util-btn:hover {
  color: #981A4C;
  transform: translateY(-1px);
}

.apc-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #222222;
  transition: color 0.2s ease;
}

.apc-cart-btn:hover {
  color: #981A4C;
}

.apc-cart-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.apc-cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  background: #C81E56;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  min-width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.apc-cart-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #222222;
}

/* 3. SLIDE-DOWN SEARCH MODAL OVERLAY */
.apc-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.apc-search-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.apc-search-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.apc-search-modal-inner {
  position: relative;
  background: #FFFFFF;
  padding: 36px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 860px;
  margin: 60px auto 0;
  width: 90%;
  border-radius: 12px;
}

.apc-search-modal.active .apc-search-modal-inner {
  transform: translateY(0);
}

.apc-search-box-wrap {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #981A4C;
  padding-bottom: 12px;
  gap: 14px;
}

.apc-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  font-family: inherit;
  color: #222;
  background: transparent;
}

.apc-search-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #888;
  padding: 4px;
  transition: color 0.2s;
}

.apc-search-close:hover {
  color: #C81E56;
}

.apc-search-quick-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.apc-tag-label {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
}

.apc-quick-tag {
  font-size: 12px;
  background: #F4F4F0;
  color: #333;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
}

.apc-quick-tag:hover {
  background: #981A4C;
  color: #FFF;
}

/* 4. MOBILE DRAWER */
.apc-mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.apc-mobile-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.apc-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background: #FFFFFF;
  z-index: 2002;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.apc-mobile-drawer.active {
  transform: translateX(0);
}

.apc-mobile-drawer-header {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ECECEC;
}

.apc-mobile-close {
  background: none;
  border: none;
  font-size: 22px;
  color: #555;
  cursor: pointer;
}

.apc-mobile-drawer-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.apc-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.apc-mobile-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  color: #222;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.apc-mobile-submenu {
  list-style: none;
  margin: 10px 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 2px solid #F0F0F0;
  padding-left: 14px;
}

.apc-mobile-submenu a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
}

.apc-mobile-actions {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ECECEC;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.apc-mobile-wa-btn {
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}

.apc-mobile-meta-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12.5px;
}

.apc-mobile-meta-links a {
  color: #666;
  text-decoration: none;
}

/* 5. UNIFIED LUXURY FOOTER */
.apc-unified-footer {
  background: #111111;
  color: #CCCCCC;
  font-family: 'Montserrat', sans-serif;
  padding-top: 70px;
  position: relative;
  border-top: 1px solid #222222;
}

.apc-footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

.apc-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid #242424;
}

.apc-footer-logo-wrap {
  display: inline-block;
  background: #FFFFFF;
  padding: 8px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.apc-footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.apc-footer-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: #AAAAAA;
  margin-bottom: 24px;
}

.apc-footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.apc-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222222;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.apc-social-ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(214, 36, 159, 0.4);
}

.apc-social-fb:hover {
  background: #1877F2;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.apc-social-wa:hover {
  background: #25D366;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.apc-footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 22px 0;
  letter-spacing: 0.04em;
  position: relative;
}

.apc-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.apc-footer-links a {
  font-size: 13.5px;
  color: #AAAAAA;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.apc-footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.apc-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13.5px;
  color: #AAAAAA;
}

.apc-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.apc-contact-icon {
  font-size: 16px;
  line-height: 1;
}

.apc-footer-contact a {
  color: #AAAAAA;
  text-decoration: none;
  transition: color 0.2s ease;
}

.apc-footer-contact a:hover {
  color: #FFFFFF;
}

.apc-footer-bottom {
  padding: 24px 0;
}

.apc-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.apc-copyright-text {
  font-size: 13px;
  color: #888888;
  margin: 0;
}

.apc-cognify-link {
  color: #D4AF37 !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.apc-cognify-link:hover {
  color: #F3E5AB !important;
  text-decoration: underline;
}

/* Payment Badges */
.apc-payment-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.apc-pay-badge {
  background: #FFFFFF;
  color: #111111;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1280px) {
  .apc-header-row { gap: 16px; height: 90px; }
  .apc-logo-img { height: 64px; max-height: 64px; }
  .apc-nav-list { gap: 18px !important; flex-wrap: nowrap !important; }
  .apc-nav-link { font-size: 13.5px; }
  .apc-header-right { gap: 14px; }
}

@media (max-width: 1140px) {
  .apc-header-row { gap: 12px; height: 86px; }
  .apc-logo-img { height: 58px; max-height: 58px; }
  .apc-nav-list { gap: 14px !important; flex-wrap: nowrap !important; }
  .apc-nav-link { font-size: 13px; }
  .apc-header-right { gap: 10px; }
}

@media (max-width: 1024px) {
  .apc-header-nav { display: none !important; }
  .apc-mobile-toggle { 
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .apc-account-text { display: none; }
  .apc-account-icon { display: block; }
  .apc-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .apc-header-row { height: 72px; gap: 10px; }
  .apc-logo-img { height: 46px; max-height: 46px; }
  .apc-header-center { padding: 0 8px; }
  .apc-header-right { gap: 12px; }
  .apc-cart-amount { display: none; }

  /* Mobile Hero Slider */
  .pw-hero-slider {
    min-height: auto !important;
    padding: 0 !important;
    margin-bottom: 20px;
  }
  .pw-slide img {
    width: 100% !important;
    height: auto !important;
    max-height: 250px !important;
    min-height: 180px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 0 !important;
  }

  /* Mobile Product Grid - 2 columns */
  .pw-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 8px !important;
  }
  .pw-prod-thumb img {
    height: 220px !important;
    object-fit: cover !important;
  }
  .pw-prod-title {
    font-size: 13px !important;
    line-height: 1.3 !important;
  }
  .pw-price-current {
    font-size: 14.5px !important;
  }

  /* Mobile Top Royal Banner */
  .apc-top-banner {
    padding: 7px 10px !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
  }
  .apc-top-banner-inner {
    gap: 6px !important;
    justify-content: center !important;
  }
  .apc-banner-tag {
    font-size: 8.5px !important;
    padding: 2px 6px !important;
    letter-spacing: 0.08em !important;
  }
  .apc-banner-text {
    font-size: 11.5px !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }
  .apc-banner-code {
    font-size: 9.5px !important;
    padding: 1px 6px !important;
  }
  .apc-banner-sparkle {
    font-size: 10.5px !important;
  }

  /* Mobile Categories (Exactly 3 items visible side-by-side with smooth auto-slide carousel) */
  .pw-categories-wrapper {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  .pw-categories-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    gap: 10px !important;
    padding: 10px 4px 14px !important;
    margin: 0 !important;
    scroll-behavior: smooth;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .pw-categories-grid::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
  .pw-cat-card {
    flex: 0 0 calc((100% - 20px) / 3) !important;
    width: calc((100% - 20px) / 3) !important;
    max-width: calc((100% - 20px) / 3) !important;
    min-width: 0 !important;
    height: auto !important;
    scroll-snap-align: start;
    box-sizing: border-box !important;
    text-decoration: none !important;
  }
  .pw-cat-circle {
    width: 76px !important;
    height: 76px !important;
    margin: 0 auto 8px !important;
    padding: 3px !important;
  }
  .pw-cat-title {
    font-size: 11px !important;
    line-height: 1.25 !important;
    font-weight: 600 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 28px;
    text-align: center;
  }
  .pw-cat-dots {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }

  /* Mobile Footer */
  .apc-footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .apc-footer-bottom-inner { flex-direction: column !important; text-align: center !important; }
  .apc-payment-badges { justify-content: center !important; }
}




