/*
Theme Name: Succulux Premium
Theme URI: https://succulux.be/
Author: OpenAI
Author URI: https://openai.com/
Description: Premium beige WordPress theme for Succulux with cactus & succulent focus and a central configurator CTA.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: succulux-premium
*/

:root {
  --sx-bg: #f5f1ee;
  --sx-bg-soft: #f8f5f2;
  --sx-card: #fffdfa;
  --sx-border: #e6ddd5;
  --sx-text: #4e4743;
  --sx-muted: #7a7069;
  --sx-accent: #c79d72;
  --sx-accent-soft: #d1b08c;
  --sx-olive: #9da383;
  --sx-shadow: 0 20px 80px rgba(143, 127, 111, 0.08);
  --sx-radius-xl: 32px;
  --sx-radius-lg: 24px;
  --sx-radius-md: 18px;
  --sx-max: 1400px;
}
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sx-bg);
  color: var(--sx-text);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.site-main { display:block; }

.sx-page {
  background: var(--sx-bg);
  color: var(--sx-text);
}
.sx-container {
  width: min(var(--sx-max), calc(100% - 48px));
  margin: 0 auto;
}
.sx-serif,
.sx-page h1,
.sx-page h2,
.sx-page h3,
.sx-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.sx-topbar {
  background: var(--sx-bg-soft);
  border-bottom: 1px solid var(--sx-border);
}
.sx-topbar-inner,
.sx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sx-topbar-inner {
  min-height: 48px;
  color: var(--sx-muted);
  font-size: 14px;
}
.sx-header {
  background: rgba(248, 245, 242, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sx-border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.sx-header-inner { min-height: 88px; }
.sx-brand {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  color: #3f3a37;
  text-decoration: none;
}
.sx-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.sx-nav a,
.sx-meta a {
  color: #625a56;
  text-decoration: none;
}
.sx-config-link {
  background: var(--sx-accent);
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 999px;
}
.sx-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at right, rgba(212, 202, 193, 0.45), transparent 26%),
    linear-gradient(180deg, #f8f5f2 0%, #f3eeea 100%);
  border-bottom: 1px solid var(--sx-border);
}
.sx-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.sx-kicker {
  display: inline-block;
  background: #f0ebe6;
  border: 1px solid var(--sx-border);
  color: var(--sx-muted);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sx-hero h1 {
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.92;
  margin: 18px 0;
  color: #4c4742;
}
.sx-hero p {
  font-size: clamp(19px, 2.1vw, 28px);
  line-height: 1.45;
  color: #736a64;
  max-width: 720px;
  margin: 0;
}
.sx-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.sx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.2s ease;
  font-weight: 600;
}
.sx-btn-primary { background: var(--sx-accent); color: #fff; }
.sx-btn-primary:hover { background: #b88b5f; }
.sx-btn-secondary { background: var(--sx-olive); color: #fff; }
.sx-btn-secondary:hover { filter: brightness(0.95); }
.sx-btn-light { background: #fff; color: #625a56; border-color: var(--sx-border); }
.sx-hero-visual,
.sx-card,
.sx-config-shell,
.sx-panel {
  background: var(--sx-card);
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius-xl);
  box-shadow: var(--sx-shadow);
}
.sx-hero-visual {
  overflow: hidden;
  min-height: 560px;
  position: relative;
}
.sx-hero-visual img,
.sx-banner img,
.sx-product-image img,
.sx-about-media img,
.sx-review-visual img,
.sx-footer-visual img,
.sx-config-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sx-hero-badge {
  position: absolute;
  right: 24px;
  top: 24px;
  background: rgba(255, 253, 250, 0.92);
  border: 1px solid var(--sx-border);
  border-radius: 18px;
  padding: 16px 18px;
  max-width: 240px;
}
.sx-strip {
  background: var(--sx-bg-soft);
  border-bottom: 1px solid var(--sx-border);
  border-top: 1px solid var(--sx-border);
}
.sx-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 24px 0;
}
.sx-strip-item {
  padding: 8px 18px;
  border-right: 1px solid var(--sx-border);
}
.sx-strip-item:last-child { border-right: 0; }
.sx-section { padding: 72px 0; }
.sx-section h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  margin: 0 0 10px;
  color: #433d39;
}
.sx-section-lead {
  color: #6e6660;
  font-size: 22px;
  margin: 0 0 28px;
}
.sx-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}
.sx-panel { padding: 34px; }
.sx-banner {
  border-radius: var(--sx-radius-xl);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--sx-border);
}
.sx-category-grid,
.sx-product-grid,
.sx-feature-grid,
.sx-footer-grid,
.sx-info-grid {
  display: grid;
  gap: 20px;
}
.sx-category-grid { grid-template-columns: repeat(4, 1fr); }
.sx-product-grid { grid-template-columns: repeat(4, 1fr); }
.sx-feature-grid { grid-template-columns: repeat(3, 1fr); }
.sx-card { padding: 18px; }
.sx-card h3 {
  font-size: 28px;
  margin: 0 0 6px;
}
.sx-card p,
.sx-copy,
.sx-list,
.sx-small {
  color: var(--sx-muted);
  line-height: 1.65;
}
.sx-category-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sx-product-card { padding: 14px; }
.sx-product-image {
  overflow: hidden;
  border-radius: 22px;
  background: #f7f2ee;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--sx-border);
  margin-bottom: 14px;
}
.sx-product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-end;
}
.sx-price {
  font-weight: 600;
  color: #5c5148;
}
.sx-config-shell { padding: 24px; }
.sx-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.sx-step {
  border-radius: 18px;
  background: #f4efea;
  border: 1px solid var(--sx-border);
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  color: #6f645d;
}
.sx-step.is-active {
  background: var(--sx-accent-soft);
  color: #fff;
  border-color: transparent;
}
.sx-step-number {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.sx-config-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}
.sx-config-panel {
  background: #fffdfa;
  border: 1px solid var(--sx-border);
  border-radius: 24px;
  padding: 20px;
}
.sx-config-section {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid #ebe1da;
}
.sx-option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.sx-option-card,
.sx-personalization-card {
  border-radius: 18px;
  border: 1px solid #eee5de;
  background: #f7f2ee;
  padding: 14px;
}
.sx-option-card.is-active,
.sx-personalization-card.is-active {
  background: #fff;
  border-color: var(--sx-accent-soft);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.sx-swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sx-swatch {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid transparent;
  display: inline-flex;
  overflow: hidden;
  background: #f0ebe7;
}
.sx-swatch.is-active {
  border-color: var(--sx-accent-soft);
  background: #fff;
}
.sx-preview-box {
  background: #f7f2ee;
  border-radius: 28px;
  padding: 18px;
  border: 1px solid var(--sx-border);
}
.sx-config-preview {
  min-height: 440px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--sx-border);
  background: linear-gradient(180deg,#fbf8f5 0%,#f1ebe6 100%);
  margin-bottom: 14px;
}
.sx-mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.sx-mini-gallery > div {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--sx-border);
  background: #fff;
  aspect-ratio: 1 / 1;
}
.sx-about-grid,
.sx-testimonial-grid,
.sx-footer-grid,
.sx-cta-grid {
  display: grid;
  gap: 24px;
}
.sx-about-grid,
.sx-cta-grid { grid-template-columns: 1fr 1fr; }
.sx-testimonial-grid { grid-template-columns: 1fr 1fr; }
.sx-footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
.sx-footer {
  border-top: 1px solid var(--sx-border);
  background: linear-gradient(180deg,#f7f2ef 0%,#f3eeea 100%);
  padding-top: 56px;
}
.sx-footer-bottom {
  margin-top: 36px;
  border-top: 1px solid var(--sx-border);
  padding: 18px 0 30px;
  color: var(--sx-muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.sx-links,
.sx-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sx-links li { margin-top: 10px; }
.sx-links a {
  color: var(--sx-muted);
  text-decoration: none;
}
.sx-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.sx-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f4efea;
  color: #6f645d;
  font-size: 13px;
}
@media (max-width: 1100px) {
  .sx-hero-grid,
  .sx-split,
  .sx-about-grid,
  .sx-testimonial-grid,
  .sx-cta-grid,
  .sx-config-grid { grid-template-columns: 1fr; }
  .sx-category-grid,
  .sx-product-grid,
  .sx-strip-grid,
  .sx-footer-grid,
  .sx-feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .sx-container { width: min(var(--sx-max), calc(100% - 28px)); }
  .sx-category-grid,
  .sx-product-grid,
  .sx-strip-grid,
  .sx-footer-grid,
  .sx-feature-grid,
  .sx-steps,
  .sx-option-grid,
  .sx-mini-gallery { grid-template-columns: 1fr; }
  .sx-nav { display: none; }
  .sx-hero { padding-top: 42px; }
}
