/*
Theme Name: Brühwerk
Theme URI: https://bruehwerk.de
Author: Brühwerk Digital
Description: Premium WooCommerce Theme für Kaffeevollautomaten - Dark Luxury Aesthetic
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GPL v2 or later
Text Domain: bruehwerk
Tags: woocommerce, e-commerce, dark, luxury, custom-menu, custom-logo
*/

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #c8956c #111;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Screen reader text (accessibility) */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #0a0a0a;
  clip: auto !important;
  clip-path: none;
  color: #c8956c;
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

a {
  color: #c8956c;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #ddb08e;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: #fafafa;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

::selection {
  background: rgba(200, 149, 108, 0.3);
  color: #fafafa;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: #c8956c;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ddb08e;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, textarea, select {
  font-family: inherit;
}

/* ==========================================================================
   2. PAGE LOADER
   ========================================================================== */

.bw-loader {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
  pointer-events: all;
}

.bw-loader.loaded {
  opacity: 0;
  pointer-events: none;
}

.bw-loader-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: #fafafa;
  animation: pulse 1.5s infinite;
}

.bw-loader-text span {
  color: #c8956c;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ==========================================================================
   3. CONTAINER & SECTION
   ========================================================================== */

.bw-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.bw-section {
  padding: 7rem 0;
}

.bw-section-header {
  margin-bottom: 3.5rem;
}

.bw-section-header--flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.bw-section-label {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c8956c;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bw-section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: #c8956c;
}

.bw-section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fafafa;
  font-weight: 600;
}

.bw-section-link {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c8956c;
  text-decoration: none;
  transition: color 0.3s;
}

.bw-section-link:hover {
  color: #ddb08e;
}

/* ==========================================================================
   4. HEADER
   ========================================================================== */

.bw-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s;
}

.bw-header .bw-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 2rem;
}

.bw-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 149, 108, 0.15);
  padding: 0.6rem 0;
}

.bw-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fafafa;
  text-decoration: none;
  transition: opacity 0.3s;
}

.bw-logo:hover {
  opacity: 0.85;
  color: #fafafa;
}

.bw-logo-accent {
  color: #c8956c;
}

.bw-logo-dot {
  color: #c8956c;
}

.bw-nav {
  display: flex;
  align-items: center;
}

.bw-nav ul,
.bw-nav-list,
.bw-nav .menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.bw-nav li,
.bw-nav-list li {
  display: inline-block;
  list-style: none;
}

.bw-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.bw-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c8956c;
  transition: width 0.3s ease;
}

.bw-nav a:hover {
  color: #fafafa;
}

.bw-nav a:hover::after,
.bw-nav a.current::after,
.bw-nav .current-menu-item > a::after {
  width: 100%;
}

.bw-header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.bw-cart-link {
  position: relative;
  color: #e0e0e0;
  transition: color 0.3s;
  text-decoration: none;
}

.bw-cart-link:hover {
  color: #c8956c;
}

.bw-cart-link svg {
  width: 22px;
  height: 22px;
}

.bw-cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #c8956c;
  color: #0a0a0a;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
}

.bw-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #e0e0e0;
  cursor: pointer;
  padding: 0.5rem;
}

.bw-mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   5. MOBILE MENU
   ========================================================================== */

.bw-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.bw-mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.bw-mobile-menu a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: #fafafa;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}

.bw-mobile-menu a:hover {
  color: #c8956c;
}

.bw-mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fafafa;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.bw-mobile-menu-close:hover {
  color: #c8956c;
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

.bw-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  background: #c8956c;
  color: #0a0a0a;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  gap: 0.5rem;
  line-height: 1;
}

.bw-btn-primary:hover {
  background: #b8855c;
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 149, 108, 0.3);
}

.bw-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(200, 149, 108, 0.2);
}

.bw-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  background: transparent;
  border: 1px solid #c8956c;
  color: #c8956c;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  gap: 0.5rem;
  line-height: 1;
}

.bw-btn-outline:hover {
  background: rgba(200, 149, 108, 0.1);
  color: #c8956c;
  transform: translateY(-2px);
}

.bw-btn-outline:active {
  transform: translateY(0);
}

.bw-btn-ghost {
  background: none;
  border: none;
  color: #c8956c;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  transition: all 0.3s;
  text-decoration: none;
}

.bw-btn-ghost:hover {
  color: #ddb08e;
}

.bw-btn-ghost svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.bw-btn-ghost:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   7. HERO
   ========================================================================== */

.bw-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.bw-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
}

.bw-hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.bw-hero .bw-container {
  position: relative;
  z-index: 1;
}

.bw-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 200px);
}

.bw-hero-content {
  max-width: 600px;
}

.bw-hero-label {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c8956c;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bw-hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: #c8956c;
}

.bw-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fafafa;
  margin-bottom: 1.5rem;
}

.bw-hero h1 em {
  color: #c8956c;
  font-style: italic;
}

.bw-hero-text {
  color: #888;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.bw-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.bw-hero-trust {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 149, 108, 0.15);
}

.bw-hero-trust-item {
  font-size: 0.85rem;
  color: #888;
}

.bw-hero-trust-item strong {
  color: #fafafa;
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.bw-hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bw-hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(200, 149, 108, 0.2);
  border-radius: 12px;
  pointer-events: none;
}

.bw-hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: -30px;
  border: 1px solid rgba(200, 149, 108, 0.08);
  border-radius: 16px;
  pointer-events: none;
}

.bw-hero-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(200, 149, 108, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 149, 108, 0.1);
}

.bw-hero-placeholder svg {
  width: 120px;
  height: 120px;
  opacity: 0.3;
}

.bw-hero-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* ==========================================================================
   8. BRAND MARQUEE
   ========================================================================== */

.bw-marquee {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(200, 149, 108, 0.1);
  border-bottom: 1px solid rgba(200, 149, 108, 0.1);
  overflow: hidden;
  position: relative;
}

.bw-marquee::before,
.bw-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.bw-marquee::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}

.bw-marquee::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}

.bw-marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}

.bw-marquee-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
  transition: color 0.3s;
  flex-shrink: 0;
}

.bw-marquee-item:hover {
  color: #c8956c;
}

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

/* ==========================================================================
   9. FEATURES
   ========================================================================== */

.bw-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.bw-feature-card {
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
  transition: all 0.4s;
}

.bw-feature-card:hover {
  background: rgba(200, 149, 108, 0.02);
}

.bw-feature-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(200, 149, 108, 0.15);
}

.bw-feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(200, 149, 108, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  transition: all 0.4s;
  color: #c8956c;
}

.bw-feature-icon svg {
  width: 28px;
  height: 28px;
  opacity: 0.8;
}

.bw-feature-card:hover .bw-feature-icon {
  background: rgba(200, 149, 108, 0.15);
  border-color: #c8956c;
  transform: scale(1.1);
}

.bw-feature-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: #fafafa;
  margin-bottom: 0.75rem;
}

.bw-feature-card p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 250px;
  margin: 0 auto;
}

/* ==========================================================================
   10. PRODUCT CARDS
   ========================================================================== */

.bw-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.bw-product-card {
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}

.bw-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 149, 108, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.bw-product-image-wrap {
  aspect-ratio: 1;
  background: #0d0d0d;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

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

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

.bw-product-image-placeholder {
  width: 80px;
  height: 80px;
  opacity: 0.15;
  color: #c8956c;
}

.bw-product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #c8956c;
  color: #0a0a0a;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  z-index: 2;
}

.bw-product-info {
  padding: 1.5rem;
}

.bw-product-category {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c8956c;
  margin-bottom: 0.5rem;
}

.bw-product-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: #fafafa;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.bw-product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.bw-product-title a:hover {
  color: #c8956c;
}

.bw-product-excerpt {
  color: #777;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bw-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(200, 149, 108, 0.1);
}

.bw-product-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: #fafafa;
  font-weight: 600;
}

.bw-product-price del {
  color: #555;
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.bw-product-price ins {
  text-decoration: none;
  color: #c8956c;
}

.bw-product-footer .bw-btn-primary {
  padding: 0.6rem 1.2rem;
  font-size: 0.7rem;
}

/* ==========================================================================
   11. ABOUT SECTION
   ========================================================================== */

.bw-about-section {
  background: #111;
  border-top: 1px solid rgba(200, 149, 108, 0.1);
  border-bottom: 1px solid rgba(200, 149, 108, 0.1);
}

.bw-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.bw-about-image {
  position: relative;
}

.bw-about-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(200, 149, 108, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 149, 108, 0.1);
}

.bw-about-placeholder svg {
  width: 100px;
  height: 100px;
  opacity: 0.2;
}

.bw-about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.bw-about-content {
  position: relative;
}

.bw-about-bg-text {
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(200, 149, 108, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.bw-about-content h2 {
  margin-bottom: 1.5rem;
}

.bw-about-content p {
  color: #888;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.bw-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(200, 149, 108, 0.15);
}

.bw-about-stat strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: #c8956c;
  display: block;
  margin-bottom: 0.25rem;
}

.bw-about-stat span {
  font-size: 0.85rem;
  color: #888;
}

/* ==========================================================================
   12. TESTIMONIALS
   ========================================================================== */

.bw-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.bw-testimonial-card {
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.1);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s;
}

.bw-testimonial-card:hover {
  border-color: rgba(200, 149, 108, 0.25);
  transform: translateY(-4px);
}

.bw-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5rem;
  color: rgba(200, 149, 108, 0.15);
  line-height: 1;
}

.bw-testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  color: #c8956c;
  font-size: 0.85rem;
}

.bw-testimonial-text {
  font-style: italic;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.bw-testimonial-author {
  font-weight: 600;
  color: #fafafa;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.bw-testimonial-role {
  color: #888;
  font-size: 0.8rem;
}

/* ==========================================================================
   13. NEWSLETTER
   ========================================================================== */

.bw-newsletter-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(200, 149, 108, 0.15);
  border-radius: 16px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.bw-newsletter-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c8956c, transparent);
}

.bw-newsletter-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.bw-newsletter-box h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: #fafafa;
  margin-bottom: 1rem;
}

.bw-newsletter-box p {
  color: #888;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.bw-newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 450px;
  margin: 1.5rem auto 0;
}

.bw-newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.8rem 1.2rem;
  background: #1a1a1a;
  border: 1px solid rgba(200, 149, 108, 0.2);
  border-radius: 6px;
  color: #e0e0e0;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}

.bw-newsletter-form input[type="email"]::placeholder {
  color: #666;
}

.bw-newsletter-form input[type="email"]:focus {
  border-color: #c8956c;
}

.bw-newsletter-form .bw-btn-primary {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */

.bw-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(200, 149, 108, 0.1);
  padding-top: 5rem;
}

.bw-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.bw-footer-brand {
  max-width: 300px;
}

.bw-footer-brand .bw-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.bw-footer-brand p {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.7;
}

.bw-footer h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: #fafafa;
  margin-bottom: 1.5rem;
}

.bw-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bw-footer-links li {
  margin-bottom: 0.6rem;
}

.bw-footer a {
  color: #777;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  display: block;
  margin-bottom: 0.6rem;
}

.bw-footer a:hover {
  color: #c8956c;
}

.bw-footer-links a {
  margin-bottom: 0;
}

.bw-footer-bottom {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #555;
}

.bw-footer-social {
  display: flex;
  gap: 1rem;
}

.bw-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200, 149, 108, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: all 0.3s;
  margin-bottom: 0;
}

.bw-footer-social a:hover {
  background: #c8956c;
  border-color: #c8956c;
  color: #0a0a0a;
}

.bw-footer-social a svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   15. SCROLL ANIMATIONS
   ========================================================================== */

.bw-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bw-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.bw-reveal-delay-1 { transition-delay: 0.1s; }
.bw-reveal-delay-2 { transition-delay: 0.2s; }
.bw-reveal-delay-3 { transition-delay: 0.3s; }
.bw-reveal-delay-4 { transition-delay: 0.4s; }

.bw-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bw-reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.bw-reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bw-reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.bw-reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bw-reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   16. SHOP HERO
   ========================================================================== */

.bw-shop-hero {
  text-align: center;
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, rgba(200, 149, 108, 0.03) 0%, transparent 100%);
  position: relative;
}

.bw-shop-hero .bw-section-label {
  justify-content: center;
}

.bw-shop-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.bw-shop-hero p {
  color: #888;
  max-width: 500px;
  margin: 0 auto;
  font-size: 1rem;
}

.bw-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200, 149, 108, 0.1);
}

.bw-shop-toolbar p {
  color: #888;
  font-size: 0.9rem;
}

.bw-shop-filter {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bw-shop-filter select {
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.2);
  color: #e0e0e0;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s;
}

.bw-shop-filter select:focus {
  border-color: #c8956c;
}

/* ==========================================================================
   17. PAGE TEMPLATES
   ========================================================================== */

.bw-page-hero {
  text-align: center;
  padding: 8rem 0 4rem;
  position: relative;
}

.bw-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(200, 149, 108, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.bw-page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  position: relative;
}

.bw-page-hero .bw-section-label {
  justify-content: center;
  position: relative;
}

.bw-page-content {
  max-width: 800px;
  margin: 0 auto;
}

.bw-page-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #ccc;
}

.bw-page-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.bw-page-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.bw-page-content ul,
.bw-page-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: #ccc;
}

.bw-page-content ul {
  list-style: disc;
}

.bw-page-content ol {
  list-style: decimal;
}

.bw-page-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.bw-page-content a {
  color: #c8956c;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bw-page-content a:hover {
  color: #ddb08e;
}

.bw-page-content blockquote {
  border-left: 3px solid #c8956c;
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: #aaa;
  font-style: italic;
}

.bw-page-content img {
  border-radius: 12px;
  margin: 2rem 0;
}

/* ==========================================================================
   18. 404 PAGE
   ========================================================================== */

.bw-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
}

.bw-404-code {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 8rem;
  color: #c8956c;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.bw-404 h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.bw-404 p {
  color: #888;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   19. WOOCOMMERCE OVERRIDES - SHOP GRID
   ========================================================================== */

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 2rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product {
  background: #111 !important;
  border: 1px solid rgba(200, 149, 108, 0.1) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: all 0.4s !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  float: none !important;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(200, 149, 108, 0.3) !important;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1;
  object-fit: contain;
  padding: 1.5rem;
  background: #0d0d0d;
  margin: 0 !important;
  border-radius: 0 !important;
  transition: transform 0.5s;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.05);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 1.15rem !important;
  color: #fafafa !important;
  padding: 1rem 1.5rem 0.5rem !important;
  margin: 0 !important;
}

.woocommerce ul.products li.product .star-rating {
  margin: 0 0 0.5rem 1.5rem !important;
  color: #c8956c;
}

.woocommerce ul.products li.product .star-rating span::before {
  color: #c8956c;
}

.woocommerce ul.products li.product .price,
.woocommerce .price {
  font-family: 'Playfair Display', Georgia, serif;
  color: #c8956c !important;
  font-size: 1.2rem !important;
  padding: 0 1.5rem !important;
  display: block;
}

.woocommerce ul.products li.product .price del {
  color: #555 !important;
  font-size: 0.9rem;
  opacity: 0.8;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  color: #c8956c;
  font-weight: 600;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button,
.woocommerce a.button {
  display: block !important;
  margin: 1rem 1.5rem 1.5rem !important;
  padding: 0.7rem 1.5rem !important;
  background: #c8956c !important;
  color: #0a0a0a !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  border-radius: 6px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  text-align: center !important;
  text-decoration: none !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover {
  background: #b8855c !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 149, 108, 0.25);
}

.woocommerce .onsale {
  background: #c8956c !important;
  color: #0a0a0a !important;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem !important;
  padding: 0.3rem 0.75rem !important;
  border-radius: 4px !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  min-height: auto !important;
  min-width: auto !important;
  line-height: 1.5 !important;
  top: 1rem !important;
  left: 1rem !important;
  right: auto !important;
}

/* Ordering / Sort Dropdown */
.woocommerce .woocommerce-ordering select,
.woocommerce-page .woocommerce-ordering select {
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.2);
  color: #e0e0e0;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
}

.woocommerce .woocommerce-ordering select:focus {
  border-color: #c8956c;
}

/* Result Count */
.woocommerce .woocommerce-result-count {
  color: #888;
  font-size: 0.85rem;
}

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 2rem;
  padding: 0;
}

.woocommerce .woocommerce-breadcrumb a {
  color: #c8956c;
  text-decoration: none;
}

.woocommerce .woocommerce-breadcrumb a:hover {
  color: #ddb08e;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
  margin-top: 3rem;
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 0.5rem;
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
  margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span.current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: 1px solid rgba(200, 149, 108, 0.15);
  text-decoration: none;
}

.woocommerce nav.woocommerce-pagination ul li a {
  background: #111;
  color: #e0e0e0;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: rgba(200, 149, 108, 0.15);
  border-color: #c8956c;
  color: #fafafa;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #c8956c;
  color: #0a0a0a;
  border-color: #c8956c;
  font-weight: 600;
}

/* ==========================================================================
   20. WOOCOMMERCE - SINGLE PRODUCT
   ========================================================================== */

.woocommerce div.product {
  padding-top: 6rem;
}

.woocommerce div.product div.images {
  background: #0d0d0d;
  border-radius: 12px;
  border: 1px solid rgba(200, 149, 108, 0.1);
  padding: 2rem;
  overflow: hidden;
}

.woocommerce div.product div.images img {
  border-radius: 8px;
}

.woocommerce div.product div.images .flex-control-thumbs {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(200, 149, 108, 0.1);
  transition: border-color 0.3s;
}

.woocommerce div.product div.images .flex-control-thumbs li:hover,
.woocommerce div.product div.images .flex-control-thumbs li.flex-active {
  border-color: #c8956c;
}

.woocommerce div.product div.summary {
  padding-left: 2rem;
}

.woocommerce div.product .product_title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  color: #fafafa;
  margin-bottom: 1rem;
}

.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 1.5rem;
}

.woocommerce div.product .woocommerce-product-rating .star-rating {
  color: #c8956c;
}

.woocommerce div.product .woocommerce-product-rating .star-rating span::before {
  color: #c8956c;
}

.woocommerce div.product .woocommerce-review-link {
  color: #888;
  font-size: 0.85rem;
}

.woocommerce div.product p.price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem !important;
  color: #c8956c !important;
  margin-bottom: 1.5rem;
  padding: 0 !important;
}

.woocommerce div.product p.price del {
  color: #555;
  font-size: 1.2rem;
}

.woocommerce div.product p.price ins {
  text-decoration: none;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.woocommerce div.product .woocommerce-product-details__short-description p {
  margin-bottom: 1rem;
}

/* Quantity */
.woocommerce .quantity .qty {
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.2);
  color: #fafafa;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  width: 80px;
  text-align: center;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
  -moz-appearance: textfield;
}

.woocommerce .quantity .qty::-webkit-inner-spin-button,
.woocommerce .quantity .qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce .quantity .qty:focus {
  border-color: #c8956c;
}

/* Add to Cart */
.woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce button.single_add_to_cart_button {
  background: #c8956c !important;
  color: #0a0a0a !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.9rem 2.5rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: #b8855c !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 149, 108, 0.3);
}

/* Product Meta */
.woocommerce div.product .product_meta {
  border-top: 1px solid rgba(200, 149, 108, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
}

.woocommerce div.product .product_meta > span {
  display: block;
  margin-bottom: 0.5rem;
  color: #888;
}

.woocommerce div.product .product_meta a {
  color: #c8956c;
}

/* Product Tabs */
.woocommerce div.product .woocommerce-tabs {
  margin-top: 4rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  list-style: none;
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(200, 149, 108, 0.15);
  padding: 0;
  margin: 0 0 2rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 1rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s;
  text-decoration: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: #fafafa;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #c8956c;
  border-bottom-color: #c8956c;
}

.woocommerce div.product .woocommerce-tabs .panel {
  background: transparent;
  padding: 0;
  color: #ccc;
  line-height: 1.8;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.woocommerce div.product .woocommerce-tabs .panel p {
  margin-bottom: 1rem;
  color: #aaa;
}

/* Related Products */
.woocommerce .related.products {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(200, 149, 108, 0.1);
}

.woocommerce .related.products > h2,
.woocommerce .upsells.products > h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  color: #fafafa;
  margin-bottom: 2rem;
}

/* ==========================================================================
   21. WOOCOMMERCE - CART
   ========================================================================== */

.woocommerce table.shop_table {
  border: 1px solid rgba(200, 149, 108, 0.1) !important;
  border-radius: 12px !important;
  overflow: hidden;
  border-collapse: separate !important;
}

.woocommerce table.shop_table thead {
  background: #111;
}

.woocommerce table.shop_table th {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  padding: 1.2rem 1.5rem !important;
  border-bottom: 1px solid rgba(200, 149, 108, 0.1) !important;
  background: #111;
}

.woocommerce table.shop_table td {
  padding: 1.5rem !important;
  border-top: 1px solid rgba(200, 149, 108, 0.05) !important;
  color: #e0e0e0;
  background: #0a0a0a;
  vertical-align: middle;
}

.woocommerce table.shop_table .product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  background: #111;
  padding: 0.5rem;
}

.woocommerce table.shop_table .product-name a {
  color: #fafafa;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  text-decoration: none;
}

.woocommerce table.shop_table .product-name a:hover {
  color: #c8956c;
}

.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal {
  font-family: 'Playfair Display', Georgia, serif;
  color: #c8956c;
  font-size: 1.1rem;
}

.woocommerce a.remove {
  color: #c0392b !important;
  font-size: 1.5rem;
  transition: all 0.3s;
}

.woocommerce a.remove:hover {
  background: transparent !important;
  color: #e74c3c !important;
}

/* Cart Actions */
.woocommerce .cart-collaterals {
  margin-top: 3rem;
}

.woocommerce .cart_totals {
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.1);
  border-radius: 12px;
  padding: 2rem;
}

.woocommerce .cart_totals h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.woocommerce .cart_totals table {
  border: none !important;
}

.woocommerce .cart_totals th {
  background: transparent !important;
  color: #888;
  padding: 1rem 0 !important;
  border-bottom: 1px solid rgba(200, 149, 108, 0.08) !important;
}

.woocommerce .cart_totals td {
  background: transparent !important;
  padding: 1rem 0 !important;
  border-bottom: 1px solid rgba(200, 149, 108, 0.08) !important;
  text-align: right;
}

.woocommerce .cart_totals .order-total th,
.woocommerce .cart_totals .order-total td {
  font-size: 1.2rem;
  color: #fafafa;
  border-bottom: none !important;
}

.woocommerce .cart_totals .order-total .amount {
  font-family: 'Playfair Display', Georgia, serif;
  color: #c8956c;
  font-size: 1.4rem;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button {
  background: #c8956c !important;
  color: #0a0a0a !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2rem !important;
  border-radius: 6px !important;
  transition: all 0.3s;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
  background: #b8855c !important;
  box-shadow: 0 8px 25px rgba(200, 149, 108, 0.3);
}

/* Coupon */
.woocommerce .coupon input[type="text"] {
  background: #1a1a1a;
  border: 1px solid rgba(200, 149, 108, 0.2);
  color: #e0e0e0;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  outline: none;
}

.woocommerce .coupon input[type="text"]:focus {
  border-color: #c8956c;
}

.woocommerce .coupon .button,
.woocommerce button[name="update_cart"] {
  background: transparent !important;
  border: 1px solid #c8956c !important;
  color: #c8956c !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.7rem 1.5rem !important;
  border-radius: 6px !important;
  cursor: pointer;
  transition: all 0.3s;
}

.woocommerce .coupon .button:hover,
.woocommerce button[name="update_cart"]:hover {
  background: rgba(200, 149, 108, 0.1) !important;
}

/* ==========================================================================
   22. WOOCOMMERCE - CHECKOUT
   ========================================================================== */

.woocommerce-checkout {
  padding-top: 6rem;
}

.woocommerce form.checkout {
  color: #e0e0e0;
}

.woocommerce form .form-row label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  background: #111 !important;
  border: 1px solid rgba(200, 149, 108, 0.15) !important;
  color: #e0e0e0 !important;
  padding: 0.8rem 1rem !important;
  border-radius: 6px !important;
  font-size: 0.95rem !important;
  outline: none !important;
  transition: border-color 0.3s;
  width: 100%;
  height: auto !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: #c8956c !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #e0e0e0 !important;
  padding: 0 !important;
  line-height: inherit !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%);
}

.select2-dropdown {
  background: #111 !important;
  border: 1px solid rgba(200, 149, 108, 0.2) !important;
  border-radius: 6px !important;
}

.select2-container--default .select2-results__option {
  color: #e0e0e0;
  padding: 0.6rem 1rem;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: rgba(200, 149, 108, 0.2) !important;
  color: #fafafa;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  background: #1a1a1a;
  border: 1px solid rgba(200, 149, 108, 0.2);
  color: #e0e0e0;
  padding: 0.5rem;
  outline: none;
}

.woocommerce form h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: #fafafa;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(200, 149, 108, 0.1);
}

#order_review_heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: #fafafa;
  margin: 2rem 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(200, 149, 108, 0.1);
}

.woocommerce #payment {
  background: #111 !important;
  border: 1px solid rgba(200, 149, 108, 0.1) !important;
  border-radius: 12px !important;
  padding: 2rem !important;
}

.woocommerce #payment div.payment_box {
  background: #1a1a1a !important;
  color: #aaa;
  border-radius: 8px;
}

.woocommerce #payment div.payment_box::before {
  border-bottom-color: #1a1a1a !important;
}

.woocommerce #payment ul.payment_methods {
  border-bottom: 1px solid rgba(200, 149, 108, 0.1) !important;
  padding: 0 0 1rem !important;
}

.woocommerce #payment ul.payment_methods li {
  list-style: none;
}

.woocommerce #payment ul.payment_methods li label {
  color: #e0e0e0;
  font-weight: 500;
}

.woocommerce #place_order {
  background: #c8956c !important;
  color: #0a0a0a !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 3rem !important;
  border-radius: 6px !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.woocommerce #place_order:hover {
  background: #b8855c !important;
  box-shadow: 0 8px 25px rgba(200, 149, 108, 0.3);
}

/* ==========================================================================
   23. WOOCOMMERCE - MY ACCOUNT
   ========================================================================== */

.woocommerce-account .woocommerce-MyAccount-navigation {
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid rgba(200, 149, 108, 0.05);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 1rem 1.5rem;
  color: #aaa;
  font-size: 0.9rem;
  transition: all 0.3s;
  text-decoration: none;
  margin-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background: rgba(200, 149, 108, 0.08);
  color: #c8956c;
}

.woocommerce-account .woocommerce-MyAccount-content {
  color: #ccc;
}

.woocommerce-account .woocommerce-MyAccount-content a {
  color: #c8956c;
}

/* Login / Register Form */
.woocommerce form.login,
.woocommerce form.register {
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.1);
  border-radius: 12px;
  padding: 2.5rem !important;
  margin: 0;
}

.woocommerce form.login h2,
.woocommerce form.register h2 {
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 1.5rem;
}

.woocommerce form.login .button,
.woocommerce form.register .button {
  background: #c8956c !important;
  color: #0a0a0a !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.8rem 2rem !important;
  border-radius: 6px !important;
  border: none !important;
  transition: all 0.3s;
}

.woocommerce form.login .button:hover,
.woocommerce form.register .button:hover {
  background: #b8855c !important;
}

/* ==========================================================================
   24. WOOCOMMERCE - NOTICES
   ========================================================================== */

.woocommerce .woocommerce-message {
  background: #111 !important;
  border-top-color: #27ae60 !important;
  color: #e0e0e0;
  border-radius: 8px;
  padding: 1rem 1.5rem !important;
}

.woocommerce .woocommerce-info {
  background: #111 !important;
  border-top-color: #c8956c !important;
  color: #e0e0e0;
  border-radius: 8px;
  padding: 1rem 1.5rem !important;
}

.woocommerce .woocommerce-error {
  background: #111 !important;
  border-top-color: #c0392b !important;
  color: #e0e0e0;
  border-radius: 8px;
  padding: 1rem 1.5rem !important;
}

.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before {
  color: #c8956c;
}

.woocommerce .woocommerce-error::before {
  color: #c0392b;
}

.woocommerce .woocommerce-message a,
.woocommerce .woocommerce-info a {
  color: #c8956c;
}

/* ==========================================================================
   25. WOOCOMMERCE - WIDGETS
   ========================================================================== */

.widget {
  margin-bottom: 2.5rem;
}

.widget h2,
.widget-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: #fafafa;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(200, 149, 108, 0.15);
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.widget ul li a {
  color: #aaa;
  font-size: 0.9rem;
  transition: color 0.3s;
  text-decoration: none;
}

.widget ul li a:hover {
  color: #c8956c;
}

.woocommerce .widget_price_filter .ui-slider {
  background: #222 !important;
  border: none !important;
  border-radius: 4px;
  height: 4px !important;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  background: #c8956c !important;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background: #c8956c !important;
  border: none !important;
  border-radius: 50%;
  width: 16px !important;
  height: 16px !important;
  top: -6px !important;
  cursor: pointer;
}

.woocommerce .widget_price_filter .price_slider_amount .button {
  background: #c8956c !important;
  color: #0a0a0a !important;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
}

/* ==========================================================================
   26. WOOCOMMERCE - MINI CART
   ========================================================================== */

.widget_shopping_cart .cart_list li {
  padding: 1rem 0 !important;
  border-bottom: 1px solid rgba(200, 149, 108, 0.08);
}

.widget_shopping_cart .cart_list li a {
  color: #fafafa;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
}

.widget_shopping_cart .cart_list li .quantity {
  color: #888;
}

.widget_shopping_cart .total {
  border-top: 1px solid rgba(200, 149, 108, 0.15) !important;
  padding: 1rem 0 !important;
  color: #e0e0e0;
}

.widget_shopping_cart .total .amount {
  color: #c8956c;
  font-family: 'Playfair Display', Georgia, serif;
}

/* ==========================================================================
   27. WOOCOMMERCE - REVIEWS
   ========================================================================== */

.woocommerce #reviews #comments ol.commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce #reviews #comments ol.commentlist li {
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.woocommerce #reviews #comments ol.commentlist li .meta {
  color: #888;
  font-size: 0.85rem;
}

.woocommerce #reviews #comments ol.commentlist li .description p {
  color: #ccc;
  line-height: 1.7;
}

.woocommerce #reviews .star-rating {
  color: #c8956c;
}

.woocommerce #review_form #respond .comment-form-rating label {
  color: #e0e0e0;
}

.woocommerce #review_form #respond textarea {
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.15);
  color: #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.woocommerce #review_form #respond textarea:focus {
  border-color: #c8956c;
}

.woocommerce #review_form #respond .form-submit input {
  background: #c8956c;
  color: #0a0a0a;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.woocommerce #review_form #respond .form-submit input:hover {
  background: #b8855c;
}

/* ==========================================================================
   28. GENERAL FORM STYLES
   ========================================================================== */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="search"],
textarea,
select {
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.15);
  color: #e0e0e0;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  border-color: #c8956c;
}

input::placeholder,
textarea::placeholder {
  color: #666;
}

input[type="submit"],
button[type="submit"] {
  background: #c8956c;
  color: #0a0a0a;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
  background: #b8855c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 149, 108, 0.3);
}

/* ==========================================================================
   29. SEARCH RESULTS
   ========================================================================== */

.search-results .bw-page-hero h1 {
  font-size: 2rem;
}

.bw-search-result {
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.bw-search-result:hover {
  border-color: rgba(200, 149, 108, 0.25);
}

.bw-search-result h2 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.bw-search-result h2 a {
  color: #fafafa;
  text-decoration: none;
}

.bw-search-result h2 a:hover {
  color: #c8956c;
}

.bw-search-result p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   30. BLOG / POSTS
   ========================================================================== */

.bw-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.bw-post-card {
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s;
}

.bw-post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 149, 108, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.bw-post-card-image {
  aspect-ratio: 16 / 9;
  background: #0d0d0d;
  overflow: hidden;
}

.bw-post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.bw-post-card:hover .bw-post-card-image img {
  transform: scale(1.05);
}

.bw-post-card-content {
  padding: 1.5rem;
}

.bw-post-card-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c8956c;
  margin-bottom: 0.75rem;
}

.bw-post-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.bw-post-card-content h3 a {
  color: #fafafa;
  text-decoration: none;
}

.bw-post-card-content h3 a:hover {
  color: #c8956c;
}

.bw-post-card-content p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   31. CONTACT FORM 7 / GENERAL FORMS
   ========================================================================== */

.wpcf7 {
  max-width: 600px;
}

.wpcf7-form p {
  margin-bottom: 1.25rem;
}

.wpcf7-form label {
  font-size: 0.85rem;
  color: #aaa;
  display: block;
  margin-bottom: 0.4rem;
}

.wpcf7-form-control:not(.wpcf7-submit) {
  background: #111 !important;
  border: 1px solid rgba(200, 149, 108, 0.15) !important;
  color: #e0e0e0 !important;
  padding: 0.8rem 1rem !important;
  border-radius: 6px !important;
  font-size: 0.95rem !important;
  width: 100% !important;
  outline: none !important;
  transition: border-color 0.3s;
}

.wpcf7-form-control:not(.wpcf7-submit):focus {
  border-color: #c8956c !important;
}

.wpcf7-submit {
  background: #c8956c !important;
  color: #0a0a0a !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.9rem 2.5rem !important;
  border-radius: 6px !important;
  border: none !important;
  cursor: pointer;
  transition: all 0.3s;
}

.wpcf7-submit:hover {
  background: #b8855c !important;
  transform: translateY(-2px);
}

.wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.wpcf7 .wpcf7-response-output {
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.9rem;
}

/* ==========================================================================
   32. SIDEBAR
   ========================================================================== */

.bw-sidebar {
  padding-left: 2rem;
}

.bw-sidebar .widget {
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.bw-sidebar .widget h2,
.bw-sidebar .widget-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
}

/* ==========================================================================
   33. UTILITY CLASSES
   ========================================================================== */

.bw-text-center { text-align: center; }
.bw-text-left { text-align: left; }
.bw-text-right { text-align: right; }

.bw-mt-1 { margin-top: 1rem; }
.bw-mt-2 { margin-top: 2rem; }
.bw-mt-3 { margin-top: 3rem; }
.bw-mb-1 { margin-bottom: 1rem; }
.bw-mb-2 { margin-bottom: 2rem; }
.bw-mb-3 { margin-bottom: 3rem; }

.bw-pt-1 { padding-top: 1rem; }
.bw-pt-2 { padding-top: 2rem; }
.bw-pb-1 { padding-bottom: 1rem; }
.bw-pb-2 { padding-bottom: 2rem; }

.bw-hidden { display: none !important; }
.bw-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.bw-copper { color: #c8956c; }
.bw-white { color: #fafafa; }
.bw-muted { color: #888; }

.bw-divider {
  height: 1px;
  background: rgba(200, 149, 108, 0.1);
  border: none;
  margin: 3rem 0;
}

/* ==========================================================================
   34. WORDPRESS DEFAULTS
   ========================================================================== */

.wp-block-image {
  margin: 2rem 0;
}

.wp-block-image img {
  border-radius: 12px;
}

.wp-block-quote {
  border-left: 3px solid #c8956c;
  padding-left: 1.5rem;
  color: #aaa;
  font-style: italic;
  margin: 2rem 0;
}

.wp-block-separator {
  border: none;
  height: 1px;
  background: rgba(200, 149, 108, 0.15);
  margin: 3rem 0;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}

.wp-block-table th,
.wp-block-table td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(200, 149, 108, 0.1);
  text-align: left;
}

.wp-block-table th {
  background: #111;
  color: #fafafa;
  font-weight: 600;
}

.wp-block-table td {
  color: #ccc;
}

.alignwide {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* ==========================================================================
   35. GALLERY & LIGHTBOX
   ========================================================================== */

.bw-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.bw-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.bw-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.bw-gallery-item:hover img {
  transform: scale(1.08);
}

.bw-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
}

.bw-gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   36. ACCORDION / FAQ
   ========================================================================== */

.bw-accordion {
  max-width: 800px;
}

.bw-accordion-item {
  border-bottom: 1px solid rgba(200, 149, 108, 0.1);
}

.bw-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: #fafafa;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.bw-accordion-header:hover {
  color: #c8956c;
}

.bw-accordion-icon {
  font-size: 1.5rem;
  color: #c8956c;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.bw-accordion-item.active .bw-accordion-icon {
  transform: rotate(45deg);
}

.bw-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.bw-accordion-item.active .bw-accordion-body {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.bw-accordion-body p {
  color: #888;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ==========================================================================
   37. CTA / BANNER SECTIONS
   ========================================================================== */

.bw-cta-section {
  position: relative;
  overflow: hidden;
}

.bw-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(200, 149, 108, 0.05) 0%, transparent 50%, rgba(200, 149, 108, 0.03) 100%);
  pointer-events: none;
}

.bw-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bw-cta-content h2 {
  margin-bottom: 1rem;
}

.bw-cta-content p {
  color: #888;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==========================================================================
   38. CATEGORY CARDS
   ========================================================================== */

.bw-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.bw-category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.1);
  transition: all 0.4s;
}

.bw-category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 149, 108, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.bw-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.bw-category-card:hover img {
  transform: scale(1.08);
}

.bw-category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.bw-category-card-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.bw-category-card-overlay span {
  font-size: 0.8rem;
  color: #c8956c;
}

/* ==========================================================================
   39. PROCESS / STEPS
   ========================================================================== */

.bw-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  counter-reset: steps;
}

.bw-step {
  position: relative;
  text-align: center;
  counter-increment: steps;
}

.bw-step::before {
  content: '0' counter(steps);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  color: rgba(200, 149, 108, 0.1);
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.bw-step h3 {
  margin-bottom: 0.75rem;
}

.bw-step p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ==========================================================================
   40. RESPONSIVE - 1200px
   ========================================================================== */

@media (max-width: 1200px) {
  .bw-footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

/* ==========================================================================
   41. RESPONSIVE - 1024px
   ========================================================================== */

@media (max-width: 1024px) {
  .bw-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bw-feature-card:nth-child(2)::after {
    display: none;
  }

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

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

  .bw-about-grid {
    gap: 3rem;
  }

  .bw-hero-grid {
    gap: 3rem;
  }

  .bw-about-bg-text {
    font-size: 5rem;
  }
}

/* ==========================================================================
   42. RESPONSIVE - 900px
   ========================================================================== */

@media (max-width: 900px) {
  .bw-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2rem 0;
  }

  .bw-hero-content {
    text-align: center;
    max-width: 100%;
  }

  .bw-hero-label {
    justify-content: center;
  }

  .bw-hero-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .bw-hero-buttons {
    justify-content: center;
  }

  .bw-hero-trust {
    justify-content: center;
  }

  .bw-hero-image-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

  .bw-about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bw-about-bg-text {
    display: none;
  }

  .bw-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bw-nav {
    display: none;
  }

  .bw-mobile-toggle {
    display: block;
  }

  .bw-section {
    padding: 5rem 0;
  }

  .bw-section-header--flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ==========================================================================
   43. RESPONSIVE - 768px
   ========================================================================== */

@media (max-width: 768px) {
  .bw-features-grid {
    grid-template-columns: 1fr;
  }

  .bw-feature-card:not(:last-child)::after {
    display: none;
  }

  .bw-feature-card {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(200, 149, 108, 0.08);
  }

  .bw-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .bw-steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bw-newsletter-box {
    padding: 3rem 1.5rem;
  }

  .bw-newsletter-form {
    flex-direction: column;
  }

  .bw-about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .bw-shop-toolbar {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* ==========================================================================
   44. RESPONSIVE - 640px
   ========================================================================== */

@media (max-width: 640px) {
  .bw-container {
    padding: 0 1.25rem;
  }

  .bw-section {
    padding: 4rem 0;
  }

  h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }

  .bw-hero {
    padding-top: 80px;
  }

  .bw-hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .bw-hero-trust {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .bw-products-grid {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }

  .bw-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bw-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .bw-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .bw-btn-primary,
  .bw-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .bw-about-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bw-404-code {
    font-size: 5rem;
  }

  .bw-page-hero,
  .bw-shop-hero {
    padding: 6rem 0 3rem;
  }

  .bw-categories-grid {
    grid-template-columns: 1fr;
  }

  .bw-posts-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   45. RESPONSIVE - 480px
   ========================================================================== */

@media (max-width: 480px) {
  .bw-container {
    padding: 0 1rem;
  }

  .bw-header .bw-container {
    padding: 0 1rem;
  }

  .bw-logo {
    font-size: 1.3rem;
  }

  .bw-hero-label {
    font-size: 0.65rem;
  }

  .bw-product-info {
    padding: 1.25rem;
  }

  .bw-product-footer {
    padding: 1rem 1.25rem;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .bw-product-footer .bw-btn-primary {
    width: 100%;
    justify-content: center;
  }

  .bw-testimonial-card {
    padding: 1.5rem;
  }

  .bw-mobile-menu a {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}

/* ==========================================================================
   46. PRINT STYLES
   ========================================================================== */

@media print {
  body {
    background: #fff;
    color: #111;
  }

  .bw-header,
  .bw-footer,
  .bw-loader,
  .bw-mobile-menu,
  .bw-mobile-toggle,
  .bw-newsletter-box,
  .bw-marquee {
    display: none !important;
  }

  .bw-container {
    max-width: 100%;
    padding: 0;
  }

  h1, h2, h3, h4, h5, h6 {
    color: #111;
  }

  a {
    color: #111;
    text-decoration: underline;
  }
}

/* ==========================================================================
   47. DARK FORM OVERRIDES
   ========================================================================== */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #e0e0e0;
  -webkit-box-shadow: 0 0 0 1000px #111 inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* ==========================================================================
   48. SMOOTH TRANSITIONS FOR DYNAMIC CONTENT
   ========================================================================== */

.bw-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.bw-skeleton {
  background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ==========================================================================
   49. BACK TO TOP BUTTON
   ========================================================================== */

.bw-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #c8956c;
  color: #0a0a0a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(200, 149, 108, 0.3);
}

.bw-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bw-back-to-top:hover {
  background: #b8855c;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200, 149, 108, 0.4);
}

.bw-back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   50. CUSTOM CURSOR GLOW (optional enhancement)
   ========================================================================== */

.bw-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ==========================================================================
   51. WOOCOMMERCE - VARIATIONS & GROUPED
   ========================================================================== */

.woocommerce div.product form.cart .variations {
  margin-bottom: 1.5rem;
}

.woocommerce div.product form.cart .variations td {
  padding: 0.5rem 0;
  vertical-align: middle;
}

.woocommerce div.product form.cart .variations label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.woocommerce div.product form.cart .variations select {
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.2);
  color: #e0e0e0;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  min-width: 200px;
  outline: none;
}

.woocommerce div.product form.cart .variations select:focus {
  border-color: #c8956c;
}

.woocommerce div.product form.cart .reset_variations {
  color: #c8956c;
  font-size: 0.8rem;
}

.woocommerce div.product form.cart .woocommerce-variation-price {
  margin-bottom: 1rem;
}

.woocommerce div.product form.cart .woocommerce-variation-description p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Grouped Products */
.woocommerce div.product form.cart table.group_table {
  border: 1px solid rgba(200, 149, 108, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce div.product form.cart table.group_table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(200, 149, 108, 0.05);
  background: #0a0a0a;
  color: #e0e0e0;
}

.woocommerce div.product form.cart table.group_table td label a {
  color: #fafafa;
  font-family: 'Playfair Display', Georgia, serif;
}

/* ==========================================================================
   52. WOOCOMMERCE - ORDER RECEIVED / THANK YOU
   ========================================================================== */

.woocommerce-order-received .woocommerce-thankyou-order-received {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: #fafafa;
  text-align: center;
  margin-bottom: 2rem;
}

.woocommerce-order-received .woocommerce-order-overview {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: #111;
  border: 1px solid rgba(200, 149, 108, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.woocommerce-order-received .woocommerce-order-overview li {
  flex: 1;
  min-width: 120px;
}

.woocommerce-order-received .woocommerce-order-overview li strong {
  display: block;
  color: #c8956c;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

/* ==========================================================================
   53. ACCESSIBILITY FOCUS STYLES
   ========================================================================== */

*:focus-visible {
  outline: 2px solid #c8956c;
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #c8956c;
  outline-offset: 3px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* ==========================================================================
   54. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .bw-reveal {
    opacity: 1;
    transform: none;
  }

  .bw-marquee-track {
    animation: none;
  }
}

/* ==========================================================================
   END OF STYLESHEET
   ========================================================================== */

/* ===== HERO ALWAYS VISIBLE FIX ===== */
.bw-hero .bw-reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ==========================================================================
   55. VISUAL POLISH — Round 2
   ========================================================================== */

/* --- WooCommerce "In den Warenkorb gelegt" Notice --- */
.woocommerce .woocommerce-message {
    background: #161616 !important;
    border-top: none !important;
    border-left: 3px solid #c8956c !important;
    color: #e0e0e0;
    border-radius: 8px;
    padding: 1rem 1.5rem !important;
    animation: bwSlideDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.woocommerce .woocommerce-message::before {
    color: #c8956c !important;
}

.woocommerce .woocommerce-message a.button {
    background: transparent !important;
    color: #c8956c !important;
    border: 1px solid rgba(200, 149, 108, 0.4) !important;
    font-size: 0.75rem !important;
    padding: 0.45rem 1rem !important;
    margin-left: 0 !important;
}

.woocommerce .woocommerce-message a.button:hover {
    background: rgba(200, 149, 108, 0.1) !important;
}

@keyframes bwSlideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Page Loader: safety cap via CSS (1.5s max) --- */
.bw-loader {
    animation: bwLoaderForceHide 0.5s ease 1.5s forwards;
}

@keyframes bwLoaderForceHide {
    to {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
}

/* --- Product Cards: refined hover shadows --- */
.bw-product-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bw-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(200, 149, 108, 0.12);
}

.bw-product-card .bw-product-image-wrap img {
    transition: transform 0.4s ease;
}

/* --- Newsletter: Input + Button on one line --- */
.bw-newsletter-form {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.bw-newsletter-form input[type="email"] {
    height: auto;
    padding: 0.85rem 1.2rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.bw-newsletter-form .bw-btn-primary {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 0.85rem 1.8rem;
    white-space: nowrap;
}

/* --- Testimonials: equal height + refined quotes --- */
.bw-testimonials-grid {
    align-items: stretch;
}

.bw-testimonial-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bw-testimonial-text {
    flex: 1;
}

.bw-testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    color: rgba(200, 149, 108, 0.12);
    line-height: 1;
    position: absolute;
    top: 1.25rem;
    right: 1.75rem;
}

/* --- AJAX Add-to-Cart button feedback styling --- */
.bw-added {
    background: rgba(39, 174, 96, 0.15) !important;
    color: #27ae60 !important;
    border-color: rgba(39, 174, 96, 0.3) !important;
}

.woocommerce ul.products li.product .button.bw-added {
    background: rgba(39, 174, 96, 0.15) !important;
    color: #27ae60 !important;
    border-color: rgba(39, 174, 96, 0.3) !important;
    transform: none;
    box-shadow: none;
}

/* --- Cart icon bounce animation --- */
@keyframes bwCartBounce {
    0%, 100% { transform: scale(1); }
    30% { transform: scale(1.3); }
    60% { transform: scale(0.9); }
}

.bw-cart-bounce {
    animation: bwCartBounce 0.6s ease;
}

/* --- Newsletter success message styling --- */
.bw-newsletter-success {
    color: #27ae60;
    font-size: 1rem;
    padding: 1rem 0;
}

.bw-newsletter-success-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Input error shake --- */
@keyframes bwShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.bw-input-error {
    animation: bwShake 0.4s ease;
    border-color: #c0392b !important;
}
.bw-hero .bw-hero-image,
.bw-hero .bw-hero-image img {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    height: auto;
    max-height: 500px;
}

/* ===== WOOCOMMERCE SHOP GRID FIX ===== */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    list-style: none !important;
    padding: 0 !important;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #111 !important;
    border: 1px solid rgba(200,149,108,0.1) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4) !important;
    border-color: rgba(200,149,108,0.3) !important;
}
.woocommerce ul.products li.product a img {
    width: 100% !important;
    aspect-ratio: 1 !important;
    object-fit: cover !important;
    background: #0d0d0d !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
    font-family: 'Playfair Display', serif !important;
    color: #fafafa !important;
    font-size: 1.1rem !important;
    padding: 0.75rem 1rem 0.25rem !important;
}
.woocommerce ul.products li.product .price {
    font-family: 'Playfair Display', serif !important;
    color: #c8956c !important;
    font-size: 1.2rem !important;
    padding: 0 1rem !important;
}
.woocommerce ul.products li.product .price del {
    color: #555 !important;
    font-size: 0.9rem !important;
}
.woocommerce ul.products li.product .price ins {
    text-decoration: none !important;
    color: #c8956c !important;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
    display: block !important;
    margin: 1rem !important;
    padding: 0.7rem 1.5rem !important;
    background: #c8956c !important;
    color: #0a0a0a !important;
    border: none !important;
    border-radius: 6px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}
.woocommerce ul.products li.product .button:hover {
    background: #b8855c !important;
    transform: translateY(-2px) !important;
}
.woocommerce ul.products li.product .product-category-label {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.65rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    color: #c8956c !important;
    padding: 0 1rem !important;
    margin-top: 0.75rem !important;
    display: block !important;
}
@media (max-width: 900px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 640px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* ===== SHOP GRID HIGH SPECIFICITY FIX ===== */
html body .woocommerce ul.products.columns-3,
html body .woocommerce-page ul.products.columns-3,
html body ul.products,
.bw-products-grid > ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    width: 100% !important;
    padding: 0 !important;
    list-style: none !important;
}
html body .woocommerce ul.products li.product,
html body ul.products li.product {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #111 !important;
    border: 1px solid rgba(200,149,108,0.1) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
}
html body .woocommerce ul.products li.product:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4) !important;
    border-color: rgba(200,149,108,0.3) !important;
}
html body ul.products li.product a img,
html body .woocommerce ul.products li.product a img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    aspect-ratio: 1 !important;
    background: #0d0d0d !important;
}
html body ul.products li.product .woocommerce-loop-product__title,
html body .woocommerce ul.products li.product h2 {
    font-family: 'Playfair Display', serif !important;
    color: #fafafa !important;
    font-size: 1.15rem !important;
    padding: 0.75rem 1.25rem 0.25rem !important;
    margin: 0 !important;
}
html body ul.products li.product .price {
    font-family: 'Playfair Display', serif !important;
    color: #c8956c !important;
    font-size: 1.2rem !important;
    padding: 0.25rem 1.25rem 0.5rem !important;
}
html body ul.products li.product .price del {
    color: #555 !important;
    font-size: 0.85rem !important;
}
html body ul.products li.product .price ins {
    text-decoration: none !important;
    color: #c8956c !important;
}
html body ul.products li.product .button,
html body .woocommerce ul.products li.product .add_to_cart_button {
    display: block !important;
    margin: 0.75rem 1.25rem 1.25rem !important;
    padding: 0.75rem 1.5rem !important;
    background: #c8956c !important;
    color: #0a0a0a !important;
    border: none !important;
    border-radius: 6px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    text-decoration: none !important;
}
html body ul.products li.product .button:hover {
    background: #b8855c !important;
    transform: translateY(-2px) !important;
}
html body ul.products li.product .product-category-label {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.65rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    color: #c8956c !important;
    padding: 0.75rem 1.25rem 0 !important;
    display: block !important;
}
.bw-products-grid {
    display: block !important;
}
@media (max-width: 900px) {
    html body .woocommerce ul.products.columns-3,
    html body ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 640px) {
    html body .woocommerce ul.products.columns-3,
    html body ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* ===== FEATURE CARD HOVER FIX ===== */
.bw-feature-card {
    transition: background 0.3s ease !important;
}
.bw-feature-card:hover {
    background: rgba(200, 149, 108, 0.03) !important;
}
.bw-feature-icon {
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease !important;
}
.bw-feature-card:hover .bw-feature-icon {
    background: rgba(200, 149, 108, 0.12) !important;
    border-color: rgba(200, 149, 108, 0.6) !important;
    transform: scale(1.08) !important;
}
/* Prevent bw-reveal transition from interfering with hover */
.bw-feature-card.bw-reveal.visible {
    transition: background 0.3s ease !important;
}

/* ==========================================================================
   HOMEPAGE OVERHAUL FIXES - v7
   ========================================================================== */

/* --- Reduce Section Spacing --- */
.bw-section {
    padding: 5rem 0 !important;
}

/* --- Homepage Product Grid (4 columns) --- */
.bw-homepage-products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
}

.bw-homepage-products .bw-product-card {
    background: #111 !important;
    border: 1px solid rgba(200,149,108,0.1) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
    display: flex !important;
    flex-direction: column !important;
}

.bw-homepage-products .bw-product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5) !important;
    border-color: rgba(200,149,108,0.3) !important;
}

.bw-homepage-products .bw-product-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.bw-homepage-products .bw-product-image {
    position: relative !important;
    aspect-ratio: 1 !important;
    overflow: hidden !important;
    background: #0d0d0d !important;
}

.bw-homepage-products .bw-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.bw-homepage-products .bw-product-card:hover .bw-product-image img {
    transform: scale(1.08) !important;
}

.bw-homepage-products .bw-product-badge {
    position: absolute !important;
    top: 0.75rem !important;
    left: 0.75rem !important;
    background: #c8956c !important;
    color: #0a0a0a !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.6rem !important;
    font-weight: 600 !important;
    padding: 0.25rem 0.6rem !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    z-index: 2 !important;
}

.bw-homepage-products .bw-product-info {
    padding: 1.25rem 1.25rem 0.75rem !important;
    flex: 1 !important;
}

.bw-homepage-products .bw-product-category {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.6rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    color: #c8956c !important;
    display: block !important;
    margin-bottom: 0.4rem !important;
}

.bw-homepage-products .bw-product-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.1rem !important;
    color: #fafafa !important;
    margin: 0 0 0.4rem 0 !important;
    line-height: 1.3 !important;
}

.bw-homepage-products .bw-product-excerpt {
    font-size: 0.8rem !important;
    color: #777 !important;
    line-height: 1.5 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin: 0 !important;
}

.bw-homepage-products .bw-product-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1rem 1.25rem !important;
    border-top: 1px solid rgba(200,149,108,0.1) !important;
    margin-top: auto !important;
}

.bw-homepage-products .bw-product-price {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.15rem !important;
    color: #fafafa !important;
    font-weight: 600 !important;
}

.bw-homepage-products .bw-product-price del {
    color: #555 !important;
    font-size: 0.85rem !important;
    margin-right: 0.3rem !important;
}

.bw-homepage-products .bw-product-price ins {
    text-decoration: none !important;
    color: #c8956c !important;
}

.bw-homepage-products .bw-product-footer .bw-btn-primary {
    padding: 0.5rem 1rem !important;
    font-size: 0.65rem !important;
    white-space: nowrap !important;
}

/* --- About Section Image Fix --- */
.bw-about-image-wrap {
    position: relative !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    min-height: 400px !important;
}

.bw-about-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

/* --- Hero Image Fix --- */
.bw-hero-image {
    position: relative !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.bw-hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    min-height: 400px !important;
}

/* --- Testimonial Cards equal height --- */
.bw-testimonials-grid {
    align-items: stretch !important;
}

.bw-testimonial-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

/* --- Newsletter visibility fix --- */
.bw-newsletter .bw-reveal,
.bw-newsletter-box.bw-reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* --- Footer Brühwerk logo accent --- */
.bw-footer .bw-footer-logo span,
.bw-footer-logo .bw-logo-accent {
    color: #c8956c !important;
}

/* --- Section Header spacing --- */
.bw-section-header {
    margin-bottom: 2.5rem !important;
}

/* --- Trust Items styling --- */
.bw-hero-trust {
    display: flex !important;
    gap: 2.5rem !important;
    padding-top: 2rem !important;
    border-top: 1px solid rgba(200,149,108,0.15) !important;
}

.bw-hero-trust-item {
    text-align: left !important;
}

.bw-hero-trust-item strong {
    display: block !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 1.5rem !important;
    color: #fafafa !important;
    font-weight: 700 !important;
}

.bw-hero-trust-item span {
    font-size: 0.8rem !important;
    color: #888 !important;
}

/* --- Responsive for homepage products --- */
@media (max-width: 1024px) {
    .bw-homepage-products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .bw-homepage-products {
        grid-template-columns: 1fr !important;
    }
    .bw-hero-trust {
        flex-direction: column !important;
        gap: 1rem !important;
    }
}

/* --- About Stats Row --- */
.bw-about-stats {
    display: flex !important;
    gap: 3rem !important;
    padding-top: 2rem !important;
    border-top: 1px solid rgba(200,149,108,0.15) !important;
    margin-top: 2rem !important;
}

.bw-about-stat strong {
    display: block !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 2rem !important;
    color: #c8956c !important;
    font-weight: 700 !important;
}

.bw-about-stat span {
    font-size: 0.8rem !important;
    color: #888 !important;
}

/* ==========================================================================
   NEW CINEMATIC HERO - v8
   ========================================================================== */

/* Remove old hero styles conflicts */
.bw-hero {
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    padding: 0 !important;
}

/* Background image - covers entire hero */
.bw-hero-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
}

.bw-hero-bg-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 30% !important;
}

.bw-hero-bg-placeholder {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #1a1510 0%, #0a0a0a 50%, #15120e 100%) !important;
}

/* Dark gradient overlay on top of image */
.bw-hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.75) 40%,
        rgba(10, 10, 10, 0.4) 70%,
        rgba(10, 10, 10, 0.2) 100%
    ) !important;
    z-index: 1 !important;
}

/* Hero container positions content above the background */
.bw-hero > .bw-container {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-height: 100vh !important;
    padding-top: 120px !important;
    padding-bottom: 0 !important;
}

/* Hero content - left aligned, max width for readability */
.bw-hero-content {
    max-width: 620px !important;
}

/* Hero label */
.bw-hero-label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 1rem !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.7rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.25em !important;
    color: #c8956c !important;
    margin-bottom: 1.5rem !important;
    opacity: 0 !important;
    animation: heroFadeUp 0.8s ease forwards 0.3s !important;
}

.bw-hero-label::before {
    content: '' !important;
    display: block !important;
    width: 40px !important;
    height: 1px !important;
    background: #c8956c !important;
}

/* Hero title */
.bw-hero-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2.8rem, 5.5vw, 4.5rem) !important;
    font-weight: 700 !important;
    line-height: 1.08 !important;
    color: #fafafa !important;
    margin: 0 0 1.5rem 0 !important;
    opacity: 0 !important;
    animation: heroFadeUp 0.8s ease forwards 0.5s !important;
}

.bw-hero-title em {
    color: #c8956c !important;
    font-style: italic !important;
}

.bw-hero-title br {
    display: block !important;
}

/* Hero description text */
.bw-hero-text {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    max-width: 480px !important;
    margin: 0 0 2.5rem 0 !important;
    opacity: 0 !important;
    animation: heroFadeUp 0.8s ease forwards 0.7s !important;
}

/* Hero buttons */
.bw-hero-buttons {
    display: flex !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
    opacity: 0 !important;
    animation: heroFadeUp 0.8s ease forwards 0.9s !important;
}

/* Trust bar at bottom of hero */
.bw-hero-trust-bar {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 1.5rem 2rem !important;
    background: rgba(10, 10, 10, 0.6) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(200, 149, 108, 0.15) !important;
    z-index: 3 !important;
    opacity: 0 !important;
    animation: heroFadeUp 0.6s ease forwards 1.1s !important;
}

.bw-hero-trust-item {
    text-align: center !important;
    padding: 0 2.5rem !important;
}

.bw-hero-trust-item strong {
    display: block !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 1.4rem !important;
    color: #fafafa !important;
    font-weight: 700 !important;
    margin-bottom: 0.15rem !important;
}

.bw-hero-trust-item span {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.7rem !important;
    color: #888 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

.bw-hero-trust-divider {
    width: 1px !important;
    height: 35px !important;
    background: rgba(200, 149, 108, 0.2) !important;
    flex-shrink: 0 !important;
}

/* Hero fade-up animation */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive hero */
@media (max-width: 900px) {
    .bw-hero-title {
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }
    .bw-hero-content {
        max-width: 100% !important;
    }
    .bw-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 10, 10, 0.85) 0%,
            rgba(10, 10, 10, 0.7) 50%,
            rgba(10, 10, 10, 0.85) 100%
        ) !important;
    }
    .bw-hero-trust-bar {
        flex-wrap: wrap !important;
        gap: 1rem !important;
    }
    .bw-hero-trust-divider {
        display: none !important;
    }
    .bw-hero-trust-item {
        padding: 0 1rem !important;
    }
}

@media (max-width: 640px) {
    .bw-hero > .bw-container {
        padding-top: 100px !important;
    }
    .bw-hero-buttons {
        flex-direction: column !important;
    }
    .bw-hero-buttons .bw-btn-primary,
    .bw-hero-buttons .bw-btn-outline {
        width: 100% !important;
        text-align: center !important;
    }
}

/* Override old hero grid styles */
.bw-hero-grid {
    display: contents !important;
}
.bw-hero-image,
.bw-hero-image-wrap {
    display: none !important;
}

/* ===== HERO VISIBILITY FIX - Remove broken animations, use simple transitions ===== */
.bw-hero-label,
.bw-hero-title,
.bw-hero-text,
.bw-hero-buttons,
.bw-hero-trust-bar {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
}

/* ===== HERO SIZE REDUCTION ===== */
.bw-hero {
    min-height: 85vh !important;
}
.bw-hero > .bw-container {
    min-height: 85vh !important;
    padding-top: 100px !important;
    padding-bottom: 80px !important;
}

/* ==========================================================================
   POLISH ROUND - v10 - Premium Finesse
   ========================================================================== */

/* --- Reduce spacing between sections --- */
.bw-section {
    padding: 4.5rem 0 !important;
}

/* --- Marquee section less padding --- */
.bw-marquee {
    padding: 1.5rem 0 !important;
}

/* --- Product price: hide "inkl. MwSt." text --- */
.bw-homepage-products .bw-product-price .woocommerce-Price-amount {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.15rem !important;
    color: #fafafa !important;
}

.bw-homepage-products .bw-product-price .tax_label,
.bw-homepage-products .bw-product-footer .tax_label,
.bw-product-price .tax_label {
    display: none !important;
}

/* --- Product card without image: better placeholder --- */
.bw-homepage-products .bw-product-image:has(.bw-product-placeholder) {
    background: linear-gradient(135deg, #151515 0%, #111 50%, #0d0d0d 100%) !important;
}

.bw-product-placeholder {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #181512 0%, #111 100%) !important;
}

.bw-product-placeholder svg {
    width: 80px !important;
    height: 80px !important;
    opacity: 0.15 !important;
}

/* --- About section: make text more visible --- */
.bw-about .bw-reveal,
.bw-about .bw-reveal.visible,
.bw-about .bw-about-content,
.bw-about .bw-about-content * {
    opacity: 1 !important;
    transform: none !important;
}

.bw-about-content p {
    color: #b0b0b0 !important;
    line-height: 1.8 !important;
    margin-bottom: 1.25rem !important;
}

.bw-about-content h2 {
    color: #fafafa !important;
    margin-bottom: 1.5rem !important;
}

.bw-about-content .bw-section-label {
    opacity: 1 !important;
}

/* --- About image: brighten slightly --- */
.bw-about-image-wrap {
    min-height: 350px !important;
    background: #111 !important;
}

.bw-about-image-wrap img {
    opacity: 0.85 !important;
    filter: brightness(1.1) !important;
}

/* --- About stats more prominent --- */
.bw-about-stats {
    opacity: 1 !important;
    transform: none !important;
}

.bw-about-stat strong {
    font-size: 2.2rem !important;
    color: #c8956c !important;
}

/* --- Testimonial stars & more trust --- */
.bw-testimonial-card {
    padding: 2rem !important;
    background: rgba(17, 17, 17, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(200, 149, 108, 0.12) !important;
}

.bw-testimonial-card:hover {
    border-color: rgba(200, 149, 108, 0.25) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3) !important;
}

.bw-testimonial-stars {
    color: #c8956c !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 1rem !important;
    display: block !important;
}

.bw-testimonial-text {
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
    color: #ccc !important;
}

.bw-testimonial-author {
    font-weight: 600 !important;
    color: #fafafa !important;
    font-size: 0.85rem !important;
}

.bw-testimonial-role {
    color: #888 !important;
    font-size: 0.75rem !important;
    font-style: italic !important;
}

/* --- Newsletter more contrast --- */
.bw-newsletter-box {
    background: rgba(17, 17, 17, 0.6) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(200, 149, 108, 0.2) !important;
}

.bw-newsletter-box h2 {
    font-size: 1.8rem !important;
    color: #fafafa !important;
}

.bw-newsletter-form input[type="email"] {
    background: rgba(10, 10, 10, 0.8) !important;
    border: 1px solid rgba(200, 149, 108, 0.25) !important;
    color: #e0e0e0 !important;
    padding: 0.85rem 1.2rem !important;
}

.bw-newsletter-form input[type="email"]:focus {
    border-color: #c8956c !important;
    box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.1) !important;
}

.bw-newsletter-form input[type="email"]::placeholder {
    color: #666 !important;
}

/* --- Footer polish --- */
.bw-footer {
    padding-top: 4rem !important;
}

.bw-footer-logo,
.bw-footer .bw-footer-logo {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #fafafa !important;
    margin-bottom: 1rem !important;
    display: block !important;
}

.bw-footer-logo span,
.bw-footer .bw-footer-logo span {
    color: #c8956c !important;
}

.bw-footer p {
    color: #777 !important;
    font-size: 0.85rem !important;
    line-height: 1.7 !important;
}

.bw-footer h4 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1rem !important;
    color: #fafafa !important;
    margin-bottom: 1.25rem !important;
    letter-spacing: 0.02em !important;
}

.bw-footer a {
    color: #888 !important;
    font-size: 0.85rem !important;
    transition: color 0.3s ease !important;
}

.bw-footer a:hover {
    color: #c8956c !important;
}

/* --- Footer social icons bigger --- */
.bw-footer-social a {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(200, 149, 108, 0.25) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #888 !important;
    transition: all 0.3s !important;
    font-size: 0.85rem !important;
}

.bw-footer-social a:hover {
    background: #c8956c !important;
    border-color: #c8956c !important;
    color: #0a0a0a !important;
}

.bw-footer-bottom {
    margin-top: 3rem !important;
    padding: 1.5rem 0 !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
}

/* --- Feature section label fix --- */
.bw-features .bw-section-label,
.bw-features .bw-section-header .bw-section-label {
    opacity: 1 !important;
    transform: none !important;
}

.bw-features .bw-section-header h2 {
    opacity: 1 !important;
    transform: none !important;
}

/* --- All section headers always visible --- */
.bw-section-header,
.bw-section-header .bw-section-label,
.bw-section-header h2 {
    opacity: 1 !important;
    transform: none !important;
}

/* --- Header scrolled: stronger background --- */
.bw-header.scrolled {
    background: rgba(8, 8, 8, 0.97) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3) !important;
}

/* --- Smooth page transitions --- */
.bw-main {
    animation: pageIn 0.5s ease !important;
}

@keyframes pageIn {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

/* --- WooCommerce Shop page tax label hide --- */
.woocommerce ul.products li.product .price .tax_label {
    display: none !important;
}

/* --- Better button hover states --- */
.bw-btn-primary {
    position: relative !important;
    overflow: hidden !important;
}

.bw-btn-primary::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent) !important;
    transition: left 0.5s ease !important;
}

.bw-btn-primary:hover::before {
    left: 100% !important;
}

/* --- USP Feature cards: subtle background --- */
.bw-feature-card {
    padding: 2.5rem 1.5rem !important;
    border-radius: 8px !important;
}

.bw-feature-card:hover {
    background: rgba(200, 149, 108, 0.03) !important;
}

/* --- Back to top button polish --- */
#bw-back-to-top,
.bw-back-to-top {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(200, 149, 108, 0.9) !important;
    color: #0a0a0a !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(200, 149, 108, 0.3) !important;
    transition: all 0.3s !important;
}

#bw-back-to-top:hover,
.bw-back-to-top:hover {
    background: #c8956c !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(200, 149, 108, 0.4) !important;
}

/* ===== TESTIMONIALS VISIBILITY FIX ===== */
.bw-testimonial-card,
.bw-testimonial-card.bw-reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* ===== NEWSLETTER ALWAYS VISIBLE ===== */
.bw-newsletter-box,
.bw-newsletter-box.bw-reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* ===== PRODUCT CARDS ON HOMEPAGE ALWAYS VISIBLE ===== */
.bw-homepage-products .bw-product-card,
.bw-homepage-products .bw-product-card.bw-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
}

/* ===== HERO IMAGE DARKER OVERLAY ===== */
.bw-hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.93) 0%,
        rgba(10, 10, 10, 0.82) 35%,
        rgba(10, 10, 10, 0.55) 65%,
        rgba(10, 10, 10, 0.40) 100%
    ) !important;
}

/* ===== FOOTER LINKS CONSISTENT ANIMATION ===== */
.bw-footer-grid a,
.bw-footer-bottom a,
.bw-footer a {
    color: #888 !important;
    text-decoration: none !important;
    transition: color 0.3s ease, padding-left 0.3s ease !important;
    display: inline-block !important;
}

.bw-footer-grid a:hover,
.bw-footer-bottom a:hover,
.bw-footer a:hover {
    color: #c8956c !important;
    padding-left: 4px !important;
}

/* ===== HEADER ALWAYS VISIBLE WITH BACKGROUND ===== */
.bw-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: rgba(8, 8, 8, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(200, 149, 108, 0.08) !important;
    padding: 0.9rem 0 !important;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
}

.bw-header.scrolled {
    background: rgba(6, 6, 6, 0.97) !important;
    border-bottom: 1px solid rgba(200, 149, 108, 0.15) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4) !important;
}

/* ===== FAQ ACCORDION STYLES ===== */
.bw-faq-intro {
    max-width: 700px;
    margin-bottom: 3rem;
}
.bw-faq-intro p {
    font-size: 1.05rem;
    color: #aaa;
    line-height: 1.7;
}
.bw-faq-section {
    margin-bottom: 3rem;
}
.bw-faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fafafa;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(200,149,108,0.15);
}
.bw-faq-item {
    border: 1px solid rgba(200,149,108,0.1);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.bw-faq-item:hover {
    border-color: rgba(200,149,108,0.25);
}
.bw-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.5rem;
    background: rgba(17,17,17,0.5);
    border: none;
    color: #e0e0e0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}
.bw-faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: #c8956c;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}
.bw-faq-item.open .bw-faq-question::after {
    content: '-';
    transform: rotate(0deg);
}
.bw-faq-question:hover {
    background: rgba(200,149,108,0.05);
    color: #fafafa;
}
.bw-faq-answer {
    display: none;
    padding: 1rem 1.5rem 1.25rem;
    background: rgba(10,10,10,0.3);
}
.bw-faq-item.open .bw-faq-answer {
    display: block;
}
.bw-faq-answer p {
    color: #aaa;
    line-height: 1.7;
    font-size: 0.9rem;
}
.bw-faq-answer a {
    color: #c8956c;
}
.bw-faq-cta {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(200,149,108,0.15);
    border-radius: 12px;
    margin-top: 2rem;
    background: rgba(17,17,17,0.3);
}
.bw-faq-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fafafa;
    margin-bottom: 0.5rem;
}
.bw-faq-cta p {
    color: #888;
    margin-bottom: 1.5rem;
}

/* ===== ABOUT PAGE STYLES ===== */
.bw-lead {
    font-size: 1.15rem;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
}
.bw-about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0 3rem;
}
.bw-about-value {
    padding: 2rem;
    border: 1px solid rgba(200,149,108,0.1);
    border-radius: 10px;
    background: rgba(17,17,17,0.4);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.bw-about-value:hover {
    border-color: rgba(200,149,108,0.25);
    transform: translateY(-4px);
}
.bw-about-value h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #c8956c;
    margin-bottom: 0.75rem;
}
.bw-about-value p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.7;
}
.bw-about-stats-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(200,149,108,0.1);
    border-bottom: 1px solid rgba(200,149,108,0.1);
}
.bw-stat {
    text-align: center;
}
.bw-stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #c8956c;
    font-weight: 700;
}
.bw-stat span {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
@media (max-width: 900px) {
    .bw-about-values { grid-template-columns: 1fr; }
    .bw-about-stats-page { grid-template-columns: repeat(2, 1fr); }
}

/* ===== FOOTER TRUST BADGES ===== */
.bw-footer-trust {
    padding: 2rem 0;
    border-top: 1px solid rgba(200,149,108,0.1);
    border-bottom: 1px solid rgba(200,149,108,0.06);
    background: rgba(17,17,17,0.3);
}
.bw-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
}
.bw-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.bw-trust-badge svg {
    flex-shrink: 0;
    opacity: 0.85;
}
.bw-trust-badge-text {
    display: flex;
    flex-direction: column;
}
.bw-trust-badge-text strong {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: #e0e0e0;
    font-weight: 600;
}
.bw-trust-badge-text span {
    font-size: 0.68rem;
    color: #777;
}
@media (max-width: 900px) {
    .bw-trust-badges {
        gap: 1.5rem 2rem;
    }
}
@media (max-width: 640px) {
    .bw-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
}

/* ===== TRUST BADGE IMAGE STYLING ===== */
.bw-trust-badge img {
    flex-shrink: 0;
    object-fit: contain;
}
.bw-trust-badges {
    gap: 1.5rem 2.5rem !important;
}

/* ===== TRUST SECTION BETWEEN PRODUCTS & ABOUT ===== */
.bw-trust-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2.5rem 3.5rem;
}
.bw-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    min-width: 100px;
}
.bw-trust-icon {
    margin-bottom: 0.25rem;
}
.bw-trust-item strong {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: #e0e0e0;
    font-weight: 600;
}
.bw-trust-item span {
    font-size: 0.68rem;
    color: #777;
    letter-spacing: 0.02em;
}
@media (max-width: 640px) {
    .bw-trust-row {
        gap: 1.5rem 2rem;
    }
    .bw-trust-item {
        min-width: 80px;
    }
}

/* Hide old footer trust section */
.bw-footer-trust {
    display: none !important;
}

/* ===== DISABLE PAGE LOADER - IT GETS STUCK ===== */
.bw-loader {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* ===== MASTER VISIBILITY FIX - ALL SECTIONS ALWAYS VISIBLE ===== */
.bw-reveal,
.bw-reveal.visible,
.bw-feature-card,
.bw-feature-card.bw-reveal,
.bw-trust-section,
.bw-trust-item,
.bw-trust-row,
.bw-section-header,
.bw-section-header h2,
.bw-section-label,
.bw-features .bw-section-header,
.bw-features .bw-section-header h2,
.bw-features .bw-section-label,
.bw-features-grid,
.bw-about-content,
.bw-about-image-wrap,
.bw-about-stats,
.bw-testimonial-card,
.bw-newsletter-box,
.bw-product-card,
.bw-homepage-products .bw-product-card {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Make sure trust section is shown */
.bw-trust-section {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Re-show footer trust if needed */
.bw-footer-trust {
    display: block !important;
}

/* ===== TRUSTPILOT LOGO WHITE ===== */
.bw-trust-item img[alt="Trustpilot"] {
    filter: brightness(0) invert(1) !important;
}

/* ===== FOOTER TRUST BAR ===== */
.bw-footer-trust-bar {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(200,149,108,0.08);
    border-bottom: 1px solid rgba(200,149,108,0.08);
}
.bw-footer-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.bw-footer-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.bw-footer-trust-item span {
    font-size: 0.75rem;
    color: #888;
}
.bw-footer-trust-item strong {
    color: #ccc;
}
.bw-footer-trust-sep {
    width: 1px;
    height: 20px;
    background: rgba(200,149,108,0.15);
}
@media (max-width: 640px) {
    .bw-footer-trust-sep { display: none; }
    .bw-footer-trust-row { flex-direction: column; gap: 0.75rem; }
}

/* Trust img only - no text below */
.bw-trust-img-only strong,
.bw-trust-img-only span {
    display: none !important;
}

/* old trustpilot badge removed */

/* ===== FOOTER BOTTOM BAR ===== */
.bw-footer-bottom {
    border-top: 1px solid rgba(200,149,108,0.1);
    padding: 1.25rem 0;
}
.bw-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.bw-footer-copyright {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}
.bw-footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.bw-footer-legal a {
    font-size: 0.75rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}
.bw-footer-legal a:hover {
    color: #c8956c;
}
@media (max-width: 640px) {
    .bw-footer-bottom-inner { flex-direction: column; text-align: center; }
    .bw-footer-legal { justify-content: center; }
}

/* ===== TRUSTPILOT ORIGINAL LOGO IN HEADER ===== */
.bw-trustpilot-badge {
    display: flex !important;
    align-items: center;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}
.bw-trustpilot-badge:hover {
    opacity: 1;
}
.bw-trustpilot-logo {
    height: 18px;
    width: auto;
}
.bw-trustpilot-text,
.bw-trustpilot-rating,
.bw-trustpilot-star,
.bw-trustpilot-stars {
    display: none !important;
}
@media (max-width: 900px) {
    .bw-trustpilot-badge { display: none !important; }
}

/* ===== TRUSTPILOT LOGO IN HERO ===== */
.bw-hero-trust-trustpilot {
    display: flex;
    align-items: center;
}
.bw-hero-trust-trustpilot a {
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
.bw-hero-trust-trustpilot a:hover {
    opacity: 1;
}
.bw-trustpilot-hero-logo {
    height: 22px;
    width: auto;
}
@media (max-width: 640px) {
    .bw-trustpilot-hero-logo { height: 16px; }
}

/* ===== TRUSTPILOT WIDGET IN HERO ===== */
.bw-tp-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.bw-tp-widget:hover { opacity: 0.85; }
.bw-tp-logo {
    height: 24px;
    width: auto;
    margin-bottom: 0.15rem;
}
.bw-tp-stars-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.bw-tp-rating {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
}
.bw-tp-reviews {
    font-size: 0.75rem;
    color: #00b67a;
    letter-spacing: 0.02em;
}
.bw-hero-trust-trustpilot {
    flex-direction: column !important;
}
@media (max-width: 640px) {
    .bw-tp-logo { height: 18px; }
    .bw-tp-stars-row svg { width: 70px; height: 14px; }
    .bw-tp-rating { font-size: 0.9rem; }
    .bw-tp-reviews { font-size: 0.65rem; }
}

/* ===== FOOTER TRUST LOGOS BAR ===== */
.bw-footer-trust {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(200,149,108,0.06);
    border-bottom: 1px solid rgba(200,149,108,0.06);
}
.bw-footer-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.bw-footer-trust-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(200,149,108,0.4);
    white-space: nowrap;
}
.bw-footer-trust-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.bw-footer-trust-logo {
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(0.2);
}
.bw-footer-trust-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}
.bw-footer-trust-logo img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}
.bw-footer-trust-tp {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.bw-footer-trust-tp svg {
    height: 16px;
    width: auto;
}
.bw-footer-trust-tp-score {
    font-size: 0.85rem;
    font-weight: 700;
    color: #00b67a;
}
@media (max-width: 640px) {
    .bw-footer-trust-inner { flex-direction: column; gap: 1rem; }
    .bw-footer-trust-logos { gap: 1.25rem; }
    .bw-footer-trust-logo img { max-height: 32px; }
}

/* ===== FOOTER BADGES IN BRAND COLUMN ===== */
.bw-footer-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(200,149,108,0.08);
    flex-wrap: wrap;
}
.bw-footer-badges img {
    max-height: 36px;
    width: auto;
    object-fit: contain;
    opacity: 0.65;
    transition: opacity 0.3s ease;
    filter: grayscale(0.15);
}
.bw-footer-badges img:hover {
    opacity: 1;
    filter: grayscale(0);
}
@media (max-width: 640px) {
    .bw-footer-badges { justify-content: center; }
    .bw-footer-badges img { max-height: 30px; }
}

/* ===== HEADER CART WITH LABEL + CHECKOUT ===== */
.bw-cart-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.bw-cart-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: #e0e0e0;
    transition: color 0.3s ease;
    position: relative;
}
.bw-cart-link:hover { color: #c8956c; }
.bw-cart-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
/* .bw-checkout-link base styles moved to "REFINED CHECKOUT LINK" section below */
@media (max-width: 900px) {
    .bw-cart-label { display: none; }
    .bw-checkout-link { display: none; }
}

/* ===== REFINED CHECKOUT LINK + SEPARATOR ===== */
.bw-header-sep {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.12);
}
.bw-checkout-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    color: #bbb;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    background: none;
    padding: 0;
    border-radius: 0;
    text-transform: none;
}
.bw-checkout-link:hover { color: #c8956c; }
.bw-checkout-link svg { opacity: 0.7; }
.bw-checkout-link:hover svg { opacity: 1; stroke: #c8956c; }
@media (max-width: 900px) {
    .bw-checkout-link { display: none; }
    .bw-header-sep { display: none; }
}

/* ==========================================================================
   CSS CLEANUP — Round 2: Transition normalization
   ========================================================================== */

/* Normalize all hover transitions to 0.3s ease for consistency */
.bw-product-card,
.bw-post-card,
.bw-category-card,
.bw-testimonial-card,
.bw-feature-card,
.bw-search-result,
.bw-accordion-item,
.bw-faq-item {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Ensure product card hover effect on homepage uses 0.3s */
.bw-homepage-products .bw-product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

/* WooCommerce shop cards: normalize to 0.3s */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
html body .woocommerce ul.products li.product {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

/* Image zoom hover: 0.4s is intentionally slower for smoothness */
.bw-product-card .bw-product-image-wrap img,
.bw-homepage-products .bw-product-image img,
.woocommerce ul.products li.product a img,
.bw-post-card-image img,
.bw-category-card img,
.bw-gallery-item img {
    transition: transform 0.4s ease;
}

/* Newsletter form: ensure inline layout is enforced */
.bw-newsletter-form {
    flex-direction: row !important;
    align-items: stretch !important;
}

@media (max-width: 768px) {
    .bw-newsletter-form {
        flex-direction: column !important;
    }
    .bw-newsletter-form input[type="email"] {
        border-radius: 6px !important;
        border-right: 1px solid rgba(200, 149, 108, 0.25) !important;
    }
    .bw-newsletter-form .bw-btn-primary {
        border-radius: 6px !important;
    }
}


/* ===== Header Logo overflow fix ===== */
.bw-header .bw-logo,
.bw-header .bw-logo a,
.bw-header-logo,
.bw-header-logo a {
    overflow: visible !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    text-overflow: clip !important;
}


/* ==========================================================================
   HOMEPAGE CONVERSION REBUILD
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HERO v2
   -------------------------------------------------------------------------- */

.bw-hero-v2 {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bw-hero-v2__bg {
    position: absolute;
    inset: 0;
}

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

.bw-hero-v2__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.4));
    z-index: 1;
}

.bw-hero-v2__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding-top: 20vh;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto 0 8%;
}

.bw-hero-v2__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c8956c;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bw-hero-v2__label::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: #c8956c;
    flex-shrink: 0;
}

.bw-hero-v2__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fafafa;
    margin: 0 0 1.5rem;
}

.bw-hero-v2__sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #aaa;
    max-width: 480px;
    margin: 0 0 2rem;
    line-height: 1.6;
}

.bw-hero-v2__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.bw-hero-v2__trust {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(200, 149, 108, 0.1);
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    z-index: 3;
}

/* --------------------------------------------------------------------------
   2. TRUST BAR
   -------------------------------------------------------------------------- */

.bw-trust-bar {
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1rem 0;
}

.bw-trust-bar__inner {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.bw-trust-bar__inner::-webkit-scrollbar {
    display: none;
}

.bw-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.bw-trust-bar__item svg {
    color: #c8956c;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.bw-trust-bar__item span {
    font-size: 0.8rem;
    color: #aaa;
    font-family: 'DM Sans', sans-serif;
}

/* --------------------------------------------------------------------------
   3. BESTSELLER
   -------------------------------------------------------------------------- */

.bw-bestseller {
    padding: 5rem 0;
}

.bw-bestseller__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.bw-bestseller .bw-product-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bw-bestseller .bw-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 149, 108, 0.2);
}

.bw-bestseller .bw-product-card__image {
    aspect-ratio: 1;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.bw-bestseller .bw-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.bw-bestseller .bw-product-card__body {
    padding: 1.25rem;
}

.bw-bestseller .bw-product-card__brand {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c8956c;
}

.bw-bestseller .bw-product-card__title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #e0e0e0;
    margin: 0.4rem 0;
    line-height: 1.35;
}

.bw-bestseller .bw-product-card__price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #c8956c;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   4. CATEGORIES
   -------------------------------------------------------------------------- */

.bw-categories {
    padding: 5rem 0;
}

.bw-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bw-categories .bw-category-card {
    position: relative;
    min-height: 320px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.bw-categories .bw-category-card:hover {
    transform: scale(1.02);
}

.bw-categories .bw-category-card:hover img {
    filter: brightness(1.1);
}

.bw-categories .bw-category-card__bg {
    position: absolute;
    inset: 0;
}

.bw-categories .bw-category-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
}

.bw-categories .bw-category-card__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%);
}

.bw-categories .bw-category-card__content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.bw-categories .bw-category-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fafafa;
    margin: 0 0 0.4rem;
}

.bw-categories .bw-category-card__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.5;
    margin: 0 0 0.5rem;
}

.bw-categories .bw-category-card__price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #c8956c;
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   5. BRANDS
   -------------------------------------------------------------------------- */

.bw-brands {
    padding: 4rem 0;
}

.bw-brands__grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.bw-brands__item {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bw-brands__item:hover {
    color: #c8956c;
}

/* --------------------------------------------------------------------------
   6. SPOTLIGHT
   -------------------------------------------------------------------------- */

.bw-spotlight {
    background: #111;
    padding: 5rem 0;
}

.bw-spotlight__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.bw-spotlight__image {
    border-radius: 14px;
    overflow: hidden;
    background: #0a0a0a;
}

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

.bw-spotlight__content {
    max-width: 500px;
}

.bw-spotlight__content .bw-section-label {
    margin-bottom: 1rem;
}

.bw-spotlight__content .bw-section-title {
    margin-bottom: 1rem;
}

.bw-spotlight__content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bw-spotlight__features {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.bw-spotlight__features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bw-spotlight__features li::before {
    content: '\2713';
    color: #c8956c;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   7. TESTIMONIALS v2
   -------------------------------------------------------------------------- */

.bw-testimonials-v2 {
    padding: 5rem 0;
}

.bw-testimonials-v2__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bw-testimonials-v2 .bw-testimonial-card {
    background: #111;
    border: 1px solid rgba(200, 149, 108, 0.12);
    border-radius: 14px;
    padding: 2rem;
}

.bw-testimonials-v2 .bw-testimonial-card__stars {
    color: #c8956c;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.bw-testimonials-v2 .bw-testimonial-card__quote {
    font-family: 'DM Sans', sans-serif;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1.25rem;
}

.bw-testimonials-v2 .bw-testimonial-card__author {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.bw-testimonials-v2 .bw-testimonial-card__product {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #c8956c;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   8. CTA SECTION
   -------------------------------------------------------------------------- */

.bw-cta-section {
    background: linear-gradient(135deg, rgba(200, 149, 108, 0.08), rgba(200, 149, 108, 0.02));
    padding: 5rem 0;
    text-align: center;
}

.bw-cta-section__headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fafafa;
    margin: 0 0 1rem;
}

.bw-cta-section__sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #aaa;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.bw-cta-section__phone {
    color: #c8956c;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bw-cta-section__phone:hover {
    color: #ddb08e;
}

.bw-cta-section__actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   SHARED: Section Headers
   -------------------------------------------------------------------------- */

.bw-section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c8956c;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bw-section-label::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: #c8956c;
}

.bw-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fafafa;
    margin: 0.75rem 0 0.5rem;
    line-height: 1.2;
}

.bw-section-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #888;
    max-width: 520px;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   RESPONSIVE: Homepage Conversion Rebuild
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .bw-hero-v2__content {
        margin-left: 5%;
    }

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

    .bw-spotlight__inner {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .bw-hero-v2 {
        min-height: 90vh;
    }

    .bw-hero-v2__content {
        margin-left: 0;
        padding-top: 15vh;
        text-align: center;
        max-width: 100%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .bw-hero-v2__label {
        justify-content: center;
    }

    .bw-hero-v2__sub {
        margin-left: auto;
        margin-right: auto;
    }

    .bw-hero-v2__actions {
        justify-content: center;
    }

    .bw-hero-v2__trust {
        gap: 1.25rem;
        padding: 0.75rem 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .bw-trust-bar__inner {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .bw-bestseller__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bw-categories__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bw-categories .bw-category-card {
        min-height: 240px;
    }

    .bw-spotlight__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bw-spotlight__content {
        max-width: 100%;
    }

    .bw-testimonials-v2__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bw-brands__grid {
        gap: 1.5rem;
    }

    .bw-bestseller,
    .bw-categories,
    .bw-spotlight,
    .bw-testimonials-v2,
    .bw-cta-section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 480px) {
    .bw-hero-v2__content {
        padding-top: 12vh;
    }

    .bw-hero-v2__title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .bw-bestseller__grid {
        grid-template-columns: 1fr;
    }

    .bw-hero-v2__trust {
        gap: 1rem;
        font-size: 0.7rem;
    }

    .bw-cta-section__headline {
        font-size: 1.4rem;
    }

    .bw-cta-section__phone {
        font-size: 1.2rem;
    }

    .bw-brands__grid {
        gap: 1rem;
    }

    .bw-brands__item {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   FRONT-PAGE POLISH OVERRIDES (v1.1.1)
   ========================================================================== */

/* Fix 2: Remove duplicate text checkmark from spotlight features
   (PHP already renders an SVG checkmark icon per feature) */
.bw-spotlight__features li::before {
    content: none !important;
    display: none !important;
}

/* Fix 4+7: Product card image background – match page bg for seamless look */
.bw-bestseller__card-image {
    background: #0a0a0a !important;
}

/* Fix 8: Category cards – min-height and stronger gradient overlay */
.bw-categories__card {
    min-height: 280px !important;
}

/* Fix 9: "Details ansehen" as ghost button */
.bw-bestseller__card-cta {
    display: inline-block !important;
    padding: 0.4rem 1rem !important;
    margin: 0.75rem 1.25rem 1rem !important;
    border: 1px solid rgba(200,149,108,0.3) !important;
    border-radius: 6px !important;
    border-top: none;
    text-align: center;
    transition: background 0.2s, border-color 0.2s;
}
.bw-bestseller__card:hover .bw-bestseller__card-cta {
    background: rgba(200,149,108,0.08) !important;
    border-color: rgba(200,149,108,0.5) !important;
}

/* Fix 10: Spotlight placeholder image styling */
.bw-spotlight__image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}
.bw-spotlight__image-placeholder svg {
    max-width: 80%;
    max-height: 80%;
    height: auto;
    width: auto;
}

/* Kategorie-Cards größer und visueller */
.bw-categories__card {
    min-height: 300px !important;
    border: 1px solid rgba(200,149,108,0.15) !important;
}
.bw-categories__card-overlay {
    background: linear-gradient(180deg, rgba(200,149,108,0.08) 0%, rgba(17,17,17,0.95) 60%, #111 100%) !important;
}
.bw-categories__card:hover {
    border-color: rgba(200,149,108,0.3) !important;
    transform: translateY(-4px) !important;
}

/* Spotlight Bild-Seite als dunkle Premium-Fläche */
.bw-spotlight__image {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, rgba(200,149,108,0.05) 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 400px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(200,149,108,0.1) !important;
}

/* Spotlight Preis */
.bw-spotlight__price {
    margin: 1.5rem 0 !important;
}
.bw-spotlight__price .woocommerce-Price-amount {
    font-family: 'Playfair Display', serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #c8956c !important;
}
.bw-spotlight__price .woocommerce-Price-currencySymbol {
    font-size: 1.5rem !important;
}
.bw-spotlight__price del {
    font-size: 1.2rem !important;
    color: #666 !important;
    opacity: 0.6 !important;
}

/* Bestseller Card Images immer dunkel */
.bw-bestseller__card-image {
    background: #0a0a0a !important;
    border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}
.bw-bestseller__card-image img {
    mix-blend-mode: multiply !important;
    filter: brightness(0.95) !important;
}


/* ============================================
   v89 FIXES: Produktbilder heller, Kategorien, Marken
   ============================================ */

/* 1. Bestseller Produktbilder: hellerer Hintergrund */
.bw-bestseller__card-image {
    background: #1a1a1a !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 12px 12px 0 0 !important;
}
.bw-bestseller__card-image img {
    mix-blend-mode: normal !important;
    filter: brightness(1.1) !important;
}

/* 2. Kategorie-Cards: Gradient-Overlays sichtbarer */
.bw-categories__card {
    background: #1a1a1a !important;
    border: 1px solid rgba(200,149,108,0.15) !important;
    position: relative !important;
    overflow: hidden !important;
}
.bw-categories__card::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to bottom, rgba(200,149,108,0.08) 0%, rgba(10,10,10,0.95) 100%) !important;
    z-index: 1 !important;
}
.bw-categories__card-content {
    position: relative !important;
    z-index: 2 !important;
}
.bw-categories__card:hover {
    border-color: rgba(200,149,108,0.3) !important;
    transform: translateY(-4px) !important;
}

/* 3. Marken prominenter */
.bw-brands {
    padding: 3rem 0 !important;
    border-top: 1px solid rgba(200,149,108,0.08) !important;
    border-bottom: 1px solid rgba(200,149,108,0.08) !important;
    background: rgba(255,255,255,0.015) !important;
}
.bw-brands__list a {
    font-size: 1.1rem !important;
    padding: 0.6rem 1.5rem !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 8px !important;
    transition: all 0.3s !important;
    display: inline-block !important;
}
.bw-brands__list a:hover {
    border-color: #c8956c !important;
    color: #c8956c !important;
    background: rgba(200,149,108,0.05) !important;
}

/* 4. Spotlight Bild-Container: besserer Look */
.bw-spotlight__image {
    background: #111 !important;
    border: 1px solid rgba(200,149,108,0.1) !important;
}

/* 5. Trustpilot Logo im Hero: genug Breite */
.bw-hero__trust-tp-logo {
    width: 110px !important;
    height: auto !important;
    flex-shrink: 0 !important;
}

/* 6. Reduzierte vertikale Abstände auf der Startseite */
.bw-brands { padding: 2.5rem 0 !important; }
.bw-spotlight { padding: 3rem 0 !important; }
.bw-categories { padding: 3rem 0 !important; }
.bw-spotlight__image { min-height: 350px !important; }
