/*
Theme Name: A Gift of Succulence
Theme URI: https://agiftofsucculence.co.za
Author: A Gift of Succulence
Author URI: https://agiftofsucculence.co.za
Description: A lightweight, mobile-first WordPress theme for the A Gift of Succulence succulent gifting business. Features black and gold branding, WhatsApp-first conversion, and full-site editing support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
WC requires at least: 8.0
WC tested up to: 10.7.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gift-of-succulence
Tags: full-site-editing, custom-colors, custom-logo, custom-menu, responsive-layout, one-column, two-columns
*/

/* ==========================================================================
   CSS Custom Properties — Brand Color Palette
   Requirements: 3.6, 3.7, 3.8
   ========================================================================== */

/* Self-hosted logo font */
@font-face {
  font-family: 'Alex Brush';
  src: url('fonts/AlexBrush-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Primary Colors */
  --color-black: #000000;
  --color-gold: #C5A55A;

  /* Warm Neutrals */
  --color-cream: #F5F0EB;
  --color-warm-gray: #E8E0D8;

  /* Accent */
  --color-green: #4A7C59;

  /* WhatsApp Brand */
  --color-whatsapp: #25D366;

  /* Functional Colors */
  --color-text-primary: #1A1A1A;
  --color-text-secondary: #4A4A4A;
  --color-text-light: #FFFFFF;
  --color-border: #D4CFC8;
  --color-error: #C0392B;
  --color-success: #27AE60;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Logo font — Cursive script */
  --font-logo: 'Alex Brush', cursive;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Layout */
  --container-max: 1200px;
  --container-padding: var(--space-4);

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;

  /* Minimum tap target size for mobile accessibility */
  --tap-target-min: 44px;
}

/* ==========================================================================
   Reset & Base Styles — Mobile-First
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover,
a:focus {
  color: var(--color-green);
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-black);
}

h1 { font-size: var(--text-3xl); margin-bottom: var(--space-6); }
h2 { font-size: var(--text-2xl); margin-bottom: var(--space-4); }
h3 { font-size: var(--text-xl);  margin-bottom: var(--space-3); }
h4 { font-size: var(--text-lg);  margin-bottom: var(--space-2); }
h5 { font-size: var(--text-base); margin-bottom: var(--space-2); }
h6 { font-size: var(--text-sm);  margin-bottom: var(--space-2); }

p {
  margin-bottom: var(--space-4);
}

/* ==========================================================================
   Layout — Container
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* ==========================================================================
   Header — Gold on Dark
   Requirements: 3.7
   ========================================================================== */

.site-header {
  background-color: var(--color-black);
  padding: var(--space-4) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* Logo — Gold on Dark Background */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-gold);
  text-decoration: none;
}

.site-logo .logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-logo .logo-text {
  font-family: var(--font-logo);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1.2;
}

/* Logo — Reversed for Light Backgrounds */
.site-logo--reversed {
  color: var(--color-black);
}

.site-logo--reversed .logo-text {
  color: var(--color-black);
}

/* Header WhatsApp CTA — hidden on mobile, shown on desktop */
.header-whatsapp-cta {
  display: none;
  gap: var(--space-2);
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-4);
  white-space: nowrap;
}

.header-whatsapp-cta .whatsapp-icon {
  flex-shrink: 0;
}

/* ==========================================================================
   Navigation — Mobile-First (Hamburger)
   Requirements: 1.2, 8.2
   ========================================================================== */

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--tap-target-min);
  height: var(--tap-target-min);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-toggle .hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-gold);
  position: relative;
  transition: background-color var(--transition-fast);
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-gold);
  position: absolute;
  left: 0;
  transition: transform var(--transition-base);
}

.nav-toggle .hamburger::before { top: -7px; }
.nav-toggle .hamburger::after  { top: 7px; }

/* Full-screen overlay nav on mobile */
.main-navigation {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-navigation.is-open {
  display: flex;
}

.main-navigation ul {
  list-style: none;
  text-align: center;
}

.main-navigation li {
  margin-bottom: var(--space-6);
}

.main-navigation a {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: var(--space-2) var(--space-4);
  min-height: var(--tap-target-min);
  display: inline-flex;
  align-items: center;
}

.main-navigation a:hover,
.main-navigation a:focus {
  color: var(--color-gold);
}

.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  color: var(--color-gold);
}

.nav-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: var(--tap-target-min);
  height: var(--tap-target-min);
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: var(--text-2xl);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap-target-min);
  min-width: var(--tap-target-min);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  line-height: 1;
}

.btn--primary {
  background-color: var(--color-gold);
  color: var(--color-black);
}

.btn--primary:hover,
.btn--primary:focus {
  background-color: #B8963F;
  color: var(--color-black);
}

.btn--whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-text-light);
}

.btn--whatsapp:hover,
.btn--whatsapp:focus {
  background-color: #1EBE5D;
  color: var(--color-text-light);
}

.btn--outline {
  background-color: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
}

.btn--outline:hover,
.btn--outline:focus {
  background-color: var(--color-gold);
  color: var(--color-black);
}

/* ==========================================================================
   WhatsApp Sticky Floating CTA
   Requirements: 9.1, 9.5, 9.7, 8.4
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 56px;
  height: 56px;
  background-color: var(--color-whatsapp);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  color: var(--color-text-light);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  color: var(--color-text-light);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Hidden by default on desktop; JS adds .is-visible */
.whatsapp-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-base), visibility var(--transition-base);
}

.whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ==========================================================================
   Footer
   Requirements: 1.4
   ========================================================================== */

.site-footer {
  background-color: var(--color-black);
  color: var(--color-text-light);
  padding: var(--space-12) 0 var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.site-footer a {
  color: var(--color-warm-gray);
  transition: color var(--transition-fast);
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--color-gold);
}

.footer-col .site-logo {
  display: inline-flex;
  margin-bottom: var(--space-4);
}

.footer-col .site-logo .logo-text {
  color: var(--color-gold);
  font-family: var(--font-logo);
  font-weight: 400;
}

.footer-col h4 {
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: var(--space-2);
}

.footer-whatsapp-cta {
  margin-top: var(--space-4);
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.footer-contact-list li {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
}

.footer-contact-label {
  font-weight: var(--font-medium);
}

.footer-social-list li a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: var(--tap-target-min);
  font-size: var(--text-sm);
}

.footer-social-list li a svg {
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: var(--space-12) 0;
}

.section--dark {
  background-color: var(--color-black);
  color: var(--color-text-light);
}

.section--gold {
  background-color: var(--color-gold);
  color: var(--color-black);
}

.section--neutral {
  background-color: var(--color-warm-gray);
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  content-visibility: auto;
  contain-intrinsic-size: 300px 300px;
}

.card__body {
  padding: var(--space-4);
}

.card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.card__price {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.card__image-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: var(--color-warm-gray);
}

.card__title-link {
  text-decoration: none;
  color: inherit;
}

.card__title-link:hover,
.card__title-link:focus {
  color: var(--color-gold);
}

.card__badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  background-color: var(--color-cream);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
  margin-right: var(--space-1);
}

.card__price--contact {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: var(--font-medium);
}

.card__cta {
  display: flex;
  width: 100%;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.card__cta .gos-whatsapp-icon {
  flex-shrink: 0;
}

/* Product Grid — Mobile-first single column */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ==========================================================================
   Product Filter Bar
   Requirements: 4.10, 5.2
   ========================================================================== */

.gos-filter-bar {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-bottom: var(--space-6);
}

.gos-filter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.gos-filter-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.gos-filter-label {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-secondary);
}

.gos-filter-select {
  min-height: var(--tap-target-min);
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: #FFFFFF;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.gos-filter-select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.2);
}

.gos-filter-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.gos-filter-submit {
  min-height: var(--tap-target-min);
}

.gos-filter-clear {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.gos-filter-clear:hover,
.gos-filter-clear:focus {
  color: var(--color-gold);
}

/* No Products Found — Filtered Results */
.gos-no-products-found {
  text-align: center;
  padding: var(--space-12) var(--space-4);
}

.gos-no-products-found__message {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.gos-no-products-found__suggestion {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
}

.gos-no-products-found__clear-link {
  color: var(--color-gold);
  font-weight: var(--font-semibold);
  text-decoration: underline;
}

.gos-no-products-found__clear-link:hover,
.gos-no-products-found__clear-link:focus {
  color: var(--color-green);
}

@media (min-width: 768px) {
  .gos-filter-form {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
  }

  .gos-filter-group {
    flex: 1;
    min-width: 150px;
  }

  .gos-filter-actions {
    flex: 0 0 auto;
  }
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-weight: var(--font-medium);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  min-height: var(--tap-target-min);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: #FFFFFF;
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.2);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center { text-align: center; }
.text-gold   { color: var(--color-gold); }
.text-green  { color: var(--color-green); }
.text-white  { color: var(--color-text-light); }

.bg-black    { background-color: var(--color-black); }
.bg-cream    { background-color: var(--color-cream); }
.bg-gold     { background-color: var(--color-gold); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Product Upsells — "Complete Your Gift"
   Requirements: 4.4
   ========================================================================== */

.gos-upsells {
  background-color: var(--color-warm-gray);
  padding: var(--space-12) 0;
}

.gos-upsells__title {
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: var(--space-2);
}

.gos-upsells__subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
}

.gos-upsells__grid {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gos-upsell-card {
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.gos-upsell-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Responsive — Tablet (768px+)
   ========================================================================== */

@media (min-width: 768px) {
  :root {
    --container-padding: var(--space-6);
  }

  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }

  /* Show inline nav, hide hamburger */
  .nav-toggle {
    display: none;
  }

  /* Logo — larger on tablet+ */
  .site-logo .logo-img {
    height: 55px;
    width: 55px;
  }

  .site-logo .logo-text {
    font-size: var(--text-3xl);
  }

  /* Show header WhatsApp CTA on desktop */
  .header-whatsapp-cta {
    display: inline-flex;
  }

  .main-navigation {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  .main-navigation ul {
    display: flex;
    gap: var(--space-4);
  }

  .main-navigation li {
    margin-bottom: 0;
  }

  .main-navigation a {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-warm-gray);
    padding: var(--space-2);
  }

  .nav-close {
    display: none;
  }

  /* Footer grid */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Card grid */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

/* ==========================================================================
   Responsive — Desktop (1024px+)
   ========================================================================== */

@media (min-width: 1024px) {
  :root {
    --container-padding: var(--space-8);
  }

  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }

  .main-navigation a {
    font-size: var(--text-base);
  }

  /* Logo — full size on desktop */
  .site-logo .logo-img {
    height: 60px;
    width: 60px;
  }

  .site-logo .logo-text {
    font-size: var(--text-4xl);
  }

  /* Footer grid */
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Card grid */
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Front Page — Section Headings
   Requirements: 1.3, 2.1, 3.2, 5.1
   ========================================================================== */

.section-heading {
  font-family: var(--font-heading);
  margin-bottom: var(--space-3);
}

.section-subheading {
  font-family: var(--font-body);
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section--dark .section-subheading {
  color: var(--color-warm-gray);
}

/* ==========================================================================
   Front Page — Hero Section
   Requirements: 1.3, 2.1, 3.2
   ========================================================================== */

.hero-section {
  padding: var(--space-16) 0;
  text-align: center;
}

.hero-section__inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero-section__headline {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  line-height: var(--leading-tight);
}

.hero-section__subheadline {
  font-size: var(--text-lg);
  color: var(--color-warm-gray);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.hero-section__cta {
  font-size: var(--text-lg);
  padding: var(--space-4) var(--space-8);
  gap: var(--space-2);
}

/* ==========================================================================
   Front Page — Audience Pathway Cards
   Requirements: 1.3, 2.1
   ========================================================================== */

.pathway-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.pathway-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--color-text-primary);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.pathway-card:hover,
.pathway-card:focus {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  color: var(--color-text-primary);
}

.pathway-card__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  color: var(--color-gold);
}

.pathway-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--color-black);
}

.pathway-card__description {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.pathway-card__link {
  font-weight: var(--font-semibold);
  color: var(--color-gold);
  font-size: var(--text-sm);
}

/* ==========================================================================
   Front Page — How It Works
   Requirements: 5.1
   ========================================================================== */

.how-it-works__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  counter-reset: step;
}

.how-it-works__step {
  text-align: center;
  position: relative;
}

.how-it-works__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-4);
  color: var(--color-gold);
}

.how-it-works__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-gold);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.how-it-works__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.how-it-works__description {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  max-width: 280px;
  margin: 0 auto;
}

/* ==========================================================================
   Front Page — Testimonials
   Requirements: 1.3, 2.1
   ========================================================================== */

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin: 0;
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-warm-gray);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.testimonial-card__author {
  font-style: normal;
  font-weight: var(--font-semibold);
  color: var(--color-gold);
  font-size: var(--text-base);
}

.testimonial-card__role {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
}

/* ==========================================================================
   Front Page — WhatsApp CTA Banner
   Requirements: 2.1, 9.1
   ========================================================================== */

.whatsapp-banner {
  text-align: center;
}

.whatsapp-banner__headline {
  font-family: var(--font-heading);
  color: var(--color-black);
  margin-bottom: var(--space-3);
}

.whatsapp-banner__text {
  font-size: var(--text-lg);
  color: var(--color-black);
  margin-bottom: var(--space-6);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-banner__cta {
  font-size: var(--text-lg);
  padding: var(--space-4) var(--space-8);
  gap: var(--space-2);
}

/* ==========================================================================
   Front Page — Responsive Tablet (768px+)
   ========================================================================== */

@media (min-width: 768px) {
  .hero-section__headline {
    font-size: var(--text-4xl);
  }

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

  .how-it-works__steps {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* ==========================================================================
   Front Page — Responsive Desktop (1024px+)
   ========================================================================== */

@media (min-width: 1024px) {
  .hero-section {
    padding: var(--space-20) 0;
  }

  .hero-section__headline {
    font-size: var(--text-5xl);
  }
}


/* ==========================================================================
   Shop Page
   Requirements: 1.5, 5.2
   ========================================================================== */

.shop-hero {
  padding: var(--space-12) 0;
  text-align: center;
}

.shop-hero__headline {
  font-family: var(--font-heading);
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.shop-hero__subheadline {
  font-size: var(--text-lg);
  color: var(--color-warm-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Category Sections */
.shop-category-section {
  margin-bottom: var(--space-12);
}

.shop-category-section:last-child {
  margin-bottom: 0;
}

.shop-category-section__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-black);
  margin-bottom: var(--space-2);
}

.shop-category-section__desc {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
}

.shop-category-section__more {
  text-align: center;
  margin-top: var(--space-6);
}

.shop-category-section__empty {
  text-align: center;
  color: var(--color-text-secondary);
  padding: var(--space-8) var(--space-4);
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px dashed var(--color-border);
}

/* Pagination */
.shop-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

.shop-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text);
  font-size: var(--text-sm);
  transition: background-color 0.2s, border-color 0.2s;
}

.shop-pagination .page-numbers:hover,
.shop-pagination .page-numbers:focus {
  background-color: var(--color-cream);
  border-color: var(--color-gold);
}

.shop-pagination .page-numbers.current {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #FFFFFF;
  font-weight: 600;
}

.shop-pagination .page-numbers.dots {
  border: none;
  min-width: auto;
  padding: var(--space-2);
}

/* Upsell Banner */
.shop-upsell-banner__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.shop-upsell-item {
  text-align: center;
}

.shop-upsell-item__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-3);
  color: var(--color-gold);
}

.shop-upsell-item__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.shop-upsell-item__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.shop-upsell-banner__cta {
  gap: var(--space-2);
  font-size: var(--text-lg);
  padding: var(--space-3) var(--space-8);
}

@media (min-width: 768px) {
  .shop-hero {
    padding: var(--space-16) 0;
  }

  .shop-upsell-banner__items {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .shop-category-section__title {
    font-size: var(--text-3xl);
  }
}

/* ==========================================================================
   Custom Pots & Succulents Page
   ========================================================================== */

.pot-styles-grid,
.succulent-varieties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  list-style: none;
  padding: 0;
  margin: 0;
  justify-items: center;
}

.pot-styles-grid .pot-style-card {
  width: 100%;
}

.about-founder__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-gallery__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.pot-style-card__placeholder,
.succulent-card__placeholder {
  background: linear-gradient(135deg, var(--color-warm-gray) 0%, var(--color-cream) 100%);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pot-style-card__icon {
  font-size: 4rem;
  line-height: 1;
  filter: grayscale(20%);
}

.pot-style-card {
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.pot-style-card .card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pot-style-card .card__body p:first-of-type {
  flex: 1;
}

.pot-style-card--link {
  color: inherit;
  text-decoration: none;
}

.pot-style-card--link:hover,
.pot-style-card--link:focus {
  color: inherit;
}

.pot-style-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.personalise-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  text-align: center;
  margin-top: var(--space-8);
}

.personalise-option__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-3);
  color: var(--color-gold);
}

.personalise-option__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.personalise-option__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  max-width: 280px;
  margin: 0 auto;
}

/* Custom Pots Page — Responsive Tablet (768px+) */
@media (min-width: 768px) {
  .pot-styles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pot-styles-grid .pot-style-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - var(--space-3));
    justify-self: center;
  }

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

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

/* Custom Pots Page — Responsive Desktop (1024px+) */
@media (min-width: 1024px) {
  .pot-styles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pot-styles-grid .pot-style-card:last-child:nth-child(odd) {
    max-width: none;
    grid-column: auto;
  }

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

/* ==========================================================================
   Event Gifting Page
   Requirements: 2.4, 4.7, 5.4, 9.4
   ========================================================================== */

/* Event Type Selector Cards */
.event-type-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.event-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--color-text-primary);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.event-type-card:hover,
.event-type-card:focus {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  color: var(--color-text-primary);
}

.event-type-card__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  color: var(--color-gold);
}

.event-type-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--color-black);
}

.event-type-card__description {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
  flex: 1;
}

.event-type-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--font-semibold);
  color: var(--color-whatsapp);
  font-size: var(--text-sm);
}

.event-type-card__link .gos-whatsapp-icon {
  width: 16px;
  height: 16px;
}

/* Sample Arrangements Gallery */
.event-gallery-card__placeholder {
  background-color: var(--color-cream);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bulk Event Favors Features */
.event-bulk__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.event-bulk-feature {
  text-align: center;
}

.event-bulk-feature__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-4);
  color: var(--color-gold);
}

.event-bulk-feature__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.event-bulk-feature__desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  max-width: 320px;
  margin: 0 auto;
}

/* Ordering Process Steps */
.event-process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.event-process__step {
  text-align: center;
}

.event-process__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-4);
  color: var(--color-gold);
}

.event-process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-gold);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.event-process__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.event-process__description {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  max-width: 280px;
  margin: 0 auto;
}

/* Event Gifting Page — Responsive Tablet (768px+) */
@media (min-width: 768px) {
  .event-type-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

/* Event Gifting Page — Responsive Desktop (1024px+) */
@media (min-width: 1024px) {
  .event-type-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .event-process__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Corporate Gifts Page
   Requirements: 2.3, 3.5, 4.6, 5.5
   ========================================================================== */

/* Benefits Grid */
.corporate-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.corporate-benefit {
  text-align: center;
}

.corporate-benefit__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-4);
  color: var(--color-gold);
}

.corporate-benefit__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.corporate-benefit__desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  max-width: 320px;
  margin: 0 auto;
}

/* Corporate Inquiry Form */
.corporate-inquiry__form-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.corporate-inquiry__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.corporate-inquiry__or {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.corporate-inquiry__submit {
  min-width: 160px;
}

/* Corporate Gifts Page — Responsive Tablet (768px+) */
@media (min-width: 768px) {
  .corporate-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* Corporate Gifts Page — Responsive Desktop (1024px+) */
@media (min-width: 1024px) {
  .corporate-benefits__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Gallery Page
   ========================================================================== */

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-8);
}

.gallery-filter__link {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
  min-height: var(--tap-target-min);
}

.gallery-filter__link:hover,
.gallery-filter__link:focus {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.gallery-filter__link--active {
  background-color: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-text-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 0;
}

.gallery-item__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-item__img {
  transform: scale(1.05);
}

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--color-text-light);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.gallery-item__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
}

.gallery-item__cat {
  font-size: var(--text-xs);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-empty {
  padding: var(--space-12) var(--space-4);
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Types of Succulents Page
   ========================================================================== */

.succulent-types__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.succulent-type-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.succulent-type-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.succulent-type-card__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.succulent-type-card__placeholder {
  background: linear-gradient(135deg, var(--color-warm-gray) 0%, var(--color-cream) 100%);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.succulent-type-card__body {
  padding: var(--space-6);
}

.succulent-type-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
  color: var(--color-black);
}

.succulent-type-card__desc {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
  line-height: var(--leading-relaxed);
}

.succulent-type-card__care {
  font-size: var(--text-sm);
  color: var(--color-green);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .succulent-types__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .succulent-types__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   About Us Page
   Requirements: 2.5, 5.7
   ========================================================================== */

/* Brand Story */
.about-story__content {
  max-width: 720px;
  margin: 0 auto;
}

.about-story__content p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

/* Founder Section */
.about-founder__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

.about-founder__placeholder {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  background-color: var(--color-warm-gray);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  margin: 0 auto;
}

.about-founder__bio p {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* Sustainability Mission */
.about-mission__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

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

.about-mission__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-4);
  color: var(--color-gold);
}

.about-mission__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.about-mission__desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  max-width: 320px;
  margin: 0 auto;
}

/* Team / Process Gallery */
.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.about-gallery__item {
  margin: 0;
}

.about-gallery__placeholder {
  aspect-ratio: 1 / 1;
  background-color: var(--color-warm-gray);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
}

.about-gallery__caption {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-align: center;
  margin-top: var(--space-2);
}

/* About Us Page — Responsive Tablet (768px+) */
@media (min-width: 768px) {
  .about-founder__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-founder__placeholder {
    margin: 0;
  }

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

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

/* About Us Page — Responsive Desktop (1024px+) */
@media (min-width: 1024px) {
  .about-founder__grid {
    gap: var(--space-12);
  }

  .about-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

/* ==========================================================================
   Blog Page
   Requirements: 5.6
   ========================================================================== */

/* Blog Layout — Sidebar on right */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.blog-layout__main {
  min-width: 0;
}

/* Featured Post Card */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.blog-featured-card__image-link {
  display: block;
}

.blog-featured-card__thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-featured-card__placeholder {
  background-color: var(--color-cream);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
}

.blog-featured-card__content {
  padding: var(--space-6);
}

.blog-featured-card__badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  background-color: var(--color-gold);
  color: var(--color-black);
  margin-bottom: var(--space-3);
}

.blog-featured-card__date {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

.blog-featured-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.blog-featured-card__title a {
  color: var(--color-black);
  text-decoration: none;
}

.blog-featured-card__title a:hover,
.blog-featured-card__title a:focus {
  color: var(--color-gold);
}

.blog-featured-card__excerpt {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.blog-featured-card__excerpt p {
  margin-bottom: 0;
}

.blog-featured-card__read-more {
  font-size: var(--text-sm);
}

/* Category Filter */
.blog-category-filter {
  margin-bottom: var(--space-6);
}

.blog-category-filter__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: 0;
  margin: 0;
}

.blog-category-filter__link {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap-target-min);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-secondary);
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.blog-category-filter__link:hover,
.blog-category-filter__link:focus {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.blog-category-filter__link--active {
  background-color: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-gold);
}

.blog-category-filter__link--active:hover,
.blog-category-filter__link--active:focus {
  background-color: var(--color-black);
  color: var(--color-gold);
}

/* Post Grid */
.blog-post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.blog-post-card__placeholder {
  background-color: var(--color-cream);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
}

.blog-post-card__thumbnail {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-post-card__date {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

.blog-post-card__excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.blog-post-card__excerpt p {
  margin-bottom: 0;
}

/* Pagination */
.blog-pagination {
  margin-top: var(--space-8);
  text-align: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--tap-target-min);
  min-height: var(--tap-target-min);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin: 0 var(--space-1);
  transition: all var(--transition-fast);
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers:focus {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.blog-pagination .page-numbers.current {
  background-color: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-gold);
}

/* No Posts Found */
.blog-no-posts {
  text-align: center;
  padding: var(--space-12) var(--space-4);
}

.blog-no-posts__message {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}

.blog-no-posts__clear-link {
  color: var(--color-gold);
  font-weight: var(--font-semibold);
  text-decoration: underline;
}

/* Sidebar */
.blog-sidebar-cta {
  background-color: var(--color-black);
  color: var(--color-text-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}

.blog-sidebar-cta__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.blog-sidebar-cta__text {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

.blog-sidebar-cta__btn {
  width: 100%;
  gap: var(--space-2);
}

.blog-sidebar-widgets .widget {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}

.blog-sidebar-widgets .widget-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-black);
  margin-bottom: var(--space-4);
}

/* Blog Page — Responsive Tablet (768px+) */
@media (min-width: 768px) {
  .blog-featured-card {
    grid-template-columns: 1fr 1fr;
  }

  .blog-featured-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .blog-featured-card__title {
    font-size: var(--text-3xl);
  }

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

  .blog-layout {
    grid-template-columns: 1fr 300px;
  }
}

/* Blog Page — Responsive Desktop (1024px+) */
@media (min-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr 340px;
  }
}

/* ==========================================================================
   Contact Page
   Requirements: 2.7, 5.8, 8.7, 8.9
   ========================================================================== */

/* Contact Form Wrapper */
.contact-form__wrap {
  max-width: 720px;
  margin: 0 auto;
}

/* Form Actions */
.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.contact-form__or {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.contact-form__submit {
  min-width: 160px;
}

/* Form Validation Errors */
.form-group--error .form-input,
.form-group--error .form-select,
.form-group--error .form-textarea {
  border-color: var(--color-error);
}

.form-group--error .form-input:focus,
.form-group--error .form-select:focus,
.form-group--error .form-textarea:focus {
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.2);
}

.form-error {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-error);
  margin-top: var(--space-1);
}

/* Success Message */
.contact-form__success {
  text-align: center;
  padding: var(--space-12) var(--space-4);
  color: var(--color-success);
}

.contact-form__success h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-success);
  margin-top: var(--space-4);
  margin-bottom: var(--space-3);
}

.contact-form__success p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.contact-form__success .btn {
  margin-top: var(--space-2);
}

/* Error Banner — Submission failure with WhatsApp fallback */
.contact-form__error-banner {
  background-color: #FDF2F2;
  border: 1px solid var(--color-error);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  margin-bottom: var(--space-6);
  text-align: center;
}

.contact-form__error-banner p {
  color: var(--color-error);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-3);
}

.contact-form__error-banner .btn {
  margin-top: var(--space-2);
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion__item {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
}

.faq-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--tap-target-min);
  padding: var(--space-4) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
  transition: background-color var(--transition-fast);
  gap: var(--space-4);
}

.faq-accordion__trigger:hover,
.faq-accordion__trigger:focus {
  background-color: var(--color-cream);
}

.faq-accordion__trigger:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: -2px;
}

.faq-accordion__question {
  flex: 1;
}

.faq-accordion__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform var(--transition-base);
}

.faq-accordion__trigger[aria-expanded="true"] .faq-accordion__icon {
  transform: rotate(180deg);
}

.faq-accordion__panel {
  overflow: hidden;
}

.faq-accordion__answer {
  padding: 0 var(--space-6) var(--space-6);
}

.faq-accordion__answer p {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

/* Contact Page — Responsive Tablet (768px+) */
@media (min-width: 768px) {
  .faq-accordion__trigger {
    font-size: var(--text-lg);
  }
}

/* ==========================================================================
   Single Product Page
   ========================================================================== */

.gos-single-product {
  padding: var(--space-8) 0 var(--space-12);
}

/* Breadcrumb */
.gos-breadcrumb {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
}

.gos-breadcrumb a {
  color: var(--color-text-secondary);
  text-decoration: none;
}

.gos-breadcrumb a:hover,
.gos-breadcrumb a:focus {
  color: var(--color-gold);
}

.gos-breadcrumb__sep {
  margin: 0 var(--space-2);
  color: var(--color-border);
}

/* Product Grid: stacked on mobile, side-by-side on desktop */
.gos-single-product__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

/* Product Image */
.gos-single-product__main-image {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gos-single-product__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* Gallery Thumbnails */
.gos-single-product__thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.gos-single-product__thumb {
  appearance: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.gos-single-product__thumb:hover {
  border-color: var(--color-gold);
}

.gos-single-product__thumb--active {
  border-color: var(--color-gold);
}

.gos-single-product__thumb-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* Product Details */
.gos-single-product__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.gos-single-product__price {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.gos-single-product__price--contact {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  font-weight: var(--font-medium);
}

.gos-single-product__short-desc {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.gos-single-product__short-desc p:last-child {
  margin-bottom: 0;
}

/* WhatsApp CTA */
.gos-single-product__cta {
  display: flex;
  width: 100%;
  gap: var(--space-2);
  font-size: var(--text-lg);
  padding: var(--space-4) var(--space-6);
  margin-bottom: var(--space-8);
}

/* Description & Attributes */
.gos-single-product__section-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border);
}

.gos-single-product__description {
  margin-bottom: var(--space-6);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.gos-single-product__description p:last-child {
  margin-bottom: 0;
}

.gos-single-product__attr-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.gos-single-product__attr-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-cream);
}

.gos-single-product__attr-item dt {
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
  min-width: 120px;
  flex-shrink: 0;
}

.gos-single-product__attr-item dd {
  color: var(--color-text-secondary);
  margin: 0;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
  .gos-single-product__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .gos-single-product__img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
  }

  .gos-single-product__title {
    font-size: var(--text-3xl);
  }

  .gos-single-product__cta {
    width: auto;
    display: inline-flex;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .gos-single-product__grid {
    gap: var(--space-12);
  }

  .gos-single-product__img {
    max-height: 550px;
  }
}

/* ==========================================================================
   Image Accessibility — Branded Placeholder Fallback
   Requirements: 6.9
   ========================================================================== */

.gos-img-fallback {
  object-fit: contain !important;
  background-color: var(--color-cream);
  border: 1px solid var(--color-border);
}

/* ==========================================================================
   Product Add-Ons
   ========================================================================== */

.gos-product-addons {
  margin-top: var(--space-6);
  padding: var(--space-4);
  background-color: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.gos-product-addons__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 var(--space-3);
  color: var(--color-black);
}

.gos-product-addons__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gos-product-addons__item {
  margin-bottom: var(--space-2);
}

.gos-product-addons__label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  min-height: 44px;
  padding: var(--space-2);
  border-radius: 4px;
  transition: background-color 0.15s ease;
}

.gos-product-addons__label:hover {
  background-color: var(--color-warm-gray);
}

.gos-product-addons__label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-gold);
  flex-shrink: 0;
}

.gos-product-addons__name {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-black);
}

.gos-product-addons__price {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
}

.gos-product-addons__total {
  margin: var(--space-3) 0 0;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-black);
}

.gos-product-addons__total strong {
  color: var(--color-gold);
  font-size: 1.125rem;
}
