/*
Theme Name: Boho Miami
Theme URI: https://bohomiami.com
Author: Boho Miami
Description: Professional e-commerce theme for Boho Miami — tropical, bohemian fashion brand
Version: 1.0.0
Requires at least: 5.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: bohomiami
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --bm-cream: #FAF6F1;
  --bm-sand: #EDE0D0;
  --bm-terracotta: #C4714E;
  --bm-coral: #D4856A;
  --bm-dark: #1E1812;
  --bm-charcoal: #3D3228;
  --bm-warm-gray: #7A6E65;
  --bm-white: #FFFFFF;
  --bm-gold: #B8966E;
  --bm-light-gold: #D4B896;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(30, 24, 18, 0.08);
  --shadow-md: 0 4px 20px rgba(30, 24, 18, 0.12);
  --shadow-lg: 0 8px 40px rgba(30, 24, 18, 0.15);
  --radius: 2px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bm-cream);
  color: var(--bm-charcoal);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--bm-dark);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bm-terracotta);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--bm-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--bm-warm-gray);
  max-width: 560px;
  margin: 0 auto 48px;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--bm-dark);
  color: var(--bm-white);
}

.btn-primary:hover {
  background: var(--bm-terracotta);
  color: var(--bm-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--bm-dark);
  border: 1.5px solid var(--bm-dark);
}

.btn-outline:hover {
  background: var(--bm-dark);
  color: var(--bm-white);
  transform: translateY(-1px);
}

.btn-terracotta {
  background: var(--bm-terracotta);
  color: var(--bm-white);
}

.btn-terracotta:hover {
  background: var(--bm-dark);
  color: var(--bm-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--bm-dark);
  color: var(--bm-light-gold);
  text-align: center;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--bm-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--bm-sand);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1240px;
  margin: 0 auto;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-logo img { height: 44px; width: auto; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  color: var(--bm-dark);
  letter-spacing: 1px;
}

.logo-text span { color: var(--bm-terracotta); }

/* Primary Navigation */
.primary-nav { display: flex; align-items: center; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bm-charcoal);
  position: relative;
  padding-bottom: 4px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--bm-terracotta);
  transition: width 0.3s ease;
}

.nav-menu a:hover { color: var(--bm-terracotta); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu .current-menu-item a { color: var(--bm-terracotta); }
.nav-menu .current-menu-item a::after { width: 100%; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bm-charcoal);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: var(--transition);
}

.header-action-btn:hover { color: var(--bm-terracotta); background: var(--bm-cream); }

.cart-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--bm-terracotta);
  color: white;
  font-size: 10px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--bm-dark);
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--bm-white);
  z-index: 2000;
  padding: 80px 40px 40px;
  box-shadow: var(--shadow-lg);
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-nav.open { right: 0; }
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,24,18,0.5);
  z-index: 1999;
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--bm-charcoal);
}

.mobile-nav ul { list-style: none; }

.mobile-nav ul li { border-bottom: 1px solid var(--bm-sand); }

.mobile-nav ul a {
  display: block;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bm-charcoal);
}

.mobile-nav ul a:hover { color: var(--bm-terracotta); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bm-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2A1E14 0%, #3D2B1A 40%, #1E1812 100%);
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(196, 113, 78, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184, 150, 110, 0.1) 0%, transparent 40%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--bm-light-gold);
  display: block;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 300;
  color: var(--bm-white);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 680px;
}

.hero-title em {
  font-style: italic;
  color: var(--bm-light-gold);
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 440px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-actions .btn-primary { background: var(--bm-terracotta); }
.hero-actions .btn-primary:hover { background: var(--bm-white); color: var(--bm-dark); }
.hero-actions .btn-outline { color: var(--bm-white); border-color: rgba(255,255,255,0.5); }
.hero-actions .btn-outline:hover { background: var(--bm-white); color: var(--bm-dark); border-color: var(--bm-white); }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--bm-white);
  border-bottom: 1px solid var(--bm-sand);
  padding: 20px 24px;
}

.trust-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px;
}

.trust-icon {
  font-size: 20px;
  color: var(--bm-terracotta);
  margin-bottom: 4px;
}

.trust-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bm-dark);
}

.trust-desc {
  font-size: 13px;
  color: var(--bm-warm-gray);
}

/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.featured-products {
  padding: 96px 0 80px;
  background: var(--bm-cream);
}

.featured-products .section-header {
  margin-bottom: 56px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 56px;
}

.product-card {
  background: var(--bm-white);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.product-image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bm-sand);
  aspect-ratio: 3/4;
}

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

.product-card:hover .product-image-wrap img { transform: scale(1.05); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 24, 18, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay { opacity: 1; }

.product-overlay-btn {
  background: var(--bm-white);
  color: var(--bm-dark);
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transform: translateY(8px);
  transition: var(--transition);
}

.product-card:hover .product-overlay-btn { transform: translateY(0); }
.product-overlay-btn:hover { background: var(--bm-terracotta); color: var(--bm-white); }

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bm-terracotta);
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.product-info {
  padding: 20px 24px 24px;
}

.product-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bm-terracotta);
  display: block;
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.product-name a { color: var(--bm-dark); }
.product-name a:hover { color: var(--bm-terracotta); }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--bm-dark);
}

.product-price del { color: var(--bm-warm-gray); font-size: 16px; margin-right: 6px; }
.product-price ins { text-decoration: none; color: var(--bm-terracotta); }

.add-to-cart-btn {
  background: var(--bm-dark);
  color: var(--bm-white);
  border: none;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.add-to-cart-btn:hover { background: var(--bm-terracotta); color: white; }

.no-products-msg {
  text-align: center;
  padding: 60px 24px;
  color: var(--bm-warm-gray);
  font-size: 16px;
}

.section-cta { text-align: center; }

/* ============================================
   BRAND STORY
   ============================================ */
.brand-story {
  padding: 96px 0;
  background: var(--bm-white);
}

.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand-story-visual {
  position: relative;
}

.brand-story-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--bm-sand) 0%, var(--bm-terracotta) 60%, var(--bm-dark) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-story-img-main span {
  font-family: var(--font-heading);
  font-size: 72px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

.brand-story-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  background: var(--bm-sand);
  border-radius: 4px;
  z-index: -1;
}

.brand-story-content .section-label { margin-bottom: 12px; }

.brand-story-content .section-title {
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 24px;
}

.brand-story-content p {
  color: var(--bm-warm-gray);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.9;
}

.brand-story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0;
}

.stat-item {
  padding: 20px 0;
  border-top: 2px solid var(--bm-sand);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--bm-terracotta);
  display: block;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bm-warm-gray);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 96px 0;
  background: var(--bm-dark);
}

.services .section-title { color: var(--bm-white); }
.services .section-subtitle { color: rgba(255,255,255,0.55); }
.services .section-label { color: var(--bm-light-gold); }

.services-grid {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  padding: 48px 36px;
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.service-card:last-child { border-right: none; }
.service-card:hover { background: rgba(196, 113, 78, 0.1); }

.service-icon {
  font-size: 32px;
  margin-bottom: 24px;
  display: block;
  color: var(--bm-light-gold);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--bm-white);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bm-terracotta);
  border-bottom: 1px solid var(--bm-terracotta);
  padding-bottom: 2px;
}

.service-link:hover { color: var(--bm-light-gold); border-color: var(--bm-light-gold); }

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
  padding: 96px 0;
  background: var(--bm-sand);
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.newsletter .section-title { margin-bottom: 16px; }

.newsletter p {
  color: var(--bm-warm-gray);
  margin-bottom: 36px;
  font-size: 15px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto 16px;
  border: 1.5px solid var(--bm-charcoal);
  border-radius: 2px;
  overflow: hidden;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: var(--bm-white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--bm-dark);
  outline: none;
}

.newsletter-form input[type="email"]::placeholder { color: var(--bm-warm-gray); }

.newsletter-form button {
  padding: 14px 24px;
  background: var(--bm-dark);
  color: var(--bm-white);
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover { background: var(--bm-terracotta); }

.newsletter-disclaimer {
  font-size: 12px;
  color: var(--bm-warm-gray);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bm-dark);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 0;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo-text { color: var(--bm-white); font-size: 24px; margin-bottom: 16px; display: block; }
.footer-brand .logo-text span { color: var(--bm-terracotta); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
}

.social-link:hover { background: var(--bm-terracotta); color: var(--bm-white); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bm-white);
  margin-bottom: 20px;
}

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

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-col ul a:hover { color: var(--bm-light-gold); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */
.woocommerce-page .site-main,
.woocommerce .site-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 24px;
}

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 28px !important;
  margin: 0 !important;
  float: none !important;
}

.woocommerce ul.products li.product {
  background: var(--bm-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: auto !important;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.woocommerce ul.products li.product a img {
  margin: 0 !important;
  width: 100% !important;
  height: 280px !important;
  object-fit: cover !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-heading) !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  padding: 16px 20px 8px !important;
  color: var(--bm-dark) !important;
}

.woocommerce ul.products li.product .price {
  font-family: var(--font-heading) !important;
  font-size: 20px !important;
  color: var(--bm-dark) !important;
  padding: 0 20px 16px !important;
}

.woocommerce ul.products li.product .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--bm-dark) !important;
  color: var(--bm-white) !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border-radius: var(--radius) !important;
  padding: 12px 24px !important;
  border: none !important;
  transition: var(--transition) !important;
  margin: 0 20px 20px !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--bm-terracotta) !important;
}

.woocommerce-breadcrumb { color: var(--bm-warm-gray); font-size: 13px; margin-bottom: 32px; }
.woocommerce-breadcrumb a { color: var(--bm-terracotta); }

.woocommerce div.product .product_title {
  font-family: var(--font-heading) !important;
  font-size: 40px !important;
  font-weight: 400 !important;
  color: var(--bm-dark) !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--font-heading) !important;
  font-size: 28px !important;
  color: var(--bm-dark) !important;
}

.woocommerce-page h1.page-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(32px, 4vw, 52px) !important;
  font-weight: 400 !important;
  color: var(--bm-dark) !important;
  margin-bottom: 40px !important;
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
  background: var(--bm-dark);
  padding: 64px 24px;
  text-align: center;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--bm-white);
  font-weight: 300;
  margin-bottom: 12px;
}

.page-banner p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
}

/* ============================================
   CART & CHECKOUT
   ============================================ */
.woocommerce-cart .site-main,
.woocommerce-checkout .site-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-grid {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto; grid-template-columns: 1fr; gap: 0; }
  .service-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .brand-story-inner { grid-template-columns: 1fr; gap: 48px; }
  .brand-story-visual { order: -1; max-width: 480px; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-nav { display: block; }

  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .hero-title { font-size: clamp(36px, 8vw, 60px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .brand-story-stats { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

  .newsletter-form { flex-direction: column; border: none; }
  .newsletter-form input[type="email"] { border: 1.5px solid var(--bm-charcoal); border-radius: 2px; }
  .newsletter-form button { border-radius: 2px; }
}

@media (max-width: 480px) {
  .trust-bar-inner { grid-template-columns: 1fr; }
  .header-inner { padding: 0 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .brand-story-stats { grid-template-columns: 1fr; }
}


/* ── Shop Filter Bar ── */
.shop-filter-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--bm-cream, #faf8f5);
  border-bottom: 1px solid var(--bm-sand, #e5e0d8);
}
.filter-btn {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--bm-sand, #e5e0d8);
  border-radius: 2px;
  color: var(--bm-charcoal, #2c2c2c);
  background: transparent;
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--bm-charcoal, #2c2c2c);
  color: #fff;
  border-color: var(--bm-charcoal, #2c2c2c);
}

/* ── Shop Dropdown ── */
.site-header { overflow: visible !important; }
.header-inner { overflow: visible !important; }
.primary-nav { overflow: visible !important; }
.nav-menu { overflow: visible !important; }

li.has-dropdown { position: relative !important; }

li.has-dropdown .nav-dropdown {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: #fff !important;
  border: 1px solid #e5e0d8 !important;
  border-radius: 4px !important;
  min-width: 160px !important;
  padding: 8px 0 !important;
  z-index: 99999 !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
  list-style: none !important;
  margin: 0 !important;
}

li.has-dropdown.open .nav-dropdown {
  display: block !important;
}

li.has-dropdown .nav-dropdown li { list-style: none !important; }

li.has-dropdown .nav-dropdown li a {
  display: block !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  letter-spacing: .04em !important;
  text-transform: none !important;
  color: #2c2c2c !important;
  white-space: nowrap !important;
}

li.has-dropdown .nav-dropdown li a:hover { color: #c4714e !important; }

/* ── Slim banner for shop/category pages ── */
.page-banner--slim { padding: 32px 24px; }

/* ── Shop sidebar layout ── */
.shop-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 24px;
  align-items: start;
}

.shop-sidebar { position: sticky; top: 100px; }

.sidebar-heading {
  font-family: var(--bm-font-heading, serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--bm-charcoal, #2c2c2c);
  margin-bottom: 16px;
}

.sidebar-cats { list-style: none; margin: 0; padding: 0; }

.sidebar-cats li { margin-bottom: 2px; }

.sidebar-cats a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 13px;
  color: #888;
  border-radius: 0;
  transition: color .2s;
  text-decoration: none;
  border-bottom: none;
}

.sidebar-cats a:hover {
  color: var(--bm-charcoal, #2c2c2c);
  background: none;
}

.sidebar-cats a.active {
  color: var(--bm-charcoal, #2c2c2c);
  font-weight: 600;
  background: none;
}

.cat-count {
  font-size: 11px;
  opacity: .4;
}

.shop-products .products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin: 0 !important;
  float: none !important;
  list-style: none !important;
  padding: 0 !important;
}

@media (max-width: 768px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; display: flex; gap: 8px; flex-wrap: wrap; }
  .sidebar-heading { display: none; }
  .sidebar-cats { display: flex; gap: 8px; flex-wrap: wrap; }
  .sidebar-cats li { margin: 0; }
  .sidebar-cats a { padding: 6px 14px; border: 1px solid var(--bm-sand,#e5e0d8); border-radius: 20px; font-size: 12px; color: #888; }
  .sidebar-cats a.active { background: var(--bm-charcoal,#2c2c2c); color: #fff; border-color: var(--bm-charcoal,#2c2c2c); }
  .shop-products .products { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Fix WooCommerce default product grid overrides */
.shop-products .products li.product {
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  width: 100% !important;
}
.shop-products .products li.product.first,
.shop-products .products li.product.last {
  clear: none !important;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .shop-products .products { grid-template-columns: repeat(3, 1fr) !important; }
}
