/* CSS Design System for Flowers Garden Mobile Showcase Store */

/* ----------------------------------------------------
   1. VARIABLES & DESIGN TOKENS
   ---------------------------------------------------- */
:root {
  /* Brand Colors */
  --bg-warm-ivory: #FAF9F4;
  --bg-soft-card: #EFECE4;
  --color-plum-deep: #420C3B;
  --color-plum-dark: #2B0827;
  --color-plum-accent: #5A1A50;
  --border-warm: #DDD7C8;
  --text-main: #1E1B18;
  --text-secondary: #5F5A55;
  --mauve-detail: #A8939D;
  --status-olive: #8EA58C;
  
  /* Fonts */
  --font-heading: 'Cairo', sans-serif;
  --font-body: 'Tajawal', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-out;
}

/* ----------------------------------------------------
   2. BASE RESET & SCROLLBARS
   ---------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #E2DDD3; /* Outer mock background to highlight the phone container */
  color: var(--text-main);
  font-family: var(--font-body);
  direction: rtl;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

/* Custom Scrollbar for inner content */
.content-scrollable::-webkit-scrollbar {
  width: 4px;
}

.content-scrollable::-webkit-scrollbar-track {
  background: var(--bg-warm-ivory);
}

.content-scrollable::-webkit-scrollbar-thumb {
  background: var(--border-warm);
  border-radius: 10px;
}

/* ----------------------------------------------------
   3. MOBILE FRAME WRAPPER (PHONE MOCKUP EFFECT)
   ---------------------------------------------------- */
.mobile-frame {
  width: 100%;
  max-width: 390px; /* iPhone 12/13/14 Pro width */
  height: 844px;    /* iPhone 12/13/14 Pro height */
  background-color: var(--bg-warm-ivory);
  border-radius: 40px;
  border: 11px solid #1E1B18; /* simulated sleek phone bezel */
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(43, 8, 39, 0.15);
}

/* Top dynamic island notch simulation */
.mobile-frame::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 25px;
  background-color: #1E1B18;
  border-radius: 15px;
  z-index: 1000;
}

/* Status Bar Simulation */
.status-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  padding: 10px 24px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  background-color: transparent; /* transparent to let content show through */
  z-index: 999;
  user-select: none;
  box-sizing: border-box;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-icon {
  opacity: 0.85;
}

/* Content Area inside Frame */
.content-scrollable {
  flex: 1;
  overflow-y: auto;
  padding: 108px 16px 24px 16px; /* 38px status bar + 62px top bar + 8px spacing */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Responsive adjustment for actual mobile viewports */
@media (max-width: 480px), (max-height: 850px) {
  body {
    background-color: var(--bg-warm-ivory);
    align-items: stretch;
  }
  .mobile-frame {
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
  .mobile-frame::after {
    display: none;
  }
  .status-bar {
    display: none; /* Hide simulated status bar on actual mobile browser */
  }
  .top-bar {
    top: 0 !important;
  }
  .content-scrollable {
    padding-top: 70px !important; /* 62px top bar + 8px spacing */
  }

  .bottom-nav {
    position: fixed;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0px);
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
  }

  .bottom-nav-spacer {
    height: calc(112px + env(safe-area-inset-bottom, 0px));
  }
}

/* ----------------------------------------------------
   4. TOP BAR
   ---------------------------------------------------- */
.top-bar {
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background-color: transparent; /* transparent to let content show through */
  backdrop-filter: none; /* no blur for the main bar */
  -webkit-backdrop-filter: none;
  border-bottom: none; /* no border */
  box-shadow: none; /* no shadow */
  z-index: 998;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(250, 249, 244, 0.75); /* Frosted glass matching bottom nav */
  border: 1px solid rgba(221, 215, 200, 0.5); /* glass border */
  border-radius: 50px;
  padding: 4px 4px 4px 16px; /* RTL: smaller padding on logo side (right), larger on text side (left) */
  box-shadow: 
    0 4px 20px rgba(43, 8, 39, 0.08), 
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  height: 48px; /* enlarged from 42px */
  box-sizing: border-box;
  transition: var(--transition-fast);
}

/* Symmetrical padding when no logo wrapper or back button inside the badge */
.top-bar-right:not(:has(.logo-wrapper)):not(:has(.back-btn)) {
  padding: 4px 16px 4px 16px;
}

/* Symmetrical styles when back button exists inside the badge */
.top-bar-right:has(.back-btn) {
  padding: 4px 4px 4px 16px;
}

/* Styling for nested back button inside the right badge (e.g. details page) */
.top-bar-right .back-btn {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  width: 38px !important; /* enlarged from 32px */
  height: 38px !important; /* enlarged from 32px */
  margin: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: var(--color-plum-deep) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: var(--transition-fast);
}

.top-bar-right .back-btn:hover, .top-bar-right .back-btn:active {
  background: rgba(66, 12, 59, 0.05) !important;
  transform: scale(0.95);
}

.logo-wrapper {
  width: 38px; /* enlarged from 32px */
  height: 38px; /* enlarged from 32px */
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--color-plum-deep);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(66, 12, 59, 0.1);
  border: 1px solid rgba(66, 12, 59, 0.05);
  flex-shrink: 0;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px; /* enlarged from 13px */
  color: var(--color-plum-deep);
  line-height: 1.1;
}

.brand-subtitle {
  font-family: var(--font-body);
  font-size: 10px; /* enlarged from 9px */
  color: var(--mauve-detail);
  font-weight: 700;
  line-height: 1;
  margin-top: 1px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Each action button on the left is a floating glass circle */
.top-bar-left .icon-btn {
  background: none;
  border: 1px solid rgba(221, 215, 200, 0.5); /* glass border */
  width: 48px; /* enlarged from 42px */
  height: 48px; /* enlarged from 42px */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-plum-deep);
  cursor: pointer;
  background-color: rgba(250, 249, 244, 0.75); /* Frosted glass matching bottom nav */
  box-shadow: 
    0 4px 20px rgba(43, 8, 39, 0.08), 
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: var(--transition-fast);
  box-sizing: border-box;
}

/* Ensure inside SVGs scale nicely */
.top-bar-left .icon-btn svg {
  width: 22px;
  height: 22px;
}

.top-bar-left .icon-btn:hover, .top-bar-left .icon-btn:active {
  background-color: rgba(250, 249, 244, 0.9);
  transform: scale(0.95);
  border-color: rgba(66, 12, 59, 0.2);
  box-shadow: 
    0 6px 24px rgba(43, 8, 39, 0.12), 
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* WhatsApp float button styling */
.top-bar-left .whatsapp-btn {
  background-color: rgba(250, 249, 244, 0.75);
  border-color: rgba(37, 211, 102, 0.25); /* subtle WhatsApp green border tint */
}

.top-bar-left .whatsapp-btn:hover, .top-bar-left .whatsapp-btn:active {
  background-color: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.45);
}

.wa-icon {
  display: inline-block;
  width: 22px; /* enlarged from 20px */
  height: 22px; /* enlarged from 20px */
  object-fit: contain;
  flex-shrink: 0;
  vertical-align: middle;
}

a:not(.whatsapp-btn):not(.btn-product-whatsapp) > .wa-icon {
  margin-inline-end: 6px;
}

.whatsapp-btn .wa-icon {
  width: 24px; /* enlarged from 22px */
  height: 24px; /* enlarged from 22px */
}

.btn-product-whatsapp .wa-icon {
  width: 16px;
  height: 16px;
}

/* ----------------------------------------------------
   5. HERO CARD
   ---------------------------------------------------- */
.hero-section {
  width: 100%;
}

.hero-card {
  background-color: var(--bg-soft-card);
  border: 1px solid var(--border-warm);
  border-radius: 26px;
  display: flex;
  overflow: hidden;
  position: relative;
  min-height: 185px;
  box-shadow: 0 4px 15px rgba(221, 215, 200, 0.25);
}

.hero-content {
  width: 56%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-plum-dark);
  line-height: 1.35;
  margin-bottom: 6px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-plum-deep);
  color: var(--bg-warm-ivory);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  padding: 9px 16px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(66, 12, 59, 0.15);
  transition: var(--transition-fast);
}

.btn-primary:hover, .btn-primary:active {
  background-color: var(--color-plum-accent);
}

.btn-secondary {
  color: var(--color-plum-deep);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  transition: var(--transition-fast);
}

.btn-secondary svg {
  fill: var(--color-plum-deep);
}

.btn-secondary:hover, .btn-secondary:active {
  opacity: 0.8;
}

.hero-visual {
  width: 44%;
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ----------------------------------------------------
   6. SEARCH BAR
   ---------------------------------------------------- */
.search-section {
  width: 100%;
}

.search-bar-container {
  width: 100%;
}

.search-input-wrapper {
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-warm);
  border-radius: 28px;
  padding: 4px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.search-input-wrapper:focus-within {
  border-color: var(--color-plum-deep);
  box-shadow: 0 0 0 3px rgba(66, 12, 59, 0.05);
}

.search-bar-icon {
  color: var(--text-secondary);
}

.search-input {
  border: none;
  background: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 13px;
  width: 100%;
  color: var(--text-main);
  padding: 8px 0;
}

.search-input::placeholder {
  color: var(--mauve-detail);
}

/* ----------------------------------------------------
   7. CATEGORIES SECTION
   ---------------------------------------------------- */
.categories-section {
  width: 100%;
  overflow: hidden;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-plum-dark);
  margin-bottom: 12px;
  padding-right: 4px;
}

.categories-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 4px 8px 4px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Hide Horizontal Scrollbars */
.categories-container::-webkit-scrollbar {
  display: none;
}

.category-chip {
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 2px 4px rgba(221, 215, 200, 0.1);
}

.chip-icon {
  color: var(--mauve-detail);
  transition: var(--transition-fast);
}

.category-chip:hover, .category-chip:active {
  background-color: var(--bg-soft-card);
  color: var(--text-main);
}

.category-chip.active {
  border-color: var(--color-plum-deep);
  background-color: var(--bg-warm-ivory);
  color: var(--color-plum-deep);
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(66, 12, 59, 0.08);
}

.category-chip.active .chip-icon {
  color: var(--color-plum-deep);
}

/* ----------------------------------------------------
   8. FEATURED PRODUCTS SECTION
   ---------------------------------------------------- */
.products-section {
  width: 100%;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-card {
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  overflow: hidden;
  padding: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(221, 215, 200, 0.15);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(66, 12, 59, 0.05);
  border-color: var(--mauve-detail);
}

.product-image-wrapper {
  width: 66px;
  height: 66px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--bg-soft-card);
  border: 1px solid rgba(221, 215, 200, 0.5);
}

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

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0; /* Prevents overflow of flex child text */
  height: auto;
  min-height: 70px;
}

.product-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11.5px;
  color: var(--color-plum-dark);
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  margin-bottom: 2px;
  word-break: break-word;
}

.product-subtitle {
  font-family: var(--font-body);
  font-size: 9.5px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
  line-height: 1.25;
}

.product-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  gap: 4px;
}

.product-price {
  display: none;
}

.product-price.fallback-price {
  display: none;
}

.btn-detail-link {
  margin-inline-start: auto;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  color: var(--color-plum-deep);
  text-decoration: none;
  background-color: transparent;
  border: 1px solid var(--border-warm);
  padding: 2px 8px;
  border-radius: 12px;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-detail-link:hover, .btn-detail-link:active {
  background-color: var(--color-plum-deep);
  color: var(--bg-warm-ivory);
  border-color: var(--color-plum-deep);
}

/* ----------------------------------------------------
   9. CUSTOM ORDER BANNER
   ---------------------------------------------------- */
.custom-order-section {
  width: 100%;
}

.custom-order-banner {
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(66, 12, 59, 0.1);
  border: 1px solid rgba(66, 12, 59, 0.1);
}

.banner-content {
  padding: 24px 20px;
  color: var(--bg-warm-ivory);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-shadow: 0 2px 4px rgba(43, 8, 39, 0.2);
}

.banner-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 6px;
}

.banner-description {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(250, 249, 244, 0.85);
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 75%;
}

.btn-banner-action {
  background-color: var(--bg-warm-ivory);
  color: var(--color-plum-deep);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  padding: 8px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: var(--transition-fast);
  border: none;
}

.btn-banner-action:hover, .btn-banner-action:active {
  background-color: var(--bg-soft-card);
  transform: scale(0.98);
}

/* ----------------------------------------------------
   10. BOTTOM NAVIGATION — LUXURY GLASS FLOATING CAPSULE (MATCHING TOP BAR)
   ---------------------------------------------------- */
.bottom-nav {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  width: auto;
  height: 64px;
  background-color: rgba(250, 249, 244, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(221, 215, 200, 0.6);
  border-radius: 999px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 
    0 4px 20px rgba(43, 8, 39, 0.08), 
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  padding: 0 6px;
  box-sizing: border-box;
}

.bottom-nav-list {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: var(--text-secondary, #5F5A55);
  transition: var(--transition-fast);
  padding: 6px 4px;
  width: 100%;
  border-radius: 16px;
}

.nav-icon {
  opacity: 0.75;
  color: var(--text-secondary, #5F5A55);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease, color 0.2s ease;
}

.nav-label {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  color: inherit;
  transition: var(--transition-fast);
}

.bottom-nav-item.active .bottom-nav-link {
  color: var(--color-plum-deep, #420C3B);
}

.bottom-nav-item.active .nav-icon {
  opacity: 1;
  color: var(--color-plum-deep, #420C3B);
  transform: translateY(-2px) scale(1.1);
}

.bottom-nav-item.active .nav-label {
  font-weight: 800;
  color: var(--color-plum-deep, #420C3B);
}

.bottom-nav-link:hover .nav-label,
.bottom-nav-link:active .nav-label {
  color: var(--color-plum-deep, #420C3B);
}

.bottom-nav-link:hover .nav-icon,
.bottom-nav-link:active .nav-icon {
  color: var(--color-plum-deep, #420C3B);
  opacity: 1;
}

/* Spacer inside scroll content to avoid bottom nav overlap */
.bottom-nav-spacer {
  height: 105px;
  flex-shrink: 0;
}

/* ----------------------------------------------------
   11. PRODUCTS CATALOG SPECIFIC STYLES
   ---------------------------------------------------- */
.catalog-intro-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 4px 4px 4px;
  position: relative;
}

.catalog-page-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--color-plum-dark);
  line-height: 1.2;
}

.catalog-page-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 6px;
}

.title-accent-dot {
  width: 24px;
  height: 3px;
  background-color: var(--color-plum-deep);
  border-radius: 2px;
  display: block;
  margin-top: 8px;
}

/* Scroll Container Reusable Utility */
.scroll-x {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 8px 2px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.scroll-x::-webkit-scrollbar {
  display: none;
}

.filter-chips-section {
  width: 100%;
}

.filter-chips-container {
  padding-bottom: 2px;
}

.filter-chip {
  background-color: var(--bg-soft-card);
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  padding: 7px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-plum-deep);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 1px 3px rgba(221, 215, 200, 0.08);
}

.filter-chip:hover, .filter-chip:active {
  background-color: var(--border-warm);
}

.filter-chip.active {
  border-color: var(--color-plum-deep);
  background-color: var(--color-plum-deep);
  color: var(--bg-warm-ivory);
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(66, 12, 59, 0.12);
}

/* Occasion Filter Row */
.occasion-filter-section {
  width: 100%;
  margin-top: -4px;
}

.occasion-title-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  padding-right: 4px;
}

.occasion-chips-container {
  padding-bottom: 2px;
}

.occasion-chip {
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-warm);
  border-radius: 16px;
  padding: 5px 12px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 1px 3px rgba(221, 215, 200, 0.08);
}

.occasion-chip:hover, .occasion-chip:active {
  background-color: var(--bg-soft-card);
  color: var(--text-main);
}

.occasion-chip.active {
  border-color: var(--color-plum-deep);
  background-color: rgba(66, 12, 59, 0.04);
  color: var(--color-plum-deep);
  font-weight: 700;
}

/* Count and Sort Row */
.catalog-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
  margin-top: -2px;
}

.products-count {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
}

.btn-sort {
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-warm);
  border-radius: 16px;
  padding: 5px 12px;
  color: var(--color-plum-deep);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  box-shadow: 0 1px 3px rgba(221, 215, 200, 0.08);
}

.btn-sort:hover, .btn-sort:active {
  background-color: var(--bg-soft-card);
}

/* Vertical Products Grid */
.products-grid-section {
  width: 100%;
}

.products-grid-vertical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-card-vertical {
  background-color: var(--bg-soft-card);
  border: 1px solid var(--border-warm);
  border-radius: 22px;
  overflow: hidden;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(221, 215, 200, 0.15);
  position: relative;
}

.product-card-vertical:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(66, 12, 59, 0.05);
  border-color: var(--mauve-detail);
}

.product-card-vertical .product-image-wrapper {
  width: 100%;
  height: 125px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-warm-ivory);
  border: 1px solid rgba(221, 215, 200, 0.4);
}

.placeholder-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #FAF9F4 0%, #EFECE4 100%);
  color: var(--mauve-detail);
}

.placeholder-icon {
  stroke: var(--mauve-detail);
  opacity: 0.75;
}

/* Status Badges */
.status-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.status-badge.available {
  background-color: var(--status-olive);
  color: var(--bg-warm-ivory);
}

.status-badge.custom-order {
  background-color: var(--mauve-detail);
  color: var(--bg-warm-ivory);
}

/* Info Section of Vertical Card */
.product-info-vertical {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  padding: 2px 4px 4px 4px;
}

.product-title-vertical {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-plum-dark);
  margin-bottom: 2px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  min-height: 2.7em;
  word-break: break-word;
}

.product-subtitle-vertical {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
  line-height: 1.25;
}

.product-price-row {
  display: none;
}

.price-value-vertical {
  display: none;
}

/* Actions Row in Vertical Card */
.product-card-actions {
  display: flex;
  gap: 6px;
  margin-top: auto;
  align-items: center;
}

.btn-product-details {
  flex: 1;
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-plum-deep);
  text-decoration: none;
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-warm);
  padding: 6px 4px;
  border-radius: 14px;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-product-details:hover, .btn-product-details:active {
  background-color: var(--color-plum-deep);
  color: var(--bg-warm-ivory);
  border-color: var(--color-plum-deep);
}

.btn-product-whatsapp {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(66, 12, 59, 0.05);
  color: var(--color-plum-deep);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
  text-decoration: none;
}

.btn-product-whatsapp:hover, .btn-product-whatsapp:active {
  background-color: rgba(66, 12, 59, 0.1);
  transform: scale(1.05);
}

.btn-product-whatsapp .wa-icon {
  margin: 0;
}

/* Back Button in Top Bar */
.back-btn {
  transform: rotate(180deg); /* points right to represent 'back' in RTL */
  color: var(--color-plum-deep);
}

/* WhatsApp Help Banner Specific */
.whatsapp-help-section {
  width: 100%;
  margin-top: 8px;
}

.whatsapp-help-banner {
  background-color: var(--color-plum-deep);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(66, 12, 59, 0.1);
  border: 1px solid rgba(66, 12, 59, 0.05);
}

.help-banner-content {
  padding: 20px;
  color: var(--bg-warm-ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.help-banner-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 6px;
}

.help-banner-text {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(250, 249, 244, 0.85);
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 90%;
}

.btn-help-whatsapp {
  background-color: var(--bg-warm-ivory);
  color: var(--color-plum-deep);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  padding: 8px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition-fast);
  border: none;
}

.btn-help-whatsapp:hover, .btn-help-whatsapp:active {
  background-color: var(--bg-soft-card);
  transform: scale(0.98);
}

.btn-help-whatsapp .wa-icon {
  width: 18px;
  height: 18px;
}

/* ----------------------------------------------------
   12. PRODUCT DETAILS PAGE SPECIFIC STYLES
   ---------------------------------------------------- */
.product-gallery-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-main-image-card {
  width: 100%;
  height: 230px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border-warm);
  box-shadow: 0 4px 15px rgba(221, 215, 200, 0.2);
  background-color: var(--bg-warm-ivory);
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbnails-container {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.thumbnail-btn {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-warm);
  padding: 0;
  background: none;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 2px 4px rgba(221, 215, 200, 0.1);
}

.thumbnail-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-btn:hover {
  border-color: var(--mauve-detail);
}

.thumbnail-btn.active {
  border-color: var(--color-plum-deep);
  border-width: 2px;
  box-shadow: 0 3px 8px rgba(66, 12, 59, 0.15);
}

/* Product Info Card */
.product-info-card-section {
  width: 100%;
}

.product-main-info-card {
  background-color: var(--bg-soft-card);
  border: 1px solid var(--border-warm);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(221, 215, 200, 0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-badges-row {
  display: flex;
  gap: 8px;
}

.info-badge-type {
  background-color: rgba(142, 165, 140, 0.12);
  color: #5f745e;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
}

.status-badge-custom {
  background-color: rgba(168, 147, 157, 0.15);
  color: var(--color-plum-deep);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
}

.product-details-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-plum-dark);
  line-height: 1.4;
}

.product-details-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.product-details-price-box {
  border-top: 1px solid rgba(221, 215, 200, 0.6);
  padding-top: 10px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-details-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--color-plum-deep);
}

.product-details-note {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--mauve-detail);
}

/* Specifications Rows */
.product-specifications-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-plum-dark);
  padding-right: 4px;
  margin-bottom: 2px;
}

.spec-list-container {
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(221, 215, 200, 0.05);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(221, 215, 200, 0.4);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 600;
}

.spec-value {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-main);
  font-weight: 700;
  text-align: left;
}

/* Customization Section */
.customization-preview-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.customization-chips-wrapper {
  padding-bottom: 2px;
}

.custom-preview-chip {
  background-color: var(--bg-soft-card);
  border: 1px solid var(--border-warm);
  border-radius: 16px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-plum-deep);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(221, 215, 200, 0.05);
}

.chip-accent-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--mauve-detail);
}

/* WhatsApp Order Card */
.whatsapp-order-card-section {
  width: 100%;
}

.whatsapp-order-card {
  background-color: var(--bg-soft-card);
  border: 1px solid var(--border-warm);
  border-radius: 24px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(66, 12, 59, 0.08);
}

.order-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--color-plum-dark);
  margin-bottom: 6px;
}

.order-card-text {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}

.order-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-order-primary-wa {
  background-color: var(--color-plum-deep);
  color: var(--bg-warm-ivory);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  padding: 10px 16px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(66, 12, 59, 0.15);
  transition: var(--transition-fast);
  border: none;
}

.btn-order-primary-wa:hover, .btn-order-primary-wa:active {
  background-color: var(--color-plum-accent);
}

.btn-order-primary-wa .wa-icon {
  width: 18px;
  height: 18px;
}

.btn-order-secondary-wa {
  color: var(--color-plum-deep);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  padding: 8px;
  transition: var(--transition-fast);
}

.btn-order-secondary-wa:hover, .btn-order-secondary-wa:active {
  opacity: 0.8;
}

/* Similar Products */
.similar-products-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.similar-products-container {
  padding-bottom: 2px;
}

.similar-product-card {
  width: 124px;
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-warm);
  border-radius: 18px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  text-align: center;
  box-shadow: 0 1px 4px rgba(221, 215, 200, 0.1);
}

.similar-img-wrapper {
  width: 106px;
  height: 78px;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--bg-soft-card);
  border: 1px solid rgba(221, 215, 200, 0.4);
}

.similar-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.similar-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  color: var(--color-plum-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.btn-similar-details {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  color: var(--color-plum-deep);
  text-decoration: none;
  border: 1px solid var(--border-warm);
  padding: 4px;
  border-radius: 10px;
  background-color: var(--bg-warm-ivory);
  transition: var(--transition-fast);
}

.btn-similar-details:hover, .btn-similar-details:active {
  background-color: var(--color-plum-deep);
  color: var(--bg-warm-ivory);
  border-color: var(--color-plum-deep);
}

/* ----------------------------------------------------
   13. OCCASIONS PAGE SPECIFIC STYLES
   ---------------------------------------------------- */
.occasion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.occasion-card {
  background-color: var(--bg-soft-card);
  border: 1px solid var(--border-warm);
  border-radius: 24px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(221, 215, 200, 0.12);
  transition: var(--transition-smooth);
  position: relative;
}

.occasion-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(66, 12, 59, 0.05);
  border-color: var(--mauve-detail);
}

.occasion-card-visual {
  width: 100%;
  height: 84px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #FAF9F4 0%, #EFECE4 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(221, 215, 200, 0.4);
  color: var(--mauve-detail);
}

.occasion-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-plum-dark);
}

.occasion-card-subtitle {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.4;
  height: 28px; /* Fixed height to align buttons */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.btn-occasion-action {
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--bg-warm-ivory);
  background-color: var(--color-plum-deep);
  text-decoration: none;
  padding: 6px;
  border-radius: 14px;
  transition: var(--transition-fast);
  box-shadow: 0 2px 6px rgba(66, 12, 59, 0.12);
}

.btn-occasion-action:hover, .btn-occasion-action:active {
  background-color: var(--color-plum-accent);
}

/* Guidance Section */
.guidance-section {
  width: 100%;
  background-color: var(--bg-soft-card);
  border: 1px solid var(--border-warm);
  border-radius: 24px;
  padding: 16px;
}

.guidance-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.guidance-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-plum-deep);
  color: var(--bg-warm-ivory);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-main);
}

/* ----------------------------------------------------
   14. CUSTOM ORDER PAGE SPECIFIC STYLES
   ---------------------------------------------------- */
.stepper-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.stepper-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-warm);
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: 0 1px 3px rgba(221, 215, 200, 0.05);
}

.stepper-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(66, 12, 59, 0.08);
  color: var(--color-plum-deep);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.stepper-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
}

/* Custom Order Form */
.custom-order-form-container {
  width: 100%;
}

.form-card {
  background-color: var(--bg-soft-card);
  border: 1px solid var(--border-warm);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(221, 215, 200, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--color-plum-dark);
  border-bottom: 1px solid var(--border-warm);
  padding-bottom: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  padding-right: 4px;
}

.form-input, .form-select, .form-textarea {
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-warm);
  border-radius: 16px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-main);
  outline: none;
  transition: var(--transition-fast);
  width: 100%;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--mauve-detail);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-plum-deep);
  box-shadow: 0 0 0 3px rgba(66, 12, 59, 0.05);
}

.form-textarea {
  min-height: 80px;
  resize: vertical;
}

/* Custom styled chip groups for yes/no radios */
.form-chip-group {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}

.form-chip-label {
  flex: 1;
}

.form-chip-label input[type="radio"] {
  display: none; /* Hide default radio */
}

.form-chip-button {
  display: block;
  text-align: center;
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-warm);
  border-radius: 14px;
  padding: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.form-chip-label input[type="radio"]:checked + .form-chip-button {
  background-color: var(--color-plum-deep);
  border-color: var(--color-plum-deep);
  color: var(--bg-warm-ivory);
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(66, 12, 59, 0.15);
}

/* ----------------------------------------------------
   15. CONTACT PAGE SPECIFIC STYLES
   ---------------------------------------------------- */
.contact-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.contact-action-card {
  background-color: var(--bg-soft-card);
  border: 1px solid var(--border-warm);
  border-radius: 22px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(221, 215, 200, 0.12);
  transition: var(--transition-smooth);
  position: relative;
  text-align: center;
  align-items: center;
}

.contact-action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(66, 12, 59, 0.05);
  border-color: var(--mauve-detail);
}

.contact-action-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(66, 12, 59, 0.05);
  color: var(--color-plum-deep);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}

.contact-action-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-plum-dark);
}

.contact-action-subtitle {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.4;
  height: 28px;
  overflow: hidden;
}

.btn-contact-action-card {
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-plum-deep);
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-warm);
  text-decoration: none;
  padding: 6px;
  border-radius: 14px;
  transition: var(--transition-fast);
}

.btn-contact-action-card:hover, .btn-contact-action-card:active {
  background-color: var(--color-plum-deep);
  color: var(--bg-warm-ivory);
  border-color: var(--color-plum-deep);
}

/* Store Info Table */
.info-rows-container {
  background-color: var(--bg-soft-card);
  border: 1px solid var(--border-warm);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(221, 215, 200, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(221, 215, 200, 0.6);
  padding-bottom: 10px;
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-row-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-plum-dark);
}

.info-row-value {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: left;
}

/* Real Google map styles */
.map-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(239, 236, 228, 0.92)),
    var(--bg-soft-card);
  border: 1px solid rgba(221, 215, 200, 0.9);
  border-radius: 28px;
  padding: 14px;
  box-shadow:
    0 14px 34px rgba(43, 8, 39, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.map-embed-wrap {
  width: 100%;
  height: 232px;
  border-radius: 24px;
  border: 1px solid rgba(221, 215, 200, 0.95);
  background-color: var(--bg-warm-ivory);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 10px 24px rgba(43, 8, 39, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.real-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.map-embed-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 38%, rgba(66, 12, 59, 0.04), transparent 28%),
    linear-gradient(180deg, rgba(250, 249, 244, 0.08), rgba(66, 12, 59, 0.04));
}

.store-map-pin {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 132px;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.store-map-pin-pulse {
  position: absolute;
  top: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(66, 12, 59, 0.16);
  animation: mapPinPulse 2.2s ease-out infinite;
}

.store-map-pin-marker {
  width: 46px;
  height: 46px;
  border-radius: 18px 18px 18px 4px;
  background: linear-gradient(145deg, var(--color-plum-deep), var(--color-plum-accent));
  color: #fff;
  display: grid;
  place-items: center;
  transform: rotate(-45deg);
  box-shadow:
    0 10px 22px rgba(66, 12, 59, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.92);
}

.store-map-pin-marker svg {
  transform: rotate(45deg);
  width: 24px;
  height: 24px;
}

.store-map-pin-label {
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(250, 249, 244, 0.94);
  color: var(--color-plum-deep);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(43, 8, 39, 0.12);
  border: 1px solid rgba(221, 215, 200, 0.75);
}

@keyframes mapPinPulse {
  0% {
    transform: scale(0.75);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.map-location-copy {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 2px 4px 0;
}

.map-location-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.map-location-title span {
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 600;
}

.map-location-title strong {
  color: var(--color-plum-deep);
  font-family: var(--font-heading);
  font-size: 13px;
}

.map-location-coords {
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 10px;
  background: rgba(250, 249, 244, 0.82);
  border: 1px solid rgba(221, 215, 200, 0.75);
  border-radius: 999px;
  padding: 5px 8px;
}

/* ----------------------------------------------------
   16. CATEGORIES PAGE SPECIFIC STYLES
   ---------------------------------------------------- */
.category-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.category-item-card {
  background-color: var(--bg-soft-card);
  border: 1px solid var(--border-warm);
  border-radius: 24px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(221, 215, 200, 0.12);
  transition: var(--transition-smooth);
  position: relative;
}

.category-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(66, 12, 59, 0.05);
  border-color: var(--mauve-detail);
}

.category-item-visual {
  width: 100%;
  height: 70px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #FAF9F4 0%, #EFECE4 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(221, 215, 200, 0.4);
  color: var(--mauve-detail);
  margin-bottom: 4px;
}

.category-item-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(66, 12, 59, 0.05);
  color: var(--color-plum-deep);
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 8px;
}

.category-item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-plum-dark);
}

.category-item-subtitle {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.4;
  height: 28px;
  overflow: hidden;
}

.btn-category-card-action {
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--bg-warm-ivory);
  background-color: var(--color-plum-deep);
  text-decoration: none;
  padding: 6px;
  border-radius: 12px;
  transition: var(--transition-fast);
  box-shadow: 0 2px 6px rgba(66, 12, 59, 0.1);
}

.btn-category-card-action:hover, .btn-category-card-action:active {
  background-color: var(--color-plum-accent);
}

/* Horizontal Premium Cards */
.premium-category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.premium-category-card {
  background-color: var(--bg-soft-card);
  border: 1px solid var(--border-warm);
  border-radius: 24px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(221, 215, 200, 0.12);
  transition: var(--transition-smooth);
  gap: 12px;
}

.premium-category-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(66, 12, 59, 0.05);
  border-color: var(--mauve-detail);
}

.premium-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.premium-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  color: var(--color-plum-dark);
}

.premium-card-subtitle {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-secondary);
}

.btn-premium-card-action {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-plum-deep);
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-warm);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 14px;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-premium-card-action:hover, .btn-premium-card-action:active {
  background-color: var(--color-plum-deep);
  color: var(--bg-warm-ivory);
  border-color: var(--color-plum-deep);
}

/* ----------------------------------------------------
   17. HOMEPAGE LINKING & SECTIONS ENHANCEMENTS
   ---------------------------------------------------- */
.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-inline: 4px;
}

.section-header-flex .section-title {
  margin-bottom: 0;
  padding-right: 0;
}

.see-all-link {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-plum-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
  padding: 2px 6px;
  border-radius: 8px;
}

.see-all-link:hover, .see-all-link:active {
  color: var(--color-plum-accent);
  background-color: rgba(66, 12, 59, 0.05);
  transform: translateX(-2px);
}

/* Occasions Horizontal Scroll */
.occasion-chips-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 4px 8px 4px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.occasion-chips-container::-webkit-scrollbar {
  display: none;
}

.occasion-chip {
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 2px 4px rgba(221, 215, 200, 0.1);
}

.occasion-chip:hover, .occasion-chip:active {
  background-color: var(--bg-soft-card);
  color: var(--text-main);
  border-color: var(--color-plum-deep);
}

/* Quick Navigation Grid */
.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
}

.quick-nav-card {
  background-color: var(--bg-soft-card);
  border: 1px solid var(--border-warm);
  border-radius: 18px;
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(221, 215, 200, 0.15);
  transition: var(--transition-fast);
}

.quick-nav-card:hover, .quick-nav-card:active {
  transform: translateY(-2px);
  border-color: var(--color-plum-deep);
  box-shadow: 0 5px 14px rgba(66, 12, 59, 0.08);
}

.quick-nav-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-warm-ivory);
  border: 1px solid var(--border-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-plum-deep);
  transition: var(--transition-fast);
}

.quick-nav-card:hover .quick-nav-icon {
  background-color: var(--color-plum-deep);
  color: var(--bg-warm-ivory);
}

.quick-nav-title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-plum-dark);
  line-height: 1.2;
}

/* Trust Features Grid */
.trust-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}

.trust-feature-card {
  background-color: var(--bg-soft-card);
  border: 1px solid var(--border-warm);
  border-radius: 16px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.trust-feature-icon {
  color: var(--color-plum-deep);
}

.trust-feature-title {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--color-plum-deep);
}

.trust-feature-desc {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--text-secondary);
}

/* Support Help Card */
.support-strip-card {
  background: linear-gradient(135deg, rgba(66, 12, 59, 0.04), rgba(66, 12, 59, 0.08));
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 6px rgba(221, 215, 200, 0.1);
}

.support-strip-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.support-strip-title {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  color: var(--color-plum-deep);
}

.support-strip-subtitle {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--text-secondary);
}

.support-strip-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.btn-support-link {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-support-contact {
  background-color: var(--color-plum-deep);
  color: #FFFFFF;
}

.btn-support-contact:hover {
  background-color: var(--color-plum-accent);
}


/* Balanced top-bar subtitles across store pages. */
.brand-info {
  min-width: 0;
  justify-content: center;
}

.brand-subtitle {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 2px;
  letter-spacing: 0;
}