*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #111; --white: #fff; --gray: #f5f5f5; --gray2: #e8e8e8;
  --muted: #666; --pill: 50px; --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--black); font-family: var(--font); line-height: 1.6; }
a { text-decoration: none; color: inherit; cursor: pointer; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ANNOUNCE */
.announce-bar {
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 9px 20px; font-size: 0.8rem; letter-spacing: 0.04em; min-height: 38px;
}
.ann-arrow { background: none; border: none; color: var(--white); font-size: 1rem; cursor: pointer; opacity: 0.6; padding: 2px 8px; }
.ann-arrow:hover { opacity: 1; }

/* HEADER */
header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--gray2); }
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 20px; max-width: 1200px; margin: 0 auto; position: relative;
}
.burger { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; }
.logo {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em; color: var(--black);
  position: absolute; left: 50%; transform: translateX(-50%);
}
.logo-sm { position: static; transform: none; flex-direction: row; gap: 8px; font-size: 0.85rem; }
.header-right { display: flex; align-items: center; gap: 14px; }
.lang-sw { display: flex; gap: 0; }
.lang-sw button {
  background: none; border: none; color: var(--muted); font-size: 0.72rem;
  cursor: pointer; padding: 3px 6px; font-weight: 500; letter-spacing: 0.04em; transition: color .2s;
}
.lang-sw button.active { color: var(--black); font-weight: 700; }
.lang-sw button:not(:last-child)::after { content: '/'; margin-left: 2px; opacity: 0.3; }
.tg-icon { color: var(--black); display: flex; align-items: center; opacity: 0.75; transition: opacity .2s; }
.tg-icon:hover { opacity: 1; }

/* DESKTOP NAV */
.desktop-nav {
  display: flex; justify-content: center; gap: 0;
  border-top: 1px solid var(--gray2); overflow-x: auto;
}
.desktop-nav a {
  padding: 11px 18px; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 500; color: var(--muted); white-space: nowrap; cursor: pointer;
  border-bottom: 2px solid transparent; transition: all .2s;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--black); border-bottom-color: var(--black); }

/* MOBILE MENU */
.mobile-menu { display: none; flex-direction: column; border-top: 1px solid var(--gray2); background: var(--white); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 20px; font-size: 0.95rem; border-bottom: 1px solid var(--gray2); cursor: pointer; }
.mobile-menu a:hover { background: var(--gray); }

/* PAGES */
.page { display: none; }
.page.active { display: block; }

/* PAGE HEADER */
.page-header { background: var(--gray); padding: 48px 0 36px; border-bottom: 1px solid var(--gray2); }
.page-header h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; margin-bottom: 8px; }
.page-header p { color: var(--muted); font-size: 0.95rem; }
.section-pad { padding: 56px 0; }

/* HERO */
.hero { position: relative; height: 82vh; min-height: 480px; overflow: hidden; }
.slides { display: flex; height: 100%; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.slide { min-width: 100%; height: 100%; background-size: cover; background-position: center; flex-shrink: 0; position: relative; }
.slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.05) 0%, rgba(0,0,0,.55) 100%); }
.slide-content { position: absolute; bottom: 80px; left: 40px; right: 40px; z-index: 2; color: var(--white); }
.slide-content h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 700; line-height: 1.2; margin-bottom: 24px; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.btn-hero { display: inline-block; background: var(--white); color: var(--black); padding: 13px 44px; border-radius: var(--pill); font-size: .92rem; font-weight: 600; box-shadow: 0 2px 12px rgba(0,0,0,.15); transition: opacity .2s; }
.btn-hero:hover { opacity: .88; }
.slide-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; border: 1px solid rgba(255,255,255,.7); transition: all .2s; }
.dot.active { background: var(--white); transform: scale(1.2); }
.slide-arr { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; background: rgba(255,255,255,.88); border: none; cursor: pointer; width: 40px; height: 40px; border-radius: 50%; font-size: 1.1rem; box-shadow: 0 2px 8px rgba(0,0,0,.15); transition: background .2s; display: flex; align-items: center; justify-content: center; }
.slide-arr:hover { background: var(--white); }
.prev-arr { left: 16px; }
.next-arr { right: 16px; }

/* SECTION */
.section { padding: 64px 0; }
.section.bg-gray { background: var(--gray); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; }
.see-all { font-size: .85rem; color: var(--muted); transition: color .2s; }
.see-all:hover { color: var(--black); }
.section-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; text-align: center; margin-bottom: 48px; }

/* PILLS */
.pills-row { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.pill { background: var(--white); border: 1.5px solid var(--black); color: var(--black); padding: 9px 22px; border-radius: var(--pill); font-size: .82rem; font-weight: 500; cursor: pointer; transition: all .2s; white-space: nowrap; }
.pill.active { background: var(--black); color: var(--white); }
.pill:hover:not(.active) { background: var(--gray); }

/* PRODUCTS GRID */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 24px; }
.product-card { cursor: pointer; }
.prod-img { aspect-ratio: 1/1; overflow: hidden; border-radius: 12px; background: var(--gray); margin-bottom: 12px; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.product-card:hover .prod-img img { transform: scale(1.05); }
.no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.prod-cat { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.prod-name { font-size: .95rem; font-weight: 600; margin-bottom: 6px; line-height: 1.3; }
.prod-price { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.prod-btn { display: inline-block; background: var(--black); color: var(--white); padding: 9px 22px; border-radius: var(--pill); font-size: .78rem; font-weight: 500; transition: opacity .2s; }
.prod-btn:hover { opacity: .8; }

/* STEPS */
.steps-row { display: flex; align-items: flex-start; justify-content: center; }
.step { flex: 1; text-align: center; padding: 0 24px; }
.step-num { width: 50px; height: 50px; border-radius: 50%; background: var(--black); color: var(--white); font-weight: 700; font-size: .95rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .85rem; line-height: 1.7; }
.step-line { width: 60px; height: 1px; background: var(--gray2); margin-top: 25px; flex-shrink: 0; }

/* ABOUT STRIP */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-strip-text h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; }
.about-strip-text p { color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.strip-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-black { display: inline-block; background: var(--black); color: var(--white); padding: 11px 28px; border-radius: var(--pill); font-size: .85rem; font-weight: 500; transition: opacity .2s; }
.btn-black:hover { opacity: .8; }
.btn-outline-b { display: inline-block; border: 1.5px solid var(--black); color: var(--black); padding: 10px 26px; border-radius: var(--pill); font-size: .85rem; font-weight: 500; transition: all .2s; }
.btn-outline-b:hover { background: var(--black); color: var(--white); }
.about-strip-stats { display: flex; flex-direction: column; gap: 28px; }
.stat { border-left: 3px solid var(--black); padding-left: 20px; }
.stat strong { display: block; font-size: 2.4rem; font-weight: 700; line-height: 1; }
.stat span { font-size: .82rem; color: var(--muted); }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 28px; }
.blog-card { cursor: pointer; border-radius: 12px; overflow: hidden; border: 1px solid var(--gray2); transition: box-shadow .2s; }
.blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.blog-thumb { aspect-ratio: 16/9; background: var(--gray); overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; background: var(--gray); }
.blog-info { padding: 20px; }
.blog-tag { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.blog-name { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-excerpt { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ARTICLE */
.article-wrap { padding: 48px 0; max-width: 760px; }
.article-back { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--muted); margin-bottom: 32px; cursor: pointer; transition: color .2s; }
.article-back:hover { color: var(--black); }
.article-wrap h1 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin-bottom: 16px; line-height: 1.3; }
.article-meta { font-size: .8rem; color: var(--muted); margin-bottom: 36px; }
.article-body { font-size: .95rem; line-height: 1.85; color: #333; }
.article-body h2 { font-size: 1.3rem; font-weight: 700; margin: 36px 0 16px; color: var(--black); }
.article-body h3 { font-size: 1.1rem; font-weight: 600; margin: 28px 0 12px; color: var(--black); }
.article-body p { margin-bottom: 16px; }
.article-body strong { color: var(--black); }
.article-body ul, .article-body ol { margin: 16px 0 16px 24px; }
.article-body li { margin-bottom: 8px; }

/* ABOUT PAGE */
.about-page { max-width: 800px; }
.about-page h2 { font-size: 1.5rem; font-weight: 700; margin: 36px 0 16px; }
.about-page p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

/* FAQ */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--gray2); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-weight: 600; font-size: .95rem; gap: 16px; }
.faq-q span { transition: transform .3s; font-size: 1.2rem; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; color: var(--muted); line-height: 1.8; font-size: .9rem; }
.faq-item.open .faq-a { display: block; }

/* CONTACT PAGE */
.contact-page { max-width: 560px; text-align: center; padding-top: 40px; }
.contact-page p { color: var(--muted); line-height: 1.8; margin-bottom: 32px; font-size: .95rem; }
.btn-tg { display: inline-flex; align-items: center; gap: 10px; background: #229ED9; color: var(--white); padding: 14px 36px; border-radius: var(--pill); font-size: .95rem; font-weight: 600; transition: opacity .2s; margin-bottom: 20px; }
.btn-tg:hover { opacity: .88; }
.contact-info { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.contact-info span { font-size: .85rem; color: var(--muted); }
.contact-info strong { color: var(--black); }

/* SOUND DEMO */
.sound-section { background: var(--black); color: var(--white); padding: 88px 0; }
.sound-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.sound-section h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.sound-section p { opacity: .68; font-size: .95rem; line-height: 1.85; margin-bottom: 36px; }
.btn-white { display: inline-flex; align-items: center; gap: 10px; background: var(--white); color: var(--black); padding: 13px 36px; border-radius: var(--pill); font-size: .92rem; font-weight: 600; transition: opacity .2s; }
.btn-white:hover { opacity: .88; }

/* REVIEWS */
.reviews-summary { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; }
.r-stars { color: #e8a400; font-size: 1.3rem; letter-spacing: 2px; }
.r-score { font-weight: 700; font-size: 1.5rem; }
.r-count { color: var(--muted); font-size: .85rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.review-card { background: var(--white); border-radius: 12px; padding: 24px; border: 1px solid var(--gray2); display: flex; flex-direction: column; }
.review-stars { color: #e8a400; font-size: .85rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: .88rem; color: #444; line-height: 1.8; flex: 1; margin-bottom: 16px; }
.review-bottom { margin-top: auto; }
.review-name { font-weight: 600; font-size: .85rem; margin-bottom: 2px; }
.review-instrument { font-size: .75rem; color: var(--muted); margin-bottom: 8px; }
.review-verified { font-size: .68rem; color: #28a745; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }

/* TRUST STRIP */
.trust-strip { padding: 48px 0; background: var(--gray); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.trust-icon { font-size: 2.2rem; margin-bottom: 12px; }
.trust-t { font-size: .88rem; font-weight: 700; margin-bottom: 5px; }
.trust-d { font-size: .78rem; color: var(--muted); line-height: 1.65; }

/* HOME FAQ */
.faq-home-list { max-width: 760px; }

/* SOCIAL LINKS */
.social-links { display: flex; gap: 10px; align-items: center; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--gray2); color: var(--muted); transition: all .2s; }
.social-links a:hover { border-color: var(--black); color: var(--black); }

/* FOOTER */
footer { border-top: 1px solid var(--gray2); }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 52px; }
.footer-tagline { font-size: .82rem; color: var(--muted); line-height: 1.6; margin: 14px 0 18px; }
.footer-col h4 { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--black); margin-bottom: 16px; }
.footer-nav-list { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-nav-list li { font-size: .85rem; color: var(--muted); cursor: pointer; transition: color .2s; }
.footer-nav-list li:hover { color: var(--black); }
.newsletter-form { display: flex; border: 1.5px solid var(--gray2); border-radius: var(--pill); overflow: hidden; margin: 10px 0 20px; transition: border-color .2s; }
.newsletter-form:focus-within { border-color: var(--black); }
.newsletter-form input { flex: 1; border: none; outline: none; padding: 10px 16px; font-family: var(--font); font-size: .82rem; min-width: 0; background: transparent; }
.newsletter-form button { background: var(--black); color: var(--white); border: none; padding: 10px 18px; font-family: var(--font); font-size: .78rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: opacity .2s; }
.newsletter-form button:hover { opacity: .8; }
.footer-contact-row { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-row a { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: 8px; transition: color .2s; }
.footer-contact-row a:hover { color: var(--black); }
.footer-bottom { border-top: 1px solid var(--gray2); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy-text { font-size: .75rem; color: var(--muted); }
.payment-icons { display: flex; gap: 6px; align-items: center; }
.pay-icon { background: var(--gray2); border-radius: 4px; padding: 3px 9px; font-size: .65rem; font-weight: 700; color: #888; letter-spacing: .04em; }

/* FAB TELEGRAM */
.fab-tg { position: fixed; bottom: 28px; right: 28px; z-index: 90; width: 54px; height: 54px; border-radius: 50%; background: var(--black); color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.25); transition: transform .2s; }
.fab-tg:hover { transform: scale(1.08); }

/* MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.55); align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: 16px; max-width: 820px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 10; background: var(--gray); border: none; color: var(--muted); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: .95rem; transition: all .2s; }
.modal-close:hover { background: var(--gray2); color: var(--black); }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; }
.modal-img { aspect-ratio: 1; overflow: hidden; border-radius: 16px 0 0 16px; background: var(--gray); }
.modal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-no-img { width: 100%; height: 100%; min-height: 280px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.modal-info { padding: 36px 28px; display: flex; flex-direction: column; }
.modal-cat { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.modal-title { font-size: 1.35rem; font-weight: 700; margin-bottom: 14px; line-height: 1.3; }
.modal-price { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--gray2); }
.modal-desc { color: var(--muted); font-size: .86rem; line-height: 1.8; flex: 1; overflow-y: auto; margin-bottom: 20px; }
.modal-desc strong { color: var(--black); }
.modal-desc h3 { color: var(--black); font-size: .88rem; margin: 12px 0 6px; }
.modal-order { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--black); color: var(--white); padding: 13px; border-radius: var(--pill); font-size: .88rem; font-weight: 600; transition: opacity .2s; }
.modal-order:hover { opacity: .8; }

/* RESPONSIVE */
@media (min-width: 769px) {
  .burger { display: none; }
}
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .about-strip { grid-template-columns: 1fr; gap: 40px; }
  .steps-row { flex-direction: column; align-items: center; gap: 28px; }
  .step-line { display: none; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-img { border-radius: 16px 16px 0 0; aspect-ratio: 4/3; }
  .slide-content { left: 20px; right: 20px; bottom: 60px; }
  .hero { height: 70vh; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── SEARCH ─── */
.search-toggle-btn { background: none; border: none; cursor: pointer; color: var(--black); display: flex; align-items: center; opacity: 0.7; transition: opacity .2s; padding: 4px; }
.search-toggle-btn:hover { opacity: 1; }
.search-bar-wrap { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray2); z-index: 99; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.search-bar-wrap.open { display: block; }
.search-bar-inner { display: flex; align-items: center; gap: 10px; padding: 12px 20px; max-width: 1200px; margin: 0 auto; }
.search-bar-inner svg { flex-shrink: 0; color: var(--muted); }
#search-input { flex: 1; border: none; outline: none; font-family: var(--font); font-size: 1rem; background: transparent; color: var(--black); }
.search-close { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 1rem; padding: 4px 8px; transition: color .2s; }
.search-close:hover { color: var(--black); }
.search-results { padding: 0 20px 16px; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 12px; }
.search-result-item { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 8px; cursor: pointer; transition: background .2s; }
.search-result-item:hover { background: var(--gray); }
.search-result-img { width: 44px; height: 44px; border-radius: 6px; object-fit: cover; background: var(--gray2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; overflow: hidden; }
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-info { min-width: 0; }
.search-result-name { font-size: .82rem; font-weight: 600; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-price { font-size: .75rem; color: var(--muted); }
.search-no-results { padding: 8px 0 8px; color: var(--muted); font-size: .88rem; grid-column: 1/-1; }

/* ─── PRODUCT BADGE ─── */
.prod-img { position: relative; }
.prod-badge { position: absolute; top: 10px; left: 10px; background: var(--black); color: var(--white); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; z-index: 2; }
.prod-badge.badge-bestseller { background: #111; }
.prod-badge.badge-new { background: #2563eb; }
.prod-badge.badge-popular { background: #7c3aed; }

/* ─── VIDEO SECTION ─── */
.video-section-home { background: #0a0a0a; color: var(--white); padding: 80px 0; }
.video-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center; }
.video-text-col h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.video-text-col p { opacity: .65; font-size: .95rem; line-height: 1.85; margin-bottom: 32px; }
.video-yt-link { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: #111; padding: 13px 28px; border-radius: var(--pill); font-size: .88rem; font-weight: 600; transition: opacity .2s; }
.video-yt-link:hover { opacity: .88; }
.video-frame-col { position: relative; }
.video-embed-wrap { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 14px; overflow: hidden; background: #1a1a1a; }
.video-embed-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-static-card { aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; position: relative; background: #1a1a1a; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.video-static-card img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.video-play-btn { position: absolute; width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.video-static-card:hover .video-play-btn { transform: scale(1.1); }
.video-play-btn svg { margin-left: 4px; }

/* ─── GALLERY ─── */
.gallery-section-home { padding: 64px 0 0; }
.gallery-section-home .container { margin-bottom: 28px; }
.gallery-scroll { display: flex; gap: 12px; overflow-x: auto; padding: 0 20px 32px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.gallery-scroll::-webkit-scrollbar { height: 3px; }
.gallery-scroll::-webkit-scrollbar-track { background: var(--gray2); }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--black); border-radius: 2px; }
.gallery-item { flex: 0 0 auto; width: 280px; height: 210px; border-radius: 12px; overflow: hidden; scroll-snap-align: start; cursor: pointer; transition: transform .3s; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.gallery-item:hover { transform: translateY(-3px); }
.gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 768px) { .gallery-item { width: 220px; height: 170px; } .video-layout { grid-template-columns: 1fr; gap: 32px; } .video-text-col p { display: none; } }

/* ─── CHAT WIDGET ─── */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 150; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.chat-fab-btn { width: 56px; height: 56px; border-radius: 50%; background: #111; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,.28); transition: transform .2s, box-shadow .2s; position: relative; }
.chat-fab-btn:hover { transform: scale(1.07); box-shadow: 0 6px 24px rgba(0,0,0,.35); }
.chat-fab-badge { position: absolute; top: -3px; right: -3px; width: 18px; height: 18px; border-radius: 50%; background: #ef4444; color: #fff; font-size: .65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.chat-fab-badge.hidden { display: none; }
.chat-panel { background: var(--white); border-radius: 16px; width: 300px; box-shadow: 0 8px 40px rgba(0,0,0,.18); overflow: hidden; transform-origin: bottom right; animation: chatSlideIn .25s ease; }
.chat-panel.hidden { display: none; }
@keyframes chatSlideIn { from { opacity: 0; transform: scale(.92) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.chat-panel-header { background: #111; color: #fff; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; }
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-avatar-sm { width: 34px; height: 34px; border-radius: 50%; background: #fff; color: #111; font-weight: 700; font-size: .88rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-panel-title { font-size: .88rem; font-weight: 700; }
.chat-panel-status { font-size: .7rem; opacity: .65; }
.chat-close-btn { background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; font-size: 1rem; padding: 2px; line-height: 1; transition: color .2s; }
.chat-close-btn:hover { color: #fff; }
.chat-panel-body { padding: 16px; }
.chat-greeting-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
.chat-avatar-lg { width: 36px; height: 36px; border-radius: 50%; background: #111; color: #fff; font-weight: 700; font-size: .9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-bubble-msg { background: var(--gray); border-radius: 0 12px 12px 12px; padding: 10px 14px; font-size: .84rem; line-height: 1.5; color: var(--black); }
.chat-quick-actions { display: flex; flex-direction: column; gap: 8px; }
.chat-quick-btn { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1.5px solid var(--gray2); border-radius: 10px; padding: 10px 14px; font-size: .82rem; font-family: var(--font); cursor: pointer; text-align: left; transition: all .2s; color: var(--black); font-weight: 500; }
.chat-quick-btn:hover { border-color: var(--black); background: var(--gray); }
.chat-quick-btn svg { flex-shrink: 0; opacity: .5; }
@media (max-width: 480px) { .chat-panel { width: calc(100vw - 32px); } .chat-widget { bottom: 16px; right: 16px; } }
