/* ===== Orchid COMPLETE Style — Reconstructed and Combined ===== */

/* --- 1. BASE & VARIABLES (from main.css) --- */
:root {
  --primary: #C2187A;
  --primary-light: #E674B9;
  --primary-dark: #8B0F5A;
  --secondary: #F5E8F2;
  --secondary-light: #FDF0F9;
  --text-dark: #4A223A;
  --text-medium: #6B3D5A;
  --text-light: #9B7A8A;
  --bg-white: #FFFFFF;
  --bg-light: #FAF9FE;
  --bg-cream: #FDFBFC;
  --gray-light: #F0F0F0;
  --gray-medium: #DCDCDC;
  --success: #4CAF50;
  --warning: #FF9800;
  --danger: #F44336;
  --shadow-sm: 0 1px 3px rgba(74,34,58,.08);
  --shadow-md: 0 4px 20px rgba(74,34,58,.1);
  --shadow-lg: 0 10px 40px rgba(74,34,58,.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--bg-white); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.section-title { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 48px); font-weight: 600; color: var(--text-dark); margin-bottom: 16px; line-height: 1.2; }
.section-desc { font-size: 16px; color: var(--text-light); max-width: 500px; margin: 0 auto; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; font-family: var(--font-body); font-size: 14px; font-weight: 600; border-radius: var(--radius-md); cursor: pointer; transition: var(--transition); border: none; white-space: nowrap; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 16px rgba(194,24,122,.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(194,24,122,.4); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-secondary { background: var(--secondary); color: var(--primary); }
.btn-secondary:hover { background: var(--primary-light); color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #388E3C; }

.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); z-index: 100; box-shadow: var(--shadow-md); font-size: 20px; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* --- 2. LAYOUT (from layout.css) --- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(194,24,122,.08); transition: var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 40px; height: 40px; }
.logo-text { font-family: var(--font-heading); font-size: 24px; font-weight: 600; color: var(--text-dark); letter-spacing: .5px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-medium); transition: var(--transition); position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn { position: relative; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-medium); background: var(--bg-light); transition: var(--transition); border: none; cursor: pointer; font-size: 18px; }
.cart-btn:hover { background: var(--secondary); color: var(--primary); }
.cart-count { position: absolute; top: -2px; right: -2px; width: 18px; height: 18px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--bg-light); border: none; cursor: pointer; align-items: center; justify-content: center; position: relative; transition: var(--transition); box-shadow: var(--shadow-sm); }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); position: absolute; left: 12px; }
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; width: 14px; left: 12px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 21px; }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 21px; }

/* --- 3. HERO (from hero.css) --- */
.hero { position: relative; min-height: auto; display: flex; align-items: center; padding: 140px 0 100px; overflow: hidden; background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 50%, var(--secondary) 100%); }
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-orchid { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(230,116,185,.15) 0%, transparent 70%); animation: float 8s ease-in-out infinite; }
.hero-orchid:nth-child(1) { width: 400px; height: 400px; top: -100px; right: -100px; }
.hero-orchid:nth-child(2) { width: 300px; height: 300px; bottom: 10%; left: -80px; animation-delay: 2s; }
.floating-petal { position: absolute; width: 20px; height: 20px; background: var(--primary-light); border-radius: 50% 0 50% 50%; opacity: .3; animation: petalFall 12s linear infinite; }
.floating-petal:nth-child(3) { left: 10%; }
.floating-petal:nth-child(4) { left: 60%; animation-delay: 4s; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-30px) rotate(5deg); } }
@keyframes petalFall { 0% { top: -20px; transform: rotate(0deg); opacity: 0; } 10% { opacity: .3; } 90% { opacity: .3; } 100% { top: 100vh; transform: rotate(720deg); opacity: 0; } }
.hero .container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-content { max-width: 640px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(194,24,122,.08); border-radius: var(--radius-xl); font-size: 13px; font-weight: 500; color: var(--primary); margin-bottom: 24px; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
.hero-title { font-family: var(--font-heading); font-size: clamp(40px, 6vw, 72px); font-weight: 700; color: var(--text-dark); line-height: 1.1; margin-bottom: 24px; }
.hero-title .title-line { display: block; }
.hero-title .title-line:last-child { color: var(--primary); font-style: italic; }
.hero-subtitle { font-size: 18px; color: var(--text-light); margin-bottom: 40px; line-height: 1.7; max-width: 520px; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 48px; }
.hero-features { display: flex; gap: 24px; flex-wrap: wrap; }
.feature { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text-medium); }
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-flower-circle { position: relative; width: 480px; height: 480px; }
.flower-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(194,24,122,.15); }
.flower-ring:nth-child(1) { inset: 0; animation: rotate 30s linear infinite; }
.flower-ring:nth-child(2) { inset: 40px; border-color: rgba(230,116,185,.12); animation: rotate 25s linear infinite reverse; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.center-flower { position: absolute; inset: 60px; display: flex; align-items: center; justify-content: center; animation: gentleFloat 6s ease-in-out infinite; }
@keyframes gentleFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* --- 4. CATALOG & PRODUCTS (from catalog.css and index.html <style>) --- */
.categories { padding: 100px 0; background: var(--bg-white); }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.category-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(194,24,122,.06); transition: var(--transition); cursor: pointer; }
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(194,24,122,.15); }
.category-image { background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 64px; aspect-ratio: 3 / 2; width: 100%; overflow: hidden; }
.category-image img { width: 100%; height: 100%; object-fit: contain; }
.category-info { padding: 24px; }
.category-info h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.category-info p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.5; }

.featured { padding: 100px 0; background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.product-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(194,24,122,.06); transition: var(--transition); -webkit-tap-highlight-color: transparent; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-image { background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-light) 100%); display: flex; align-items: center; justify-content: center; position: relative; aspect-ratio: 3 / 2; width: 100%; font-size: 48px; overflow: hidden; cursor: pointer; }
.product-image img { width: 100%; height: 100%; object-fit: contain; }
.product-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; background: var(--primary); color: #fff; font-size: 11px; font-weight: 600; border-radius: var(--radius-sm); }
.product-info { padding: 20px; }
.product-category { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--primary-light); margin-bottom: 6px; }
.product-name { font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; cursor: pointer; }
.product-price { font-size: 16px; font-weight: 700; color: var(--primary); }

.product-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; gap: 8px; }
.product-card .btn-add { flex: 1; padding: 10px 16px; background: var(--primary); color: #fff; border: none; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.product-card .btn-add:hover { background: var(--primary-dark); transform: translateY(-1px); }
.product-card .btn-add:active { transform: scale(0.97); }

.btn-quick { width: 36px; height: 36px; border-radius: 50%; background: var(--secondary); color: var(--primary); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: var(--transition); flex-shrink: 0; }
.btn-quick:hover { background: var(--primary); color: #fff; transform: scale(1.1); }

/* --- 5. MODALS & FORMS (from modals.css and index.html <style>) --- */
.modal-overlay { position: fixed; inset: 0; background: rgba(74,34,58,.5); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: var(--transition); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal { background: var(--bg-white); border-radius: var(--radius-lg); width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); transform: scale(.95); transition: var(--transition); }
.modal-overlay.active .modal { transform: scale(1); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 24px 0; }
.modal-header h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 600; color: var(--text-dark); }
.modal-close { width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--bg-light); display: flex; align-items: center; justify-content: center; color: var(--text-medium); cursor: pointer; font-size: 18px; }
.modal-body { padding: 24px; }
.modal-footer { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 16px; }

.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item { display: flex; align-items: center; gap: 16px; padding: 16px; background: var(--bg-light); border-radius: var(--radius-md); }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.cart-item-price { color: var(--primary); font-weight: 700; }
.cart-total { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-top: 1px solid var(--gray-light); font-size: 16px; font-weight: 600; }
.total-price { color: var(--primary); font-size: 20px; font-family: var(--font-heading); }

.product-detail-image { width: 100%; height: 280px; background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-light) 100%); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 20px; position: relative; }
.product-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-name { font-family: var(--font-heading); font-size: 24px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.product-detail-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.product-detail-price { font-size: 24px; font-weight: 700; color: var(--primary); font-family: var(--font-heading); margin-bottom: 20px; }

.qty-selector { display: flex; align-items: center; gap: 0; border: 1px solid var(--gray-medium); border-radius: var(--radius-sm); overflow: hidden; width: fit-content; }
.qty-btn { width: 40px; height: 40px; border: none; background: var(--bg-light); color: var(--text-dark); font-size: 18px; font-weight: 600; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--secondary); color: var(--primary); }
.qty-value { width: 48px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 600; color: var(--text-dark); border-left: 1px solid var(--gray-medium); border-right: 1px solid var(--gray-medium); }

/* --- 6. ABOUT, CONTACTS, FOOTER (from layout.css) --- */
.about { padding: 100px 0; background: var(--bg-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-frame { position: relative; width: 400px; height: 400px; }
.about-image-main { width: 100%; height: 100%; border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-light) 100%); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); font-size: 120px; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: #fff; padding: 20px 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); text-align: center; }
.badge-number { display: block; font-family: var(--font-heading); font-size: 36px; font-weight: 700; line-height: 1; }
.about-text { font-size: 16px; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--gray-light); }
.stat-number { display: block; font-family: var(--font-heading); font-size: 32px; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 4px; }

.delivery-steps { display: flex; align-items: flex-start; gap: 0; margin-bottom: 60px; }
.step { flex: 1; text-align: center; padding: 0 16px; }
.step-number { font-family: var(--font-heading); font-size: 48px; font-weight: 700; color: var(--primary); opacity: .15; line-height: 1; margin-bottom: 16px; }

.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-item { display: flex; align-items: center; gap: 16px; font-size: 24px; }
.contact-details { display: flex; flex-direction: column; }
.contact-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 2px; }
.contact-value { font-size: 15px; font-weight: 500; color: var(--text-dark); }
.social-links { display: flex; gap: 12px; }
.social-link { padding: 12px 20px; border-radius: var(--radius-md); background: var(--primary); color: #fff; font-size: 14px; font-weight: 600; transition: var(--transition); }
.contacts-map { height: 400px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

.footer { background: var(--text-dark); color: rgba(255,255,255,.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-links h4 { font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-bottom { padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }

/* --- 7. TOAST & NOTIFICATIONS --- */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { padding: 14px 20px; border-radius: var(--radius-md); color: #fff; font-size: 14px; font-weight: 500; box-shadow: 0 4px 20px rgba(0,0,0,.2); animation: toastSlideIn .3s ease, toastFadeOut .3s ease 2.7s forwards; pointer-events: auto; display: flex; align-items: center; gap: 10px; max-width: 320px; }
.toast-success { background: var(--success); }
.toast-error { background: var(--danger); }
.toast-info { background: var(--primary); }
@keyframes toastSlideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastFadeOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(100%); } }

/* --- 8. RESPONSIVE (from responsive.css) --- */
@media(max-width:900px) {
  .nav-links { position: fixed; top: 72px; left: 16px; right: 16px; background: rgba(255,255,255,.98); backdrop-filter: blur(20px); flex-direction: column; padding: 16px 24px; border-radius: var(--radius-lg); gap: 0; transform: translateY(-20px) scale(0.95); opacity: 0; visibility: hidden; transition: var(--transition); box-shadow: var(--shadow-lg); border: 1px solid var(--secondary); }
  .nav-links.open { transform: translateY(0) scale(1); opacity: 1; visibility: visible; }
  .nav-links a { padding: 14px 0; font-size: 15px; width: 100%; text-align: left; color: var(--text-medium); border-bottom: 1px solid var(--gray-light); display: flex; align-items: center; gap: 12px; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
  .nav-links a.active { color: var(--primary); font-weight: 600; }
  .menu-toggle { display: flex; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero { padding: 80px 0 40px; min-height: auto; }
  .hero-content { max-width: 100%; margin-bottom: 40px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-flower-circle { width: 300px; height: 300px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contacts-grid { grid-template-columns: 1fr; gap: 48px; }
  .contacts-map { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media(max-width:800px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-steps { flex-direction: column; gap: 32px; }
  .step { text-align: left; display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; }
  .step-number { font-size: 32px; margin-bottom: 0; }
}

@media(max-width:600px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-flower-circle { width: 240px; height: 240px; }
  .categories-grid { grid-template-columns: 1fr; }
  .about-image-frame { width: 280px; height: 280px; }
  .footer-grid { grid-template-columns: 1fr; }
  .product-detail-image { height: 220px; }
}

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

/* Yandex SuggestView fix */
.ymaps-suggest { border-radius: 12px !important; box-shadow: 0 8px 32px rgba(74,34,58,.2) !important; border: 1px solid var(--gray-medium) !important; overflow: hidden !important; font-family: var(--font-body) !important; z-index: 9999 !important; margin-top: 4px !important; }
.ymaps-suggest-item { padding: 12px 16px !important; font-size: 14px !important; color: var(--text-dark) !important; border-bottom: 1px solid var(--gray-light) !important; cursor: pointer !important; transition: background .15s ease; }
.ymaps-suggest-item:hover, .ymaps-suggest-item-selected { background: var(--secondary) !important; color: var(--primary) !important; }

/* ============================================================
   Product Detail Modal — v2 redesign (category page bundle)
   ============================================================ */
.product-detail-modal .modal { max-width: 780px; }
.product-detail-modal .modal-header { justify-content: flex-end; padding: 20px 20px 0; }
.product-detail-modal .modal-header h3 { display: none; }

.product-detail-modal .modal-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 18px 20px 24px;
}

.product-detail-modal .product-detail-image {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-light) 100%);
  overflow: hidden;
  margin-bottom: 0;
}
.product-detail-modal .product-detail-image img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-modal .product-detail-info { display: flex; flex-direction: column; min-width: 0; }

.product-detail-modal .product-category {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 99px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
}
.product-detail-modal .product-detail-name { font-size: 26px; line-height: 1.25; margin-bottom: 10px; }
.product-detail-modal .product-detail-desc { color: var(--text-medium); line-height: 1.6; margin-bottom: 16px; }
.product-detail-modal .product-detail-price { font-size: 28px; margin-bottom: 18px; }

.product-detail-modal .product-detail-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.product-detail-modal .qty-selector { border-radius: 99px; border-color: rgba(194, 24, 122, .25); }
.product-detail-modal .qty-btn { border-radius: 99px; width: 38px; height: 38px; }
.product-detail-modal .qty-value { font-weight: 700; min-width: 26px; text-align: center; }

@media (min-width: 620px) {
  .product-detail-modal .modal-body { grid-template-columns: 1.05fr 1fr; gap: 26px; padding: 24px 26px 28px; }
  .product-detail-modal .product-detail-image { min-height: 400px; height: 100%; }
}

@media (max-width: 619px) {
  .product-detail-modal .product-detail-image { height: 240px; }
  .product-detail-modal .product-detail-actions .btn { width: 100%; }
}

/* --- Цена в модалке: крупная цифра + пилюля BYN + формула при кол-ве >1 (category bundle) --- */
.product-detail-modal .product-detail-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-size: 0;
  margin-bottom: 18px;
}
.product-detail-modal .price-num { font-size: 34px; font-weight: 800; color: var(--text-dark); line-height: 1; }
.product-detail-modal .price-cur {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--primary-dark); background: var(--secondary);
  padding: 5px 12px; border-radius: 99px;
}
.product-detail-modal .price-formula { display: block; width: 100%; font-size: 12px; color: var(--text-medium); margin-top: 6px; }
