/* ===== ANTI-FOUC (Flash of Unstyled Content) - DISABLED ===== */
/* Anti-FOUC disabled to prevent page loading issues */
/* Pages load normally without opacity transitions */

/* ===== ROOT STYLES ===== */
:root {
  /* Theme Colors - Can be overridden by theme.js */
  --primary-color: var(--theme-primary-color, #9b8860);
  --secondary-color: var(--theme-secondary-color, #2c2c2c);
  --accent-color: var(--theme-accent-color, #d4af37);
  --background-color: var(--theme-background-color, #ffffff);
  --text-color: var(--theme-text-color, #333333);
  --text-light: var(--theme-text-light, #666666);
  --border-color: var(--theme-border-color, #dddddd);
  --success-color: var(--theme-success-color, #28a745);
  --error-color: var(--theme-error-color, #dc3545);
  --warning-color: var(--theme-warning-color, #ffc107);
  
  /* Legacy colors (for backward compatibility) */
  --text-dark: var(--text-color);
  --bg-light: #faf9f7;
  --bg-cream: #f5f3f0;
  --accent-gold: var(--accent-color);
  --accent-wine: #722f37;
  --accent-grape: #5a2d4a;
  --accent-plum: #6b3a52;
  --accent-purple: #8b4789;
  
  /* Typography - Can be overridden by theme.js */
  --font-family: var(--theme-font-family, 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
  --font-size-base: var(--theme-font-size-base, 16px);
  --line-height: var(--theme-line-height, 1.6);
  --font-size-h1: var(--theme-font-size-h1, 2.5rem);
  --font-size-h2: var(--theme-font-size-h2, 2rem);
  --font-size-h3: var(--theme-font-size-h3, 1.75rem);
  
  /* Legacy fonts */
  --font-display: 'Playfair Display', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: var(--font-family);
  
  /* Layout - Can be overridden by theme.js */
  --container-width: var(--theme-container-width, 1200px);
  --border-radius: var(--theme-border-radius, 8px);
  --box-shadow: var(--theme-box-shadow, 0 2px 8px rgba(0,0,0,0.1));
  --transition-speed: var(--theme-transition-speed, 0.3s);
  
  /* Legacy transitions and shadows */
  --transition: all var(--transition-speed) ease;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 50px rgba(114, 47, 55, 0.25);
  --shadow-xl: 0 30px 80px rgba(90, 45, 74, 0.3);
  --glow-wine: 0 0 30px rgba(212, 175, 55, 0.2);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--secondary-color);
}

h1, h2 {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-wine));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -1px;
}

h2 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
}

h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 42px;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.btn:active::before {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  20% {
    opacity: 0.85;
  }
  40% {
    opacity: 0.6;
  }
  70% {
    opacity: 0.2;
  }
  100% {
    width: 350px;
    height: 350px;
    opacity: 0;
  }
}

@keyframes premiumGlow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.25), 0 0 25px rgba(212, 175, 55, 0.08);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.28), 0 0 35px rgba(212, 175, 55, 0.15);
    filter: brightness(1.02);
  }
}

@keyframes subtleShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-1px); }
  40% { transform: translateX(1px); }
  60% { transform: translateX(-0.5px); }
  80% { transform: translateX(0.5px); }
}

@keyframes luxeShimmer {
  0%, 100% {
    box-shadow: 
      0 8px 25px rgba(114, 47, 55, 0.25), 
      0 0 25px rgba(212, 175, 55, 0.08),
      inset 0 0 15px rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 
      0 8px 25px rgba(114, 47, 55, 0.28), 
      0 0 35px rgba(212, 175, 55, 0.15),
      inset 0 0 15px rgba(255, 255, 255, 0.08);
  }
}

@keyframes shimmerPass {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-wine) 0%, var(--accent-plum) 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(114, 47, 55, 0.25), 0 0 25px rgba(212, 175, 55, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-plum) 0%, var(--accent-wine) 100%);
  box-shadow: 0 12px 35px rgba(114, 47, 55, 0.45), 0 0 40px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(114, 47, 55, 0.3), 0 0 20px rgba(212, 175, 55, 0.15);
}

.btn--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2.5px solid var(--primary-color);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn--secondary:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(139, 90, 60, 0.25), 0 0 20px rgba(139, 90, 60, 0.1);
  transform: translateY(-2px);
}

.btn--secondary:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(139, 90, 60, 0.15);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

/* Top Bar */
.h__top-bar {
  background: linear-gradient(90deg, var(--secondary-color), #2a2118);
  color: #fff;
  padding: 10px 0;
  font-size: 11px;
  font-family: var(--font-sans);
}

.top-bar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__links {
  display: flex;
  gap: 20px;
}

.top-bar__link {
  color: #fff;
}

.top-bar__link:hover {
  color: var(--accent-gold);
}

.top-bar__socials {
  display: flex;
  gap: 15px;
}

.social-icon {
  color: #fff;
  font-size: 11px;
}

/* Main Header */
.h__content {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.h__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Logo */
.h__logo {
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-serif);
}

.logo__main {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--secondary-color);
  font-family: var(--font-display);
}

.logo__sub {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-top: 3px;
  font-family: var(--font-sans);
  font-weight: 400;
}

/* Navigation Bar with Vine Background */
.h__bg-vine {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: linear-gradient(90deg, #fdfbf8 0%, #f8f4f0 50%, #fef9f5 100%);
  border: 2px solid var(--accent-wine);
  border-radius: 50px;
  position: relative;
  overflow: visible;
  box-shadow: 0 8px 25px rgba(114, 47, 55, 0.12);
  min-height: 56px;
}

.h__bg-vine::before {
  content: '🍷';
  position: absolute;
  left: 20px;
  opacity: 0.08;
  font-size: 90px;
}

.h__bg-vine::after {
  content: '🍷';
  position: absolute;
  right: 20px;
  opacity: 0.08;
  font-size: 90px;
}

.h__nav {
  display: flex;
  gap: 20px;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.h__nav--compact {
  justify-content: center;
  padding: 0;
  gap: 25px;
}

.nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  color: var(--text-dark);
  transition: var(--transition);
  font-family: var(--font-sans);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-wine);
  transition: width 0.4s ease;
}

.nav__link:hover {
  color: var(--accent-wine);
  transform: translateY(-1px);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link--active {
  color: var(--accent-wine);
}

/* ===== DROPDOWN MENU ===== */
.nav__item {
  position: relative;
}

.nav__item--dropdown {
  position: relative;
}

.nav__link--dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link--dropdown::after {
  content: '▼';
  font-size: 8px;
  margin-left: 2px;
  display: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav__item--dropdown:hover .nav__link--dropdown::after {
  transform: rotate(-180deg);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
  border: 1px solid var(--accent-wine);
  border-top: 3px solid var(--accent-wine);
  border-radius: 0 0 12px 12px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scaleY(0.95);
  transform-origin: top center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  box-shadow: 
    0 20px 50px rgba(114, 47, 55, 0.25),
    0 0 0 1px rgba(114, 47, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  overflow: hidden;
  margin-top: 12px;
  backdrop-filter: blur(10px);
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scaleY(1);
}

.nav__dropdown-item {
  display: block;
  padding: 16px 18px;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-family: var(--font-sans);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  background: transparent;
}

.nav__dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-wine), var(--accent-plum));
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav__dropdown-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.08) 50%, rgba(212, 175, 55, 0) 100%);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.nav__dropdown-item:hover {
  color: var(--accent-wine);
  padding-left: 24px;
  background: rgba(212, 175, 55, 0.04);
}

.nav__dropdown-item:hover::before {
  transform: scaleY(1);
}

.nav__dropdown-item:hover::after {
  transform: translateX(100%);
}

.nav__dropdown-item:not(:last-child) {
  border-bottom: 1px solid rgba(114, 47, 55, 0.08);
}

/* Action Links (Cart & Login) */
.nav__link--action {
  border: 2.5px solid var(--accent-wine);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--accent-wine);
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 0 0 15px rgba(114, 47, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.nav__link--action::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-wine), var(--accent-plum));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.nav__link--action::after {
  display: none;
}

.nav__link--action:hover {
  background: var(--accent-wine);
  color: #fff;
  box-shadow: 0 8px 25px rgba(114, 47, 55, 0.3), inset 0 0 15px rgba(114, 47, 55, 0.08);
  letter-spacing: 1px;
  transform: translateY(-2px);
}

.nav__link--action--login {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.nav__link--action--login:hover {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 8px 25px rgba(139, 90, 60, 0.3);
  letter-spacing: 1px;
  transform: translateY(-2px);
}

/* ===== PREMIUM ACTIONS BAR ===== */
.h__actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

/* Premium Action Buttons */
.action-btn {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-dark);
}

/* Underline effect on hover */
.action-btn::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transform: translateX(-50%);
  transition: width 0.5s ease;
}

.action-btn:hover::before {
  width: 100%;
}

.action-btn:hover {
  color: var(--accent-wine);
  transform: translateY(-2px);
}

/* SVG Icon Styling */
.action-btn__icon {
  width: 24px;
  height: 24px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.5s ease;
}

.action-btn:hover .action-btn__icon {
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

/* Cart Badge (item counter) */
.action-btn__badge {
  position: absolute;
  top: 4px;
  right: 2px;
  background: var(--accent-wine);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
  transform: scale(1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.action-btn--cart:hover .action-btn__badge {
  background: var(--accent-gold);
  color: var(--accent-wine);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

/* Cart Button */
.action-btn--cart {
  color: var(--text-dark);
}

.action-btn--cart:hover {
  color: var(--accent-wine);
}

.action-btn--cart:hover .action-btn__icon {
  animation: cartShake 0.5s ease;
}

@keyframes cartShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

/* Profile Button */
.action-btn--profile {
  color: var(--text-dark);
}

.action-btn--profile:hover {
  color: var(--accent-gold);
}

.action-btn--profile:hover .action-btn__icon {
  animation: profileGlow 0.5s ease;
}

@keyframes profileGlow {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0)); }
  50% { filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5)); }
}

/* Responsive */
@media (max-width: 768px) {
  .h__actions {
    gap: 16px;
  }
  
  .action-btn {
    width: 40px;
    height: 40px;
  }
  
  .action-btn__icon {
    width: 20px;
    height: 20px;
  }
}

/* Feedback Button */
.feedback-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-wine), var(--accent-plum));
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  letter-spacing: 1.2px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(114, 47, 55, 0.35), 0 0 30px rgba(212, 175, 55, 0.15);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.feedback-btn:hover {
  background: linear-gradient(135deg, var(--accent-plum), var(--accent-wine));
  box-shadow: 0 12px 35px rgba(114, 47, 55, 0.45), 0 0 40px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.feedback-btn:active {
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(114, 47, 55, 0.3), 0 0 20px rgba(212, 175, 55, 0.15);
}

/* ===== PAGE HERO SECTION ===== */
.page-hero {
  padding: 180px 0;
  min-height: 627px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f9f7f4 0%, #fff5e6 100%);
}

.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(114, 47, 55, 0.12) 50%, rgba(90, 45, 74, 0.15) 100%),
    linear-gradient(to bottom, rgba(139, 90, 60, 0.05), rgba(114, 47, 55, 0.08));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 48px;
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
  color: #fff;
  font-size: 18px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Поддержка динамических фонов для категорий */
.page-hero__bg[style*="background-image"] {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 180px 0;
  min-height: 627px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(114, 47, 55, 0.12) 50%, rgba(90, 45, 74, 0.15) 100%),
    linear-gradient(to bottom, rgba(139, 90, 60, 0.05), rgba(114, 47, 55, 0.08)),
    url('/img/vineyard-hero.jpg') center/cover no-repeat fixed;
}

.hero__vine-leaf {
  position: absolute;
  font-size: 500px;
  opacity: 0.03;
}

.hero__vine-leaf--left {
  top: -150px;
  left: -200px;
  transform: rotate(45deg);
}

.hero__vine-leaf--right {
  bottom: -150px;
  right: -200px;
  transform: rotate(-45deg);
}

.hero__title {
  font-size: 60px;
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1px;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.hero__subtitle {
  font-size: 22px;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 300;
  font-family: var(--font-serif);
  letter-spacing: 0.5px;
}

.hero__description {
  font-size: 15px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.8;
  font-family: var(--font-sans);
}

.hero__btn {
  margin-top: 25px;
}

/* Hero Image Placeholder */
.hero__image-wrapper {
  perspective: 1000px;
  animation: floating 7s ease-in-out infinite;
}

.hero__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #6b3a52 0%, #5a2d4a 50%, #3c1f2c 100%);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 80px;
  opacity: 0.95;
}

.vine-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(255, 255, 255, 0.1) 35px,
    rgba(255, 255, 255, 0.1) 70px
  );
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 100px 0;
}

.section__title {
  font-size: 48px;
  text-align: center;
  font-family: var(--font-display);
  color: var(--secondary-color);
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section__subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 50px;
  font-size: 16px;
  font-family: var(--font-sans);
}

/* ===== PRODUCTS SECTION ===== */
.products {
  background: var(--bg-cream);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
  gap: 32px;
  justify-content: center;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* 🎨 PREMIUM PRODUCT CARD 10X UPGRADED */
.product-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 240, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0;
  border-radius: 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(114, 47, 55, 0.08),
              0 4px 12px rgba(0, 0, 0, 0.04),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  transform-origin: center;
  display: flex;
  flex-direction: column;
  max-width: 380px;
  min-height: 650px;
  width: 100%;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--accent-wine) 0%, 
    var(--accent-plum) 50%, 
    var(--accent-gold) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(114, 47, 55, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(114, 47, 55, 0.18),
              0 12px 32px rgba(139, 90, 60, 0.12),
              0 6px 16px rgba(0, 0, 0, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(114, 47, 55, 0.15);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card__image {
  margin: 0;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(135deg, 
    rgba(248, 245, 240, 0.5) 0%, 
    rgba(255, 255, 255, 0.8) 100%);
  position: relative;
}

.product-illustration {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    var(--accent-gold) 20%, 
    var(--accent-wine) 60%, 
    var(--accent-plum) 100%);
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.product-illustration::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.product-card:hover .product-illustration {
  transform: scale(1.1) rotate(2deg);
}

.product-card:hover .product-illustration::before {
  left: 100%;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  display: block;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover .product-card__img {
  transform: scale(1.15);
}

.product-card__content {
  padding: 24px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__title {
  font-size: 22px;
  margin-bottom: 10px;
  color: #2c1810;
  font-family: 'Playfair Display', var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
  line-height: 1.3;
  min-height: 58px;
  max-height: 58px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card:hover .product-card__title {
  color: var(--accent-wine);
}

.product-card__desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  font-family: 'Poppins', var(--font-sans);
  line-height: 1.6;
  min-height: 44px;
  max-height: 66px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.product-details {
  background: linear-gradient(135deg, rgba(114, 47, 55, 0.03), rgba(139, 90, 60, 0.02));
  border-radius: 12px;
  padding: 14px 18px;
  margin: 18px 0;
  border: 1px solid rgba(114, 47, 55, 0.08);
  min-height: 90px;
}

.product-details p {
  font-size: 13px;
  color: #555;
  margin: 6px 0;
  font-family: 'Poppins', var(--font-sans);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-details p strong {
  color: var(--accent-wine);
  font-weight: 600;
}

.product-card__price {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-wine) 0%, var(--accent-plum) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0;
  font-family: 'Playfair Display', var(--font-serif);
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(114, 47, 55, 0.1);
  position: relative;
  display: inline-block;
}

.product-card__price::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-wine), var(--accent-gold));
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-card__price::after {
  opacity: 0.5;
}

.stock-info {
  font-size: 13px;
  color: #10b981;
  margin: 12px 0;
  font-family: 'Poppins', var(--font-sans);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.stock-info::before {
  content: '✓';
  font-size: 16px;
  color: #10b981;
  font-weight: 700;
}

.stock-low {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
}

.stock-low::before {
  content: '⚠';
  color: #ef4444;
}

.add-to-cart-btn,
.product-card__link {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--accent-wine) 0%, var(--accent-plum) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-family: 'Poppins', var(--font-sans);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: auto;
  box-shadow: 0 8px 20px rgba(114, 47, 55, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.add-to-cart-btn::before,
.product-card__link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.add-to-cart-btn:hover,
.product-card__link:hover {
  background: linear-gradient(135deg, #1a1410 0%, var(--accent-grape) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(114, 47, 55, 0.4),
              0 6px 16px rgba(0, 0, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

.add-to-cart-btn:hover::before,
.product-card__link:hover::before {
  width: 300px;
  height: 300px;
}

.add-to-cart-btn:active,
.product-card__link:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(114, 47, 55, 0.3);
}

.add-to-cart-btn:disabled {
  background: linear-gradient(135deg, #ccc, #999);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  opacity: 0.6;
}

.add-to-cart-btn:disabled:hover {
  transform: none;
  box-shadow: none;
  letter-spacing: 0.3px;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
  .products__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .product-card {
    max-width: 100%;
    min-height: 600px;
  }
  
  .product-card__price {
    font-size: 28px;
  }
  
  .product-card__image {
    height: 240px;
  }
}

/* ===== AWARDS SECTION ===== */
.awards {
  background: #fff;
}

.awards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.award-item {
  text-align: center;
  padding: 40px 30px;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  transition: var(--transition);
  background: linear-gradient(135deg, var(--bg-cream), #fef9f5);
  position: relative;
  overflow: hidden;
}

.award-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-plum));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.award-item:hover {
  border-color: var(--accent-wine);
  box-shadow: var(--shadow-sm), var(--glow-wine);
  transform: translateY(-5px);
  background: linear-gradient(135deg, #fef9f5, #fef4f1);
}

.award-item__number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-wine);
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.award-item__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-family: var(--font-serif);
}

.award-item__text {
  font-size: 12px;
  color: var(--text-light);
  font-family: var(--font-sans);
}

/* ===== NEWS SECTION ===== */
.news {
  background: var(--bg-cream);
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.news-card {
  background: #fff;
  padding: 35px;
  border-radius: 3px;
  border-left: 5px solid var(--accent-wine);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-plum));
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(50px, -50px);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--glow-wine);
  border-color: var(--accent-plum);
}

.news-card__date {
  display: block;
  font-size: 11px;
  color: var(--accent-wine);
  margin-bottom: 12px;
  font-weight: 600;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-card__title {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--secondary-color);
  font-family: var(--font-serif);
  font-weight: 600;
}

.news-card__desc {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 18px;
  font-family: var(--font-sans);
  line-height: 1.6;
}

.news-card__link {
  color: var(--accent-wine);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== VACANCIES SECTION ===== */
.vacancies {
  background: #fff;
}

.vacancies__list {
  display: grid;
  gap: 30px;
}

.vacancy-item {
  padding: 35px;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  background: linear-gradient(135deg, var(--bg-cream), #fef9f5);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.vacancy-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-wine), var(--accent-plum));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vacancy-item:hover {
  border-color: var(--accent-wine);
  box-shadow: var(--shadow-sm), var(--glow-wine);
  transform: translateY(-5px);
  background: linear-gradient(135deg, #fef9f5, #fef4f1);
}

.vacancy-item:hover::before {
  opacity: 1;
}

.vacancy-item__title {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--secondary-color);
  font-family: var(--font-serif);
  font-weight: 600;
}

.vacancy-item__location {
  font-size: 11px;
  color: var(--accent-wine);
  margin-bottom: 12px;
  font-weight: 600;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vacancy-item__desc {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-family: var(--font-sans);
  line-height: 1.6;
}

/* ===== ANNOUNCEMENTS SECTION ===== */
.announcements {
  background: var(--bg-cream);
}

.announcements__list {
  display: grid;
  gap: 30px;
}

.announcement {
  padding: 35px;
  background: linear-gradient(135deg, #fff, #fef9f5);
  border-radius: 3px;
  border-top: 4px solid var(--accent-wine);
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.announcement::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-plum));
  opacity: 0.04;
  border-radius: 50%;
  transform: translate(60px, -60px);
}

.announcement:hover {
  box-shadow: var(--shadow-lg), var(--glow-wine);
  transform: translateY(-5px);
  border-top-color: var(--accent-plum);
}

.announcement__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-wine), var(--accent-plum));
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(114, 47, 55, 0.35), 0 0 25px rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.announcement__badge:hover {
  box-shadow: 0 10px 35px rgba(114, 47, 55, 0.4), 0 0 40px rgba(212, 175, 55, 0.3);
  letter-spacing: 1.3px;
  transform: translateY(-2px);
}

.announcement__title {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-family: var(--font-serif);
  font-weight: 600;
}

.announcement__text {
  font-size: 13px;
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: #fff;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--secondary-color);
  font-family: var(--font-serif);
  font-weight: 600;
}

.about__text p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.8;
  font-family: var(--font-sans);
}

.about__stats {
  display: grid;
  gap: 35px;
}

.stat-block {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, var(--bg-cream), #fef9f5);
  border-radius: 3px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-block::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-gold), transparent);
  opacity: 0.08;
  border-radius: 50%;
  transform: translate(40px, -40px);
}

.stat-block:hover {
  border-color: var(--accent-wine);
  box-shadow: var(--shadow-sm), var(--glow-wine);
  background: linear-gradient(135deg, #fef9f5, #fef4f1);
}

.stat-block__number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-wine);
  font-family: var(--font-display);
}

.stat-block__unit {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
  font-family: var(--font-serif);
}

.stat-block__desc {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  font-family: var(--font-sans);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--secondary-color), #2a1f1a);
  color: #fff;
  padding: 70px 0 30px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--accent-wine), var(--accent-gold)) 1;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer__title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-sans);
  color: #fff;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 14px;
}

.footer__list a {
  color: #b0b0b0;
  font-size: 12px;
  transition: var(--transition);
  font-family: var(--font-sans);
}

.footer__list a:hover {
  color: var(--accent-gold);
}

.footer__contact {
  font-size: 12px;
  margin-bottom: 12px;
  color: #b0b0b0;
  font-family: var(--font-sans);
}

.footer__bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  color: #808080;
  font-family: var(--font-sans);
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(29, 20, 16, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal.active {
  display: flex;
}

.modal__content {
  background: linear-gradient(135deg, #fff, #fef9f5);
  padding: 50px;
  border-radius: 3px;
  width: 90%;
  max-width: 520px;
  position: relative;
  box-shadow: var(--shadow-xl), 0 0 50px rgba(212, 175, 55, 0.25);
  animation: slideUp 0.4s ease;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--accent-wine), var(--accent-gold), var(--accent-plum)) 1;
}

@keyframes slideUp {
  from {
    transform: translateY(60px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: var(--shadow-sm), 0 0 20px rgba(212, 175, 55, 0.1);
  }
  50% {
    box-shadow: var(--shadow-sm), 0 0 40px rgba(212, 175, 55, 0.3);
  }
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.modal__close:hover {
  color: var(--accent-wine);
}

.modal__title {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--secondary-color);
  font-family: var(--font-display);
  font-weight: 700;
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary-color);
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg, #fbfaf9, #fef9f8);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-input:hover,
.form-textarea:hover {
  border-color: rgba(114, 47, 55, 0.3);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.04), 0 0 15px rgba(114, 47, 55, 0.1);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-wine);
  box-shadow: 0 0 0 6px rgba(114, 47, 55, 0.15), inset 0 0 0 1px rgba(212, 175, 55, 0.15), 0 0 20px rgba(212, 175, 55, 0.2);
  background: #fff;
  transform: translateY(-2px);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero,
  .page-hero {
    padding: 140px 0;
    min-height: 540px;
  }

  .hero .container {
    gap: 60px;
  }
  
  .section__title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .h__inner {
    flex-direction: column;
    gap: 20px;
  }

  .h__bg-vine {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 16px 20px;
    border-radius: 20px;
  }

  .h__nav {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .nav__link {
    font-size: 11px;
    padding: 4px 0;
  }

  .hero,
  .page-hero {
    padding: 80px 0;
    min-height: 420px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__title {
    font-size: 44px;
  }

  .hero__content {
    padding-right: 0;
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section {
    padding: 60px 0;
  }

  .section__title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .top-bar__content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .products__grid,
  .awards__grid,
  .news__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .modal__content {
    padding: 35px;
  }

  .stat-block {
    padding: 25px;
  }

  .product-card {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .hero,
  .page-hero {
    padding: 60px 0;
    min-height: 350px;
  }

  .hero__title {
    font-size: 32px;
  }

  .section__title {
    font-size: 28px;
  }

  .feedback-btn {
    width: 100%;
  }

  .modal__content {
    padding: 25px;
  }

  .logo__main {
    font-size: 22px;
  }

  .h__nav {
    gap: 8px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .hero__description {
    font-size: 14px;
  }

  .btn {
    padding: 12px 32px;
    font-size: 12px;
  }
}

/* ===== AGE VERIFICATION MODAL ===== */
.age-verification__content {
  text-align: center;
  padding: 60px 45px !important;
  max-width: 500px !important;
}

.age-verification__header {
  margin-bottom: 35px;
}

.age-verification__title {
  font-size: 28px;
  color: var(--accent-wine) !important;
  margin-bottom: 8px !important;
  font-weight: 700 !important;
}

.age-verification__subtitle {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  margin: 0 !important;
}

.age-verification__text {
  font-size: 16px;
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 40px !important;
  font-weight: 500;
}

.age-verification__text strong {
  color: var(--accent-wine);
  font-weight: 700;
}

.age-verification__buttons {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.age-verification__confirm-btn,
.age-verification__deny-btn {
  padding: 16px 32px;
  border: none;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-sans);
}

.age-verification__confirm-btn {
  background: linear-gradient(135deg, var(--accent-wine), var(--accent-plum));
  color: white;
  box-shadow: 0 4px 15px rgba(114, 47, 55, 0.3);
}

.age-verification__confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(114, 47, 55, 0.4);
}

.age-verification__confirm-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(114, 47, 55, 0.35);
}

.age-verification__deny-btn {
  background: rgba(220, 53, 69, 0.1);
  color: var(--accent-wine);
  border: 2px solid var(--accent-wine);
}

.age-verification__deny-btn:hover {
  background: rgba(220, 53, 69, 0.2);
  transform: translateY(-2px);
}

.age-verification__deny-btn:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .age-verification__content {
    padding: 40px 25px !important;
  }

  .age-verification__title {
    font-size: 22px;
  }

  .age-verification__text {
    font-size: 14px;
    margin-bottom: 30px !important;
  }

  .age-verification__buttons {
    gap: 12px;
  }

  .age-verification__confirm-btn,
  .age-verification__deny-btn {
    padding: 14px 28px;
    font-size: 13px;
  }
}
