/* Premium CSS for Flora Holding - Luxury Black & Gold Theme */
:root {
  --primary: #0e0d0a;        /* Luxury Pure Deep Black */
  --primary-light: #1b1b18;  /* Premium Charcoal Black */
  --accent: #cda250;         /* Metallic Premium Gold */
  --accent-light: #dfba6b;   /* Champagne Gold Highlight */
  --accent-gradient: linear-gradient(135deg, #b08d57 0%, #ffdf9e 50%, #cda250 100%); /* Real Metallic Gold Shine */
  --bg-cream: #121210;       /* Matte Dark Base Background */
  --bg-soft: #080807;        /* Ultra Black Deep Background */
  --bg-white: #181816;       /* Elevated Dark Card Background */
  --text-main: #f0ede6;      /* Crisp Warm White Text */
  --text-muted: #9e9a91;     /* Elegant Champagne-Gray Text */
  --border: rgba(205, 162, 80, 0.12); /* Sleek Luxury Gold-Tinted Border */
  --font-serif: 'Playfair Display', serif; /* Breathtaking classical serif typography */
  --font-sans: 'Quicksand', sans-serif;
  --font-display: 'Playfair Display', serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Faster, responsive luxury easing */
  --shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(205, 162, 80, 0.05); /* Subtle Gold Glow + Matte depth */
}

/* Base Styles */
::-moz-selection {
  background-color: rgba(205, 162, 80, 0.3) !important;
  color: var(--text-main) !important;
}
::selection {
  background-color: rgba(205, 162, 80, 0.3) !important;
  color: var(--text-main) !important;
}

::placeholder {
  color: var(--text-muted) !important;
  opacity: 0.8 !important;
}
::-webkit-input-placeholder {
  color: var(--text-muted) !important;
  opacity: 0.8 !important;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-soft);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-filled {
  background: var(--accent-gradient);
  color: #0e0d0a !important;
  box-shadow: 0 4px 15px rgba(205, 162, 80, 0.2);
}

.btn-filled:hover {
  background: linear-gradient(135deg, #cda250 0%, #ffdf9e 50%, #b08d57 100%);
  color: #0e0d0a !important;
  box-shadow: 0 6px 22px rgba(205, 162, 80, 0.35);
  transform: translateY(-3px);
}

.btn-outlined {
  background-color: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}

.btn-outlined:hover {
  background: var(--accent-gradient);
  color: #0e0d0a !important;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(205, 162, 80, 0.25);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 11px;
}

.w-100 {
  width: 100%;
  text-align: center;
}

/* SVGs */
.icon-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary);
  color: var(--bg-cream);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(250, 236, 226, 0.1);
}

.top-bar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-cta .cta-link {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-light);
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 2px;
}

.top-cta .cta-link:hover {
  color: var(--bg-cream);
  border-bottom-color: var(--bg-cream);
}

/* Relocated Info Bar (Below Hero) */
.relocated-info-bar {
  background-color: var(--primary);
  padding: 15px 0;
  border-bottom: 2px solid var(--accent);
}
.relocated-info-bar .info-item {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.relocated-info-bar .icon-svg {
  fill: var(--accent);
  width: 20px;
  height: 20px;
}

/* Header */
.header {
  background-color: rgba(8, 8, 7, 0.92);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--accent);
  padding: 18px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(205, 162, 80, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 12px rgba(205, 162, 80, 0.25);
}

.logo-info {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-main);
  line-height: 1.1;
}

.logo-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 500;
}

/* Burger Menu Button */
.burger-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 200;
  position: relative;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
}

.burger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}

/* Burger Animation to 'X' */
.burger-menu-btn.active .burger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--accent);
}

.burger-menu-btn.active .burger-bar:nth-child(2) {
  opacity: 0;
}

.burger-menu-btn.active .burger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--accent);
}

.mobile-only-widget {
  display: none;
}

.main-nav ul {
  display: flex;
  gap: 35px;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-main);
  position: relative;
  padding: 10px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-widgets {
  display: flex;
  align-items: center;
}

.cart-trigger {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--accent);
  position: relative;
  padding: 5px;
  transition: var(--transition);
}

.cart-trigger:hover {
  color: var(--accent);
  transform: scale(1.05);
}

.cart-icon {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--accent);
  color: var(--bg-soft);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Slider */
.hero-slider {
  height: 700px;
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
}

.slider-container {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-content {
  max-width: 800px;
  margin-left: 10%;
  color: var(--text-main);
  padding: 40px;
}

.slide-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--accent-light);
  display: block;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.4s;
}

.slide-title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.6s;
}

.slide-text {
  font-size: 16px;
  max-width: 600px;
  margin-bottom: 35px;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease 0.8s;
}

.slide .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 1s;
}

/* Active transitions */
.slide.active .slide-subtitle,
.slide.active .slide-title,
.slide.active .slide-text,
.slide.active .btn {
  opacity: 1;
  transform: translateY(0);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.slider-btn.prev {
  left: 40px;
}

.slider-btn.next {
  right: 40px;
}

.btn-line {
  width: 60px;
  height: 1px;
  background-color: var(--text-main);
  margin-bottom: 8px;
  transition: var(--transition);
}

.slider-btn:hover .btn-line {
  width: 90px;
  background-color: var(--accent);
}

.slider-btn:hover {
  color: var(--accent);
}

.btn-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
}

.slider-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(240, 237, 230, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

/* Stats Banner */
.stats-banner {
  background-color: var(--bg-cream);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 10px;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon-box {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.stat-icon-img {
  height: 50px;
  width: auto;
}

.stat-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
  max-width: 220px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background-color: var(--bg-soft);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.about-title {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--text-main);
  margin-bottom: 25px;
  font-weight: 400;
}

.about-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.counters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.counter-item {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}

.counter-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  display: block;
  line-height: 1.1;
  margin-bottom: 5px;
}

.counter-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--bg-white);
  padding: 15px 25px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 5px 20px rgba(205, 162, 80, 0.04);
}

.badge-icon {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

.badge-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.about-media-col {
  display: flex;
  justify-content: center;
}

.about-img-frame {
  position: relative;
  padding: 15px;
  border: 1px solid var(--border);
  background-color: var(--bg-white);
}

.about-img-frame::after {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid var(--accent);
  z-index: -1;
  pointer-events: none;
}

.about-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Section Common Headers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 400;
}

.section-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* Catalog Area */
.catalog-section {
  padding: 100px 0;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.catalog-layout {
  display: flex;
  gap: 50px;
}

.catalog-sidebar {
  width: 280px;
  flex-shrink: 0;
}

.sidebar-widget {
  background-color: var(--bg-white);
  padding: 30px;
  border: 1px solid var(--border);
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.widget-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.category-menu li {
  margin-bottom: 12px;
  position: relative;
}

.category-menu a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  padding-left: 15px;
}

.category-menu li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0;
  transition: var(--transition);
}

.category-menu li:hover::before,
.category-menu li.active::before {
  opacity: 1;
}

.category-menu li:hover a,
.category-menu li.active a {
  color: var(--accent);
  padding-left: 20px;
}

.search-box {
  display: flex;
  background-color: var(--primary-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.search-input {
  width: 100%;
  padding: 10px 15px;
  border: none;
  background-color: transparent;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 13px;
  outline: none;
}

.search-btn {
  background: var(--primary);
  border: none;
  color: var(--accent);
  padding: 10px 15px;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.search-btn:hover {
  background: var(--accent);
  color: var(--primary);
}

.catalog-content {
  flex-grow: 1;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.result-count {
  font-size: 13px;
  color: var(--text-main);
  font-weight: 600;
}

.sort-select {
  padding: 8px 15px;
  border: 1px solid var(--border);
  background-color: var(--primary-light);
  font-family: var(--font-sans);
  font-size: 13px;
  outline: none;
  color: var(--text-main);
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition);
}

.sort-select option {
  background-color: #161614;
  color: var(--text-main);
}

select option {
  background-color: #1b1b18 !important;
  color: var(--text-main) !important;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(205, 162, 80, 0.12);
  padding: 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(205, 162, 80, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45), 0 5px 20px rgba(205, 162, 80, 0.12);
}

.product-img-wrapper {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  background-color: var(--bg-soft);
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.28); /* zoom in by 28% to bring flowers closer and larger */
  transform-origin: center top; /* align top to keep flowers centered and push bottom watermark out */
  transition: transform 1s ease;
}

.product-card:hover .product-img {
  transform: scale(1.38); /* zoom in further on hover */
}

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

.product-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
}

.product-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.meta-item {
  background-color: var(--bg-cream);
  padding: 2px 8px;
  border-radius: 2px;
}

.product-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 56px;
}

.product-card-footer {
  margin-top: auto;
}

.product-price-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

/* Maturity Section */
.maturity-guide-section {
  padding: 100px 0;
  background-color: var(--bg-soft);
}

.maturity-grid {
  align-items: center;
}

.maturity-visual-col {
  display: flex;
  justify-content: center;
}

.maturity-visual-box {
  width: 400px;
  height: 400px;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 30px;
}

.maturity-stage-tag {
  position: absolute;
  bottom: 20px;
  background-color: var(--primary);
  color: var(--accent);
  border: 1px solid var(--border);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 15px;
  font-weight: 600;
  transition: var(--transition);
}

/* Morphing Flower CSS */
.morph-flower-container {
  width: 220px;
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.morph-flower {
  width: 140px;
  height: 140px;
  position: relative;
  transition: var(--transition);
}

.petal {
  position: absolute;
  background-color: #f7a0b9;
  border: 1px solid #e27d98;
  border-radius: 50%;
  transform-origin: center;
  transition: var(--transition);
}

.petal-1 {
  width: 80px;
  height: 80px;
  top: 10px;
  left: 30px;
}

.petal-2 {
  width: 80px;
  height: 80px;
  bottom: 10px;
  left: 10px;
}

.petal-3 {
  width: 80px;
  height: 80px;
  bottom: 10px;
  right: 10px;
}

.petal-center {
  width: 60px;
  height: 60px;
  top: 40px;
  left: 40px;
  background-color: #e85d82;
  border-color: #c43c60;
  z-index: 2;
}

.leaf {
  position: absolute;
  background-color: #5c9e68;
  border-radius: 100% 0 100% 0;
  width: 40px;
  height: 60px;
  z-index: -1;
  transition: var(--transition);
}

.leaf-1 {
  bottom: 30px;
  left: 10px;
  transform: rotate(-45deg);
}

.leaf-2 {
  top: 30px;
  right: 10px;
  transform: rotate(45deg);
}

/* Stage morph configurations managed dynamically by active scale classes */
.morph-flower.stage-1 .petal-1 { transform: scale(0.65) translate(0px, 10px); }
.morph-flower.stage-1 .petal-2 { transform: scale(0.65) translate(-10px, -5px); }
.morph-flower.stage-1 .petal-3 { transform: scale(0.65) translate(10px, -5px); }
.morph-flower.stage-1 .petal-center { transform: scale(0.5); }

.morph-flower.stage-2 .petal-1 { transform: scale(0.85) translate(0px, 5px); }
.morph-flower.stage-2 .petal-2 { transform: scale(0.85) translate(-5px, -2px); }
.morph-flower.stage-2 .petal-3 { transform: scale(0.85) translate(5px, -2px); }
.morph-flower.stage-2 .petal-center { transform: scale(0.75); }

.morph-flower.stage-3 .petal-1 { transform: scale(1.1) translate(0, 0) rotate(15deg); }
.morph-flower.stage-3 .petal-2 { transform: scale(1.1) translate(0, 0) rotate(-15deg); }
.morph-flower.stage-3 .petal-3 { transform: scale(1.1) translate(0, 0) rotate(45deg); }
.morph-flower.stage-3 .petal-center { transform: scale(1); }

.maturity-slider-control {
  margin-bottom: 40px;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 15px;
}

.maturity-range-input {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}

.maturity-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  transition: var(--transition);
}

.maturity-range-input::-webkit-slider-thumb:hover {
  background: var(--primary);
  transform: scale(1.2);
}

.stage-info-card {
  background-color: var(--bg-white);
  padding: 30px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.stage-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
}

.stage-card-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Testimonials Carousel */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-wrapper {
  position: relative;
  height: 220px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s ease;
}

.testimonial-slide.active {
  opacity: 1;
  z-index: 2;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 30px;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 5px;
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background-color: var(--primary);
  transform: scale(1.3);
}

/* FAQ Accordion */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  margin-bottom: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 30px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--bg-soft);
  color: var(--accent);
}

.faq-icon {
  font-family: var(--font-sans);
  font-size: 24px;
  color: var(--accent);
  transition: var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  border-top: 0 solid var(--border);
}

.faq-item.active .faq-answer {
  border-top-width: 1px;
}

.faq-answer p {
  padding: 25px 30px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Shipping Banner */
.shipping-section {
  padding: 80px 0;
  background-color: var(--primary);
  color: var(--text-main);
}

.shipping-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.shipping-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.shipping-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 1px solid rgba(250, 236, 226, 0.2);
}

.shipping-title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 400;
}

.shipping-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 30px;
  opacity: 0.9;
}

.shipping-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.s-badge {
  border: 1px solid var(--accent);
  padding: 8px 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-light);
  font-weight: 600;
}

/* Video Section */
.video-section {
  background-color: var(--bg-soft);
  padding: 100px 0;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.video-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(14, 13, 10, 0.65), rgba(14, 13, 10, 0.45));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  text-align: center;
  z-index: 2;
  padding: 30px;
}

.video-v-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--accent-light);
  margin-bottom: 10px;
}

.video-overlay-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.3;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
  outline: none;
}

.play-icon {
  font-size: 22px;
  color: var(--primary);
  margin-left: 5px;
}

.video-play-btn:hover {
  transform: scale(1.1);
  background-color: var(--accent);
}

.video-play-btn:hover .play-icon {
  color: var(--bg-soft);
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 8, 7, 0.95);
  backdrop-filter: blur(8px);
}

.video-modal-content {
  position: relative;
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background-color: #000;
  z-index: 2;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  font-size: 36px;
  color: var(--bg-soft);
  cursor: pointer;
  outline: none;
}

.iframe-container {
  width: 100%;
  height: 100%;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contacts Section */
.contacts-section {
  background-color: var(--bg-white);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.contacts-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.contacts-info-box {
  display: flex;
  flex-direction: column;
}

.contacts-info-box .section-subtitle {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 15px;
  font-weight: 700;
}

.contacts-info-box .section-title {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 35px;
  font-weight: 400;
}

.contacts-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-detail-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(205, 162, 80, 0.08);
  color: var(--accent);
  padding: 10px;
  transition: var(--transition);
}

.contact-detail-item:hover .contact-detail-icon {
  background-color: var(--accent);
  color: var(--primary);
}

.contact-detail-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.contact-detail-content h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-detail-content p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-phone-link {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px dotted var(--accent);
}

.contact-phone-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.contact-detail-logo-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.contact-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.contact-logo-text-box {
  display: flex;
  flex-direction: column;
}

.contact-logo-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
}

.contact-logo-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.contacts-map-box {
  position: relative;
  box-shadow: 0 30px 60px rgba(12, 91, 71, 0.08);
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-container-frame {
  width: 100%;
  height: 450px;
}

.map-container-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-coordinates-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(205, 162, 80, 0.95);
  color: var(--primary);
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(5px);
  z-index: 10;
  border: 1px solid var(--accent);
}

/* Unified B2B Quote Request Section */
.quote-request-section {
  background-color: var(--bg-cream);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.quote-request-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.05) 0%, rgba(254, 241, 230, 0) 70%);
  z-index: 1;
}

.quote-request-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.quote-request-info {
  display: flex;
  flex-direction: column;
}

.quote-request-info .section-subtitle {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 15px;
  font-weight: 700;
}

.quote-request-info .section-title {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 400;
}

.quote-request-info .section-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.quote-info-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}

.bullet-item:hover {
  transform: translateX(5px);
  color: var(--accent);
}

.bullet-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(205, 162, 80, 0.08);
  padding: 6px;
  transition: var(--transition);
}

.bullet-item:hover .bullet-icon {
  background-color: var(--accent);
}

.bullet-item:hover .bullet-icon svg {
  fill: var(--bg-soft) !important;
}

.quote-request-form-box {
  background-color: var(--bg-white);
  padding: 50px;
  box-shadow: 0 30px 60px rgba(205, 162, 80, 0.03);
  border: 1px solid var(--border);
  position: relative;
}

.quote-request-form-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.checkout-form .form-group {
  margin-bottom: 22px;
}

.checkout-form label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background-color: var(--bg-soft);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
  border-radius: 0;
}

.form-input:focus {
  border-color: var(--accent);
  background-color: var(--bg-white);
  box-shadow: 0 5px 15px rgba(205, 162, 80, 0.05);
}

.form-textarea {
  resize: vertical;
  height: 120px;
}

/* Footer Section */
.footer {
  background-color: var(--bg-cream);
  padding: 80px 0 40px 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.brand-col .logo {
  margin-bottom: 20px;
}

.footer-about {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 25px;
  font-weight: 700;
}

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

.footer-links a {
  font-size: 13.5px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact-item {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 12px;
  color: var(--text-muted);
}

.policy-links a {
  color: var(--text-muted);
  margin: 0 5px;
}

.policy-links a:hover {
  color: var(--accent);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(14, 13, 10, 0.98);
  backdrop-filter: blur(10px);
  color: var(--text-main);
  z-index: 1000;
  padding: 15px 0;
  border-top: 1px solid var(--accent);
  transform: translateY(100%);
  transition: transform 0.6s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text {
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.9;
}

.cookie-banner .btn {
  color: var(--bg-soft);
  border-color: var(--accent);
  white-space: nowrap;
}

.cookie-banner .btn:hover {
  background-color: var(--accent);
  color: var(--bg-soft);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .hero-slider { height: 600px; }
  .slide-title { font-size: 46px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .shipping-grid { gap: 40px; }
}

@media (max-width: 1024px) {
  .catalog-layout { flex-direction: column; }
  .catalog-sidebar { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
  .sidebar-widget { margin-bottom: 0; }
  .about-grid, .shipping-grid, .contacts-wrapper { grid-template-columns: 1fr; }
  .about-media-col { order: -1; }
  .quote-request-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .quote-request-info .section-title, .contacts-info-box .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .container, .top-bar-container, .header-container, .about-container, .shipping-container, .cookie-container {
    padding: 0 20px;
  }
  .top-bar-container { justify-content: center; text-align: center; }
  .top-info { justify-content: center; gap: 15px; }
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
  }
  .burger-menu-btn {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(14, 13, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--accent);
    padding: 25px 30px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  }
  .main-nav.active {
    display: flex;
    animation: slideDownMenu 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    width: 100%;
  }
  .nav-link {
    font-size: 15px;
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(12, 91, 71, 0.05);
  }
  .mobile-only-widget {
    display: block;
    width: 100%;
  }
  .header-widgets {
    display: none !important;
  }
  @keyframes slideDownMenu {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .slide-content { margin-left: 0; padding: 20px; text-align: center; }
  .slide-title { font-size: 32px; }
  .slider-btn { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .about-title, .shipping-title, .contacts-info-box .section-title { font-size: 32px; }
  .counters-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-container { flex-direction: column; text-align: center; gap: 15px; }
  .catalog-sidebar { grid-template-columns: 1fr; }
  .maturity-visual-box { width: 100%; height: 350px; }
  .quote-request-section {
    padding: 70px 0;
  }
  .quote-request-form-box {
    padding: 30px;
  }
  .quote-request-info .section-title {
    font-size: 30px;
  }
}

/* ==========================================================================
   Admin Panel Styles
   ========================================================================== */
.admin-main {
  padding-top: 50px;
  padding-bottom: 80px;
}

.admin-header-box {
  text-align: center;
  margin-bottom: 50px;
}

.admin-title {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 400;
}

.admin-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Analytics Cards */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.astat-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(205, 162, 80, 0.12);
  padding: 25px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition);
  border-radius: 8px;
}

.astat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(205, 162, 80, 0.45);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35), 0 5px 15px rgba(205, 162, 80, 0.1);
}

.astat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.astat-value {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.astat-footer {
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 5px;
}

.ratio-box {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.ratio-bar-container {
  height: 6px;
  background-color: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.ratio-bar-fill {
  height: 100%;
  background-color: var(--accent);
  transition: width 0.4s ease;
}

/* Admin Tabs */
.admin-tabs {
  display: flex;
  gap: 15px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
}

.admin-tab-btn {
  background: none;
  border: none;
  padding: 15px 25px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.admin-tab-btn:hover {
  color: var(--accent);
}

.admin-tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.tab-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.admin-tab-badge {
  background-color: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

/* CRUD Grid */
.admin-crud-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 40px;
  align-items: start;
}

.crud-form-card, .crud-list-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(205, 162, 80, 0.12);
  padding: 40px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  transition: var(--transition);
}

.crud-form-card:hover, .crud-list-card:hover {
  border-color: rgba(205, 162, 80, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 5px 15px rgba(205, 162, 80, 0.08);
}

.form-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 30px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
}

.admin-form .form-group {
  margin-bottom: 20px;
}

.admin-form label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23cda250' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 35px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

/* Admin Table */
.admin-table-responsive {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
}

.admin-table th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--accent);
  padding: 15px 10px;
  border-bottom: 2px solid var(--border);
}

.admin-table td {
  padding: 15px 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 1px solid var(--border);
  clip-path: inset(0 0 8% 0); /* crop out the bottom 8% of the image directly */
  border-radius: 4px;
}

.admin-action-btns {
  display: flex;
  gap: 8px;
}

.admin-btn-delete {
  background-color: transparent;
  border: 1px solid #d15858;
  color: #d15858;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.admin-btn-delete:hover {
  background-color: #d15858;
  color: white;
}

/* Orders Page Layout */
.admin-orders-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 40px;
  align-items: start;
}

.admin-orders-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.order-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.order-card:hover {
  border-color: var(--accent);
}

.order-card-header {
  background-color: var(--bg-soft);
  padding: 20px 30px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
}

.order-card-body {
  padding: 30px;
}

.order-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
  font-size: 13.5px;
  line-height: 1.8;
}

.order-details-grid p {
  margin-bottom: 8px;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px dotted var(--border);
}

.order-items-list {
  margin-bottom: 25px;
}

.category-pill {
  background-color: var(--bg-cream);
  color: var(--accent);
  border-radius: 20px;
  font-weight: 700;
  border: 1px solid var(--border);
}

/* Toast System */
.toast-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  pointer-events: none;
}

.toast {
  background-color: var(--bg-white);
  border-left: 5px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 18px 25px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  width: 320px;
  animation: slideInToast 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast.error {
  border-left-color: #d15858;
}

@keyframes slideInToast {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Admin Responsive Media Queries */
@media (max-width: 1200px) {
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-crud-grid, .admin-orders-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .admin-stats-grid { grid-template-columns: 1fr; }
  .crud-form-card, .crud-list-card, .order-card-body { padding: 20px; }
  .admin-tabs { flex-direction: column; gap: 0; }
  .admin-tab-btn { width: 100%; border-bottom: 1px solid var(--border); border-left: 3px solid transparent; }
  .admin-tab-btn.active { border-bottom-color: var(--border); border-left-color: var(--primary); }
  .order-details-grid { grid-template-columns: 1fr; gap: 15px; }
}

/* Premium B2B Extensions */

.stat-desc-inline {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
  font-weight: 500;
  display: block;
}

.stat-icon-svg {
  width: 48px;
  height: 48px;
  fill: var(--accent);
  transition: var(--transition);
}

.stat-card:hover .stat-icon-svg {
  fill: var(--accent-light);
  transform: scale(1.1) translateY(-2px);
}

.about-badge-gold {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--bg-white);
  padding: 18px 25px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 5px 20px rgba(205, 162, 80, 0.04);
  margin-top: 35px;
  transition: var(--transition);
  border-radius: 4px;
}

.about-badge-gold:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(176, 141, 87, 0.12);
}

.about-badge-gold .badge-icon {
  fill: var(--accent);
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.about-badge-gold .badge-text {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-serif);
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* B2B Comparison Section (Comparison Matrix) */
.comparison-section {
  padding: 100px 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border);
  position: relative;
}

.comparison-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, rgba(254, 241, 230, 0.2), transparent);
  pointer-events: none;
}

.matrix-container {
  overflow-x: auto;
  margin-top: 50px;
  box-shadow: 0 20px 50px rgba(205, 162, 80, 0.02);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.comparison-matrix {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--bg-white);
  font-size: 14px;
  min-width: 900px;
}

.comparison-matrix th {
  background-color: var(--primary);
  color: var(--accent);
  padding: 24px 30px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--accent);
}

.comparison-matrix th.highlight-col {
  background-color: #1e1a12;
  border-bottom-color: var(--accent-light);
  box-shadow: inset 0 -4px 0 var(--accent);
  text-align: center;
}

.comparison-matrix td {
  padding: 24px 30px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}

.comparison-matrix tr:last-child td {
  border-bottom: none;
}

.comparison-matrix tr:nth-child(even) {
  background-color: var(--bg-soft);
}

.feature-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  width: 25%;
}

.val-holding {
  width: 40%;
  border-left: 1px solid rgba(176, 141, 87, 0.15);
  border-right: 1px solid rgba(176, 141, 87, 0.15);
  background-color: rgba(205, 162, 80, 0.015);
}

.val-holding strong {
  color: var(--accent);
  font-size: 14.5px;
  display: inline-block;
  margin-bottom: 4px;
}

.val-others {
  width: 35%;
  opacity: 0.85;
}

.val-others strong {
  color: #a45a5a;
  display: inline-block;
  margin-bottom: 4px;
}

/* Volume Selector & Estimate Perks styling */
.volume-selector {
  display: flex;
  gap: 15px;
  margin: 25px 0 30px 0;
}

.volume-btn {
  flex: 1;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  padding: 18px 12px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(205, 162, 80, 0.01);
  border-radius: 4px;
}

.volume-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background-color: rgba(176, 141, 87, 0.02);
  transform: translateY(-2px);
}

.volume-btn.active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--bg-soft);
  box-shadow: 0 8px 25px rgba(205, 162, 80, 0.1);
}

.tier-label {
  font-size: 9.5px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: 1px;
  display: block;
}

.perks-card {
  background-color: var(--primary-light);
  border: 1px solid var(--border);
  padding: 30px;
  color: var(--text-main);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: var(--transition);
}

.perks-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.perks-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--accent-light);
  margin-bottom: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(250, 236, 226, 0.12);
  padding-bottom: 10px;
  text-transform: uppercase;
}

.perks-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.perks-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(250, 236, 226, 0.06);
  padding-bottom: 10px;
}

.perks-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.perk-label {
  font-weight: 600;
  color: var(--accent-light);
  opacity: 0.95;
}

.perk-val {
  font-weight: 700;
  text-align: right;
  color: var(--accent);
}

.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 25px;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .comparison-matrix {
    font-size: 13px;
  }
  .comparison-matrix th, .comparison-matrix td {
    padding: 16px 20px;
  }
  .feature-name {
    width: 30%;
  }
}


