/* ==========================================================================
   PLANET BARBECUE PREMIUM DARK SYSTEM (GRAPHITE & AMBER GLOW)
   ========================================================================== */
:root {
  --primary: #F59E0B; /* Warm Amber */
  --primary-hover: #D97706;
  --primary-glow: rgba(245, 158, 11, 0.15);
  
  --bg-main: #0B0B0C; /* Charcoal Jet Black */
  --bg-section: #121214; /* Deep Graphite Grey */
  --bg-card: #18181B; /* Solid Medium Graphite */
  --bg-card-light: #202024;
  --bg-header: rgba(11, 11, 12, 0.85);
  --bg-footer: #070708;
  
  --text-main: #F4F4F6; /* Warm Off-white */
  --text-muted: #9CA3AF; /* Charcoal Muted */
  --text-inverse: #0B0B0C;
  
  --border-color: #242428;
  --border-hover: #38383F;
  --border-glow: rgba(245, 158, 11, 0.3);
  
  /* WhatsApp Button Green */
  --whatsapp: #25D366;
  --whatsapp-hover: #20BA5A;
  --whatsapp-glow: rgba(37, 211, 102, 0.2);
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.08);
  
  --font-sans: 'Outfit', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-round: 50%;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-text { display: none; }

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, span, a, .meat-card, .cart-item, .set-card, .dinner-card {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.section-padding {
  padding: 100px 0;
}

.light-bg {
  background-color: var(--bg-section);
}

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

/* Highlight Text Gradient */
.highlight-text {
  background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   SECTION GLOW LAYERS (BARBECUE PIT WARM GLOW EFFECT)
   ========================================================================== */
.hero, .catalog-sec, .delivery-sec, .reviews-sec {
  position: relative;
  overflow: hidden;
}

.hero-glow-layer, 
.catalog-glow-layer, 
.delivery-glow-layer, 
.reviews-glow-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.07) 0%, rgba(0, 0, 0, 0) 75%);
  z-index: 0;
  pointer-events: none;
}

.hero .container, 
.catalog-sec .container, 
.delivery-sec .container, 
.reviews-sec .container {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--bg-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

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

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  object-fit: cover;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #FFFFFF;
}

.logo-bold {
  color: var(--primary);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==========================================================================
   LANGUAGE SWITCHER
   ========================================================================== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  padding: 3px;
}

.lang-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 100px;
  transition: all var(--transition-fast);
  line-height: 1;
}

.lang-btn:hover {
  color: #FFFFFF;
}

.lang-btn.active {
  background-color: var(--primary);
  color: var(--text-inverse);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-round);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  background-color: rgba(255, 255, 255, 0.02);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  color: #FFFFFF;
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.2);
}

.social-icon.wa:hover {
  border-color: var(--whatsapp);
  color: var(--whatsapp);
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.2);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding-top: 140px;
  padding-bottom: 90px;
  position: relative;
  background-color: var(--bg-main);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

/* Badge toggle pill switcher */
.hero-badge-toggle {
  display: inline-flex;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 5px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.badge-toggle-item {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.badge-toggle-item.active {
  background-color: #FFFFFF;
  color: var(--text-inverse);
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-inverse);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.02);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.arrow-icon {
  transition: transform var(--transition-fast);
}

.btn-primary:hover .arrow-icon {
  transform: translateX(4px);
}

/* Stats Row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item.border-left {
  border-left: 1px solid var(--border-color);
  padding-left: 32px;
}

.stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  white-space: nowrap;
}

.stat-rating-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.star-icon {
  color: var(--primary);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
  white-space: nowrap;
}

/* Hero Visual & Smartphone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-bg-circle {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: var(--radius-round);
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

/* Smartphone Mockup Container */
.phone-mockup {
  position: relative;
  z-index: 5;
  width: 300px;
  height: 540px;
  border-radius: 40px;
  border: 11px solid #1C1C1F;
  box-shadow: var(--shadow-lg), 0 30px 60px rgba(0, 0, 0, 0.8);
  background-color: var(--bg-main);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-screen {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-main);
  padding: 20px 16px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.phone-header-title {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
}

.phone-header-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--primary);
  border-radius: 100px;
}

.phone-header-badge.green {
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp);
}

.phone-cart-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: visible;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background-color: var(--bg-card);
  padding: 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.cart-item-icon-wrapper {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 65%;
}

.cart-item-name {
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
}

.cart-item-qty {
  font-size: 10px;
  color: var(--text-muted);
}

.cart-item-price {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
}

.phone-footer {
  margin-top: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
}

.phone-delivery-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.phone-delivery-label {
  font-size: 10px;
  color: var(--text-muted);
}

.phone-total-value {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
}

.phone-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--whatsapp);
  color: #FFFFFF;
  padding: 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  transition: background-color var(--transition-fast);
}

.phone-cta-btn:hover {
  background-color: var(--whatsapp-hover);
}

.hero-badges-wrapper {
  display: contents;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background-color: rgba(24, 24, 27, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 10;
  animation: float 5s ease-in-out infinite;
}

.badge-left {
  top: 30px;
  left: -155px;
}

.badge-right {
  bottom: 60px;
  right: -60px;
  animation-delay: 2.5s;
}

.badge-icon {
  font-size: 20px;
}

.badge-text-group {
  display: flex;
  flex-direction: column;
}

.badge-main-text {
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
}

.badge-sub-text {
  font-size: 10px;
  color: var(--text-muted);
}



/* ==========================================================================
   SECTION HEADER UTILITY
   ========================================================================== */
.section-header {
  margin-bottom: 48px;
}

/* ==========================================================================
   MEAT SETS SECTION (МЯСНЫЕ СЕТЫ)
   ========================================================================== */
.sets-sec {
  background-color: var(--bg-main);
}

.sets-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.set-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  width: calc(25% - 15px); /* Matches 4 columns with 20px gap */
  min-width: 260px;
  box-sizing: border-box;
  transition: all var(--transition-normal);
}

.set-card-content {
  padding: 0;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.set-img-wrapper {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, rgba(245, 158, 11, 0.07) 100%);
  border: 1px solid rgba(255, 255, 255, 0.02);
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.set-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.set-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.set-card:hover .set-img {
  transform: scale(1.08) rotate(2deg);
}

.set-card-featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, var(--bg-card) 70%, rgba(245, 158, 11, 0.04) 100%);
  box-shadow: var(--shadow-sm), 0 0 24px rgba(245, 158, 11, 0.06);
}

.set-card-featured:hover {
  border-color: var(--primary-hover);
  box-shadow: var(--shadow-md), 0 0 36px rgba(245, 158, 11, 0.1);
}

.set-card-header {
  margin-bottom: 12px;
}

.set-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 100px;
  background-color: rgba(245, 158, 11, 0.08);
  color: var(--primary);
  border: 1px solid rgba(245, 158, 11, 0.18);
  margin-bottom: 12px;
}

.set-badge-featured {
  background-color: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
}

.set-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
  display: block;
}

.set-price {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.set-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0 16px;
  flex-grow: 1;
}

.set-list li {
  font-size: 12px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.set-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 10px;
  top: 1px;
}

.set-bonus {
  color: var(--primary) !important;
  font-weight: 600 !important;
  border-top: 1px solid var(--border-color);
  padding-top: 10px !important;
  margin-top: 4px;
}

.set-bonus::before {
  content: '★' !important;
}

.set-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: var(--whatsapp);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 10px var(--whatsapp-glow);
  margin-top: auto;
}

.set-wa-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

.set-wa-btn:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.set-wa-btn-featured {
  background-color: var(--primary);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.set-wa-btn-featured:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* ==========================================================================
   PRODUCT CATALOG (MEAT CARDS)
   ========================================================================== */
.section-header-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 48px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FFFFFF;
}

/* Categories Tabs */
.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.catalog-tabs .tab-item {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  background-color: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.catalog-tabs .tab-item:hover {
  border-color: var(--border-hover);
  color: #FFFFFF;
}

.catalog-tabs .tab-item.active {
  background-color: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

/* Catalog Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.meat-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.meat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-hover);
  box-shadow: var(--shadow-md), 0 0 20px rgba(245, 158, 11, 0.05);
}

.meat-img-wrapper {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, rgba(245, 158, 11, 0.07) 100%);
  border: 1px solid rgba(255, 255, 255, 0.02);
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.meat-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  transition: transform var(--transition-slow);
}

.meat-card:hover .meat-img {
  transform: scale(1.08) rotate(2deg);
}

.meat-card.filtered-out {
  display: none !important;
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #EF4444;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 2;
}



.meat-info {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.meat-title {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 4px;
}

.meat-portion {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.meat-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 14px;
  font-weight: 400;
}

.meat-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.meat-price-group-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meat-sub-price-info {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.meat-price-group {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.meat-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.meat-price-old {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.meat-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-round);
  background-color: var(--whatsapp);
  color: #FFFFFF;
  box-shadow: 0 4px 10px var(--whatsapp-glow);
  transition: all var(--transition-fast);
}

.meat-wa-btn:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.06);
}

/* Action Footer Below Catalog */
.catalog-action-footer {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 24px 30px;
  border-radius: var(--radius-lg);
}

.catalog-action-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  flex-grow: 1;
}

.catalog-action-footer .btn {
  flex-shrink: 0;
  background-color: var(--whatsapp);
  color: #FFFFFF;
  box-shadow: 0 4px 14px var(--whatsapp-glow);
}

.catalog-action-footer .btn:hover {
  background-color: var(--whatsapp-hover);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   DELIVERY SECTION (HOW ORDER ARRIVES)
   ========================================================================== */
.delivery-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

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

.delivery-phone {
  height: 460px;
}

.delivery-status-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
  margin-top: 10px;
}

.status-item {
  display: flex;
  gap: 12px;
  position: relative;
}

.status-item::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 16px;
  width: 1px;
  height: 36px;
  background-color: var(--border-color);
  z-index: 1;
}

.status-item:last-child::before {
  display: none;
}

.status-dot {
  width: 13px;
  height: 13px;
  border-radius: var(--radius-round);
  background-color: var(--border-color);
  margin-top: 4px;
  position: relative;
  z-index: 2;
  border: 2px solid var(--bg-main);
}

.status-item.done .status-dot {
  background-color: var(--primary);
}

.status-item.active .status-dot {
  background-color: var(--whatsapp);
}

.status-dot.pulsing::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 17px;
  height: 17px;
  border-radius: var(--radius-round);
  border: 2px solid var(--whatsapp);
  opacity: 0.5;
  animation: pulse 1.5s infinite;
}

.status-details {
  display: flex;
  flex-direction: column;
}

.status-title {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
}

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

.delivery-courier-card {
  margin-top: auto;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.courier-avatar {
  font-size: 20px;
}

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

.courier-name {
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
}

.courier-vehicle {
  font-size: 9px;
  color: var(--text-muted);
}

/* Timeline Content Right */
.delivery-timeline-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.timeline-step {
  display: flex;
  gap: 20px;
  position: relative;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  width: 1px;
  height: 32px;
  background-color: var(--border-color);
}

.timeline-step:last-child::before {
  display: none;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--primary);
  border: 1px solid rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
  z-index: 2;
}

.step-content {
  display: flex;
  flex-direction: column;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.delivery-timeline-content .btn {
  background-color: var(--whatsapp);
  color: #FFFFFF;
  box-shadow: 0 4px 14px var(--whatsapp-glow);
}

.delivery-timeline-content .btn:hover {
  background-color: var(--whatsapp-hover);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.reviews-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.review-card {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.review-stars {
  color: #FBBF24;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}

.review-location {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Reviews Footer */
.reviews-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 36px;
}

.reviews-rating-stats {
  display: flex;
  flex-direction: column;
}

.rating-large-num {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.rating-sub-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.reviews-action-buttons {
  display: flex;
  gap: 12px;
}

/* Custom Black Social Buttons (App Store / Google Play look alike) */
.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #070708;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 10px 18px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.social-btn:hover {
  border-color: var(--border-hover);
  background-color: var(--bg-card);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 20px;
}

.btn-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-sub {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-main {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-sec {
  background-color: var(--bg-footer);
  color: var(--text-muted);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

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

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  font-size: 14px;
}

.footer-links a {
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-links span {
  display: inline-block;
  line-height: 1.4;
}

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

.footer-social-links-text {
  display: flex;
  gap: 16px;
}

.footer-social-links-text a {
  transition: color var(--transition-fast);
}

.footer-social-links-text a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-badge-toggle {
    justify-content: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-desc {
    max-width: 620px;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .catalog-grid, .dinner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .set-card {
    width: calc(50% - 10px);
    min-width: 0;
  }
  

  .hero-badges-wrapper {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
    z-index: 10;
  }
  
  .floating-badge {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    animation: none;
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
  }
  
  .delivery-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .delivery-timeline-content {
    align-items: center;
    text-align: center;
  }
  
  .timeline-step {
    text-align: left;
  }
  
  .reviews-container {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .reviews-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .catalog-action-footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
  }

  * {
    box-sizing: border-box;
  }

  .nav {
    display: none; /* Hide standard navigation on mobile, rely on CTA links */
  }

  .header-actions {
    gap: 8px;
  }

  .lang-btn {
    font-size: 11px;
    padding: 4px 8px;
  }

  
  .section-padding {
    padding: 70px 0;
  }
  
  .hero-container {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  
  .hero-title {
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
  }
  
  .hero-desc {
    font-size: 15px;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  
  .hero-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    padding: 0;
    margin-top: 24px;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
  }
  
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .stat-item.border-left {
    border-left: none;
    padding-left: 0;
  }

  .stat-value {
    font-size: 16px;
  }

  .stat-label {
    font-size: 11px;
  }

  .hero-visual {
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    position: relative;
  }

  .visual-bg-circle {
    display: none !important;
  }

  .phone-mockup {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 480px;
    box-sizing: border-box !important;
    margin: 0 auto;
  }

  .hero-badges-wrapper {
    display: none !important;
  }

  .floating-badge {
    display: none !important;
  }
  
  .section-header-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
    margin: 0 auto;
  }

  .dinner-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

  .meat-card {
    padding: 8px;
  }

  .meat-img, .meat-img-wrapper {
    height: 120px;
  }

  .meat-title {
    font-size: 14px;
  }

  .meat-price {
    font-size: 15px;
  }

  .meat-portion {
    font-size: 12px;
  }

  .meat-wa-btn {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    order: 2;
  }
  
  .meat-wa-btn svg {
    width: 16px;
    height: 16px;
  }

  .meat-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .meat-price-group-wrapper {
    display: contents;
  }

  .meat-price-group {
    order: 1;
  }

  .meat-sub-price-info {
    order: 3;
    display: block;
    width: 100%;
    margin-top: 8px;
    line-height: 1.2;
    font-size: 10px;
    color: #888;
  }

  .sets-grid {
    gap: 10px;
  }

  .set-card {
    width: calc(50% - 5px);
    min-width: 0;
    padding: 8px;
  }

  .set-card-content {
    margin-top: 8px;
  }

  .set-img-wrapper, .set-img {
    height: 120px;
    border-radius: 8px;
  }

  .set-title {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .set-price {
    font-size: 15px;
  }

  .set-subtitle {
    font-size: 10px !important;
  }

  .set-badge {
    font-size: 9px;
    padding: 2px 6px;
    margin-bottom: 6px;
  }

  .set-list {
    margin: 8px 0 10px;
    gap: 4px;
  }

  .set-list li {
    font-size: 10px;
    padding-left: 10px;
    line-height: 1.3;
  }

  .set-list li::before {
    font-size: 8px;
  }

  .set-wa-btn { padding: 8px 10px; }
  .desktop-text { display: none; }
  .mobile-text { display: inline; font-size: 11px; font-weight: 700; }

  
  
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ==========================================================================
   IMAGE LIGHTBOX / FULL SCREEN PREVIEW
   ========================================================================== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 11, 12, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  z-index: 1002;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 20px;
    right: 25px;
    font-size: 35px;
  }
}

.btn-wa-secondary {
  background-color: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}
.btn-wa-secondary:hover {
  background-color: #25D366;
  color: #0B0B0C;
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.meat-img-wrapper, .set-img-wrapper {
  position: relative;
}

.zoom-hint { position: absolute; top: 12px; right: 12px; background: rgba(11, 11, 12, 0.65); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); border: 1px solid rgba(255, 255, 255, 0.1); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0.7; z-index: 3; pointer-events: none; transition: all 0.2s; }
.meat-card:hover .zoom-hint, .set-card:hover .zoom-hint { opacity: 1; background: var(--primary); color: #000; transform: scale(1.05); }

/* Желтый маркер для заголовка */
.text-highlight-yellow {
  color: var(--primary);
  font-weight: 600;
}

/* Для компьютеров: оставляем inline-block, чтобы работали вертикальные отступы */
.hero-advantage-badge {
  display: inline-block;
  margin: 6px 0;
  color: #FFFFFF;
  font-weight: 600;
  border-bottom: 1px dashed #F59E0B;
}

/* Для мобильных: переключаем в inline, чтобы слово "технологии" не отрывалось от фразы */
@media (max-width: 768px) {
  .hero-advantage-badge {
    display: inline;
    margin: 0;
    line-height: 1.6; /* Добавляем воздух между строками вместо margin */
  }
}

@media (max-width: 768px) {
  .d-br {
    display: none !important;
  }
}

/* По умолчанию на компьютерах мобильный перенос скрыт */
.m-br {
  display: none;
}

/* На мобильных экранах активируем перенос */
@media (max-width: 768px) {
  .m-br {
    display: inline !important;
  }
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 4px;
}
.lang-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #9CA3AF;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 100px;
  transition: all 0.2s ease;
}
.lang-btn:hover {
  color: #FFFFFF;
}
.lang-btn.active {
  background-color: #F59E0B;
  color: #0B0B0C;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4);
}

.step-action-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Принудительный оранжевый цвет для кнопки Меню */
.step-action-buttons .step-btn-orange {
  background-color: #F59E0B !important;
  color: #0B0B0C !important;
  border: none !important;
}

/* Принудительный прозрачный стиль для кнопки WhatsApp */
.step-action-buttons .step-btn-transparent {
  background-color: transparent !important;
  color: #F3F4F6 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 768px) {
  .step-action-buttons {
    flex-direction: column;
    width: 100%;
  }
  .step-action-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

.set-bonus {
  margin-top: 4px;
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #F59E0B; /* Тот самый оранжевый акцент */
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
  position: relative;
  display: flex;
  gap: 8px;
}


.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 11, 12, 0.8);
  color: #F59E0B;
  border: 1px solid #F59E0B;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.2s ease;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: #F59E0B;
  color: #0B0B0C;
}
@media (max-width: 768px) {
  .lightbox-prev, .lightbox-next {
    width: 40px; height: 40px; font-size: 20px;
    left: 10px;
  }
  .lightbox-next { right: 10px; left: auto; }
}

.meat-img-wrapper {
  height: 250px; /* Высота контейнера на сайте */
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.meat-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Заполняет контейнер, обрезая края */
  object-position: center;
}

/* --- Брутальный фирменный стиль модального окна Planet BBQ --- */
.wa-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Глубокое премиальное затемнение */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px); /* Легкое размытие заднего плана */
}

.wa-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Фирменный стиль Planet BBQ + WhatsApp акцент --- */

.wa-modal-box {
    background: #141414; /* Тот самый угольный фон */
    border: 1px solid #333;
    padding: 24px 20px;
    border-radius: 20px;
    width: 90%;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

/* Оранжево-огненная иконка (в стиле BBQ) */
.wa-modal-icon {
    color: #ff5722; 
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.wa-modal-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
}

.wa-modal-text {
    font-size: 14px;
    color: #b3b3b3;
    margin-bottom: 24px;
    line-height: 1.5;
}

.wa-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.wa-btn {
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    flex: 1;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

/* Кнопка отмены: темно-серая, нейтральная */
.wa-btn-cancel {
    background: #262626;
    color: #888;
}
.wa-btn-cancel:hover {
    background: #333;
    color: #fff;
}

/* Кнопка перехода: фирменный зеленый WhatsApp */
.wa-btn-proceed {
    background: #25D366; 
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.wa-btn-proceed:hover {
    background: #1ea951;
    transform: translateY(-2px);
}
