@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --c-primary: #334155;
  --c-primary-light: #475569;
  --c-accent: #059669;
  --c-accent-hover: #047857;
  --c-cta: #EA580C;
  --c-cta-hover: #C2410C;
  --c-bg: #F8FAFC;
  --c-fg: #0F172A;
  --c-card: #FFFFFF;
  --c-muted: #F1F5F9;
  --c-muted-fg: #64748B;
  --c-border: #E2E8F0;
  --c-border-subtle: #F1F5F9;
  --c-destructive: #DC2626;
  --c-nav-bg: #0F172A;
  --c-nav-hover: #1E293B;
  --c-text: #334155;
  --c-text-muted: #64748B;
  --c-heading: #0F172A;
}

/* SEO blocks on blog posts (FAQ accordion, see-also, popular queries) */
.blog-seo-block { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--c-border); }
.blog-seo-block h2 { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 16px; color: var(--c-heading); }
.blog-seo-block h3 { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 600; margin: 0; color: var(--c-accent); display: inline; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--c-border); border-radius: 8px; padding: 0; background: var(--c-card); }
.faq-item > summary { cursor: pointer; padding: 14px 18px; list-style: none; display: flex; align-items: center; gap: 10px; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::before { content: "+"; font-size: 20px; font-weight: 600; color: var(--c-accent); line-height: 1; }
.faq-item[open] > summary::before { content: "\2013"; }
.faq-answer { padding: 0 18px 16px; color: var(--c-text); }
.seealso-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 10px; }
.seealso-list li { background: var(--c-muted); border: 1px solid var(--c-border); border-radius: 8px; padding: 10px 14px; }
.seealso-list a { font-weight: 600; }
.blog-popular > summary { cursor: pointer; padding: 12px 0; list-style: none; }
.blog-popular > summary::-webkit-details-marker { display: none; }
.blog-popular .popular-title { font-weight: 600; color: var(--c-text-muted); }
.blog-popular .popular-title::before { content: "\25B8"; margin-right: 8px; color: var(--c-accent); }
.popular-list { list-style: none; columns: 2; column-gap: 24px; padding: 8px 0 4px; }
.popular-list li { padding: 4px 0; color: var(--c-text-muted); font-size: 14px; break-inside: avoid; }
@media (max-width: 600px) { .popular-list { columns: 1; } }


body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
}

a { color: var(--c-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-accent); }

.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -10px; }
.col-md-3, .col-md-9, .col-md-12 { padding: 0 10px; box-sizing: border-box; }
.col-md-12 { width: 100%; }
.col-md-9 { width: 75%; }
.col-md-3 { width: 25%; }

/* Top Bar */
.topbar { background: var(--c-fg); color: #aaa; font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 38px; }
.topbar-left a { color: #ddd; margin: 0 3px; }
.topbar-left a:hover { color: var(--c-accent); }
.topbar-left .sep { color: #888; }
.topbar-right { display: flex; gap: 12px; }
.topbar-right a { color: #ccc; display: inline-flex; align-items: center; gap: 4px; padding: 6px 0; }
.topbar-right a:hover { color: var(--c-accent); }

/* Header */
#header { background: var(--c-card); border-bottom: 1px solid var(--c-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-img { display: block; height: 60px; width: auto; max-width: 100%; }
.logo-bochka { font-size: 28px; font-weight: 700; color: var(--c-heading); letter-spacing: 2px; }
.logo-masla { font-size: 28px; font-weight: 700; color: var(--c-accent); letter-spacing: 2px; }
.logo-slogan { font-size: 11px; color: var(--c-text-muted); margin-top: 3px; letter-spacing: 1px; }
.header-contacts { display: flex; gap: 24px; }
.contact-item { display: flex; align-items: center; gap: 6px; font-size: 14px; }
.contact-item a { color: var(--c-text); font-weight: 600; }
.contact-item a:hover { color: var(--c-accent); }
.contact-icon { font-size: 18px; }

.cart-btn { display: flex; align-items: center; gap: 8px; background: var(--c-fg); color: #fff; padding: 10px 20px; border-radius: 8px; transition: background .2s; }
.cart-btn:hover { background: var(--c-accent); color: #fff; }
.cart-icon { font-size: 20px; }
.cart-label { font-weight: 600; }
.cart-count { background: var(--c-cta); color: #fff; border-radius: 50%; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.cart-btn .cart-total { font-size: 13px; font-weight: 700; background: var(--c-cta); color: #fff; padding: 2px 10px; border-radius: 4px; display: inline; border: none; margin: 0; text-align: left; }

/* Navigation */
#main-nav { background: var(--c-nav-bg); position: sticky; top: 0; z-index: 1000; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 18px; padding: 14px; cursor: pointer; }
.nav-menu { display: flex; list-style: none; }
.nav-menu > li > a { display: block; padding: 14px 18px; color: #CBD5E1; font-weight: 500; font-size: 14px; transition: background .2s, color .2s; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { background: var(--c-nav-hover); color: #fff; }
.has-mega { position: relative; }

.mega-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--c-border); border-radius: 0 0 8px 8px; box-shadow: 0 8px 24px rgba(0,0,0,.08); padding: 20px; gap: 24px; z-index: 999; min-width: 700px; }
.has-mega:hover .mega-menu { display: flex; }
.mega-col { flex: 1; min-width: 160px; }
.mega-col h4 { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; color: var(--c-heading); margin-bottom: 8px; border-bottom: 2px solid var(--c-accent); padding-bottom: 4px; }
.mega-col h4 a { color: var(--c-heading); }
.mega-col ul { list-style: none; margin-bottom: 16px; }
.mega-col ul li a { display: block; padding: 4px 0; font-size: 13px; color: var(--c-text-muted); }
.mega-col ul li a:hover { color: var(--c-accent); padding-left: 4px; }

.nav-search { padding: 8px 0; }
.search-input { padding: 8px 14px; border: none; border-radius: 20px; background: var(--c-nav-hover); color: #fff; width: 200px; font-size: 13px; outline: none; transition: width .3s; }
.search-input::placeholder { color: #94A3B8; }
.search-input:focus { width: 260px; background: #334155; }
.search-btn { background: none; border: none; color: #94A3B8; cursor: pointer; padding: 8px; font-size: 16px; margin-left: -36px; }

/* Slider */
.homeslider { background: #171717; }
.bannercontainer { position: relative; overflow: hidden; width: 100%; max-height: 400px; }
.slider-wrapper { position: relative; }
.slides { position: relative; overflow: hidden; }
.slide { position: relative; display: none; }
.slide.active { display: block; }
.slide-img { width: 100%; display: block; height: auto; min-height: 250px; object-fit: cover; }
.slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.4) 50%, transparent 100%); display: flex; align-items: center; }
.slide-content { max-width: 600px; padding-left: 48px; }
.slide-title { font-size: 38px; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 16px; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.slide-desc { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 28px; line-height: 1.5; }
.slide-btn { display: inline-block; background: var(--c-cta); color: #fff; padding: 14px 36px; border-radius: 8px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px; transition: background .2s, transform .2s; text-decoration: none; }
.slide-btn:hover { background: var(--c-cta-hover); color: #fff; transform: translateY(-2px); }

/* Sidebar */
.sidebar { padding-top: 20px; }
.sidebar > * { margin-bottom: 20px; }
.sidebar-categories { background: var(--c-card); border: 1px solid var(--c-border); border-radius: 8px; overflow: hidden; }

/* Filter Block */
.filter-block { background: var(--c-card); border: 1px solid var(--c-border); border-radius: 8px; overflow: hidden; }
.filter-title_block { display: block; padding: 12px 16px; font-size: 13px; font-weight: 600; color: var(--c-heading); background: var(--c-muted); border-bottom: 1px solid var(--c-border); text-transform: uppercase; letter-spacing: .5px; }
.filter-block_content { padding: 6px 0; }
.filter-group { padding: 8px 16px; border-bottom: 1px solid var(--c-border-subtle); }
.filter-group:last-child { border-bottom: none; }
.filter-subtitle { font-size: 13px; font-weight: 600; color: var(--c-heading); margin-bottom: 6px; }
.filter-ul { list-style: none; max-height: 200px; overflow-y: auto; padding-right: 4px; }
.filter-ul::-webkit-scrollbar { width: 6px; }
.filter-ul::-webkit-scrollbar-track { background: var(--c-muted); border-radius: 3px; }
.filter-ul::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 3px; }
.filter-ul::-webkit-scrollbar-thumb:hover { background: var(--c-accent); }
.filter-group-brands .filter-ul { max-height: 240px; }
.filter-item { padding: 3px 0; }
.filter-item label { font-size: 13px; color: var(--c-text); cursor: pointer; display: flex; align-items: center; gap: 6px; }
.filter-item label:hover { color: var(--c-accent); }
.filter-item input[type="checkbox"] { accent-color: var(--c-accent); cursor: pointer; }
.filter-item.brand-filter-item label { gap: 8px; padding: 2px 0; }
.filter-brand-logo { flex-shrink: 0; width: 24px; height: 10px; object-fit: contain; }
.brand-name { flex: 1; }
.filter-ul.brands-filter-ul .cnt { font-size: 11px; color: var(--c-text-muted); background: var(--c-muted); border-radius: 8px; padding: 1px 6px; line-height: 16px; }
.filter-ul.brands-filter-ul .filter-item label:hover .cnt { background: #E2E8F0; }
.filter-reset { display: block; padding: 8px 16px; font-size: 12px; color: var(--c-destructive); font-weight: 600; text-align: center; border-top: 1px solid var(--c-border-subtle); }
.filter-reset:hover { background: #FEF2F2; }
.filter-price { display: flex; align-items: center; gap: 8px; }
.filter-price-input { width: 100%; padding: 8px 10px; font-size: 13px; border: 1px solid var(--c-border); border-radius: 6px; outline: none; }
.filter-price-input:focus { border-color: var(--c-accent); }
.filter-price-sep { color: var(--c-text-muted); }
.cat-widget { border-bottom: 1px solid var(--c-border); }
.cat-widget:last-child { border-bottom: none; }
.cat-widget-heading { padding: 12px 16px; font-size: 13px; font-weight: 600; color: var(--c-heading); background: var(--c-muted); border-bottom: 1px solid var(--c-border); text-transform: uppercase; letter-spacing: .5px; }
.cat-widget-heading a { color: var(--c-heading); display: block; }
.cat-widget-heading a:hover { color: var(--c-accent); }
.cat-widget-list { list-style: none; padding: 6px 0; }
.cat-widget-list li a { display: block; padding: 7px 16px; font-size: 13px; color: var(--c-text); transition: all .15s; }
.cat-widget-list li a:hover { background: var(--c-muted); color: var(--c-accent); padding-left: 20px; }
.cat-widget-list li a.active { background: var(--c-muted); color: var(--c-accent); font-weight: 600; padding-left: 20px; }

.home-main { padding-bottom: 0; }

/* Static Banner */
.home-banner { padding: 20px 0; background: var(--c-card); }
.home-banner-bottom { padding: 20px 0 40px; background: #f5f5f5; }
.staticontent-home { list-style: none; margin: 0; padding: 0; }

.staticontent-item { padding: 0; }
.staticontent-item .item-img { width: 100%; display: block; border-radius: 8px; }

/* Carousel */
.home-carousel { padding: 40px 0 60px; background: var(--c-card); }
.carousel-wrapper { position: relative; overflow: hidden; }
.carousel-track { display: flex; gap: 16px; transition: transform .3s ease; }
.carousel-item { flex: 0 0 210px; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(15,23,42,.7); color: #fff; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 22px; cursor: pointer; z-index: 2; line-height: 36px; text-align: center; transition: background .2s; }
.carousel-btn:hover { background: var(--c-accent); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* Brands strip */
.brands { background: var(--c-card); padding: 24px 0; border-bottom: 1px solid var(--c-border); }
.brands-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px 40px; }
.brand-item span { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; color: var(--c-text-muted); opacity: .5; transition: opacity .2s; }
.brand-item:hover span { opacity: 1; color: var(--c-heading); }

/* Features */
.features { padding: 60px 0; background: var(--c-card); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item { text-align: center; padding: 24px 16px; border: 1px solid var(--c-border); border-radius: 8px; transition: box-shadow .2s; }
.feature-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.feature-icon { font-size: 40px; margin-bottom: 12px; }
.feature-item h3 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; color: var(--c-heading); margin-bottom: 8px; }
.feature-item p { font-size: 13px; color: var(--c-text-muted); }

/* Section Title */
.section-title { text-align: center; font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 700; color: var(--c-heading); margin-bottom: 40px; position: relative; }
.section-title::after { content: ''; display: block; width: 48px; height: 3px; background: var(--c-accent); margin: 12px auto 0; border-radius: 2px; }
.page-title { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 700; color: var(--c-heading); margin: 24px 0; }
.page-heading { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; color: var(--c-heading); margin: 16px 0 4px; }
.heading-counter { font-size: 14px; color: #999; display: inline-block; margin-bottom: 16px; }
.clearfix { clear: both; }
.subcategories-block { margin: 12px 0 20px; background: var(--c-card); border: 1px solid var(--c-border-subtle); border-radius: 8px; padding: 16px 20px; }
.subcategories-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.subcategories-list li { }
.subcategory-name { font-size: 14px; font-weight: 600; color: var(--c-primary); padding: 4px 0; display: inline-block; }
.subcategory-name:hover { color: var(--c-accent); }

/* Categories */
.categories { padding: 60px 0; }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card { display: block; background: var(--c-card); border: 1px solid var(--c-border); border-radius: 8px; padding: 24px; transition: transform .2s, box-shadow .2s; color: var(--c-text); }
.category-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.06); color: var(--c-text); }
.card-icon { font-size: 36px; margin-bottom: 12px; }
.category-card h3 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; color: var(--c-heading); margin-bottom: 8px; }
.category-card p { font-size: 13px; color: var(--c-text-muted); margin-bottom: 12px; }
.card-link { font-size: 13px; font-weight: 600; color: var(--c-accent); }

/* Popular brands */
.popular-products { padding: 60px 0; background: var(--c-card); }
.brand-showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.brand-showcase-item { padding: 24px; border: 1px solid var(--c-border); border-radius: 8px; transition: box-shadow .2s; }
.brand-showcase-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.brand-showcase-item h3 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: var(--c-heading); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--c-accent); }
.brand-showcase-item ul { list-style: none; margin-bottom: 16px; }
.brand-showcase-item ul li { padding: 5px 0; font-size: 14px; color: var(--c-text-muted); }
.brand-showcase-item ul li::before { content: '\2022 '; color: var(--c-accent); font-weight: 700; }
.brand-showcase-item ul li a { color: var(--c-text-muted); }
.brand-showcase-item ul li a:hover { color: var(--c-accent); }
.brand-link { font-weight: 600; color: var(--c-accent); font-size: 14px; }

/* About */
.about { padding: 60px 0; }
.about-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center; }
.about-text h2 { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 700; color: var(--c-heading); margin-bottom: 20px; }
.about-text p { margin-bottom: 12px; color: var(--c-text); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-item { background: var(--c-card); border: 1px solid var(--c-border); border-radius: 8px; padding: 24px; text-align: center; }
.stat-num { display: block; font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 700; color: var(--c-accent); }
.stat-label { font-size: 13px; color: var(--c-text-muted); }

/* Delivery */
.delivery { padding: 60px 0; background: var(--c-card); }
.delivery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.delivery-item { padding: 24px; border: 1px solid var(--c-border); border-radius: 8px; }
.delivery-item h3 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; color: var(--c-heading); margin-bottom: 10px; }
.delivery-item p { font-size: 13px; color: var(--c-text-muted); }

/* Breadcrumbs */
.breadcrumbs { padding: 12px 0; font-size: 13px; color: #999; }
.breadcrumbs a { color: var(--c-primary); }
.breadcrumbs a:hover { color: var(--c-accent); }
.breadcrumbs span { color: #ccc; }

/* Catalog */
.catalog-page { padding: 24px 0 60px; }
.catalog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 30px; }
.catalog-sidebar { background: var(--c-card); border: 1px solid var(--c-border); border-radius: 8px; padding: 20px; align-self: start; }
.catalog-sidebar h3 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; color: var(--c-heading); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--c-accent); }
.catalog-cats { list-style: none; }
.catalog-cats li { margin-bottom: 2px; }
.catalog-cats li a { display: block; padding: 8px 10px; font-size: 14px; color: var(--c-text); border-radius: 6px; transition: background .2s; }
.catalog-cats li a:hover,
.catalog-cats li a.active { background: var(--c-muted); color: var(--c-accent); font-weight: 600; }

.catalog-main { min-height: 300px; }
.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding: 12px 16px; background: var(--c-card); border: 1px solid var(--c-border); border-radius: 8px; }
.catalog-count { color: var(--c-text-muted); font-size: 14px; }
.sort-select { padding: 6px 12px; border: 1px solid var(--c-border); border-radius: 6px; font-size: 13px; outline: none; cursor: pointer; }
.search-info { color: var(--c-text-muted); margin-bottom: 16px; font-size: 14px; }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.product-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: 8px; position: relative; transition: transform .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.product-badge { position: absolute; top: 10px; left: 10px; background: var(--c-destructive); color: #fff; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.product-card-img { display: block; width: 100%; height: 200px; overflow: hidden; background: var(--c-muted); border-radius: 8px 8px 0 0; }
.product-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.product-card-body { padding: 20px; }
.product-card-name { display: block; font-size: 14px; font-weight: 600; color: var(--c-heading); margin-bottom: 6px; line-height: 1.3; }
.product-card-name:hover { color: var(--c-accent); }
.product-card-volume { font-size: 12px; color: var(--c-text-muted); display: block; margin-bottom: 10px; }
.product-card-prices { margin-bottom: 14px; }
.product-card-price { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; color: var(--c-heading); }
.old-price { font-size: 14px; color: var(--c-text-muted); text-decoration: line-through; margin-right: 8px; }
.old-price.big { font-size: 18px; }

.btn-add-cart { width: 100%; padding: 10px; background: var(--c-fg); color: #fff; border: none; border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500; cursor: pointer; transition: background .2s; }
.btn-add-cart:hover { background: var(--c-accent); }
.btn-add-cart.big { padding: 14px; font-size: 16px; }

/* Product Detail */
.product-detail { padding: 24px 0 60px; }
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; background: var(--c-card); border: 1px solid var(--c-border); border-radius: 8px; padding: 30px; }
.product-detail-image { display: flex; align-items: center; justify-content: center; background: var(--c-muted); border-radius: 8px; min-height: 300px; }
.product-detail-image img { max-width: 100%; max-height: 400px; object-fit: contain; }
.product-brand { font-size: 14px; color: var(--c-text-muted); margin-bottom: 8px; }
.product-title { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; color: var(--c-heading); margin-bottom: 6px; }
.product-short-desc { font-size: 14px; color: var(--c-text-muted); margin-bottom: 10px; }
.donor-link { margin-top: -10px; margin-bottom: 16px; font-size: 12px; }
.donor-link a { color: var(--c-text-muted); text-decoration: none; border-bottom: 1px dashed var(--c-border); }
.donor-link a:hover { color: var(--c-accent); border-bottom-color: var(--c-accent); }
.product-sku, .product-volume { font-size: 14px; color: var(--c-text-muted); margin-bottom: 6px; }
.product-prices { margin: 16px 0; }
.product-price.big { font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 700; color: var(--c-heading); }
.product-desc { color: var(--c-text); line-height: 1.7; margin-bottom: 20px; }
.product-add-form { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-control label { font-size: 14px; font-weight: 600; color: var(--c-text); }
.qty-input { padding: 8px 12px; border: 1px solid var(--c-border); border-radius: 6px; font-size: 14px; width: 60px; text-align: center; outline: none; }
.qty-input:focus { border-color: var(--c-accent); }
.related-section { margin-top: 40px; }

/* Product Tabs */
.product-tabs { margin-top: 40px; background: var(--c-card); border: 1px solid var(--c-border); border-radius: 8px; overflow: hidden; }
.tabs-nav { display: flex; gap: 0; background: var(--c-muted); border-bottom: 2px solid var(--c-border); overflow-x: auto; }
.tab-btn { padding: 14px 24px; background: none; border: none; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500; color: var(--c-text-muted); cursor: pointer; white-space: nowrap; transition: all .2s; border-bottom: 2px solid transparent; margin-bottom: -2px; }
.tab-btn:hover { color: var(--c-heading); }
.tab-btn.active { color: var(--c-accent); border-bottom-color: var(--c-accent); background: var(--c-card); }
.tabs-content { padding: 24px; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-pane .rte { line-height: 1.8; color: var(--c-text); }
.tab-pane .rte h2 { font-family: 'Poppins', sans-serif; font-size: 20px; color: var(--c-heading); margin: 20px 0 12px; }
.tab-pane .rte h2:first-child { margin-top: 0; }
.tab-pane .rte ul { padding-left: 20px; margin: 8px 0; }
.tab-pane .rte li { margin-bottom: 4px; }
.tab-pane .rte p { margin-bottom: 8px; }

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--c-border-subtle); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 10px 16px; font-size: 14px; vertical-align: top; }
.spec-name { width: 40%; color: var(--c-text-muted); font-weight: 500; background: var(--c-muted); }
.spec-value { width: 60%; color: var(--c-text); font-weight: 600; }

/* Cart */
.cart-page { padding: 24px 0 60px; min-height: 400px; }
.cart-table { width: 100%; background: var(--c-card); border: 1px solid var(--c-border); border-radius: 8px; overflow: hidden; }
.cart-table th { background: var(--c-fg); color: #fff; padding: 12px 16px; font-size: 13px; font-weight: 600; text-align: left; }
.cart-table td { padding: 16px; border-top: 1px solid var(--c-border-subtle); font-size: 14px; vertical-align: middle; }
.cart-table td a { color: var(--c-heading); font-weight: 600; }
.cart-table td a:hover { color: var(--c-accent); }
.cart-total { text-align: right; padding: 20px; background: var(--c-card); border: 1px solid var(--c-border); border-radius: 8px; margin-top: 16px; display: flex; justify-content: flex-end; align-items: center; gap: 16px; }
.cart-total-label { font-size: 18px; color: var(--c-text); }
.cart-total-value { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 700; color: var(--c-heading); }
.cart-item-info { display: flex; align-items: center; gap: 12px; }
.cart-item-img { width: 50px; height: 50px; object-fit: contain; border-radius: 6px; background: var(--c-muted); }
.cart-actions { display: flex; justify-content: flex-end; gap: 16px; margin-top: 20px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty p { font-size: 20px; color: var(--c-text-muted); margin-bottom: 24px; }

.btn { display: inline-block; padding: 10px 24px; border: none; border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500; cursor: pointer; transition: background .2s; text-decoration: none; text-align: center; }
.btn-primary { background: var(--c-cta); color: #fff; }
.btn-primary:hover { background: var(--c-cta-hover); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--c-border); color: var(--c-text); }
.btn-outline:hover { background: var(--c-muted); color: var(--c-heading); }
.btn-sm { padding: 6px 14px; font-size: 12px; border-radius: 6px; background: var(--c-muted); border: 1px solid var(--c-border); cursor: pointer; }
.btn-sm:hover { background: #E2E8F0; }
.btn-danger { background: var(--c-destructive); color: #fff; border-color: var(--c-destructive); }
.btn-danger:hover { background: #B91C1C; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 30px; }
.page-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--c-border); border-radius: 8px; color: var(--c-text); font-size: 14px; transition: background .2s, color .2s; }
.page-link:hover, .page-link.active { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }

/* Checkout */
.checkout-page { padding: 24px 0 60px; }
.checkout-form { background: var(--c-card); border: 1px solid var(--c-border); border-radius: 8px; padding: 30px; }
.checkout-form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--c-text); margin-bottom: 6px; }
.form-group .input { width: 100%; padding: 10px 14px; border: 1px solid var(--c-border); border-radius: 8px; font-size: 14px; outline: none; transition: border-color .2s; }
.form-group .input:focus { border-color: var(--c-accent); }
.form-group textarea.input { resize: vertical; min-height: 80px; }

.checkout-summary { background: var(--c-muted); padding: 20px; border-radius: 8px; }
.checkout-summary h3 { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 600; color: var(--c-heading); margin-bottom: 16px; }
.checkout-table { width: 100%; }
.checkout-table th { text-align: left; font-size: 13px; color: var(--c-text-muted); padding: 8px 0; border-bottom: 1px solid var(--c-border); }
.checkout-table td { padding: 10px 0; font-size: 14px; border-bottom: 1px solid var(--c-border); }
.checkout-total { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 16px; border-top: 2px solid var(--c-accent); }
.checkout-total-label { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 600; color: var(--c-heading); }
.checkout-total-value { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; color: var(--c-heading); }
.checkout-submit { width: 100%; margin-top: 20px; padding: 14px; background: var(--c-cta); color: #fff; border: none; border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; cursor: pointer; transition: background .2s; }
.checkout-submit:hover { background: var(--c-cta-hover); }

/* Order Success */
.order-success { text-align: center; padding: 80px 20px; }
.order-success h1 { font-family: 'Poppins', sans-serif; font-size: 32px; color: var(--c-accent); margin-bottom: 16px; }
.order-success p { font-size: 18px; color: var(--c-text-muted); margin-bottom: 8px; }
.order-success .order-num { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; color: var(--c-heading); }
.order-success .hero-btn { margin-top: 30px; }

/* Admin */
.admin-container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 16px; border-bottom: 2px solid var(--c-border); }
.admin-header h1 { font-family: 'Poppins', sans-serif; font-size: 24px; color: var(--c-heading); }
.admin-nav { display: flex; gap: 12px; }
.admin-nav a { padding: 8px 16px; background: var(--c-fg); color: #fff; border-radius: 6px; font-size: 13px; }
.admin-nav a:hover { background: var(--c-accent); color: #fff; }

.admin-table { width: 100%; background: var(--c-card); border: 1px solid var(--c-border); border-radius: 8px; overflow: hidden; }
.admin-table th { background: var(--c-fg); color: #fff; padding: 10px 14px; font-size: 13px; text-align: left; }
.admin-table td { padding: 10px 14px; border-top: 1px solid var(--c-border); font-size: 13px; }
.admin-table tr:hover td { background: var(--c-muted); }

.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge-new { background: #3B82F6; color: #fff; }
.badge-processing { background: #F59E0B; color: #fff; }
.badge-shipped { background: #8B5CF6; color: #fff; }
.badge-completed { background: var(--c-accent); color: #fff; }
.badge-cancelled { background: var(--c-destructive); color: #fff; }

.admin-form { display: inline; }
.admin-select { padding: 4px 8px; border: 1px solid var(--c-border); border-radius: 4px; font-size: 12px; }
.admin-btn { padding: 4px 12px; border: none; border-radius: 4px; font-size: 12px; cursor: pointer; }
.admin-btn-danger { background: var(--c-destructive); color: #fff; }
.admin-btn-danger:hover { background: #B91C1C; }
.admin-btn-primary { background: #3B82F6; color: #fff; }
.admin-btn-primary:hover { background: #2563EB; }
.admin-btn-success { background: var(--c-accent); color: #fff; }
.admin-btn-success:hover { background: #047857; }

.admin-add-form { background: var(--c-card); border: 1px solid var(--c-border); border-radius: 8px; padding: 20px; margin-top: 30px; }
.admin-add-form h3 { font-family: 'Poppins', sans-serif; font-size: 18px; color: var(--c-heading); margin-bottom: 16px; }
.admin-add-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.admin-add-form .input { width: 100%; padding: 8px 12px; border: 1px solid var(--c-border); border-radius: 6px; font-size: 13px; outline: none; }
.admin-add-form .input:focus { border-color: var(--c-accent); }

/* Footer */
#footer { background: var(--c-nav-bg); color: #94A3B8; padding: 48px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.footer-col p { font-size: 13px; margin-bottom: 8px; }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 4px 0; }
.footer-col ul li a { color: #94A3B8; font-size: 13px; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-col a { color: #94A3B8; }
.footer-col a:hover { color: #fff; }
.footer-bottom { text-align: center; padding: 20px 0; font-size: 13px; color: #64748B; }

/* Modal */
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.4); z-index: 9999; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal { background: var(--c-card); border-radius: 12px; max-width: 500px; width: 90%; max-height: 80vh; overflow: auto; }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px 0; }
.modal-header h3 { font-family: 'Poppins', sans-serif; font-size: 20px; color: var(--c-heading); }
.modal-close { background: none; border: none; font-size: 28px; color: var(--c-text-muted); cursor: pointer; }
.modal-close:hover { color: var(--c-heading); }
.modal-body { padding: 20px 24px; }
.modal-footer { padding: 16px 24px 20px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--c-border); }
.cart-empty-msg { text-align: center; color: var(--c-text-muted); padding: 20px 0; font-size: 16px; }
.modal-total { font-size: 16px; color: var(--c-text); }
.modal-total strong { color: var(--c-heading); }

.cart-modal-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--c-border-subtle); }
.cart-modal-item:last-child { border-bottom: none; }
.cart-modal-img { width: 50px; height: 50px; object-fit: contain; border-radius: 6px; background: var(--c-muted); }
.cart-modal-info { flex: 1; min-width: 0; }
.cart-modal-info a { font-size: 14px; color: var(--c-heading); font-weight: 600; text-decoration: none; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-modal-info a:hover { color: var(--c-accent); }
.cart-modal-price { font-size: 13px; color: var(--c-text-muted); }
.cart-modal-qty, .cart-qty-controls { display: flex; align-items: center; gap: 4px; }
.qty-btn { width: 30px; height: 30px; border: 1px solid var(--c-border); border-radius: 6px; background: var(--c-card); color: var(--c-text); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.qty-btn:hover { background: var(--c-muted); }
.qty-input-modal { width: 44px; height: 30px; text-align: center; border: 1px solid var(--c-border); border-radius: 6px; font-size: 14px; outline: none; }
.qty-input-modal:focus { border-color: var(--c-accent); }
.cart-modal-subtotal { font-size: 15px; font-weight: 600; color: var(--c-heading); min-width: 70px; text-align: right; }
.cart-modal-remove { background: none; border: none; color: var(--c-text-muted); font-size: 16px; cursor: pointer; padding: 4px; transition: color .15s; }
.cart-modal-remove:hover { color: var(--c-destructive); }

/* Responsive */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-showcase { grid-template-columns: repeat(2, 1fr); }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .header-contacts { display: none; }
  .mega-menu { min-width: auto; }
  .catalog-layout { grid-template-columns: 200px 1fr; }
}

@media (max-width: 992px) {
  .col-md-3, .col-md-9 { width: 100%; }
  .sidebar { padding-top: 0; }
  .sidebar-categories { display: flex; flex-wrap: wrap; }
  .cat-widget { flex: 1 1 50%; border: none; border-bottom: 1px solid #e5e5e5; }
  .cat-widget:nth-child(odd) { border-right: 1px solid #e5e5e5; }
}

@media (max-width: 768px) {
  .topbar-right { display: none; }
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .header-contacts { display: none; }
  .nav-menu { display: none; flex-direction: column; width: 100%; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: block; }
  .has-mega { position: static; }
  .mega-menu { position: static; box-shadow: none; border: none; border-radius: 0; padding: 10px 20px; flex-direction: column; min-width: auto; }
  .nav-search { display: none; }
  .slide-title { font-size: 24px; }
  .slide-desc { font-size: 14px; }
  .slide-btn { padding: 10px 24px; font-size: 14px; }
  .slide-content { padding-left: 16px; }
  .bannercontainer { max-height: 250px; }
  .carousel-item { flex: 0 0 180px; }
  .features-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-showcase { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 24px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .checkout-form-layout { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-layout { grid-template-columns: 1fr; padding: 16px; gap: 16px; }
  .product-detail-image { min-height: 200px; }
  .product-title { font-size: 22px; }
  .product-add-form { flex-direction: column; align-items: stretch; }
  .qty-control { margin-bottom: 12px; }
  .cart-page .container { overflow-x: auto; }
  .cart-table { min-width: 560px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.blog-card { border: 1px solid var(--c-border); border-radius: 8px; overflow: hidden; transition: box-shadow .2s; background: var(--c-card); }
.blog-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.blog-card-image { display: block; height: 200px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 16px; }
.blog-card-body h2 { margin: 0 0 8px; font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; }
.blog-card-body h2 a { color: var(--c-heading); text-decoration: none; }
.blog-card-body h2 a:hover { color: var(--c-accent); }
.blog-card-date { font-size: 13px; color: var(--c-text-muted); margin-bottom: 8px; }
.blog-card-excerpt { font-size: 14px; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 12px; }
.blog-read-more { color: var(--c-accent); text-decoration: none; font-weight: 600; font-size: 14px; }
.blog-read-more:hover { text-decoration: underline; }

.blog-post { max-width: 800px; margin: 0 auto; padding: 32px 0; }
.blog-post-image { margin-bottom: 24px; border-radius: 8px; overflow: hidden; }
.blog-post-image img { width: 100%; display: block; }
.blog-post-title { font-family: 'Poppins', sans-serif; font-size: 30px; font-weight: 700; margin: 0 0 8px; color: var(--c-heading); }
.blog-post-date { font-size: 14px; color: var(--c-text-muted); margin-bottom: 24px; }
.blog-post-content { font-size: 16px; line-height: 1.8; color: var(--c-text); }
.blog-post-content h2 { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 600; color: var(--c-heading); margin: 28px 0 14px; }
.blog-post-content h2:first-child { margin-top: 0; }
.blog-post-content ul, .blog-post-content ol { margin: 12px 0; padding-left: 24px; }
.blog-post-content li { margin-bottom: 6px; line-height: 1.7; }
.blog-post-content p { margin-bottom: 14px; }

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .topbar-left { font-size: 12px; }
  .product-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .topbar { font-size: 11px; }
  .header-logo .logo-slogan { font-size: 10px; }
  .breadcrumbs { font-size: 12px; white-space: nowrap; overflow-x: auto; }
  .slide-title { font-size: 20px; }
  .tabs-nav { flex-wrap: nowrap; }
}

/* ===== Oil page (kak-otlichit-poddelku) ===== */
.oil-page {
  --op-bg: #F4F4F6;
  --op-panel: #FFFFFF;
  --op-ink: #1A1D24;
  --op-muted: #6B7280;
  --op-line: #D6D8E0;
  --op-accent: #DC2626;
  --op-accent-soft: #FEE2E2;
  --op-data: #1E40AF;
  --op-data-soft: #DBEAFE;
  background: var(--op-bg);
  color: var(--op-ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding: 24px 0 40px;
}
.oil-page img, .oil-page svg { display: block; max-width: 100%; }
.oil-page strong { font-weight: 800; color: var(--op-ink); }
.oil-page mark {
  background: #FFE580; color: var(--op-ink); padding: 0 4px; border-radius: 3px;
  -webkit-box-decoration-break: clone; box-decoration-break: clone; font-weight: 600;
}
.op-wrap { max-width: 680px; margin: 0 auto; padding: 0 22px; }
.op-hero { position: relative; padding: 40px 0 6px; overflow: hidden; }
.op-hero-blob {
  position: absolute; top: -120px; right: -140px; width: 340px; height: 340px;
  background: radial-gradient(circle at 30% 30%, var(--op-accent-soft), transparent 70%);
  filter: blur(6px); z-index: 0; pointer-events: none;
}
.op-hero > *:not(.op-hero-blob) { position: relative; z-index: 1; }
.op-eyebrow {
  font-family: 'SFMono-Regular', Consolas, monospace; font-size: 11.5px; letter-spacing: 0.08em;
  color: var(--op-data); text-transform: uppercase; margin-bottom: 16px;
}
.oil-page h1 {
  font-family: 'Arial Black', Impact, sans-serif; font-weight: 700;
  font-size: clamp(28px, 7vw, 40px); line-height: 1.16; margin: 0 0 18px; letter-spacing: -0.01em;
}
.op-sub { font-size: 17px; color: var(--op-muted); margin-bottom: 26px; max-width: 54ch; }
.op-subhead {
  font-family: 'Arial Black', Impact, sans-serif; font-weight: 600; font-size: 19px;
  color: var(--op-accent); margin-bottom: 14px;
}
.op-check-strip {
  background: var(--op-panel); border: 1px solid var(--op-line); border-radius: 14px;
  padding: 20px 20px 18px; margin: 24px 0 30px;
}
.op-check-strip-title {
  font-family: 'Arial Black', Impact, sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 12px;
}
.op-check-strip-list { list-style: none; margin: 0; padding: 0; }
.op-check-strip-list li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--op-muted);
  padding: 8px 0; border-top: 1px solid var(--op-line);
}
.op-check-strip-list li:first-child { border-top: none; padding-top: 0; }
.op-check-strip-mark { color: var(--op-data); font-weight: 700; flex-shrink: 0; font-family: 'SFMono-Regular', Consolas, monospace; }
.op-teaser-strip {
  background: var(--op-ink); color: #F2F1EC; border-radius: 14px; padding: 22px 22px 20px; margin: 28px 0;
}
.op-teaser-strip-title {
  font-family: 'Arial Black', Impact, sans-serif; font-weight: 700; font-size: 16px;
  margin-bottom: 10px; color: #fff;
}
.op-teaser-strip p { font-size: 14.5px; color: #D8D6CE; margin-bottom: 0; }
.op-scroll-cue { text-align: center; font-size: 13px; color: var(--op-muted); margin-top: 8px; font-family: 'SFMono-Regular', Consolas, monospace; }
.op-illustration { margin: 36px 0; text-align: center; }
.op-illustration-caption {
  font-family: 'SFMono-Regular', Consolas, monospace; font-size: 11px; color: var(--op-muted);
  text-transform: uppercase; letter-spacing: 0.05em; margin-top: 10px;
}
.oil-page section { padding: 36px 0; border-bottom: 1px solid var(--op-line); }
.oil-page section:last-of-type { border-bottom: none; }
.oil-page h2 {
  font-family: 'Arial Black', Impact, sans-serif; font-weight: 700;
  font-size: clamp(21px, 5vw, 26px); line-height: 1.2; margin: 0 0 16px; letter-spacing: -0.01em;
}
.oil-page p { margin: 0 0 16px; font-size: 16px; }
.op-lede { font-size: 18px; }
.op-story-card { background: var(--op-panel); border: 1px solid var(--op-line); border-radius: 14px; padding: 22px; margin-bottom: 20px; }
.op-story-tag {
  display: inline-block; font-family: 'SFMono-Regular', Consolas, monospace; font-size: 10.5px;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--op-data);
  background: var(--op-data-soft); padding: 4px 10px; border-radius: 20px; margin-bottom: 12px;
}
.op-story-card h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800; font-size: 18px; margin: 0 0 10px;
}
.op-story-result {
  display: flex; align-items: baseline; gap: 8px; margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--op-line);
}
.op-story-result-num { font-family: 'Arial Black', Impact, sans-serif; font-weight: 700; font-size: 22px; color: var(--op-accent); }
.op-story-result-lbl { font-size: 13px; color: var(--op-muted); }
.op-story-ba {
  display: flex; align-items: center; gap: 12px; margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--op-line);
}
.op-ba-item { flex: 1; text-align: center; display: flex; flex-direction: column; gap: 2px; }
.op-ba-label { font-family: 'SFMono-Regular', Consolas, monospace; font-size: 10px; text-transform: uppercase; color: var(--op-muted); letter-spacing: 0.04em; }
.op-ba-num { font-family: 'Arial Black', Impact, sans-serif; font-weight: 700; font-size: 22px; color: var(--op-muted); }
.op-ba-after .op-ba-num { color: var(--op-accent); }
.op-ba-unit { font-size: 11px; color: var(--op-muted); }
.op-ba-arrow { font-size: 18px; color: var(--op-line); flex-shrink: 0; }
.op-story-note {
  font-size: 11px; color: var(--op-accent); margin-top: 10px; margin-bottom: 0;
  font-family: 'SFMono-Regular', Consolas, monospace; letter-spacing: 0.01em;
  line-height: 1.5; font-weight: 600;
}
.op-metaphor-box { background: var(--op-panel); border: 1px solid var(--op-line); border-radius: 14px; padding: 24px; margin: 20px 0; }
.op-metaphor-box p:last-child { margin-bottom: 0; }
.op-brand-block {
  background: var(--op-panel); border: 1px solid var(--op-line); border-radius: 12px;
  padding: 16px 20px; margin: 12px 0; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px;
}
.op-brand-block .op-tag {
  font-family: 'SFMono-Regular', Consolas, monospace; font-size: 10.5px; color: var(--op-data);
  background: var(--op-data-soft); padding: 3px 10px; border-radius: 20px; text-transform: uppercase;
}
.op-brand-block span { font-size: 14px; font-weight: 600; }
.op-pulse-step { display: flex; gap: 14px; margin-bottom: 18px; }
.op-pulse-num { font-family: 'Arial Black', Impact, sans-serif; font-weight: 800; font-size: 22px; color: var(--op-data); min-width: 34px; }
.op-pulse-step h4 { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-weight: 700; font-size: 15px; margin: 0 0 6px; }
.op-pulse-step p { font-size: 14px; color: var(--op-muted); margin-bottom: 0; }
.op-testimonial { background: var(--op-ink); color: #F2F1EC; border-radius: 14px; padding: 24px 22px; margin-bottom: 16px; }
.op-testimonial p { color: #E7E5DE; font-size: 15px; margin-bottom: 12px; }
.op-testimonial p:last-of-type { margin-bottom: 0; }
.op-testimonial strong { color: #FFFFFF; background: none; }
.op-testimonial-mark { font-family: 'Arial Black', Impact, sans-serif; font-size: 34px; color: var(--op-accent); line-height: 0.5; display: block; margin-bottom: 10px; }
.op-checklist { list-style: none; margin: 0; padding: 0; }
.op-checklist li { display: flex; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--op-line); font-size: 15px; }
.op-checklist li:last-child { border-bottom: none; }
.op-check-mark { font-family: 'SFMono-Regular', Consolas, monospace; color: var(--op-data); flex-shrink: 0; font-weight: 600; }
.op-offer-card { background: var(--op-panel); border: 1px solid var(--op-line); border-radius: 16px; padding: 26px; margin: 20px 0; }
.op-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.op-price-old { font-family: 'SFMono-Regular', Consolas, monospace; font-size: 16px; color: var(--op-muted); text-decoration: line-through; }
.op-price-new { font-family: 'Arial Black', Impact, sans-serif; font-weight: 800; font-size: 34px; color: var(--op-accent); }
.op-price-note { font-size: 13px; color: var(--op-muted); margin-bottom: 20px; }
.op-bonus-tag {
  display: inline-block; font-family: 'SFMono-Regular', Consolas, monospace; font-size: 10.5px;
  background: var(--op-data-soft); color: var(--op-data); padding: 4px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 14px;
}
.op-steps { counter-reset: step; list-style: none; padding: 0; margin: 0 0 20px; }
.op-steps li { counter-increment: step; position: relative; padding-left: 34px; margin-bottom: 12px; font-size: 15px; }
.op-steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0; width: 24px; height: 24px;
  background: var(--op-ink); color: var(--op-bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'SFMono-Regular', Consolas, monospace; font-size: 12px; font-weight: 600;
}
.op-cta {
  display: block; width: 100%; text-align: center; background: var(--op-accent); color: #fff !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-weight: 700;
  font-size: 16px; padding: 16px 20px; border-radius: 10px; text-decoration: none; border: none;
  cursor: pointer; box-shadow: 0 3px 0 rgba(0,0,0,0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.op-cta:hover { color: #fff !important; text-decoration: none; }
.op-cta:active { transform: translateY(3px); box-shadow: none; }
.op-cta-note { text-align: center; font-size: 12px; color: var(--op-muted); margin-top: 8px; }
.op-new-seller-box { background: var(--op-data-soft); border-radius: 14px; padding: 20px 20px 18px; margin-top: 16px; }
.op-new-seller-title { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 10px; color: var(--op-ink); }
.op-new-seller-box p { font-size: 14.5px; color: var(--op-ink); margin-bottom: 0; }
.op-ps { font-size: 15px; color: var(--op-muted); padding-top: 8px; }
.op-ps-label { font-family: 'SFMono-Regular', Consolas, monospace; font-size: 11px; text-transform: uppercase; color: var(--op-data); letter-spacing: 0.06em; display: block; margin-bottom: 10px; }
.op-tg-block { background: var(--op-panel); border: 1px solid var(--op-line); border-radius: 16px; padding: 28px 24px; text-align: center; }
.op-tg-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--op-data-soft); color: var(--op-data);
  display: flex; align-items: center; justify-content: center; font-size: 20px; margin: 0 auto 14px;
}
.op-tg-block p { font-size: 14.5px; color: var(--op-muted); max-width: 44ch; margin: 0 auto 20px; }
.op-cta-dark { background: var(--op-ink); box-shadow: 0 3px 0 rgba(0,0,0,0.25); }
@media (min-width: 760px) {
  .op-wrap { max-width: 760px; padding: 0 32px; }
  .op-check-strip-list li { font-size: 15px; }
  .oil-page h1 { font-size: clamp(32px, 4.2vw, 44px); }
  .op-story-card { padding: 26px; }
  .oil-page section { padding: 44px 0; }
}
@media (min-width: 1100px) {
  .op-wrap { max-width: 840px; }
  .oil-page { font-size: 16.5px; }
}

/* SEO text block */
.seo-text { padding: 50px 0 60px; }
.seo-text .container { max-width: 900px; }
.seo-text h2 { font-family: 'Poppins', sans-serif; text-align: center; font-size: 26px; font-weight: 700; color: var(--c-heading); margin-bottom: 24px; }
.seo-text p { font-size: 15px; line-height: 1.75; color: var(--c-text); margin-bottom: 16px; }

/* Delivery city pages */
.delivery-page { max-width: 900px; padding: 30px 15px 60px; }
.delivery-page .breadcrumbs { font-size: 13px; color: var(--c-text-muted); margin-bottom: 24px; }
.delivery-page .breadcrumbs a { color: var(--c-accent); text-decoration: none; }
.delivery-hero { background: linear-gradient(135deg, var(--c-fg), var(--c-nav-bg)); color: #fff; border-radius: 8px; padding: 34px 30px; margin-bottom: 28px; }
.delivery-hero h1 { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 700; margin: 0 0 12px; line-height: 1.3; }
.delivery-hero-sub { font-size: 15px; line-height: 1.7; color: #CBD5E1; margin: 0; }
.delivery-page .delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 28px; }
.delivery-page .delivery-item { padding: 22px; border: 1px solid var(--c-border); border-radius: 8px; background: var(--c-card); }
.delivery-page .delivery-item h2 { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 600; color: var(--c-heading); margin: 0 0 12px; }
.delivery-page .delivery-item h3 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; color: var(--c-heading); margin: 0 0 10px; }
.delivery-page .delivery-item p { font-size: 14px; line-height: 1.7; color: var(--c-text); margin: 0 0 12px; }
.delivery-page .delivery-item p:last-child { margin-bottom: 0; }
.delivery-item-wide { grid-column: 1 / -1; }
.delivery-cta { background: var(--c-muted); border-radius: 8px; padding: 30px; text-align: center; }
.delivery-cta h2 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 600; color: var(--c-heading); margin: 0 0 10px; }
.delivery-cta p { font-size: 14px; color: var(--c-text-muted); margin: 0 0 18px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.slide-btn-alt { background: var(--c-fg); }
.slide-btn-alt:hover { background: var(--c-nav-hover); }
.delivery-geo-link { text-align: center; font-size: 14px; margin: 0 0 18px; }
.delivery-geo-link a { color: var(--c-accent); font-weight: 700; text-decoration: none; border-bottom: 1px dashed var(--c-accent); }
.delivery-geo-link a:hover { color: var(--c-accent-hover); border-color: var(--c-accent-hover); }
.footer-cities { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0 8px; }
.footer-cities h4 { color: #fff; font-size: 13px; margin: 0 0 10px; text-transform: uppercase; letter-spacing: .5px; }
.footer-cities-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 4px 18px; }
.footer-cities-list a { color: rgba(255,255,255,0.5); font-size: 12px; text-decoration: none; }
.footer-cities-list a:hover { color: #fff; }
@media (max-width: 640px) {
  .delivery-page .delivery-grid { grid-template-columns: 1fr; }
  .delivery-hero { padding: 26px 20px; }
  .delivery-hero h1 { font-size: 21px; }
}
