:root {
  --color-primary:#e63946;--color-primary-dark:#c1121f;--color-primary-light:#ff6b6b;
  --color-dark:#0d1117;--color-dark-secondary:#161b22;--color-surface:#ffffff;--color-surface-alt:#f6f8fa;
  --color-border:#d0d7de;--color-border-light:#e8ecf0;--color-text:#1f2328;--color-text-secondary:#656d76;
  --color-text-muted:#8b949e;--color-success:#2da44e;--color-warning:#d29922;
  --font-display:'Space Grotesk',system-ui,sans-serif;--font-body:'Inter',system-ui,sans-serif;
  --radius-sm:6px;--radius-md:10px;--radius-lg:16px;--radius-xl:24px;
  --shadow-sm:0 1px 3px rgba(0,0,0,0.08);--shadow-md:0 4px 12px rgba(0,0,0,0.1);--shadow-lg:0 12px 40px rgba(0,0,0,0.12);
  --transition:0.25s cubic-bezier(0.4,0,0.2,1);--container-width:1280px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font-body);color:var(--color-text);background:var(--color-surface);line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}a{color:inherit;text-decoration:none}ul,ol{list-style:none}input,button,select,textarea{font:inherit}button{cursor:pointer;border:none;background:none}
.container{max-width:var(--container-width);margin:0 auto;padding:0 1.5rem}

.site-header{position:sticky;top:0;z-index:1000;background:var(--color-surface);border-bottom:1px solid var(--color-border-light)}
.header-top{background:var(--color-dark);color:#fff;font-size:.8125rem;padding:.5rem 0}
.header-top .container{display:flex;justify-content:space-between;align-items:center}
.header-top-left{display:flex;align-items:center;gap:.75rem}
.header-contact{display:flex;align-items:center;gap:.375rem;color:#fff;transition:color var(--transition)}
.header-contact:hover{color:var(--color-primary-light)}
.header-divider{opacity:.3}.header-shipping-info{color:var(--color-primary-light);font-weight:500}
.header-top-right{display:flex;gap:1.25rem}
.header-link{color:rgba(255,255,255,.8);transition:color var(--transition)}.header-link:hover{color:#fff}
.header-main{padding:1rem 0}.header-main .container{display:flex;align-items:center;gap:2rem}

.logo{display:flex;align-items:center;gap:.625rem;flex-shrink:0}
.logo-icon{display:flex;align-items:center;justify-content:center;width:42px;height:42px;background:var(--color-primary);color:#fff;font-family:var(--font-display);font-weight:700;font-size:1rem;border-radius:var(--radius-sm)}
.logo-text{font-family:var(--font-display);font-size:1.375rem;font-weight:700;color:var(--color-dark);letter-spacing:-.03em}
.logo-accent{color:var(--color-primary)}

.search-bar{flex:1;max-width:600px;position:relative}
.search-form{display:flex;border:2px solid var(--color-border);border-radius:var(--radius-lg);overflow:hidden;transition:border-color var(--transition),box-shadow var(--transition)}
.search-form:focus-within{border-color:var(--color-primary);box-shadow:0 0 0 3px rgba(230,57,70,.15)}
.search-input{flex:1;border:none;padding:.75rem 1rem;font-size:.9375rem;outline:none;background:transparent}
.search-input::placeholder{color:var(--color-text-muted)}
.search-btn{padding:.75rem 1.25rem;background:var(--color-primary);color:#fff;transition:background var(--transition)}
.search-btn:hover{background:var(--color-primary-dark)}
.search-suggestions{position:absolute;top:100%;left:0;right:0;background:#fff;border-radius:var(--radius-md);box-shadow:var(--shadow-lg);display:none;z-index:100;margin-top:4px}
.search-suggestions.active{display:block}
.search-suggestion-item{display:block;padding:.75rem 1rem;cursor:pointer;transition:background var(--transition);border-bottom:1px solid var(--color-border-light)}
.search-suggestion-item:hover{background:var(--color-surface-alt)}

.header-actions{display:flex;align-items:center;gap:.75rem}
.header-action{position:relative;display:flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:var(--radius-md);color:var(--color-text);transition:background var(--transition)}
.header-action:hover{background:var(--color-surface-alt);color:var(--color-primary)}
.cart-count{position:absolute;top:2px;right:2px;background:var(--color-primary);color:#fff;font-size:.6875rem;font-weight:600;min-width:18px;height:18px;border-radius:9px;display:flex;align-items:center;justify-content:center;padding:0 4px}

.header-nav{border-top:1px solid var(--color-border-light)}
.nav-list{display:flex;gap:0;overflow-x:auto;scrollbar-width:none}.nav-list::-webkit-scrollbar{display:none}
.nav-link{display:block;padding:.875rem 1.125rem;font-size:.875rem;font-weight:500;white-space:nowrap;color:var(--color-text-secondary);transition:color var(--transition);border-bottom:2px solid transparent}
.nav-link:hover{color:var(--color-primary);border-bottom-color:var(--color-primary)}
.nav-highlight{color:var(--color-primary)!important;font-weight:600}

.breadcrumbs{background:var(--color-surface-alt);padding:.75rem 0;font-size:.8125rem}
.breadcrumbs ol{display:flex;flex-wrap:wrap;gap:.25rem;align-items:center}
.breadcrumbs li::after{content:'›';margin:0 .5rem;color:var(--color-text-muted)}
.breadcrumbs li:last-child::after{display:none}.breadcrumbs li:last-child{color:var(--color-text-muted)}
.breadcrumbs a{color:var(--color-text-secondary)}.breadcrumbs a:hover{color:var(--color-primary)}

.hero{position:relative;padding:5rem 0;overflow:hidden;background:linear-gradient(135deg,var(--color-dark) 0%,#1a1f2e 50%,#2d1f3d 100%);color:#fff}
.hero-bg{position:absolute;inset:0;background-image:radial-gradient(ellipse 80% 50% at 50% -20%,rgba(230,57,70,.2),transparent),radial-gradient(circle at 80% 80%,rgba(230,57,70,.08),transparent)}
.hero-content{position:relative;max-width:640px;animation:fadeInUp .6s ease-out}
.hero-title{font-family:var(--font-display);font-size:clamp(2.25rem,5vw,3.5rem);font-weight:700;line-height:1.1;letter-spacing:-.03em;margin-bottom:1.25rem}
.text-accent{color:var(--color-primary-light)}
.hero-subtitle{font-size:1.125rem;color:rgba(255,255,255,.75);margin-bottom:2rem;line-height:1.7}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.75rem 1.75rem;border-radius:var(--radius-md);font-weight:600;font-size:.9375rem;transition:all var(--transition);border:2px solid transparent;white-space:nowrap}
.btn-primary{background:var(--color-primary);color:#fff}.btn-primary:hover{background:var(--color-primary-dark);transform:translateY(-1px);box-shadow:var(--shadow-md)}
.btn-outline{border-color:rgba(255,255,255,.4);color:#fff}.btn-outline:hover{background:rgba(255,255,255,.1);border-color:#fff}
.btn-lg{padding:1rem 2.25rem;font-size:1rem}

.trust-section{padding:2rem 0;border-bottom:1px solid var(--color-border-light)}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.trust-item{display:flex;align-items:center;gap:1rem}.trust-item svg{flex-shrink:0;color:var(--color-primary)}
.trust-item div{display:flex;flex-direction:column}.trust-item strong{font-size:.875rem}.trust-item span{font-size:.75rem;color:var(--color-text-muted)}

.section{padding:3.5rem 0}.section-dark{background:var(--color-dark);color:#fff}
.section-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem}
.section-title{font-family:var(--font-display);font-size:1.75rem;font-weight:700;letter-spacing:-.02em}
.section-link{color:var(--color-primary);font-weight:600;font-size:.9375rem}.section-link:hover{text-decoration:underline}

.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.product-card{background:var(--color-surface);border:1px solid var(--color-border-light);border-radius:var(--radius-lg);overflow:hidden;transition:transform var(--transition),box-shadow var(--transition)}
.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.product-card-link{display:block}
.product-card-image{position:relative;aspect-ratio:1;background:var(--color-surface-alt);overflow:hidden}
.product-card-image img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.product-card:hover .product-card-image img{transform:scale(1.05)}
.product-card-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:var(--color-text-muted);font-size:.875rem}
.product-badge{position:absolute;top:.75rem;left:.75rem;padding:.25rem .75rem;border-radius:999px;font-size:.75rem;font-weight:600;color:#fff}
.badge-sale{background:var(--color-primary)}.badge-new{background:var(--color-success)}
.product-card-info{padding:1rem 1.25rem}
.product-card-category{display:block;font-size:.75rem;color:var(--color-text-muted);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.375rem}
.product-card-title{font-size:.9375rem;font-weight:600;line-height:1.4;margin-bottom:.5rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.product-card-price{display:flex;align-items:center;gap:.5rem}
.price-old{font-size:.8125rem;color:var(--color-text-muted);text-decoration:line-through}
.price-current{font-family:var(--font-display);font-size:1.125rem;font-weight:700;color:var(--color-primary)}
.product-card-cart-btn{display:flex;align-items:center;justify-content:center;gap:.5rem;width:100%;padding:.875rem;background:var(--color-surface-alt);color:var(--color-text);font-weight:600;font-size:.875rem;border-top:1px solid var(--color-border-light);transition:background var(--transition),color var(--transition)}
.product-card-cart-btn:hover{background:var(--color-primary);color:#fff}

.product-detail{padding:2rem 0 4rem}
.product-detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.gallery-main{aspect-ratio:1;border-radius:var(--radius-lg);overflow:hidden;background:var(--color-surface-alt);border:1px solid var(--color-border-light)}
.gallery-main img{width:100%;height:100%;object-fit:contain}
.gallery-thumbs{display:flex;gap:.75rem;margin-top:1rem;overflow-x:auto}
.gallery-thumb{width:80px;height:80px;border-radius:var(--radius-sm);overflow:hidden;border:2px solid var(--color-border-light);cursor:pointer;flex-shrink:0;transition:border-color var(--transition)}
.gallery-thumb.active,.gallery-thumb:hover{border-color:var(--color-primary)}
.gallery-thumb img{width:100%;height:100%;object-fit:cover}
.product-brand{display:inline-block;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.08em;color:var(--color-primary);margin-bottom:.5rem}
.product-title{font-family:var(--font-display);font-size:1.75rem;font-weight:700;line-height:1.25;letter-spacing:-.02em;margin-bottom:.75rem}
.product-meta{display:flex;gap:1.25rem;font-size:.8125rem;color:var(--color-text-muted);margin-bottom:1.5rem}
.product-rating{color:var(--color-warning)}
.product-price-block{display:flex;align-items:baseline;gap:.75rem;margin-bottom:1.25rem}
.price-main{font-family:var(--font-display);font-size:2rem;font-weight:700;color:var(--color-primary)}
.price-discount{padding:.25rem .625rem;background:rgba(230,57,70,.1);color:var(--color-primary);border-radius:999px;font-size:.8125rem;font-weight:600}
.product-short-desc{color:var(--color-text-secondary);margin-bottom:1.5rem;line-height:1.7}
.product-specs{display:grid;grid-template-columns:1fr 1fr;gap:.75rem;padding:1.25rem;background:var(--color-surface-alt);border-radius:var(--radius-md);margin-bottom:1.5rem}
.spec-item{display:flex;flex-direction:column;gap:.125rem}.spec-label{font-size:.75rem;color:var(--color-text-muted);text-transform:uppercase;letter-spacing:.05em}.spec-value{font-weight:600;font-size:.9375rem}
.compatible-cars{margin-bottom:1.5rem}.compatible-cars h3{font-size:1rem;margin-bottom:.5rem}
.compatible-cars ul{display:flex;flex-wrap:wrap;gap:.5rem}
.compatible-cars li{padding:.375rem .75rem;background:var(--color-surface-alt);border-radius:999px;font-size:.8125rem;border:1px solid var(--color-border-light)}
.product-actions{display:flex;gap:1rem;margin-bottom:1rem}
.quantity-selector{display:flex;border:2px solid var(--color-border);border-radius:var(--radius-md);overflow:hidden}
.qty-btn{width:44px;height:48px;display:flex;align-items:center;justify-content:center;font-size:1.25rem;font-weight:600;color:var(--color-text);transition:background var(--transition)}.qty-btn:hover{background:var(--color-surface-alt)}
.qty-input{width:50px;text-align:center;border:none;border-left:1px solid var(--color-border-light);border-right:1px solid var(--color-border-light);font-weight:600;font-size:1rem;outline:none;-moz-appearance:textfield}
.qty-input::-webkit-outer-spin-button,.qty-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.btn-add-cart{flex:1}
.product-stock{padding:.75rem;border-radius:var(--radius-md);font-size:.875rem;font-weight:500}
.product-stock.in-stock{background:rgba(45,164,78,.08);color:var(--color-success)}
.product-stock.out-of-stock{background:rgba(230,57,70,.08);color:var(--color-primary)}

.product-tabs{margin-top:3rem;border-top:1px solid var(--color-border-light);padding-top:2rem}
.tab-nav{display:flex;gap:0;border-bottom:2px solid var(--color-border-light);margin-bottom:2rem}
.tab-btn{padding:.875rem 1.5rem;font-weight:600;color:var(--color-text-muted);border-bottom:2px solid transparent;margin-bottom:-2px;transition:all var(--transition)}
.tab-btn.active{color:var(--color-primary);border-bottom-color:var(--color-primary)}
.tab-content{display:none}.tab-content.active{display:block}
.product-description{line-height:1.8;color:var(--color-text-secondary)}
.product-description h2,.product-description h3{color:var(--color-text);font-family:var(--font-display);margin:1.5rem 0 .75rem}
.product-description ul{list-style:disc;padding-left:1.5rem;margin:1rem 0}.product-description li{margin-bottom:.375rem}
.review-item{padding:1.25rem 0;border-bottom:1px solid var(--color-border-light)}
.review-header{display:flex;justify-content:space-between;margin-bottom:.5rem}
.review-author{font-weight:600}.review-rating{color:var(--color-warning)}.review-text{color:var(--color-text-secondary)}

.category-header{margin-bottom:2rem}.category-header h1{font-family:var(--font-display);font-size:2rem;font-weight:700;margin-bottom:.5rem}.category-header p{color:var(--color-text-secondary)}
.category-toolbar{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem;padding:.75rem 0;border-bottom:1px solid var(--color-border-light)}
.result-count{font-size:.875rem;color:var(--color-text-muted)}
.sort-select{padding:.5rem 1rem;border:1px solid var(--color-border);border-radius:var(--radius-sm);font-size:.875rem;background:var(--color-surface);outline:none}
.pagination{display:flex;justify-content:center;gap:.375rem;margin-top:3rem}
.page-link{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:var(--radius-sm);font-weight:500;border:1px solid var(--color-border);transition:all var(--transition)}
.page-link:hover{background:var(--color-surface-alt)}.page-link.active{background:var(--color-primary);color:#fff;border-color:var(--color-primary)}

.car-finder-cta{text-align:center;padding:2rem 0}
.car-finder-cta h2{font-family:var(--font-display);font-size:2rem;margin-bottom:.75rem}
.car-finder-cta p{color:rgba(255,255,255,.7);margin-bottom:1.5rem}

.site-footer{background:var(--color-dark);color:rgba(255,255,255,.8);padding:3.5rem 0 1.5rem}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.25fr;gap:3rem;margin-bottom:3rem}
.footer-logo{display:flex;align-items:center;gap:.5rem;margin-bottom:1rem}
.footer-logo .logo-icon{width:36px;height:36px;font-size:.875rem}.footer-logo .logo-text{color:#fff;font-size:1.125rem}
.footer-desc{font-size:.875rem;color:rgba(255,255,255,.6);line-height:1.7;margin-bottom:1.25rem}
.footer-col h4{font-size:.9375rem;font-weight:600;color:#fff;margin-bottom:1.25rem}
.footer-col ul{display:flex;flex-direction:column;gap:.625rem}
.footer-col li a{font-size:.875rem;color:rgba(255,255,255,.6);transition:color var(--transition)}.footer-col li a:hover{color:#fff}
.newsletter-form{display:flex;margin-top:1rem}
.newsletter-form input{flex:1;padding:.75rem 1rem;border:1px solid rgba(255,255,255,.2);border-radius:var(--radius-sm) 0 0 var(--radius-sm);background:rgba(255,255,255,.05);color:#fff;font-size:.875rem;outline:none}
.newsletter-form input::placeholder{color:rgba(255,255,255,.4)}
.newsletter-form button{padding:.75rem 1.25rem;background:var(--color-primary);color:#fff;font-weight:600;font-size:.875rem;border-radius:0 var(--radius-sm) var(--radius-sm) 0;transition:background var(--transition)}
.newsletter-form button:hover{background:var(--color-primary-dark)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,.1);font-size:.8125rem;color:rgba(255,255,255,.4)}

@keyframes fadeInUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.product-card{animation:fadeInUp .4s ease-out both}
.product-card:nth-child(2){animation-delay:.05s}.product-card:nth-child(3){animation-delay:.1s}.product-card:nth-child(4){animation-delay:.15s}

@media(max-width:1024px){.product-grid{grid-template-columns:repeat(3,1fr)}.footer-grid{grid-template-columns:1fr 1fr}.trust-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:768px){.header-top{display:none}.header-main .container{flex-wrap:wrap;gap:.75rem}.search-bar{order:3;max-width:100%;width:100%}.hero{padding:3rem 0}.hero-title{font-size:2rem}.product-grid{grid-template-columns:repeat(2,1fr);gap:.75rem}.product-detail-grid{grid-template-columns:1fr;gap:2rem}.footer-grid{grid-template-columns:1fr;gap:2rem}.footer-bottom{flex-direction:column;gap:1rem;text-align:center}}
@media(max-width:480px){.container{padding:0 1rem}.product-card-info{padding:.75rem}.product-card-title{font-size:.8125rem}.price-current{font-size:.9375rem}.trust-grid{grid-template-columns:1fr}.hero-actions{flex-direction:column}.hero-actions .btn{width:100%}.product-actions{flex-direction:column}}

/* ═══════════════════════════════════════
   HAWKCHAIR STYLE UPDATES
   Modern, premium e-commerce design
   ═══════════════════════════════════════ */

/* Smooth page transitions */
main { animation: pageIn .4s ease; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* Enhanced Hero */
.hero { padding: 6rem 0; min-height: 520px; display: flex; align-items: center; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: -.04em; }
.hero-subtitle { font-size: 1.1875rem; max-width: 520px; }
.hero-actions .btn { padding: 1rem 2.5rem; font-size: 1rem; border-radius: 999px; }
.btn-primary { border-radius: var(--radius-md); }
.hero-actions .btn-outline { border-radius: 999px; }

/* Product cards - hawkchair style */
.product-card { border: none; background: var(--color-surface); box-shadow: 0 1px 3px rgba(0,0,0,.04); border-radius: var(--radius-xl); }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.product-card-image { border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.product-card-info { padding: 1.25rem 1.5rem 1rem; }
.product-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.product-card-cart-btn { border-radius: 0 0 var(--radius-xl) var(--radius-xl); padding: 1rem; font-size: .9375rem; }

/* Premium section styling */
.section { padding: 4.5rem 0; }
.section-title { font-size: 2rem; letter-spacing: -.03em; position: relative; }

/* Trust section - icons */
.trust-section { padding: 2.5rem 0; background: var(--color-surface-alt); }
.trust-item { padding: 1.25rem; background: var(--color-surface); border-radius: var(--radius-lg); border: 1px solid var(--color-border-light); }
.trust-item:hover { border-color: var(--color-primary); }

/* Category chips */
.category-chips { display: flex; flex-wrap: wrap; gap: .625rem; margin-bottom: 2rem; }
.category-chip { padding: .5rem 1.25rem; border: 1px solid var(--color-border); border-radius: 999px; font-size: .8125rem; font-weight: 500; color: var(--color-text-secondary); transition: all var(--transition); }
.category-chip:hover, .category-chip.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* CTA section */
.car-finder-cta { padding: 3rem 0; }
.car-finder-cta h2 { font-size: 2.25rem; letter-spacing: -.03em; margin-bottom: 1rem; }
.car-finder-cta .btn { border-radius: 999px; padding: 1rem 3rem; }

/* Product detail improvements */
.product-title { font-size: 2rem; }
.price-main { font-size: 2.25rem; }
.product-specs { gap: 1rem; padding: 1.5rem; border-radius: var(--radius-lg); }
.btn-add-cart { border-radius: var(--radius-lg); font-size: 1rem; padding: 1rem 2rem; }
.quantity-selector { border-radius: var(--radius-lg); }

/* Slider/Banner section */
.slider-section { position: relative; overflow: hidden; }
.slider-container { display: flex; transition: transform .5s ease; }
.slider-slide { min-width: 100%; position: relative; }
.slider-slide img { width: 100%; height: 500px; object-fit: cover; }
.slider-content { position: absolute; inset: 0; display: flex; align-items: center; background: linear-gradient(90deg, rgba(0,0,0,.6) 0%, transparent 70%); padding: 0 4rem; }
.slider-content h2 { font-family: var(--font-display); font-size: 2.5rem; color: #fff; margin-bottom: .75rem; letter-spacing: -.03em; }
.slider-content p { color: rgba(255,255,255,.8); font-size: 1.125rem; margin-bottom: 1.5rem; }
.slider-dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: all .2s; }
.slider-dot.active { background: #fff; width: 30px; border-radius: 5px; }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.2); backdrop-filter: blur(8px); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; border: none; }
.slider-nav:hover { background: rgba(255,255,255,.4); }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

/* Newsletter upgrade */
.newsletter-section { background: linear-gradient(135deg, #1a1f2e, #2d1f3d); padding: 3rem 0; }
.newsletter-section .container { text-align: center; }
.newsletter-section h3 { font-family: var(--font-display); font-size: 1.5rem; color: #fff; margin-bottom: .5rem; }
.newsletter-section p { color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }
.newsletter-form-lg { display: flex; max-width: 480px; margin: 0 auto; }
.newsletter-form-lg input { flex: 1; padding: 1rem 1.25rem; border: none; border-radius: var(--radius-lg) 0 0 var(--radius-lg); font-size: .9375rem; }
.newsletter-form-lg button { padding: 1rem 2rem; background: var(--color-primary); color: #fff; border: none; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; font-weight: 600; cursor: pointer; }

/* CMS content pages */
.cms-content { line-height: 1.9; color: var(--color-text-secondary); }
.cms-content h1 { font-family: var(--font-display); font-size: 2rem; color: var(--color-text); margin-bottom: 1.5rem; }
.cms-content h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-text); margin: 2rem 0 1rem; }
.cms-content h3 { font-size: 1.25rem; color: var(--color-text); margin: 1.5rem 0 .75rem; }
.cms-content p { margin-bottom: 1rem; }
.cms-content ul, .cms-content ol { padding-left: 1.5rem; margin: 1rem 0; list-style: disc; }
.cms-content li { margin-bottom: .5rem; }
.cms-content img { border-radius: var(--radius-lg); margin: 1.5rem 0; }
.page-content { max-width: 800px; margin: 0 auto; padding: 2rem 0; }

/* Footer upgrade */
.site-footer { padding: 4rem 0 2rem; }
.footer-grid { gap: 2.5rem; }

/* Scroll to top */
.scroll-top { position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px; border-radius: 50%; background: var(--color-primary); color: #fff; display: none; align-items: center; justify-content: center; cursor: pointer; z-index: 999; box-shadow: var(--shadow-md); transition: all .2s; border: none; }
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-2px); background: var(--color-primary-dark); }

/* Mobile menu */
.mobile-menu-btn { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: var(--radius-md); }
@media(max-width:768px) {
  .mobile-menu-btn { display: flex; }
  .hero { min-height: 400px; padding: 4rem 0; }
  .slider-slide img { height: 300px; }
  .slider-content { padding: 0 2rem; }
  .slider-content h2 { font-size: 1.5rem; }
  .slider-nav { display: none; }
}
