/* =========================================================
   BIENAMARGOS / ENYERBATE
   CSS REWORK PREMIUM DARK GREEN
   ========================================================= */

/* =========================
   VARIABLES
   ========================= */
:root {
  --bg: #232426;
  --bg-soft: #2a2b2f;
  --bg-elev: #141519;
  --panel: rgba(20, 21, 25, 0.84);
  --panel-strong: rgba(16, 17, 20, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.03);
  --panel-glass: rgba(18, 22, 19, 0.72);

  --accent: #0f5f26;
  --accent-2: #1d8a3d;
  --accent-3: #89b449;
  --accent-dark: #093714;
  --accent-soft: rgba(137, 180, 73, 0.14);
  --accent-line: rgba(137, 180, 73, 0.22);

  --text: #ffffff;
  --text-soft: #f3f4f6;
  --text-muted: #babdc7;
  --text-dim: #8d919b;

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --line-accent: rgba(137, 180, 73, 0.26);

  --success: #2ec866;
  --warning: #f2b63d;
  --danger: #ef5350;

  --shadow-xs: 0 4px 14px rgba(0, 0, 0, 0.18);
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 28px 60px rgba(0, 0, 0, 0.36);
  --shadow-accent: 0 16px 38px rgba(14, 95, 38, 0.22);

  --r-xs: 10px;
  --r-sm: 14px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 30px;
  --r-pill: 999px;

  --container: 1240px;

  --font-main: 'Inter', system-ui, sans-serif;
  --font-title: 'Bree Serif', serif;

  --transition-fast: 0.18s ease;
  --transition: 0.28s ease;
  --transition-slow: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  background-color: var(--bg);
  background-image:
    linear-gradient(
      to bottom,
      rgba(35, 36, 38, 0.24) 0%,
      rgba(35, 36, 38, 0.56) 24%,
      rgba(35, 36, 38, 0.84) 50%,
      rgba(35, 36, 38, 0.97) 72%,
      var(--bg) 100%
    ),
    url('../img/hero.jpeg');
  background-attachment: fixed;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(137, 180, 73, 0.24);
  color: #fff;
}

/* =========================
   SCROLLBAR
   ========================= */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(137, 180, 73, 0.45) rgba(255, 255, 255, 0.04);
}

*::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

*::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

*::-webkit-scrollbar-thumb {
  background: rgba(137, 180, 73, 0.36);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(137, 180, 73, 0.56);
  background-clip: padding-box;
}

/* =========================
   UTILS
   ========================= */
.wrap {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 72px 0;
}

.surface {
  background: var(--panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.glow-accent {
  box-shadow: var(--shadow-accent);
}

.muted {
  color: var(--text-muted);
}

.text-accent {
  color: var(--accent-3);
}

.font-brand {
  font-family: var(--font-title) !important;
  font-weight: 400 !important;
  letter-spacing: 0.4px;
  text-transform: none;
}

/* =========================
   TOPBAR / HEADER
   ========================= */
.topbar,
.topbar-enyerbate {
  position: sticky;
  top: 0;
  z-index: 120;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 5%;
  background: linear-gradient(
    to bottom,
    rgba(9, 10, 13, 0.88),
    rgba(12, 14, 16, 0.66)
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-enyerbate {
  border-bottom: 2px solid rgba(137, 180, 73, 0.5);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand strong,
.footerInner strong,
.panel strong {
  font-family: var(--font-title);
  font-weight: 400;
}

.brand strong {
  font-size: 27px;
  line-height: 1;
  color: #fff;
  transition: color var(--transition), transform var(--transition);
}

.brand strong:hover {
  color: var(--accent-3);
}

.brand-enyerbate {
  font-family: var(--font-title), serif;
  color: var(--accent-3);
  letter-spacing: 1px;
  font-weight: 900;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 18px rgba(9, 55, 20, 0.28);
}

.topnav,
.topnav-enyerbate {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topnav a,
.topnav-enyerbate a {
  position: relative;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.topnav a::after,
.topnav-enyerbate a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, transparent, var(--accent-3), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.topnav a:hover,
.topnav-enyerbate a:hover {
  color: #fff;
}

.topnav a:hover::after,
.topnav-enyerbate a:hover::after {
  transform: scaleX(1);
}

/* =========================
   BRAND SWITCH
   ========================= */
.brand-switch {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.brand-switch a {
  line-height: 1;
  transition: transform var(--transition), opacity var(--transition), color var(--transition);
}

.brand-main,
.brand-sub {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.brand-separator {
  opacity: 0.35;
  font-size: 18px;
  transform: translateY(-1px);
  color: #fff;
}

.is-primary {
  font-size: 32px;
  font-weight: 900;
}

.is-secondary {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.7;
}

.brand-main.is-primary:hover,
.brand-sub.is-primary:hover,
.brand-main.is-secondary:hover,
.brand-sub.is-secondary:hover {
  transform: translateY(-1px);
}

.brand-main.is-secondary:hover,
.brand-sub.is-secondary:hover {
  opacity: 1;
}

.brand-sub-enyerbate,
.brand-sub-enyerbate.is-secondary,
.brand-sub-enyerbate.is-primary {
  color: var(--accent-3);
}

.brand-sub-enyerbate.is-primary {
  text-shadow: 0 0 18px rgba(137, 180, 73, 0.12);
}

/* =========================
   MENU TOGGLE MOBILE
   ========================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  border-radius: 3px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

/* =========================
   HERO
   ========================= */
.hero {
  display: flex;
  min-height: 88vh;
  background: none;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 14%, rgba(137, 180, 73, 0.12), transparent 34%),
    radial-gradient(circle at 80% 18%, rgba(15, 95, 38, 0.2), transparent 28%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 1;
  flex: 1.2;
  display: flex;
  align-items: flex-start;
  padding: 480px 5% 70px;
}

.hero-copy {
  max-width: 760px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  color: #eaf9ef;
  text-transform: uppercase;
  background: rgba(9, 55, 20, 0.62);
  border: 1px solid rgba(137, 180, 73, 0.24);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #fff;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.28),
    0 8px 24px rgba(0, 0, 0, 0.16);
}

.hero-copy p,
.hero-enyerbate .hero-text {
  margin: 0 0 34px;
  max-width: 610px;
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  z-index: 1;
  flex: 0.82;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 5% 48px 0;
}

.hero-card,
.hero-card-accent {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(18, 22, 19, 0.82),
    rgba(13, 14, 16, 0.9)
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-card-accent {
  border-color: rgba(137, 180, 73, 0.3);
}

.hero-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.1;
}

.index-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.index-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  font-weight: 700;
  color: #fff;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    color var(--transition);
}

.index-item:hover {
  background: rgba(137, 180, 73, 0.11);
  border-color: rgba(137, 180, 73, 0.3);
  color: #f7fff3;
  transform: translateX(5px);
}

/* =========================
   SECTION HEAD
   ========================= */
.section-head {
  margin-bottom: 34px;
}

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

.section-head.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.section-head h3,
.outlet-header h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.outlet-header h3 {
  color: var(--warning);
}

.section-head p {
  margin: 10px 0 0;
  color: var(--text-muted);
  max-width: 700px;
}

.mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    background var(--transition-fast);
  font-size: 13px;
  font-weight: 700;
}

.mini:hover {
  color: #fff;
  border-color: var(--line-accent);
  background: rgba(137, 180, 73, 0.08);
  transform: translateY(-1px);
}

/* =========================
   GRID / CARDS
   ========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(22, 24, 29, 0.9), rgba(16, 18, 21, 0.96));
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(137, 180, 73, 0.14), transparent 42%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(137, 180, 73, 0.24);
  box-shadow: var(--shadow-md);
}

.card:hover::before {
  opacity: 1;
}

.card.is-out {
  opacity: 0.9;
}

.card.is-out:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.card .cover {
  position: relative;
  display: block;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.card:hover img {
  transform: scale(1.04);
}

.card .p {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.card .name {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
}

.card .desc {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.card .price {
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  color: #eaffef;
  text-shadow: none;
}

.actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  width: 100%;
}

/* =========================
   TAGS / BADGES
   ========================= */
.badgeTag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.badgeTag.outlet {
  background: linear-gradient(135deg, #f2b63d 0%, #f39c12 100%) !important;
  color: #111 !important;
}

.badgeTag.out {
  background: #444 !important;
  color: #fff !important;
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    opacity var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 10px 24px rgba(9, 55, 20, 0.28);
}

.btn.primary:hover {
  box-shadow: 0 14px 30px rgba(9, 55, 20, 0.36);
}

.btn.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.btn.ghost:hover {
  background: rgba(137, 180, 73, 0.08);
  border-color: rgba(137, 180, 73, 0.28);
}

.btn.full {
  width: 100%;
  flex: 1;
}

.btn-accent {
  background: var(--accent-3) !important;
  color: #111 !important;
  border-color: var(--accent-3) !important;
  box-shadow: 0 12px 24px rgba(137, 180, 73, 0.18);
}

.btn-ghost-accent {
  background: rgba(137, 180, 73, 0.04);
  border: 1px solid rgba(137, 180, 73, 0.28) !important;
  color: var(--accent-3) !important;
}

.btn-ghost-accent:hover {
  background: rgba(137, 180, 73, 0.1);
}

.btn-enyerbate {
  color: var(--accent-3) !important;
  font-weight: 800;
  border: 1px solid rgba(137, 180, 73, 0.5);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(137, 180, 73, 0.06);
}

/* =========================
   INPUTS
   ========================= */
.inp,
.input-search,
.input-select {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.inp::placeholder,
.input-search::placeholder {
  color: #969ca8;
}

.inp:focus,
.input-search:focus,
.input-select:focus {
  border-color: rgba(137, 180, 73, 0.44);
  background: rgba(0, 0, 0, 0.42);
  box-shadow: 0 0 0 3px rgba(137, 180, 73, 0.1);
}

select.inp,
.input-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a1a1aa'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 42px;
}

/* =========================
   FILTERS / TOOLBAR
   ========================= */
.catalog-toolbar {
  margin-bottom: 28px;
}

.filters,
.enyerbate-toolbar {
  background: linear-gradient(
    180deg,
    rgba(18, 21, 18, 0.8),
    rgba(16, 18, 20, 0.9)
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.enyerbate-toolbar {
  border-color: rgba(137, 180, 73, 0.16);
}

.filters-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr 0.8fr 1fr auto auto;
  gap: 12px;
  align-items: center;
}

.catalog-filters {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
}

.filter-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* =========================
   INFO CARDS / STEPS
   ========================= */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.info-card,
.info-card-accent {
  position: relative;
  overflow: hidden;
  padding: 34px 26px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(18, 21, 24, 0.86), rgba(16, 17, 20, 0.94));
  box-shadow: var(--shadow-sm);
}

.info-card-accent {
  border-color: rgba(137, 180, 73, 0.22);
}

.info-card::before,
.info-card-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(137, 180, 73, 0.08), transparent 36%);
  pointer-events: none;
}

.step-num {
  position: absolute;
  top: -10px;
  right: 14px;
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  color: rgba(137, 180, 73, 0.07);
}

.info-title {
  position: relative;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
  color: #fff;
}

.info-text {
  position: relative;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* =========================
   CONTACT
   ========================= */
.contactPanel {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
}

.panel {
  padding: 38px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(18, 21, 24, 0.86), rgba(16, 18, 21, 0.95));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contactTitle {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 900;
}

.contactText {
  color: var(--text-muted);
  line-height: 1.85;
}

.contactRight {
  padding: 38px;
  border-radius: 24px;
  color: #fff;
  border: 1px solid rgba(137, 180, 73, 0.26);
  background:
    linear-gradient(135deg, rgba(15, 95, 38, 0.88) 0%, rgba(9, 55, 20, 0.96) 100%);
  box-shadow: var(--shadow-accent);
}

.contactHint {
  margin-bottom: 10px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.3px;
  opacity: 0.84;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.social-icon:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

/* =========================
   PRODUCT DETAIL
   ========================= */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.product-gallery,
.product-info {
  border: 1px solid rgba(137, 180, 73, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(18, 21, 24, 0.84), rgba(15, 16, 18, 0.96));
  box-shadow: var(--shadow-sm);
}

.product-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

/* =========================
   VARIANTS
   ========================= */
.variant-wrap {
  margin: 24px 0 28px;
}

.variant-title {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 800;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-chip input {
  display: none;
}

.variant-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.98);
  color: #121212;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
}

.variant-chip span:hover {
  border-color: rgba(137, 180, 73, 0.46);
}

.variant-chip input:checked + span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-color: rgba(137, 180, 73, 0.42);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(9, 55, 20, 0.24);
}

.variant-note {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14px;
}

/* =========================
   CART BUTTON
   ========================= */
.cartBtn {
  position: relative;
  min-height: 46px;
  padding: 10px 15px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.cartBtn:hover {
  border-color: rgba(137, 180, 73, 0.28);
  background: rgba(137, 180, 73, 0.08);
  transform: translateY(-1px);
}

.cartBadge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-3);
  color: #111;
  font-size: 11px;
  font-weight: 900;
  border: 2px solid var(--bg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
}

/* =========================
   FLOATING CART
   ========================= */
.cart-floating {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  font-size: 24px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
}

.cart-floating:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.42);
  filter: brightness(1.05);
}

.cart-floating .cartBadge {
  top: -4px;
  right: -4px;
  min-width: 24px;
  height: 24px;
  font-size: 12px;
  background: #ff5252;
  color: #fff;
  border: 2px solid var(--bg);
}

/* =========================
   CART MODAL
   ========================= */
.cartModal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: stretch;
  justify-content: flex-end;
}

.cartModal.open {
  display: flex;
}

.cartOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.28s ease;
}

.cartDialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(18, 20, 24, 0.98), rgba(13, 14, 16, 1));
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -14px 0 54px rgba(0, 0, 0, 0.44);
  animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cartHead {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cartTitle {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 950;
}

.cartSub {
  margin-top: 4px;
  color: var(--text-dim);
  font-size: 14px;
}

.iconBtn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    color var(--transition-fast);
}

.iconBtn:hover {
  background: rgba(137, 180, 73, 0.08);
  color: #fff;
  border-color: rgba(137, 180, 73, 0.3);
  transform: translateY(-1px);
}

.cartBody {
  flex: 1;
  padding: 22px;
  overflow: auto;
}

.cartEmpty {
  padding: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  text-align: center;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
}

.cartItem {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.cartItem img {
  width: 78px;
  height: 78px;
  border-radius: 14px;
  object-fit: cover;
}

.ciName {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.ciMeta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  color: var(--text-dim);
  font-size: 13px;
}

.ciQty {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.qtyBtn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.qtyBtn:hover {
  background: rgba(137, 180, 73, 0.12);
  border-color: rgba(137, 180, 73, 0.28);
}

.qtyNum {
  min-width: 24px;
  text-align: center;
  font-weight: 900;
}

.dangerLink {
  margin-left: auto;
  border: none;
  background: transparent;
  color: #ff6b6b;
  cursor: pointer;
  text-decoration: underline;
  font-size: 12px;
}

.dangerLink:hover {
  color: #ff8b8b;
}

.cartFoot {
  padding: 24px;
  border-top: 1px solid var(--line);
  background: rgba(14, 16, 18, 0.98);
}

.cartTotalRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 900;
}

.cartActions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* =========================
   CART PAGE
   ========================= */
.cartpage {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
}

.cartrow {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(18, 21, 24, 0.84), rgba(15, 16, 18, 0.96));
  box-shadow: var(--shadow-sm);
}

.cartrow img {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  object-fit: cover;
}

.crname {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.crprice {
  color: #ebffef;
  font-weight: 900;
  font-size: 17px;
}

.crqty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.checkoutbox {
  position: sticky;
  top: 94px;
  height: fit-content;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(18, 21, 24, 0.88), rgba(15, 16, 18, 0.98));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* =========================
   TOAST
   ========================= */
.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 9999;
  transform: translateX(-50%) translateY(100px);
  padding: 13px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(9, 55, 20, 0.34);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.2);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* =========================
   FOOTER
   ========================= */
.footer {
  margin-top: 70px;
  padding: 42px 5%;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.24));
}

.footerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 14px;
  flex-wrap: wrap;
}

/* =========================
   THEMES
   ========================= */
body.enyerbate-theme,
.enyerbate-theme {
  --accent: #89b449;
  --accent-2: #9bc857;
  --accent-3: #b5dc78;
  --accent-dark: #5c8127;
  --accent-soft: rgba(137, 180, 73, 0.14);
  --accent-line: rgba(137, 180, 73, 0.26);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1180px) {
  .filters-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .filters-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
    flex-direction: column;
  }

  .hero-left {
    padding: 180px 5% 50px;
  }

  .hero-right {
    padding: 0 5% 50px;
  }

  .contactPanel,
  .cartpage,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .checkoutbox {
    position: static;
  }

  .catalog-filters {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .topnav,
  .topnav-enyerbate {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 82vw);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 90px 28px 28px;
    background: rgba(17, 18, 22, 0.98);
    border-left: 1px solid var(--line);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.32);
    transition: right 0.3s ease-in-out;
    z-index: 999;
  }

  .topnav.open,
  .topnav-enyerbate.open {
    right: 0 !important;
  }

  .topnav a,
  .topnav-enyerbate a {
    width: 100%;
    display: block;
    font-size: 18px;
  }

  .topnav a::after,
  .topnav-enyerbate a::after {
    display: none;
  }

  .cart-floating {
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    font-size: 21px;
  }

  .brand-switch {
    gap: 8px;
    align-items: center;
  }

  .is-primary {
    font-size: 24px;
  }

  .is-secondary {
    font-size: 11px;
  }

  .brand-separator {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .section-head.row,
  .footerInner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 12vw, 56px);
  }

  .hero-copy p,
  .hero-enyerbate .hero-text {
    font-size: 16px;
  }

  .panel,
  .contactRight,
  .hero-card,
  .hero-card-accent,
  .filters,
  .enyerbate-toolbar,
  .checkoutbox {
    padding: 24px;
  }

  .card img {
    height: 210px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 22px, var(--container));
    padding: 56px 0;
  }

  .topbar,
  .topbar-enyerbate {
    padding: 14px 14px;
  }

  .brand strong {
    font-size: 22px;
  }

  .hero-left {
    padding: 120px 20px 36px;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy p,
  .hero-enyerbate .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-right {
    padding: 0 20px 36px;
  }

  .cartActions {
    grid-template-columns: 1fr;
  }

  .cartDialog {
    max-width: 100%;
  }

  .cartItem,
  .cartrow {
    grid-template-columns: 1fr;
  }

  .cartItem img,
  .cartrow img {
    width: 100%;
    height: 180px;
  }

  .actions {
    flex-direction: column;
  }

  .btn.full {
    width: 100%;
  }

  .kicker {
    font-size: 11px;
    letter-spacing: 1.4px;
  }
}

/* =========================
   MOTION
   ========================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}