/* ==========================================================================
   LIFE'S A BEACH BOUTIQUE - DESIGN SYSTEM & HOMEPAGE STYLES
   Inspired by Princess Polly layout with custom boutique branding
   ========================================================================== */

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

:root {
  --pp-font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --pp-font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --pp-black: #000000;
  --pp-dark: #1a1a1a;
  --pp-white: #ffffff;
  --pp-gray-50: #fafafa;
  --pp-gray-100: #f5f5f5;
  --pp-gray-200: #eeeeee;
  --pp-gray-300: #e0e0e0;
  --pp-gray-500: #888888;
  --pp-gray-700: #444444;
  --pp-gray-900: #1a1a1a;
  --pp-red: #d32f2f;
  --pp-gold: #c5a059;
  --pp-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --pp-container-max: 1520px;
}

/* Reset & Base Scoping */
.pp-site {
  font-family: var(--pp-font-main);
  color: var(--pp-black);
  background-color: var(--pp-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pp-site *,
.pp-site *::before,
.pp-site *::after {
  box-sizing: border-box;
}

.pp-site a {
  color: inherit;
  text-decoration: none;
  transition: var(--pp-transition);
}

.pp-site button {
  font-family: var(--pp-font-main);
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

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

.pp-container {
  width: 100%;
  max-width: var(--pp-container-max);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .pp-container {
    padding: 0 32px;
  }
}

/* --------------------------------------------------------------------------
   1. ANNOUNCEMENT BAR (Marquee / Ticker)
   -------------------------------------------------------------------------- */
.pp-announcement-bar {
  background-color: var(--pp-black);
  color: var(--pp-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  height: 36px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  position: relative;
  z-index: 100;
  padding: 0 16px;
  width: 100% !important;
  box-sizing: border-box !important;
}

.pp-announcement-static-text {
  display: block !important;
  text-align: center !important;
  margin: 0 auto !important;
  width: 100% !important;
  letter-spacing: 1.5px;
  color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   2. MAIN HEADER & STREAMLINED NAVIGATION
   -------------------------------------------------------------------------- */
.pp-header {
  position: sticky;
  top: 0;
  background: var(--pp-white);
  z-index: 999;
  border-bottom: 1px solid var(--pp-gray-200);
  transition: box-shadow 0.3s ease;
}

.pp-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pp-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  padding: 0 20px;
  max-width: var(--pp-container-max);
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .pp-header-main {
    height: 76px;
    padding: 0 32px;
  }
}

.pp-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.pp-mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
}

.pp-mobile-menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--pp-black);
  transition: var(--pp-transition);
}

@media (min-width: 1024px) {
  .pp-mobile-menu-btn {
    display: none;
  }
}

.pp-region-select {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--pp-black);
}

.pp-region-select img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .pp-region-select {
    display: flex;
  }
}

.pp-search-form,
.pp-search-trigger {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--pp-gray-100);
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  color: var(--pp-gray-500);
  width: 220px;
  transition: var(--pp-transition);
}

.pp-search-form:focus-within {
  background: var(--pp-white);
  border-color: var(--pp-gray-300);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pp-search-form input[type="text"] {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--pp-font-main);
  font-size: 12px;
  color: var(--pp-black);
  width: 100%;
  padding: 4px 0;
}

.pp-search-form input[type="text"]::placeholder {
  color: var(--pp-gray-500);
  font-size: 12px;
}

.pp-search-form button {
  border: none;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-gray-500);
  cursor: pointer;
  transition: color 0.2s ease;
}

.pp-search-form button:hover {
  color: var(--pp-black);
}

@media (min-width: 900px) {
  .pp-search-form {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   SEARCH MODAL OVERLAY & POPUP (Interactive Modern Search)
   -------------------------------------------------------------------------- */
.pp-search-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.pp-search-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.pp-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 10001;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 35px 24px 40px 24px;
  box-sizing: border-box;
}

.pp-search-modal.is-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.pp-search-modal-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.pp-search-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pp-search-modal-form {
  flex: 1;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #000000;
  padding-bottom: 10px;
  gap: 12px;
}

.pp-search-modal-icon {
  flex-shrink: 0;
  color: #333333;
}

.pp-search-modal-input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: var(--pp-font-main) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #000000 !important;
  padding: 6px 0 !important;
}

.pp-search-modal-input::placeholder {
  color: #888888;
  font-size: 16px;
  font-weight: 400;
}

.pp-search-modal-submit {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 10px 24px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.pp-search-modal-submit:hover {
  background-color: #333333 !important;
}

.pp-search-modal-close {
  background: transparent !important;
  border: none !important;
  font-size: 32px;
  line-height: 1;
  color: #333333;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease;
}

.pp-search-modal-close:hover {
  color: #000000;
}

.pp-search-modal-suggestions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pp-search-suggest-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #888888;
  text-transform: uppercase;
  margin-right: 6px;
}

.pp-search-suggest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pp-search-suggest-tags a {
  display: inline-block;
  padding: 6px 14px;
  background: #f4f4f4;
  color: #222222 !important;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.pp-search-suggest-tags a:hover {
  background: #000000;
  color: #ffffff !important;
}

.pp-header-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1.5;
  text-align: center;
}

/* Brand Name in Header (Luxury Serif) */
.pp-brand-logo-text {
  font-family: var(--pp-font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pp-black);
  white-space: nowrap;
  transition: var(--pp-transition);
}

@media (min-width: 768px) {
  .pp-brand-logo-text {
    font-size: 24px;
    letter-spacing: 2.5px;
  }
}

.pp-brand-logo-text:hover {
  opacity: 0.8;
}

.pp-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 1;
}

@media (min-width: 1024px) {
  .pp-header-right {
    gap: 22px;
  }
}

.pp-header-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--pp-black);
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease;
}

.pp-header-action-btn:hover {
  transform: scale(1.08);
}

.pp-badge-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--pp-black);
  color: var(--pp-white);
  font-size: 9px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Clean Desktop Navigation Bar */
.pp-header-nav-bar {
  display: none;
  border-top: 1px solid var(--pp-gray-100);
  background: var(--pp-white);
}

@media (min-width: 1024px) {
  .pp-header-nav-bar {
    display: block;
  }
}

.pp-main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 46px;
}

.pp-nav-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--pp-black);
  position: relative;
  padding: 8px 0;
}

.pp-nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--pp-black);
  transition: width 0.2s ease;
}

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

.pp-nav-link.highlight-red {
  color: var(--pp-red);
}

.pp-nav-link.highlight-red::after {
  background-color: var(--pp-red);
}

/* --------------------------------------------------------------------------
   3. HERO BANNER
   -------------------------------------------------------------------------- */
.pp-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f2f2f2;
}

.pp-hero-link {
  display: block;
  position: relative;
  width: 100%;
}

.pp-hero picture {
  display: block;
  width: 100%;
}

.pp-hero-img,
.pp-hero-img-desktop,
.pp-hero-img-mobile,
.pp-hero picture img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: cover;
}

.pp-hero-overlay {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .pp-hero-overlay {
    bottom: 55px;
  }
}

.pp-hero-headline {
  color: var(--pp-white);
  font-family: var(--pp-font-serif);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
  .pp-hero-headline {
    font-size: 52px;
    letter-spacing: 4px;
  }
}

.pp-hero-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: var(--pp-transition);
  min-width: 160px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.pp-btn-solid,
a.pp-btn-solid,
.pp-view-all-btn,
a.pp-view-all-btn,
.pp-site a.pp-btn-solid,
.pp-site .pp-btn-solid {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 2px solid #000000 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.pp-btn-solid:hover,
a.pp-btn-solid:hover,
.pp-view-all-btn:hover,
a.pp-view-all-btn:hover,
.pp-site a.pp-btn-solid:hover,
.pp-site .pp-btn-solid:hover {
  background-color: #333333 !important;
  color: #ffffff !important;
  border-color: #333333 !important;
  text-decoration: none !important;
  opacity: 1 !important;
}

.pp-btn-white {
  background-color: var(--pp-white);
  color: var(--pp-black);
  border: 2px solid var(--pp-white);
}

.pp-btn-white:hover {
  background-color: transparent;
  color: var(--pp-white);
}

/* --------------------------------------------------------------------------
   4. PERKS VALUE PROPOSITION BAR
   -------------------------------------------------------------------------- */
.pp-perks-bar {
  background-color: var(--pp-gray-50);
  border-top: 1px solid var(--pp-gray-200);
  border-bottom: 1px solid var(--pp-gray-200);
  padding: 18px 0;
}

.pp-perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
}

@media (min-width: 1024px) {
  .pp-perks-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.pp-perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pp-perk-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-black);
}

.pp-perk-content {
  display: flex;
  flex-direction: column;
}

.pp-perk-title {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--pp-black);
  line-height: 1.2;
}

.pp-perk-desc {
  font-size: 11px;
  color: var(--pp-gray-700);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   5. PRODUCT SHOWCASE ("OUR FAVES")
   -------------------------------------------------------------------------- */
.pp-section-products {
  padding: 50px 0 60px 0;
}

@media (min-width: 1024px) {
  .pp-section-products {
    padding: 70px 0 80px 0;
  }
}

.pp-section-header {
  text-align: center;
  margin-bottom: 30px;
}

.pp-section-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pp-black);
  margin: 0 0 10px 0;
}

@media (min-width: 768px) {
  .pp-section-title {
    font-size: 32px;
    letter-spacing: 2.5px;
  }
}

.pp-section-subtitle {
  font-size: 13px;
  color: var(--pp-gray-700);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

/* Tabs */
.pp-product-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .pp-product-tabs {
    gap: 32px;
  }
}

.pp-tab-btn {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pp-gray-500);
  padding: 6px 2px;
  position: relative;
  transition: var(--pp-transition);
}

.pp-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pp-black);
  transition: width 0.25s ease;
}

.pp-tab-btn:hover {
  color: var(--pp-black);
}

.pp-tab-btn.is-active {
  color: var(--pp-black);
}

.pp-tab-btn.is-active::after {
  width: 100%;
}

/* Product Grid */
.pp-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 12px;
}

@media (min-width: 768px) {
  .pp-product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
}

@media (min-width: 1024px) {
  .pp-product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 24px;
  }
}

/* Product Card */
.pp-product-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.pp-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #f7f7f7;
  margin-bottom: 12px;
}

.pp-card-img-primary,
.pp-card-img-hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.35s ease, transform 0.5s ease;
}

.pp-card-img-hover {
  opacity: 0;
}

.pp-product-card:hover .pp-card-img-hover {
  opacity: 1;
}

.pp-product-card:hover .pp-card-img-primary {
  opacity: 0;
}

.pp-product-card:hover .pp-card-media img {
  transform: scale(1.03);
}

/* Badges */
.pp-badge-list {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 5;
  pointer-events: none;
}

.pp-badge {
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
}

.pp-badge-trending {
  background-color: var(--pp-black);
  color: var(--pp-white);
}

.pp-badge-sale {
  background-color: var(--pp-red);
  color: var(--pp-white);
}

.pp-badge-new {
  background-color: var(--pp-white);
  color: var(--pp-black);
  border: 1px solid var(--pp-black);
}

/* Wishlist Button */
.pp-wishlist-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-black);
  z-index: 6;
  transition: var(--pp-transition);
}

.pp-wishlist-toggle:hover {
  background: var(--pp-white);
  transform: scale(1.1);
  color: var(--pp-red);
}

/* Direct Product Link Card Media */
.pp-card-media-link {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer !important;
}

/* Disable Quick Add Overlay Drawer completely */
.pp-quick-add-wrap,
.pp-site .wd-add-btn,
.pp-site .woodmart-add-btn,
.pp-site .quick-shop-btn,
.pp-site .woodmart-quick-view,
.pp-site .wd-quick-view-btn {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Card Info */
.pp-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pp-card-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--pp-black);
  line-height: 1.35;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pp-card-title:hover {
  text-decoration: underline;
}

.pp-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
}

.pp-current-price {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--pp-black);
}

.pp-current-price.is-sale {
  color: var(--pp-red);
}

.pp-original-price {
  font-size: 12px;
  color: var(--pp-gray-500);
  text-decoration: line-through;
}

.pp-card-swatches {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.pp-swatch-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------------------------------------
   6. 2X2 CATEGORIES GRID
   -------------------------------------------------------------------------- */
.pp-section-2x2-categories {
  padding: 20px 0 60px 0;
}

.pp-category-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 1024px) {
  .pp-category-grid-2x2 {
    gap: 20px;
  }
}

.pp-category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: #eee;
  display: block;
}

.pp-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.pp-category-card:hover img {
  transform: scale(1.05);
}

.pp-category-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.pp-category-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pp-category-card-title {
  font-family: var(--pp-font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pp-white);
  margin: 0;
  position: relative;
}

@media (min-width: 768px) {
  .pp-category-card-title {
    font-size: 28px;
  }
}

.pp-category-card-title::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--pp-white);
  transition: width 0.3s ease;
  margin-top: 4px;
}

.pp-category-card:hover .pp-category-card-title::after {
  width: 100%;
}

/* --------------------------------------------------------------------------
   7. MID-PAGE CAMPAIGN STRIP BANNER
   -------------------------------------------------------------------------- */
.pp-strip-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 20px 0 60px 0;
}

.pp-strip-img-desktop {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
}

.pp-strip-content {
  position: absolute;
  top: 50%;
  left: 6%;
  right: auto;
  transform: translateY(-50%);
  max-width: 460px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  text-align: left;
}

@media (max-width: 767px) {
  .pp-strip-content {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    max-width: 100%;
    background: var(--pp-white);
    padding: 24px 16px;
    text-align: center;
  }
}

.pp-strip-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--pp-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pp-strip-title {
  font-family: var(--pp-font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pp-black);
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.pp-strip-desc {
  font-size: 13px;
  color: var(--pp-gray-700);
  margin: 0 0 18px 0;
  line-height: 1.5;
}



/* --------------------------------------------------------------------------
   9. ABOUT SECTION
   -------------------------------------------------------------------------- */
.pp-section-about {
  padding: 60px 0 80px 0;
  background: var(--pp-gray-50);
  border-top: 1px solid var(--pp-gray-200);
  text-align: center;
}

.pp-about-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.pp-about-title {
  font-family: var(--pp-font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pp-black);
  margin: 0 0 16px 0;
}

.pp-about-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pp-gray-700);
  margin: 0 0 24px 0;
}

.pp-about-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--pp-black);
  border-bottom: 2px solid var(--pp-black);
  padding-bottom: 2px;
}

.pp-about-link:hover {
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   10. SIMPLE & CLEAN FOOTER (LIGHT / WHITE THEME)
   -------------------------------------------------------------------------- */
.pp-footer-simple {
  background-color: #ffffff !important;
  color: #222222 !important;
  border-top: 1px solid #e5e5e5;
  padding: 60px 0 25px 0;
  font-size: 13px;
}

.pp-footer-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .pp-footer-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media (min-width: 1024px) {
  .pp-footer-grid-4 {
    grid-template-columns: 1.2fr 0.8fr 0.9fr 1.3fr;
    gap: 40px;
  }
}

/* Col 1 */
.pp-footer-brand-title {
  font-family: var(--pp-font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111111 !important;
  margin: 0 0 14px 0;
}

.pp-footer-brand-desc {
  font-size: 13px;
  color: #666666 !important;
  line-height: 1.65;
  margin: 0;
  max-width: 320px;
}

/* Col 2 & 3: Headings and Link Lists */
.pp-footer-col-heading {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #111111 !important;
  margin: 0 0 18px 0;
}

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

.pp-footer-links-list li a {
  font-size: 13px;
  color: #555555 !important;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.pp-footer-links-list li a:hover {
  color: #000000 !important;
  transform: translateX(3px);
}

/* Col 4: Location Info */
.pp-location-info {
  font-size: 12.5px;
  color: #555555 !important;
  line-height: 1.6;
  margin-bottom: 18px;
}

.pp-location-info p {
  margin: 0 0 6px 0;
}

.pp-location-info b {
  color: #111111 !important;
}

.pp-location-info a {
  color: #111111 !important;
  text-decoration: underline;
}

.pp-location-info a:hover {
  color: #555555 !important;
}

/* Google Maps Preview Card */
.pp-maps-card {
  width: 100%;
  max-width: 290px;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e5e8;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pp-maps-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.pp-maps-link {
  display: block;
  text-decoration: none;
  color: #333333;
}

.pp-maps-header {
  padding: 8px 12px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
}

.pp-maps-btn {
  font-size: 11px;
  font-weight: 700;
  color: #1a73e8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pp-maps-body {
  padding: 14px 12px;
  background: #eef1f4;
  position: relative;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: 
    linear-gradient(#dde1e6 1px, transparent 1px),
    linear-gradient(90deg, #dde1e6 1px, transparent 1px);
  background-size: 20px 20px;
}

.pp-map-pin-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.pp-pin-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #c5221f;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pp-street-label {
  font-size: 10px;
  color: #666666;
  font-weight: 600;
  margin-left: 28px;
}

.pp-maps-footer {
  padding: 4px 10px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  color: #70757a;
}

.pp-google-logo {
  font-weight: 800;
  color: #4285f4;
  letter-spacing: 0.5px;
}

/* Footer Bottom Bar */
.pp-footer-bottom-bar {
  border-top: 1px solid #eeeeee !important;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .pp-footer-bottom-bar {
    flex-direction: row;
  }
}

.pp-copyright {
  font-size: 11px;
  color: #777777 !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

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

.pp-paypal-badge-img {
  display: block;
  height: 32px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease;
}

.pp-paypal-badge-img:hover {
  transform: scale(1.04);
}

/* --------------------------------------------------------------------------
   11. MOBILE DRAWER & TOAST NOTIFICATION
   -------------------------------------------------------------------------- */
.pp-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pp-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.pp-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--pp-white);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.pp-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--pp-gray-200);
}

.pp-drawer-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.pp-drawer-close {
  font-size: 24px;
  line-height: 1;
  color: var(--pp-black);
}

.pp-drawer-nav {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.pp-drawer-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--pp-black);
  border-bottom: 1px solid var(--pp-gray-100);
}

.pp-drawer-nav li a:hover {
  background: var(--pp-gray-50);
}

.pp-drawer-nav li a.highlight-red {
  color: var(--pp-red);
}

/* Toast alert for Ajax Add to Cart */
.pp-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--pp-black);
  color: var(--pp-white);
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pp-toast.is-active {
  transform: translateY(0);
  opacity: 1;
}

.pp-toast-icon {
  color: #4caf50;
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   GLOBAL SITE-WIDE STYLES & WOOCOMMERCE SYNCHRONIZATION
   -------------------------------------------------------------------------- */

/* Page Wrapper Normalization */
.pp-site .main-page-wrapper {
  margin-top: 0 !important;
  padding-top: 24px;
  padding-bottom: 60px;
  min-height: 60vh;
  background-color: var(--pp-white);
}

/* Standard informational & policy pages: Hide the redundant Woodmart black page-title banner */
.pp-site.page:not(.woocommerce-page) .page-title {
  display: none !important;
}

/* Page Titles & Breadcrumbs for Shop & Archives */
.pp-site .page-title,
.pp-site .page-title-default,
.pp-site .page-title.color-scheme-light {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
  padding: 24px 0 !important;
  background-color: var(--pp-gray-50) !important;
  background-image: none !important;
  border-bottom: 1px solid var(--pp-gray-200) !important;
  color: var(--pp-black) !important;
}

.pp-site .page-title .title,
.pp-site .page-title h1,
.pp-site .page-title .entry-title {
  font-family: var(--pp-font-serif) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: var(--pp-black) !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  line-height: 1.2 !important;
}

.pp-site .woocommerce-breadcrumb,
.pp-site .yoast-breadcrumb,
.pp-site .breadcrumbs {
  font-family: var(--pp-font-main) !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: var(--pp-gray-500) !important;
  margin-top: 6px !important;
}

.pp-site .woocommerce-breadcrumb a,
.pp-site .yoast-breadcrumb a,
.pp-site .breadcrumbs a {
  color: var(--pp-gray-700) !important;
}

.pp-site .woocommerce-breadcrumb a:hover,
.pp-site .breadcrumbs a:hover {
  color: var(--pp-black) !important;
}

/* Standard Content Pages (About Us, Policies, etc.) */
.pp-site .entry-content {
  font-family: var(--pp-font-main);
  color: var(--pp-gray-900);
  line-height: 1.75;
  font-size: 15px;
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 0 40px;
}

.pp-site .entry-content h1,
.pp-site .entry-content h2,
.pp-site .entry-content h3 {
  font-family: var(--pp-font-serif);
  color: var(--pp-black);
  margin-top: 28px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.pp-site .entry-content h2 {
  font-size: 22px;
  border-bottom: 1px solid var(--pp-gray-200);
  padding-bottom: 8px;
}

.pp-site .entry-content h3 {
  font-size: 18px;
}

.pp-site .entry-content p {
  margin-bottom: 16px;
}

.pp-site .entry-content ul,
.pp-site .entry-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.pp-site .entry-content li {
  margin-bottom: 8px;
}

/* WooCommerce Buttons & Controls */
body .single_add_to_cart_button,
body button.single_add_to_cart_button,
body .woocommerce div.product form.cart .button,
body .woocommerce div.product form.cart button.single_add_to_cart_button,
body .product-image-summary .single_add_to_cart_button,
body .summary-inner .single_add_to_cart_button,
body.single-product .single_add_to_cart_button,
body.single-product button.button.alt,
.pp-site .single_add_to_cart_button,
.pp-site .woocommerce #respond input#submit,
.pp-site .woocommerce a.button.alt,
.pp-site .woocommerce button.button.alt,
.pp-site .woocommerce input.button.alt,
.pp-site .woocommerce #payment #place_order {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  font-family: var(--pp-font-main) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  padding: 14px 32px !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #000000 !important;
  transition: all 0.25s ease !important;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: none !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

body .single_add_to_cart_button:hover,
body button.single_add_to_cart_button:hover,
body .woocommerce div.product form.cart .button:hover,
body .woocommerce div.product form.cart button.single_add_to_cart_button:hover,
body .product-image-summary .single_add_to_cart_button:hover,
body .summary-inner .single_add_to_cart_button:hover,
body.single-product .single_add_to_cart_button:hover,
body.single-product button.button.alt:hover,
.pp-site .single_add_to_cart_button:hover,
.pp-site .woocommerce a.button.alt:hover,
.pp-site .woocommerce button.button.alt:hover,
.pp-site .woocommerce #payment #place_order:hover {
  background-color: #333333 !important;
  color: #ffffff !important;
  border-color: #333333 !important;
  opacity: 1 !important;
}

/* Quantity input */
.pp-site .quantity .qty {
  border-radius: 4px !important;
  border: 1px solid var(--pp-gray-300) !important;
  font-family: var(--pp-font-main) !important;
  font-weight: 600 !important;
}

/* Hide conflicting Woodmart mobile sticky bottom toolbar */
.pp-site .woodmart-toolbar,
.pp-site .wd-toolbar {
  display: none !important;
}

/* Remove sidebars and widgets across pages */
.pp-site .sidebar-container,
.pp-site aside.sidebar-container,
.pp-site .widget-area,
.pp-site .sidebar-widget {
  display: none !important;
}

.pp-site.page .site-content {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}

/* --------------------------------------------------------------------------
   12. POLICY & INFORMATIONAL PAGES STYLES (MODEFLO INSPRIED)
   -------------------------------------------------------------------------- */
.pp-policy-container {
  max-width: 860px;
  margin: 20px auto 50px auto;
  padding: 0 20px;
  color: #222222;
  line-height: 1.8;
  font-family: var(--pp-font-main);
  box-sizing: border-box;
}

.pp-policy-main-title {
  font-family: var(--pp-font-serif);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  color: #111111;
  margin-top: 10px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .pp-policy-main-title {
    font-size: 38px;
    letter-spacing: 2.5px;
  }
}

.pp-policy-meta {
  text-align: center;
  color: #777777;
  font-size: 13px;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

.pp-policy-container h2 {
  font-family: var(--pp-font-serif);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111111;
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid #eeeeee;
}

.pp-policy-container h3 {
  font-family: var(--pp-font-serif);
  font-size: 17px;
  font-weight: 700;
  color: #222222;
  margin-top: 24px;
  margin-bottom: 10px;
}

.pp-policy-container p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #333333;
}

.pp-policy-container ul {
  margin-bottom: 22px;
  padding-left: 22px;
}

.pp-policy-container ul li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.7;
}

.pp-policy-container a {
  color: #000000;
  text-decoration: underline;
  font-weight: 600;
}

.pp-policy-container a:hover {
  color: #666666;
}

/* Common Contact Box */
.pp-policy-contact-box {
  background: #fbfbfb;
  border: 1px solid #e8e8e8;
  border-left: 4px solid #111111;
  padding: 24px 28px;
  border-radius: 4px;
  margin: 40px 0 20px 0;
}

.pp-contact-box-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #111111;
}

.pp-contact-details-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 14px 0 0 0 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-contact-details-list li {
  font-size: 14px;
  color: #444444;
  margin-bottom: 0 !important;
}

/* FAQ Accordion / Cards */
.pp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pp-faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  background: #ffffff;
  padding: 20px 24px;
  transition: box-shadow 0.2s ease;
}

.pp-faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pp-faq-question {
  margin: 0 0 10px 0;
  font-family: var(--pp-font-serif);
  font-size: 17px;
  font-weight: 700;
  color: #111111;
}

.pp-faq-answer p {
  margin-bottom: 10px;
  font-size: 14.5px;
  color: #444444;
  line-height: 1.7;
}

.pp-faq-answer ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.pp-faq-answer ul li {
  font-size: 14.5px;
  color: #444444;
  margin-bottom: 6px;
}

/* Track Order Widget */
.pp-track-widget {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pp-track-widget:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}


