/*
Theme Name: LipGloss B2B
Theme URI: https://yourbrand.com
Author: Bayfolialabs
Author URI: https://yourbrand.com
Description: A professional B2B WordPress theme for lip gloss, tinted lip oil, and cosmetic product manufacturers. Clean design with product showcase, blog, FAQ, and B2B inquiry features.
Version: 1.0.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lipgloss-b2b
Tags: custom-menu, custom-logo, featured-images, translation-ready, blog, one-column
*/

/* ========================================
   CSS VARIABLES & ROOT
   ======================================== */
:root {
  --color-primary: #b8860b;
  --color-primary-dark: #8b6508;
  --color-primary-light: #daa520;
  --color-secondary: #2d2d2d;
  --color-accent: #c9a96e;
  --color-rose: #d4a5a5;
  --color-rose-deep: #b76e79;
  --color-cream: #fdfaf7;
  --color-cream-dark: #f5efe6;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-border: #e8e0d5;
  --color-white: #ffffff;
  --color-success: #4a7c59;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --max-width: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--color-primary-dark);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
}
h1 { font-size: 2.75rem; font-weight: 700; }
h2 { font-size: 2.25rem; font-weight: 700; }
h3 { font-size: 1.65rem; font-weight: 600; }
h4 { font-size: 1.35rem; font-weight: 600; }
h5 { font-size: 1.15rem; font-weight: 600; }
p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-light);
}
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}
.section {
  padding: var(--spacing-xxl) 0;
}
.section--cream { background-color: var(--color-cream); }
.section--white { background-color: var(--color-white); }
.section--dark { background-color: var(--color-secondary); color: var(--color-cream); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--color-cream); }
.text-center { text-align: center; }
.text-accent { color: var(--color-primary); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--spacing-xl);
}
.section-header .subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--color-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-xs);
}
.section-header h2 {
  margin-bottom: var(--spacing-sm);
}
.section-header p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
}
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-white {
  background-color: var(--color-white);
  color: var(--color-secondary);
  border-color: var(--color-white);
}
.btn-white:hover {
  background-color: transparent;
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-md);
  max-width: var(--max-width);
  margin: 0 auto;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo img {
  height: 48px;
  width: auto;
}
.site-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-secondary);
}
.site-logo .logo-tagline {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 0;
  position: relative;
  text-decoration: none;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}
.main-nav a:hover::after,
.main-nav .current-menu-item > a::after {
  width: 100%;
}
.main-nav a:hover {
  color: var(--color-primary);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-secondary);
  transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fdfaf7 0%, #f5efe6 50%, #ede4d3 100%);
  overflow: hidden;
}
.hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.hero__bg-shape--1 {
  width: 600px; height: 600px;
  background: var(--color-rose-deep);
  top: -200px; right: -100px;
}
.hero__bg-shape--2 {
  width: 400px; height: 400px;
  background: var(--color-primary-light);
  bottom: -150px; left: -100px;
}
.hero__bg-shape--3 {
  width: 250px; height: 250px;
  background: var(--color-rose);
  top: 40%; left: 55%;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}
.hero__content {
  max-width: 560px;
}
.hero__badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: var(--spacing-md);
}
.hero__content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: var(--spacing-md);
  color: var(--color-secondary);
}
.hero__content h1 span {
  color: var(--color-rose-deep);
}
.hero__content p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  color: var(--color-text-light);
}
.hero__btns {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--color-border);
}
.hero__stat h4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.hero__stat p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
}
.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__image-placeholder {
  width: 420px;
  height: 520px;
  background: linear-gradient(145deg, var(--color-rose) 0%, var(--color-rose-deep) 40%, var(--color-primary-light) 100%);
  border-radius: 40% 60% 55% 45% / 45% 55% 40% 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: floatShape 6s ease-in-out infinite;
  position: relative;
}
.hero__image-placeholder::before {
  content: '';
  position: absolute;
  inset: -15px;
  border: 2px dashed var(--color-accent);
  border-radius: inherit;
  opacity: 0.3;
  animation: rotateShape 20s linear infinite;
}
@keyframes floatShape {
  0%, 100% { border-radius: 40% 60% 55% 45% / 45% 55% 40% 60%; transform: translateY(0); }
  50% { border-radius: 55% 45% 40% 60% / 60% 40% 55% 45%; transform: translateY(-15px); }
}
@keyframes rotateShape {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero__image-label {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-align: center;
  z-index: 1;
}

/* ========================================
   PRODUCT SHOWCASE (Home)
   ======================================== */
.products-showcase {
  padding: var(--spacing-xxl) 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.product-card__image {
  height: 300px;
  background: linear-gradient(135deg, var(--color-cream-dark), var(--color-cream));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card__image-placeholder {
  font-family: var(--font-accent);
  font-size: 3rem;
  color: var(--color-accent);
  opacity: 0.5;
}
.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-rose-deep);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-card__body {
  padding: var(--spacing-md);
}
.product-card__category {
  font-size: 0.8rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 6px;
}
.product-card h3 {
  font-size: 1.35rem;
  margin-bottom: var(--spacing-xs);
  transition: var(--transition);
}
.product-card:hover h3 {
  color: var(--color-rose-deep);
}
.product-card__desc {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}
.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--color-border);
}
.product-card__moq {
  font-size: 0.84rem;
  color: var(--color-text-light);
  font-weight: 500;
}
.product-card__link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-card__link::after {
  content: '\2192';
  transition: transform 0.3s ease;
}
.product-card__link:hover::after {
  transform: translateX(4px);
}

/* ========================================
   VALUE PROPOSITIONS / FEATURES
   ======================================== */
.value-props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}
.value-prop {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-prop:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.value-prop__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--spacing-sm);
  background: linear-gradient(135deg, var(--color-cream-dark), var(--color-cream));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.value-prop h4 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
}
.value-prop p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #444 100%);
  padding: var(--spacing-xxl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: var(--color-primary);
  opacity: 0.05;
  border-radius: 50%;
  top: -250px; right: -150px;
}
.cta-banner h2 {
  color: var(--color-cream);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}
.cta-banner p {
  color: var(--color-cream);
  opacity: 0.8;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-section {
  padding: var(--spacing-xxl) 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-item__question {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-align: left;
  transition: var(--transition);
}
.faq-item__question:hover {
  color: var(--color-primary);
}
.faq-item__icon {
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: var(--spacing-md);
}
.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item__answer-inner {
  padding: 0 var(--spacing-lg) var(--spacing-md);
  color: var(--color-text-light);
  line-height: 1.8;
  font-size: 0.98rem;
}
.faq-item.active .faq-item__answer {
  max-height: 400px;
}

/* ========================================
   SINGLE PRODUCT PAGE
   ======================================== */
.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl) 0;
}
.product-gallery {
  position: sticky;
  top: 100px;
  align-self: start;
}
.product-gallery__main {
  aspect-ratio: 1/1;
  background: linear-gradient(145deg, var(--color-cream-dark), var(--color-cream));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
}
.product-info h1 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xs);
}
.product-info__category {
  font-size: 0.85rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}
.product-info__short-desc {
  font-size: 1.08rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}
.product-specs {
  margin: var(--spacing-lg) 0;
}
.product-specs h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-xs);
  border-bottom: 2px solid var(--color-cream-dark);
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table tr {
  border-bottom: 1px solid var(--color-border);
}
.specs-table td {
  padding: 12px 16px;
  font-size: 0.95rem;
}
.specs-table td:first-child {
  font-weight: 600;
  color: var(--color-secondary);
  width: 35%;
  background: var(--color-cream-dark);
}
.specs-table td:last-child {
  color: var(--color-text-light);
}
.product-ingredients {
  margin: var(--spacing-lg) 0;
}
.product-ingredients h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
}
.ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ingredient-tag {
  background: var(--color-cream-dark);
  color: var(--color-text);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid var(--color-border);
}
.product-inquiry {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, var(--color-cream-dark), var(--color-cream));
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}
.product-inquiry h3 {
  margin-bottom: var(--spacing-xs);
}
.product-inquiry p {
  margin-bottom: var(--spacing-md);
}
.related-products {
  padding-top: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  border-top: 2px solid var(--color-border);
}

/* ========================================
   BLOG LISTING
   ======================================== */
.blog-listing {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl) 0;
}
.blog-posts-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}
.blog-post-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 280px 1fr;
}
.blog-post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.blog-post-card__thumb {
  height: 220px;
  background: linear-gradient(135deg, var(--color-cream-dark), var(--color-cream));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: var(--color-accent);
  opacity: 0.4;
}
.blog-post-card__content {
  padding: var(--spacing-md);
}
.blog-post-card__meta {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xs);
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.blog-post-card__cat {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-post-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-xs);
  transition: var(--transition);
}
.blog-post-card:hover h3 {
  color: var(--color-rose-deep);
}
.blog-post-card__excerpt {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}
.blog-post-card__more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.sidebar-widget {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h4 {
  font-size: 1.05rem;
  margin-bottom: var(--spacing-sm);
  padding-bottom: var(--spacing-xs);
  border-bottom: 2px solid var(--color-primary);
}
.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-widget li {
  margin-bottom: 0;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-widget li:last-child {
  border-bottom: none;
}
.sidebar-widget a {
  font-size: 0.92rem;
  color: var(--color-text-light);
  display: block;
  transition: var(--transition);
}
.sidebar-widget a:hover {
  color: var(--color-primary);
  padding-left: 6px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--spacing-xl);
  padding: var(--spacing-md) 0;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}
.pagination a:hover,
.pagination .current {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* ========================================
   SINGLE POST
   ======================================== */
.single-post-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl) 0;
}
.post-content {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
}
.post-header {
  margin-bottom: var(--spacing-lg);
}
.post-header__meta {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.post-header__cat {
  color: var(--color-primary);
  font-weight: 600;
}
.post-header h1 {
  font-size: 2.25rem;
  margin-bottom: var(--spacing-sm);
}
.post-featured-image {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, var(--color-cream-dark), var(--color-cream));
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  color: var(--color-accent);
  font-size: 2rem;
  opacity: 0.3;
}
.post-body {
  font-size: 1.05rem;
  line-height: 1.9;
}
.post-body h2 { margin-top: var(--spacing-lg); }
.post-body h3 { margin-top: var(--spacing-md); }
.post-body img {
  border-radius: var(--radius-md);
  margin: var(--spacing-md) 0;
}
.post-footer {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 2px solid var(--color-border);
}
.post-author {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}
.post-author__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-rose-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.post-author__name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-secondary);
}
.post-author__bio {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ========================================
   PAGE TEMPLATES (About, Contact)
   ======================================== */
.page-hero {
  padding: var(--spacing-xxl) 0 var(--spacing-xl);
  background: linear-gradient(135deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  background: var(--color-rose);
  opacity: 0.07;
  border-radius: 50%;
  top: -100px; right: 10%;
}
.page-hero h1 {
  font-size: 2.75rem;
  margin-bottom: var(--spacing-sm);
}
.breadcrumb {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.breadcrumb a {
  color: var(--color-text-muted);
}
.breadcrumb a:hover {
  color: var(--color-primary);
}

.page-content {
  padding: var(--spacing-xxl) 0;
}
.page-default {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
}

/* About page specifics */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  margin-bottom: var(--spacing-xxl);
}
.about-image {
  height: 450px;
  background: linear-gradient(145deg, var(--color-cream-dark), var(--color-rose-deep));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xxl);
}
.about-value {
  text-align: center;
  padding: var(--spacing-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
}
.about-value__icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}
.about-value h4 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
}
.about-value p {
  font-size: 0.9rem;
}
.about-timeline {
  max-width: 700px;
  margin: 0 auto;
}
.timeline-item {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  position: relative;
}
.timeline-year {
  flex-shrink: 0;
  width: 80px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: right;
  padding-top: 4px;
}
.timeline-dot {
  position: relative;
  flex-shrink: 0;
  padding: 10px 0;
}
.timeline-dot::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-cream-dark);
}
.timeline-dot::after {
  content: '';
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 10px);
  background: var(--color-border);
}
.timeline-item:last-child .timeline-dot::after {
  display: none;
}
.timeline-content h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.timeline-content p {
  font-size: 0.92rem;
}

/* Contact page specifics */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}
.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrapper h3 {
  margin-bottom: var(--spacing-md);
}
.form-group {
  margin-bottom: var(--spacing-md);
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-secondary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-cream);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  transition: var(--transition);
}
.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.contact-info-card__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-cream-dark), var(--color-cream));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.contact-info-card h5 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 0.9rem;
  margin: 0;
}
.contact-map {
  margin-top: var(--spacing-xl);
  height: 350px;
  background: linear-gradient(135deg, var(--color-cream-dark), var(--color-cream));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  color: var(--color-accent);
  font-size: 1.2rem;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background-color: var(--color-secondary);
  color: var(--color-cream);
  padding-top: var(--spacing-xxl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}
.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: var(--spacing-sm);
}
.footer-brand p {
  font-size: 0.92rem;
  color: rgba(253,250,247,0.7);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}
.footer-col h5 {
  color: var(--color-cream);
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-xs);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 8px;
}
.footer-col a {
  color: rgba(253,250,247,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--color-primary-light);
  padding-left: 4px;
}
.footer-newsletter p {
  font-size: 0.9rem;
  color: rgba(253,250,247,0.7);
  margin-bottom: var(--spacing-sm);
}
.footer-newsletter-form {
  display: flex;
  gap: 0;
}
.footer-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.1);
  color: var(--color-cream);
}
.footer-newsletter-form input::placeholder {
  color: rgba(253,250,247,0.4);
}
.footer-newsletter-form button {
  padding: 12px 22px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.footer-newsletter-form button:hover {
  background: var(--color-primary-dark);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--spacing-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(253,250,247,0.5);
}

/* ========================================
   GUTENBERG BLOCK FRONT-END STYLES
   ======================================== */

/* --- Cover Block (used for Hero & CTA banners) --- */
.wp-block-cover {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xxl) 0;
}
.wp-block-cover .wp-block-cover__inner-container {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 var(--spacing-md);
  margin: 0 auto;
}
.wp-block-cover.is-style-hero-cover {
  min-height: 90vh;
  background: linear-gradient(135deg, #fdfaf7 0%, #f5efe6 50%, #ede4d3 100%) !important;
}
.wp-block-cover.is-style-cta-cover {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #444 100%) !important;
  padding: var(--spacing-xxl) 0;
  text-align: center;
  min-height: auto;
}
.wp-block-cover.is-style-cta-cover h1,
.wp-block-cover.is-style-cta-cover h2,
.wp-block-cover.is-style-cta-cover h3 {
  color: var(--color-cream);
}
.wp-block-cover.is-style-cta-cover p {
  color: var(--color-cream);
  opacity: 0.8;
}

/* --- Columns Block (used for Value Props, About Intro, Contact Grid) --- */
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}
.wp-block-columns .wp-block-column {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.wp-block-columns .wp-block-column:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Value Props — force grid layout (overrides generic columns) */
.wp-block-columns.is-style-value-props {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}
.wp-block-columns.is-style-value-props .wp-block-column {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.wp-block-columns.is-style-value-props .wp-block-column:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.wp-block-columns.is-style-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

/* --- Button Block --- */
.wp-block-button__link,
.wp-block-button .wp-block-button__link {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.wp-block-button.is-style-primary .wp-block-button__link,
.wp-block-button__link:not(.is-style-outline):not(.is-style-white) {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.wp-block-button.is-style-primary .wp-block-button__link:hover,
.wp-block-button__link:not(.is-style-outline):not(.is-style-white):hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.wp-block-button.is-style-white .wp-block-button__link {
  background-color: var(--color-white);
  color: var(--color-secondary);
  border-color: var(--color-white);
}
.wp-block-button.is-style-white .wp-block-button__link:hover {
  background-color: transparent;
  color: var(--color-white);
  transform: translateY(-2px);
}

/* --- Group Block (used for sections, FAQ items) --- */
.wp-block-group {
  padding: var(--spacing-xxl) 0;
}
/* Hero group — special full-height treatment */
.wp-block-group.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: var(--spacing-xl) 0;
}
.wp-block-group.hero .wp-block-columns {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
}
/* Hero columns should NOT have card styling */
.wp-block-group.hero .wp-block-column {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: var(--spacing-md);
}
/* CTA Banner group */
.wp-block-group.cta-banner {
  text-align: center;
}
.wp-block-group.is-style-section-white {
  background-color: var(--color-white);
}
.wp-block-group.is-style-section-cream {
  background-color: var(--color-cream);
}
.wp-block-group.is-style-faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: var(--spacing-sm);
}
.wp-block-group.is-style-faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.wp-block-group.is-style-faq-item .wp-block-heading {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-align: left;
  transition: var(--transition);
  margin-bottom: 0;
}
.wp-block-group.is-style-faq-item .wp-block-heading:hover {
  color: var(--color-primary);
}
.wp-block-group.is-style-faq-item .wp-block-heading::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: var(--spacing-md);
}
.wp-block-group.is-style-faq-item.active .wp-block-heading::after {
  transform: rotate(45deg);
}
.wp-block-group.is-style-faq-item .wp-block-paragraph {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 var(--spacing-lg);
  color: var(--color-text-light);
  line-height: 1.8;
  font-size: 0.98rem;
}
.wp-block-group.is-style-faq-item.active .wp-block-paragraph {
  max-height: 400px;
  padding: 0 var(--spacing-lg) var(--spacing-md);
}

/* --- Query Loop / Product Grid Block --- */
.wp-block-query {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}
.wp-block-post-template {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  padding: 0;
  margin: 0;
  list-style: none;
}
.wp-block-post-template li {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.wp-block-post-template li:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

/* --- Heading Block --- */
.wp-block-heading h1,
.wp-block-heading h2,
.wp-block-heading h3,
.wp-block-heading h4 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
}
.wp-block-heading h1 { font-size: 2.75rem; font-weight: 700; }
.wp-block-heading h2 { font-size: 2.25rem; font-weight: 700; }
.wp-block-heading h3 { font-size: 1.65rem; font-weight: 600; }
.wp-block-heading h4 { font-size: 1.35rem; font-weight: 600; }

/* --- Paragraph Block --- */
.wp-block-paragraph p,
.wp-block-paragraph {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Image Block --- */
.wp-block-image {
  margin-bottom: var(--spacing-md);
}
.wp-block-image .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* --- Separator Block --- */
.wp-block-separator {
  border: none;
  border-top: 2px solid var(--color-primary);
  margin: var(--spacing-lg) auto;
  max-width: 80px;
}

/* --- List Block --- */
.wp-block-list ul,
.wp-block-list ol {
  padding-left: 1.5rem;
}
.wp-block-list li {
  margin-bottom: 0.4rem;
  color: var(--color-text-light);
}

/* --- Quote Block --- */
.wp-block-quote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--spacing-md);
  margin: var(--spacing-md) 0;
  font-style: italic;
  color: var(--color-text-light);
}

/* --- Table Block --- */
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.wp-block-table td,
.wp-block-table th {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
}
.wp-block-table th {
  font-weight: 600;
  color: var(--color-secondary);
  background: var(--color-cream-dark);
}

/* --- Form Block (Contact Form) --- */
.wp-block-form .wp-block-form-input,
.wp-block-form .wp-block-form-textarea {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-cream);
  transition: var(--transition);
}
.wp-block-form .wp-block-form-input:focus,
.wp-block-form .wp-block-form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}

/* --- Post Content (single post) --- */
.wp-block-post-content,
.entry-content {
  font-size: 1.05rem;
  line-height: 1.9;
}
.wp-block-post-content h2,
.entry-content h2 { margin-top: var(--spacing-lg); }
.wp-block-post-content h3,
.entry-content h3 { margin-top: var(--spacing-md); }
.wp-block-post-content img,
.entry-content img {
  border-radius: var(--radius-md);
  margin: var(--spacing-md) 0;
}

/* --- Align Wide / Full --- */
.wp-block[data-align="wide"],
.alignwide {
  max-width: calc(var(--max-width) + 200px);
  margin-left: auto;
  margin-right: auto;
}
.wp-block[data-align="full"],
.alignfull {
  max-width: 100%;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* ========================================
   RESPONSIVE — GUTENBERG BLOCKS
   ======================================== */
@media (max-width: 1024px) {
  .wp-block-columns.is-style-value-props {
    grid-template-columns: repeat(2, 1fr);
  }
  .wp-block-columns.is-style-contact-grid {
    grid-template-columns: 1fr;
  }
  .wp-block-cover {
    min-height: auto;
    padding: var(--spacing-xl) 0;
  }
  /* Hero responsive */
  .wp-block-group.hero {
    min-height: auto;
    padding: var(--spacing-xl) 0;
  }
  .wp-block-group.hero .wp-block-columns {
    flex-direction: column;
  }
  .wp-block-group.hero .wp-block-column {
    max-width: 100%;
  }
  /* Generic columns fallback to single column */
  .wp-block-columns:not(.is-style-value-props):not(.is-style-contact-grid) {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .wp-block-columns.is-style-value-props {
    grid-template-columns: 1fr;
  }
  .wp-block-query,
  .wp-block-post-template {
    grid-template-columns: 1fr;
  }
  .wp-block-cover .wp-block-cover__inner-container {
    padding: 0 var(--spacing-sm);
  }
}
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: 100%; }
  .hero__btns { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__image { display: none; }
  .value-props { grid-template-columns: repeat(2, 1fr); }
  .single-product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .blog-listing { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; order: -1; }
  .blog-post-card { grid-template-columns: 1fr; }
  .blog-post-card__thumb { height: 240px; }
  .single-post-wrapper { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--spacing-lg); }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .section { padding: var(--spacing-xl) 0; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-white); flex-direction: column; padding: var(--spacing-md); box-shadow: var(--shadow-md); }
  .main-nav.active { display: flex; }
  .mobile-toggle { display: flex; }
  .header-cta { display: none; }
  .hero { min-height: auto; padding: var(--spacing-xl) 0; }
  .hero__content h1 { font-size: 2.5rem; }
  .hero__stats { flex-direction: column; gap: var(--spacing-md); align-items: center; }
  .product-grid { grid-template-columns: 1fr; }
  .value-props { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--spacing-sm); text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 var(--spacing-sm); }
  .hero__content h1 { font-size: 2rem; }
  .btn { padding: 12px 26px; font-size: 0.88rem; }
  .page-default { padding: var(--spacing-md); }
  .post-content { padding: var(--spacing-md); }
  .contact-form-wrapper { padding: var(--spacing-md); }
}
