@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --c-bg:          #FFFFFF;
  --c-bg-alt:      #F5F7FA;
  --c-bg-tint:     #EEF3F9;
  --c-bg-card:     #FFFFFF;
  --c-bg-dark:     #17202C;
  --c-primary:     #17406B;   
  --c-primary-dk:  #0F2C4C;
  --c-primary-lt:  #E5EDF6;
  --c-accent:      #E4A11B;   
  --c-accent-lt:   #FDF3DF;
  --c-text:        #16202C;
  --c-text-sec:    #3D4A5A;
  --c-text-muted:  #7A8798;
  --c-border:      #E1E7EE;
  --c-cta:         #17406B;
  --c-cta-hov:     #0F2C4C;
  --c-ok:          #1F8A5B;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  26px;
  --shadow-sm:  0 2px 10px rgba(22,32,44,.06);
  --shadow-md:  0 10px 34px rgba(22,32,44,.10);
  --shadow-lg:  0 20px 60px rgba(22,32,44,.13);
  --transition: all .35s cubic-bezier(.22,1,.36,1);
  --container:  1180px;
  --section-py: clamp(64px, 8vw, 116px);
}

:where(.nysmcw-app) *, :where(.nysmcw-app) *::before, :where(.nysmcw-app) *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:where(.nysmcw-app) { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; color: var(--c-text); background-color: var(--c-bg); line-height: 1.6; }
body:where(.nysmcw-app) { overflow-x: hidden; }

:where(.nysmcw-app) h1, :where(.nysmcw-app) h2, :where(.nysmcw-app) h3, :where(.nysmcw-app) h4, :where(.nysmcw-app) h5, :where(.nysmcw-app) h6 { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--c-text); line-height: 1.2; font-weight: 700; margin-bottom: 1rem; }
:where(.nysmcw-app) a { color: var(--c-primary); text-decoration: none; transition: var(--transition); }
:where(.nysmcw-app) a:hover { color: var(--c-primary-dk); }
:where(.nysmcw-app) p { margin-bottom: 1.25rem; color: var(--c-text-sec); }
:where(.nysmcw-app) img { max-width: 100%; height: auto; display: block; }
:where(.nysmcw-app) ul, :where(.nysmcw-app) ol { margin-left: 1.5rem; margin-bottom: 1.25rem; color: var(--c-text-sec); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: var(--section-py) 0; }
.section-alt { background-color: var(--c-bg-alt); }
.section-dark { background-color: var(--c-bg-dark); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark p { color: #fff; }
.text-center { text-align: center; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; background: var(--c-cta); color: #fff; padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 600; cursor: pointer; border: none; font-family: 'Plus Jakarta Sans', sans-serif; transition: var(--transition); text-align: center; }
.btn-primary:hover { background: var(--c-cta-hov); color: #fff; transform: translateY(-2px); }
.btn-ghost { display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--c-primary); padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 600; cursor: pointer; border: 2px solid var(--c-primary); font-family: 'Plus Jakarta Sans', sans-serif; transition: var(--transition); }
.btn-ghost:hover { background: var(--c-primary-lt); color: var(--c-primary-dk); }
.btn-full { width: 100%; }
.btn-small { padding: 10px 20px; font-size: 0.9rem; }

/* Preloader */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #fff; z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.4s ease; }
.progress-bar-container { display: none; }
.progress-bar { display: none; }
.preloader-text { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--c-primary); display: flex; align-items: center; gap: 12px; animation: pulse-text 1.5s infinite ease-in-out; }
.preloader-text::before { content: ""; width: 24px; height: 24px; border: 3px solid var(--c-bg-alt); border-top-color: var(--c-primary); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-text { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Disclosure Bar */
.disclosure-bar { background: var(--c-bg-dark); color: #fff; font-size: 0.8rem; text-align: center; padding: 8px 20px; line-height: 1.4; }

/* Navbar */
.navbar { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--c-border); position: sticky; top: 0; z-index: 1000; padding: 15px 0; transition: var(--transition); }
.navbar.scrolled { padding: 10px 0; box-shadow: var(--shadow-sm); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--c-primary); display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-link { color: var(--c-text); font-weight: 500; font-size: 1rem; }
.nav-link:hover { color: var(--c-primary); }
.nav-cta { display: flex; align-items: center; }

/* Mobile Menu */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--c-text); margin: 5px 0; transition: var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay { display: flex; position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(255, 255, 255, 0.98); z-index: 999; flex-direction: column; align-items: center; justify-content: center; transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1); }
.nav-overlay.active { right: 0; }
.nav-overlay .nav-links { flex-direction: column; gap: 20px; font-size: 1.5rem; }

/* Hero */
.hero { padding: 60px 0 80px; display: grid; grid-template-columns: 45% 55%; align-items: center; gap: 40px; }
.hero-image-wrapper { background: var(--c-bg-alt); border-radius: var(--radius-lg); padding: 40px; display: flex; justify-content: center; align-items: center; position: relative; }
.hero-image { filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1)); transform: scale(1.05); }
.hero-label { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; color: var(--c-primary); letter-spacing: 1px; margin-bottom: 16px; display: block; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 20px; letter-spacing: -0.02em; }
.hero-subtitle { font-size: 1.125rem; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.trust-pill { background: var(--c-bg-tint); color: var(--c-primary); padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.hero-price { font-size: 2.5rem; font-weight: 800; color: var(--c-text); margin-bottom: 5px; font-family: 'Plus Jakarta Sans', sans-serif; }
.price-disclaimer { font-size: 0.75rem; color: var(--c-text-muted); margin-bottom: 30px; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 16px; }
.affiliate-note { font-size: 0.75rem; color: var(--c-text-muted); }

/* Quick Facts */
.quick-facts { background: var(--c-bg-dark); padding: 40px 0; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.fact-item { color: #fff; }
.fact-value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--c-accent); margin-bottom: 8px; }
.fact-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* Health Disclaimer */
.health-disclaimer { background: var(--c-accent-lt); border-left: 4px solid var(--c-accent); padding: 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 30px 0; }
.health-disclaimer p { margin: 0; color: var(--c-text-sec); font-size: 0.9rem; line-height: 1.5; }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* Feature Cards */
.feature-card { background: var(--c-bg-card); border-radius: var(--radius-md); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); transition: var(--transition); }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-icon { width: 48px; height: 48px; background: var(--c-bg-tint); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--c-primary); }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.feature-card p { font-size: 0.95rem; margin-bottom: 0; }

/* Spec Table */
.spec-table { width: 100%; border-collapse: collapse; margin: 30px 0; background: var(--c-bg-card); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-table th, .spec-table td { padding: 16px 20px; border-bottom: 1px solid var(--c-border); text-align: left; }
.spec-table th { background: var(--c-bg-alt); font-weight: 600; width: 35%; color: var(--c-text); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

/* Split Sections */
.split-image-panel { background: var(--c-bg-alt); border-radius: var(--radius-lg); overflow: hidden; padding: 40px; display: flex; justify-content: center; align-items: center; }

/* Customer Experience Cards */
.experience-card { background: var(--c-bg-alt); border-radius: var(--radius-md); padding: 24px; border: 1px solid var(--c-border); }
.experience-card h4 { font-size: 1.1rem; color: var(--c-primary); margin-bottom: 8px; }
.experience-card p { font-size: 0.95rem; margin: 0; }

/* Notice Box */
.notice-box { background: var(--c-bg-tint); padding: 24px; border-radius: var(--radius-md); margin: 30px 0; font-size: 0.95rem; }

/* FAQ Accordion */
.faq-item { border-bottom: 1px solid var(--c-border); margin-bottom: 10px; }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 20px 0; font-size: 1.1rem; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--c-text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-icon { width: 20px; height: 20px; transition: var(--transition); position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--c-primary); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::before { width: 2px; height: 16px; }
.faq-icon::after { width: 16px; height: 2px; }
.faq-item.active .faq-icon::before { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 20px; margin: 0; }

/* Order Page Layout */
.order-layout { display: grid; grid-template-columns: 60% 35%; gap: 5%; align-items: stretch; }
.order-gallery { margin-bottom: 40px; }
.main-image-container { background: var(--c-bg-alt); border-radius: var(--radius-md); padding: 40px; margin-bottom: 16px; display: flex; justify-content: center; }
.thumbnails { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 10px; }
.thumb { width: 80px; height: 80px; border-radius: var(--radius-sm); background: var(--c-bg-alt); cursor: pointer; border: 2px solid transparent; padding: 5px; transition: var(--transition); }
.thumb.active, .thumb:hover { border-color: var(--c-primary); }

.sticky-card { position: sticky; top: 100px; background: var(--c-bg-alt); padding: 30px; border-radius: var(--radius-lg); border: 1px solid var(--c-border); max-height: calc(100vh - 120px); overflow-y: auto; }
.sticky-card::-webkit-scrollbar { width: 6px; }
.sticky-card::-webkit-scrollbar-track { background: transparent; }
.sticky-card::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 3px; }
.sticky-price { font-size: 2.5rem; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--c-text); margin-bottom: 5px; }
.trust-list { list-style: none; margin: 24px 0 0; padding: 0; }
.trust-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; color: var(--c-text-sec); }
.trust-list svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--c-ok); }

/* Review Article */
.review-header { text-align: center; max-width: 800px; margin: 0 auto 40px; }
.review-meta { font-size: 0.9rem; color: var(--c-text-muted); margin-bottom: 20px; }
.review-content { max-width: 800px; margin: 0 auto; font-size: 1.05rem; }
.review-content h2 { margin-top: 50px; margin-bottom: 20px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 40px 0; }
.pros, .cons { background: var(--c-bg-alt); padding: 30px; border-radius: var(--radius-md); }
.pros h3 { color: var(--c-ok); display: flex; align-items: center; gap: 10px; }
.cons h3 { color: #D32F2F; display: flex; align-items: center; gap: 10px; }
.pros ul, .cons ul { list-style: none; margin: 0; }
.pros li, .cons li { margin-bottom: 10px; position: relative; padding-left: 24px; }
.pros li::before { content: '✓'; color: var(--c-ok); position: absolute; left: 0; font-weight: bold; }
.cons li::before { content: '✕'; color: #D32F2F; position: absolute; left: 0; font-weight: bold; }

/* Contact Form */
.contact-form { background: var(--c-bg-card); padding: 40px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--c-border); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 8px; }
.form-control { width: 100%; padding: 12px 16px; border: 1px solid var(--c-border); border-radius: var(--radius-sm); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; background: var(--c-bg-alt); transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--c-primary); background: #fff; box-shadow: 0 0 0 3px var(--c-primary-lt); }
.form-msg { display: none; padding: 15px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 500; }
.form-msg.success { display: block; background: #E8F5E9; color: var(--c-ok); border: 1px solid #C8E6C9; }

/* Legal Pages */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { margin-top: 40px; }
.last-updated { font-style: italic; color: var(--c-text-muted); margin-bottom: 30px; }

/* Footer */
.footer { background: var(--c-bg-dark); color: rgba(255,255,255,0.7); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; display: inline-block; }
.footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 20px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 12px; }
.footer a, .footer p { color: rgba(255,255,255,0.7); }
.footer a:hover { color: #fff; }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }

/* Cookie Consent */
.cookie-popup { position: fixed; bottom: -100%; left: 20px; width: 350px; max-width: calc(100% - 40px); background: #fff; padding: 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border-left: 3px solid var(--c-primary); z-index: 9999; transition: bottom 0.5s cubic-bezier(0.22,1,0.36,1); }
.cookie-popup.visible { bottom: 20px; }
.cookie-popup p { font-size: 0.9rem; margin-bottom: 16px; line-height: 1.5; }
.cookie-btns { display: flex; gap: 10px; }

/* Mobile Sticky Price Bar */
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; padding: 15px 20px; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); z-index: 900; align-items: center; justify-content: space-between; transform: translateY(100%); transition: transform 0.3s ease; border-top: 1px solid var(--c-border); }
.mobile-sticky-bar.visible { transform: translateY(0); }
.mobile-sticky-bar .ms-price { font-weight: 700; font-size: 1.25rem; font-family: 'Plus Jakarta Sans', sans-serif; }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrapper { max-width: 500px; margin: 0 auto; }
  .hero-trust { justify-content: center; }
  .hero-actions { justify-content: center; }
  .order-layout { grid-template-columns: 1fr; }
  .sticky-card { position: static; margin-top: 40px; }
}

@media (max-width: 768px) {
  .navbar .nav-links, .navbar .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .pros-cons { grid-template-columns: 1fr; }
  
  body.has-mobile-bar { padding-bottom: 80px; }
  .mobile-sticky-bar { display: flex; }
}

@media (max-width: 480px) {
  .facts-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .cookie-popup { width: calc(100% - 40px); }
}

@media (max-width: 768px) { .legal-card { padding: 30px 20px !important; } }
