/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1c1a1b;
  background: #fff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

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

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(110deg, #940364 0%, #FF0080 54%, #FF389C 97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 5px; font-weight: 500;
  font-size: 14px; border: 2px solid transparent; transition: all .2s ease-in-out;
  text-align: center; white-space: nowrap; text-transform: uppercase;
  letter-spacing: 0.5px; position: relative; overflow: hidden;
}
.btn-primary { background: #940364; color: #fff; border-color: #940364; }
.btn-primary:hover { background: #7a0253; border-color: #7a0253; box-shadow: 0 4px 15px rgba(148,3,100,.3); }
.btn-outline { background: transparent; color: #940364; border-color: #940364; }
.btn-outline:hover { background: #940364; color: #fff; }
.btn-accent { background: #ffa30a; color: #fff; border-color: #ffa30a; }
.btn-accent:hover { background: #e8920a; border-color: #e8920a; box-shadow: 0 4px 15px rgba(255,163,10,.3); }
.btn-call { background: #c8e600; color: #1c1a1b; border-color: #c8e600; font-weight: 700; }
.btn-call:hover { background: #b3cc00; border-color: #b3cc00; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-catalog {
  background: #940364; color: #fff; border-color: #940364;
  padding: 10px 20px; font-size: 13px; text-transform: uppercase; letter-spacing: 1px;
}
.btn-catalog:hover { background: #7a0253; border-color: #7a0253; }

/* Ripple effect */
.btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.btn:active::after {
  width: 200px; height: 200px;
  opacity: 1;
  transition: width .3s, height .3s, opacity .6s;
}

/* ===== TOP BANNER ===== */
.top-banner {
  background: #940364; color: #fff; text-align: center;
  padding: 10px 15px; font-size: 15px; font-weight: 500;
}
.top-banner a { color: #fff; }
.top-banner strong { font-weight: 700; text-decoration: underline; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #f4ebf1; box-shadow: 0 2px 10px rgba(148,3,100,.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; max-width: 1200px; margin: 0 auto;
}
.header-logo img { height: 50px; width: auto; }

/* Desktop Nav */
.desktop-nav {
  display: flex; align-items: center; gap: 5px;
}
.desktop-nav > a,
.desktop-nav > .nav-dropdown > .nav-link {
  padding: 8px 14px; font-size: 14px; font-weight: 500;
  color: #1c1a1b; transition: color .2s; border-radius: 5px;
  display: flex; align-items: center; gap: 5px;
}
.desktop-nav > a:hover,
.desktop-nav > .nav-dropdown > .nav-link:hover { color: #940364; background: rgba(148,3,100,.05); }

.nav-dropdown { position: relative; }
.nav-dropdown .nav-submenu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border-radius: 8px; min-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12); padding: 8px 0; z-index: 100;
}
.nav-dropdown:hover .nav-submenu { display: block; }
.nav-submenu a {
  display: block; padding: 10px 20px; font-size: 14px; font-weight: 400;
  color: #1c1a1b; transition: all .2s;
}
.nav-submenu a:hover { background: #f4ebf1; color: #940364; }

.header-right { display: flex; align-items: center; gap: 15px; }
.header-phone { display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: 15px; color: #1c1a1b; }
.header-phone:hover { color: #940364; }
.header-phone i { color: #940364; }
.header-messengers { display: flex; align-items: center; gap: 8px; }
.header-messenger {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; color: #fff; font-size: 15px;
  transition: transform .2s;
}
.header-messenger:hover { transform: scale(1.1); }

/* Burger */
.burger-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 5px; width: 30px;
}
.burger-btn span { display: block; height: 3px; background: #1c1a1b; border-radius: 2px; transition: .3s; }

@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .burger-btn { display: flex; }
}
@media (max-width: 768px) {
  .btn-catalog { display: none; }
  .header-phone span { display: none; }
  .header-messengers { display: none; }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed; top: 0; left: -100%; width: 85%; max-width: 360px;
  height: 100vh; background: #fff; z-index: 2000;
  transition: left .3s ease; overflow-y: auto;
  box-shadow: 5px 0 20px rgba(0,0,0,.15);
}
.mobile-menu.active { left: 0; }
.mobile-menu-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,.5); z-index: 1999;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 20px; border-bottom: 1px solid #eee;
}
.mobile-menu-logo img { height: 40px; }
.mobile-menu-close {
  background: none; border: none; font-size: 28px; color: #333; line-height: 1;
}
.mobile-nav ul { padding: 10px 0; }
.mobile-nav li a {
  display: block; padding: 12px 20px; font-size: 15px;
  font-weight: 500; color: #1c1a1b; border-bottom: 1px solid #f5f5f5;
}
.mobile-nav li a:hover { color: #940364; background: #f4ebf1; }
.mobile-nav .dropdown-toggle { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav .dropdown-menu { display: none; background: #f9f9f9; }
.mobile-nav .has-dropdown.open .dropdown-menu { display: block; }
.mobile-nav .dropdown-menu a { padding-left: 40px; font-size: 14px; }
.mobile-menu-contacts { padding: 20px; border-top: 1px solid #eee; }
.mobile-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; margin-bottom: 15px; color: #1c1a1b; }
.mobile-phone:hover { color: #940364; }
.mobile-socials { display: flex; gap: 10px; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; color: #fff; font-size: 18px;
  transition: transform .2s;
}
.social-link:hover { transform: scale(1.1); }
.social-tg { background: #0088cc; }
.social-wa { background: #25d366; }
.social-max { background: #7b68ee; }
body.menu-open { overflow: hidden; }

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #f4ebf1 0%, #f8d7e8 40%, #fce4ec 100%);
  padding: 60px 0 50px; position: relative; overflow: hidden;
  min-height: 600px;
}
.hero-inner {
  display: flex; align-items: center; gap: 40px;
}
.hero-content { flex: 1; max-width: 600px; }
.hero-images {
  flex: 1; display: flex; justify-content: center; align-items: center;
  position: relative; min-height: 400px;
}
.hero-images img {
  max-height: 380px; width: auto; object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(148,3,100,.15));
  transition: transform .3s;
}
.hero-images img:hover { transform: scale(1.03); }

.hero-title {
  font-size: 36px; font-weight: 700; color: #1c1a1b;
  line-height: 1.25; margin-bottom: 15px;
}
.hero-title .highlight {
  background: linear-gradient(110deg, #940364 0%, #FF0080 54%, #FF389C 97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle { font-size: 18px; color: #333; margin-bottom: 8px; font-weight: 500; }
.hero-text { font-size: 15px; color: #555; margin-bottom: 25px; }
.hero-cta { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 25px; }
.hero-bottom {
  font-size: 13px; color: #888; text-transform: uppercase; letter-spacing: 2px;
  margin-top: 15px;
}
.hero-note { font-size: 13px; color: #999; margin-top: 5px; }

/* Promo Gifts */
.promo-gifts {
  display: flex; gap: 15px;
  flex-wrap: wrap; margin-bottom: 25px;
}
.promo-gift-card {
  background: rgba(255,255,255,.9); border-radius: 12px;
  padding: 20px 15px; text-align: center; flex: 1; min-width: 140px; max-width: 200px;
  box-shadow: 0 4px 20px rgba(148,3,100,.08);
  border: 1px solid rgba(148,3,100,.08);
  transition: transform .2s, box-shadow .2s;
}
.promo-gift-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(148,3,100,.15);
}
.promo-gift-icon { width: 50px; height: 50px; margin: 0 auto 10px; object-fit: contain; }
.promo-gift-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; color: #1c1a1b; }
.promo-gift-card p { font-size: 12px; color: #666; margin-bottom: 5px; }
.promo-min-order { font-size: 13px; color: #940364; font-weight: 700; }

.promo-bar { background: #f4ebf1; padding: 15px 0; }
.promo-gifts-sm { gap: 10px; margin-bottom: 0; }
.promo-gift-sm { padding: 10px; max-width: 180px; display: flex; align-items: center; gap: 10px; text-align: left; }
.promo-gift-sm .promo-gift-icon { width: 35px; height: 35px; margin: 0; flex-shrink: 0; }

/* Quiz CTA Bar */
.quiz-cta-bar { text-align: center; padding: 20px 0; }

/* ===== CATALOG / PRODUCTS ===== */
.catalog-section { padding: 50px 0; }
.section-title {
  text-align: center; font-size: 28px; font-weight: 700;
  margin-bottom: 30px; color: #1c1a1b;
}
.catalog-tabs {
  display: flex; justify-content: center; gap: 0;
  margin-bottom: 30px; flex-wrap: wrap;
}
.catalog-tab {
  padding: 12px 28px; border: 2px solid #940364; border-radius: 0;
  background: #fff; font-size: 15px; font-weight: 600; color: #940364;
  cursor: pointer; transition: all .2s; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.catalog-tab:first-child { border-radius: 5px 0 0 5px; }
.catalog-tab:last-child { border-radius: 0 5px 5px 0; }
.catalog-tab + .catalog-tab { border-left: none; }
.catalog-tab.active, .catalog-tab:hover {
  border-color: #ffa30a; color: #fff; background: #ffa30a;
}
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.product-card {
  background: #fff; border-radius: 5px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.06); transition: box-shadow .2s ease-in-out;
}
.product-card:hover { box-shadow: 0 0 20px 0 rgba(0,0,0,.15); }
.product-image { position: relative; padding-top: 100%; overflow: hidden; background: #f9f9f9; }
.product-image img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; transition: opacity .2s;
}
.product-card:hover .product-image img { opacity: .95; }
.product-info { padding: 15px; }
.product-title { font-size: 15px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; color: #1c1a1b; }
.product-desc { font-size: 13px; color: #666; margin-bottom: 8px; line-height: 1.4; }
.product-prices { margin-bottom: 12px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.old-price { text-decoration: line-through; color: #999; font-size: 14px; }
.current-price { font-size: 18px; font-weight: 700; color: #940364; }
.product-actions { display: flex; gap: 8px; }
.load-more-wrap { text-align: center; margin-top: 30px; }
.empty-state { text-align: center; padding: 60px 20px; color: #999; }
.empty-state i { font-size: 48px; margin-bottom: 15px; display: block; }

/* ===== CAKE CROSS-SELL BANNER ===== */
.cake-banner {
  background: linear-gradient(135deg, #f4ebf1 0%, #fce4ec 100%);
  padding: 40px 0; text-align: center;
}
.cake-banner-inner {
  display: flex; align-items: center; justify-content: center; gap: 30px;
  flex-wrap: wrap;
}
.cake-banner h2 {
  font-size: 28px; font-weight: 700; color: #940364;
}
.cake-banner p { font-size: 16px; color: #555; max-width: 500px; }

/* ===== CATEGORY HERO ===== */
.category-hero { padding: 40px 0 30px; text-align: center; background: #f4ebf1; }
.page-title { font-size: 28px; font-weight: 700; margin-bottom: 15px; color: #1c1a1b; }
.category-description { font-size: 15px; color: #666; max-width: 700px; margin: 0 auto 20px; }
.category-cta { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ===== SOLUTIONS SECTION ===== */
.solutions-section { padding: 50px 0; background: #f9f9f9; }
.solutions-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.solution-card { display: block; border-radius: 8px; overflow: hidden; transition: transform .2s; }
.solution-card:hover { transform: translateY(-3px); }
.solution-image {
  position: relative; padding-top: 65%; background-size: cover;
  background-position: center; background-color: #eee;
}
.solution-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,.6));
  color: #fff;
}
.solution-overlay h3 { font-size: 18px; font-weight: 700; }

/* ===== GALLERY CAROUSEL ===== */
.gallery-section { padding: 50px 0; overflow: hidden; }
.gallery-carousel { position: relative; }
.gallery-track {
  display: flex; gap: 15px; transition: transform .5s ease;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide {
  flex: 0 0 280px; scroll-snap-align: start;
  border-radius: 8px; overflow: hidden;
}
.gallery-slide img { width: 100%; height: 280px; object-fit: cover; }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.15); font-size: 16px; color: #1c1a1b;
  z-index: 2; transition: all .2s;
}
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }
.gallery-arrow:hover { background: #940364; color: #fff; }

/* ===== REVIEWS ===== */
.reviews-section { padding: 50px 0; background: #f9f9f9; }
.reviews-carousel { position: relative; overflow: hidden; }
.reviews-track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: 10px 0;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  background: #fff; border-radius: 8px; padding: 25px;
  box-shadow: 0 2px 15px rgba(0,0,0,.06);
  flex: 0 0 350px; scroll-snap-align: start;
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: 0 4px 20px rgba(148,3,100,.12); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid #f4ebf1; }
.review-info { flex: 1; }
.review-name { font-size: 15px; font-weight: 700; color: #1c1a1b; }
.review-handle { font-size: 13px; color: #940364; font-weight: 500; }
.review-desc { font-size: 12px; color: #999; }
.review-text { font-size: 14px; color: #555; line-height: 1.6; }
.review-stars { margin-bottom: 8px; color: #ffa30a; font-size: 14px; }
.reviews-nav { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.reviews-nav button {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 2px solid #940364;
  color: #940364; font-size: 16px; transition: all .2s;
}
.reviews-nav button:hover { background: #940364; color: #fff; }

/* Legacy grid layout */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* ===== INSTAGRAM ===== */
.instagram-section { padding: 50px 0; text-align: center; }
.instagram-link { margin-top: 15px; }

/* ===== TRUST BADGES ===== */
.trust-section { padding: 40px 0; background: #fff; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  text-align: center;
}
.trust-item i { font-size: 36px; color: #940364; margin-bottom: 12px; }
.trust-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: #1c1a1b; }
.trust-item p { font-size: 13px; color: #666; }

/* ===== PAGE SECTIONS (Delivery, Contacts, etc.) ===== */
.page-section { padding: 50px 0; }
.info-block { margin-bottom: 35px; }
.info-block h2 { font-size: 22px; font-weight: 700; margin-bottom: 15px; color: #1c1a1b; display: flex; align-items: center; gap: 10px; }
.info-block h2 i { color: #940364; }
.highlight-text { color: #940364; font-weight: 600; margin-top: 10px; }
.table-responsive { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th, .data-table td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #eee; }
.data-table th { background: #f4ebf1; font-weight: 700; color: #1c1a1b; }
.data-table tr:hover { background: #f4ebf1; }
.address-list li { padding: 8px 0; font-size: 15px; display: flex; align-items: flex-start; gap: 8px; }
.address-list li i { color: #940364; margin-top: 4px; }

/* Contacts */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-block { margin-bottom: 25px; }
.contact-block h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.contact-block h3 i { color: #940364; }
.contact-phone, .contact-email { font-size: 16px; font-weight: 600; color: #940364; }
.contact-address { font-size: 14px; color: #555; margin-bottom: 5px; }
.contacts-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 5px; font-size: 14px; font-weight: 500; color: #fff;
  transition: opacity .2s;
}
.social-btn:hover { opacity: .9; }
.social-wa { background: #25d366; }
.social-tg { background: #0088cc; }
.social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.contact-form-wrap { background: #f4ebf1; border-radius: 8px; padding: 30px; }
.contact-form-wrap h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }

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

/* ===== FORMS ===== */
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 5px; color: #1c1a1b; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 15px; border: 2px solid #e0e0e0; border-radius: 5px;
  font-size: 14px; transition: border-color .2s; background: #fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: #940364; outline: none;
}
.form-checkbox label { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #666; cursor: pointer; }
.form-checkbox input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: #940364; }
.form-privacy { font-size: 12px; color: #999; margin-top: 10px; }
.form-privacy a { color: #940364; }

/* Delivery Toggle */
.delivery-toggle { display: flex; gap: 10px; }
.toggle-option { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 14px; }
.toggle-option input[type="radio"] { accent-color: #940364; }

/* ===== POPUPS ===== */
.popup-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,.5); z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.popup-container {
  background: #fff; border-radius: 12px; padding: 35px;
  max-width: 500px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative; box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.popup-quiz { max-width: 600px; }
.popup-close {
  position: absolute; top: 15px; right: 20px;
  background: none; border: none; font-size: 28px; color: #999;
  line-height: 1;
}
.popup-close:hover { color: #1c1a1b; }
.popup-title { font-size: 22px; font-weight: 700; margin-bottom: 20px; text-align: center; color: #1c1a1b; }
.popup-success { text-align: center; padding: 30px 0; }
.popup-success i { font-size: 48px; color: #4caf50; margin-bottom: 15px; }
.popup-success p { font-size: 16px; color: #1c1a1b; }

/* Quiz */
.quiz-progress { margin-bottom: 20px; text-align: center; }
.quiz-progress span { font-size: 14px; font-weight: 600; color: #666; }
.quiz-progress-bar {
  height: 6px; background: #e0e0e0; border-radius: 3px;
  margin-top: 8px; overflow: hidden;
}
.quiz-progress-fill { height: 100%; background: linear-gradient(90deg, #940364, #FF0080); border-radius: 3px; transition: width .3s; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step h4 { font-size: 18px; font-weight: 700; margin-bottom: 15px; text-align: center; }
.quiz-hint { font-size: 13px; color: #999; text-align: center; margin-bottom: 15px; }
.quiz-options-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px; margin-bottom: 15px;
}
.quiz-options-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 15px; }
.quiz-option-btn {
  padding: 12px 16px; border: 2px solid #e0e0e0; border-radius: 8px;
  background: #fff; font-size: 14px; font-weight: 500; color: #1c1a1b;
  cursor: pointer; transition: all .2s; text-align: center;
}
.quiz-option-btn:hover { border-color: #940364; }
.quiz-option-btn.selected { border-color: #940364; background: #f4ebf1; color: #940364; }
.quiz-text-input {
  width: 100%; padding: 12px 15px; border: 2px solid #e0e0e0;
  border-radius: 5px; font-size: 14px;
}
.quiz-text-input:focus { border-color: #940364; outline: none; }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 20px; }

/* ===== FOOTER ===== */
.site-footer { background: #1c1a1b; color: #ccc; padding: 50px 0 20px; }
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px; margin-bottom: 30px;
}
.footer-logo img { height: 45px; margin-bottom: 10px; }
.footer-tagline { font-size: 13px; color: #999; }
.footer-col h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 15px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: #bbb; transition: color .2s; }
.footer-col ul li a:hover { color: #940364; }
.footer-phone { color: #fff; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.footer-phone:hover { color: #940364; }
.footer-phone i { color: #940364; }
.footer-contacts a { color: #bbb; display: flex; align-items: center; gap: 6px; margin-bottom: 8px; font-size: 14px; }
.footer-contacts a:hover { color: #940364; }
.footer-contacts a i { color: #940364; width: 16px; }
.footer-socials { display: flex; gap: 10px; margin-top: 10px; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff; font-size: 16px;
  transition: all .2s;
}
.social-icon:hover { background: #940364; }
.footer-bottom {
  border-top: 1px solid #333; padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #888;
}
.footer-bottom a { color: #bbb; }
.footer-bottom a:hover { color: #940364; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 959px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-images { min-height: 300px; }
  .hero-cta { justify-content: center; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 40px 0 30px; }
  .hero-title { font-size: 26px; }
  .hero-subtitle { font-size: 16px; }
  .section-title { font-size: 24px; }
  .page-title { font-size: 24px; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { flex: 0 0 280px; }
  .gallery-slide { flex: 0 0 220px; }
  .gallery-slide img { height: 220px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 639px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 10px; }
  .product-title { font-size: 13px; }
  .current-price { font-size: 16px; }
  .product-actions { flex-direction: column; }
}
@media (max-width: 479px) {
  .products-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .promo-gift-card { min-width: 120px; }
  .trust-grid { grid-template-columns: 1fr; }
  .catalog-tab { padding: 10px 18px; font-size: 13px; }
}

/* ===== 404 PAGE ===== */
.page-404 { text-align: center; padding: 100px 20px; }
.page-404 h1 { font-size: 80px; color: #940364; font-weight: 900; }
.page-404 p { font-size: 18px; color: #666; margin: 15px 0 25px; }
