/*
Theme Name: Goldchicken Shop
Theme URI: https://goldchicken.ru
Author: VESHTECH
Text Domain: goldchicken-shop
Version: 1.0.0
*/

:root{
  --white:#fff;--black:#111;--text:#212529;--gray:#6C757D;--muted:#f4f6f8;
  --green:#2D7738;--green-2:#3f8c4b;--green-light:#4CAF50;--red:#D32F2F;--red-light:#FF5252
}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:'Inter',-apple-system,system-ui,sans-serif;color:var(--text);background:#fff;line-height:1.5}
.container{max-width:1400px;margin:0 auto;padding:0 30px}
img{max-width:100%;display:block}

/* header */
.site-header{position:sticky;top:0;z-index:100;background:#fff;box-shadow:0 4px 20px rgba(0,0,0,.06)}
.site-header .bar{display:flex;align-items:center;justify-content:space-between;padding:18px 0}
.brand{display:flex;align-items:center;gap:14px;text-decoration:none}
.brand-title{font-weight:900;font-size:24px;color:var(--green)}
.main-nav{display:flex;gap:28px}
.main-nav a{color:var(--text);text-decoration:none;font-weight:600}
.main-nav a:hover{color:var(--green)}
.call-btn{background:var(--green);color:#fff;padding:10px 18px;border-radius:999px;text-decoration:none;font-weight:800}
.call-btn:hover{background:var(--green-light)}

/* hero */
.hero{background:linear-gradient(135deg,#E8F5E9 0%,#fff 100%);padding:80px 0}
.hero h1{font-size:64px;line-height:1;font-weight:900;color:var(--green);letter-spacing:-1px;margin:0 0 16px}
.hero p{font-size:22px;color:var(--gray);max-width:720px}

/* footer */
.site-footer{background:linear-gradient(135deg,#1a1d20,#0f1113);color:#fff;margin-top:80px}
.site-footer .wrap{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;padding:60px 0}
.site-footer h3{color:var(--green-light);font-size:18px;font-weight:900;text-transform:uppercase;margin-bottom:12px}
.site-footer a{color:#fff;text-decoration:none}
.site-footer a:hover{color:var(--green-light)}
.site-footer .bottom{border-top:1px solid rgba(255,255,255,.1);padding:18px 0;text-align:center;opacity:.8}

.compliance-banner{background:#fff;padding:30px 0 10px;border-top:1px solid #f1f3f5}
.compliance-banner .container{display:flex;justify-content:center}
.compliance-banner img{max-width:100%;height:auto;border-radius:18px;box-shadow:0 10px 28px rgba(0,0,0,.12)}

/* shop grid */
.woocommerce ul.products{clear:both;display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:28px;align-items:stretch}
.woocommerce ul.products li.product{list-style:none;float:none!important;width:auto!important;margin:0!important;background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,.08);text-align:center;transition:.25s;display:flex;flex-direction:column;height:100%}
.woocommerce ul.products li.product:hover{transform:translateY(-6px);box-shadow:0 14px 36px rgba(0,0,0,.12)}
.woocommerce ul.products li.product img{height:320px;object-fit:contain;width:100%;background:#fff;padding:10px}
.woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:22px;font-weight:900;padding:16px 16px 8px;margin:0;color:var(--text)}
.woocommerce ul.products li.product .price{display:block;font-size:28px;font-weight:900;color:var(--green);padding:0 16px 18px;margin:0}
.woocommerce ul.products li.product .button{background:var(--green);color:#fff;border-radius:999px;padding:12px 20px;display:block;font-weight:800;text-decoration:none;width:calc(100% - 32px);margin:0 16px 18px}
.woocommerce ul.products li.product .button:hover{background:var(--green-light)}

/* single product */
.woocommerce div.product{display:grid;grid-template-columns:480px 1fr;gap:18px;background:#fff;border-radius:18px;box-shadow:0 10px 28px rgba(0,0,0,.08);padding:12px 20px}
.woocommerce div.product div.images{width:100%;float:none;margin:0}
.woocommerce div.product .woocommerce-product-gallery img{height:340px;object-fit:contain;border-radius:12px;background:#fff;padding:10px}
.woocommerce div.product .product_title{font-size:40px;font-weight:900;margin:0 0 4px}
.woocommerce div.product .price{font-size:48px;color:var(--green);font-weight:900;margin:0 0 10px}
.woocommerce div.product .woocommerce-product-details__short-description{color:var(--gray);margin-bottom:8px}
.woocommerce div.product form.cart{display:flex;gap:16px;align-items:center}
.woocommerce div.product form.cart .quantity input{width:90px;height:56px;font-size:20px;text-align:center;border:3px solid var(--green);border-radius:12px}
.woocommerce div.product form.cart .single_add_to_cart_button{background:var(--green);color:#fff;border-radius:999px;padding:16px 26px;font-weight:900;text-transform:uppercase}
.woocommerce div.product form.cart .single_add_to_cart_button:hover{background:var(--green-light)}

/* cart */
.woocommerce-cart .entry-title,.woocommerce-cart h1{font-size:54px;font-weight:900;color:var(--green);text-align:center;margin:0 0 22px}
.woocommerce table.shop_table{width:100%;background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 10px 28px rgba(0,0,0,.08);border-collapse:separate;border-spacing:0}
.woocommerce table.shop_table th{background:linear-gradient(135deg,var(--green),var(--green-light));color:#fff;text-transform:uppercase;letter-spacing:.5px;padding:16px}
.woocommerce table.shop_table td{padding:18px;border-bottom:1px solid #f1f3f5;vertical-align:middle}
.woocommerce table.shop_table img{width:110px;height:110px;object-fit:cover;border-radius:12px}
.woocommerce table.shop_table .product-name a{color:var(--text);font-weight:900;text-decoration:none}
.woocommerce table.shop_table .product-subtotal,.woocommerce table.shop_table .product-price{color:var(--green);font-weight:900}
.woocommerce .cart-collaterals{display:flex;justify-content:flex-end;margin-top:24px}
.woocommerce .cart-collaterals .cart_totals{background:#fff;border:3px solid var(--green);border-radius:16px;padding:28px;min-width:420px;box-shadow:0 10px 28px rgba(0,0,0,.08)}
.woocommerce .cart-collaterals .wc-proceed-to-checkout a{display:block;background:linear-gradient(135deg,var(--green),var(--green-light));color:#fff;text-decoration:none;border-radius:999px;padding:18px 22px;text-align:center;font-weight:900;text-transform:uppercase}

/* checkout */
.woocommerce-checkout .col2-set{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select{width:100%;padding:14px 16px;border:2px solid #e6e9ec;border-radius:12px;background:#fff}
.woocommerce #order_review{background:#fff;border:3px solid var(--green);border-radius:16px;padding:24px;box-shadow:0 10px 28px rgba(0,0,0,.08)}
.woocommerce #payment .place-order .button{background:linear-gradient(135deg,var(--green),var(--green-light));color:#fff;border:none;border-radius:999px;padding:18px 22px;font-weight:900;text-transform:uppercase}

/* responsive */
@media(max-width:1200px){.woocommerce ul.products{grid-template-columns:repeat(2,1fr)}.woocommerce div.product{grid-template-columns:1fr}}
@media(max-width:768px){.main-nav{display:none}.hero{padding:48px 0}.hero h1{font-size:40px}.site-footer .wrap{grid-template-columns:1fr}.woocommerce ul.products{grid-template-columns:1fr}.woocommerce table.shop_table img{width:80px;height:80px}.woocommerce-checkout .col2-set{grid-template-columns:1fr}}

/* ===== Доп. стили для совпадения с текущей главной ===== */
/* Header из текущей темы */
.header{background:#fff;padding:25px 0;position:sticky;top:0;z-index:100;box-shadow:0 4px 20px rgba(0,0,0,.1)}
.header .container{display:flex;align-items:center;justify-content:space-between}
.logo{display:flex;align-items:center;gap:20px}
.logo img{width:80px;height:80px}
.logo-text{display:flex;flex-direction:column}
.logo-title{font-size:28px;font-weight:900;color:var(--green);letter-spacing:-.5px}
.logo-subtitle{font-size:14px;color:var(--gray)}
.nav{display:flex;gap:40px}
.nav a{font-size:18px;font-weight:600;color:var(--text);text-decoration:none;transition:color .3s}
.nav a:hover{color:var(--green)}
.header-actions{display:flex;align-items:center;gap:14px}
.cart-btn{position:relative;color:var(--text);text-decoration:none;font-weight:800}
.cart-count{position:absolute;top:-8px;right:-12px;background:var(--green);color:#fff;border-radius:999px;padding:1px 7px;font-size:12px}
.menu-toggle{display:none}

/* Hero детали из текущей темы */
.hero{min-height:90vh;background:linear-gradient(135deg,#E8F5E9 0%,#fff 100%);padding:80px 0;position:relative;overflow:hidden}
.hero-bg{position:absolute;right:10%;top:50%;transform:translateY(-50%);opacity:.1;z-index:0}
.hero-logo-big{width:500px;height:500px;animation:float 6s ease-in-out infinite}
@keyframes float{0%,100%{transform:translateY(-50px)}50%{transform:translateY(-80px)}}
.hero-content{position:relative;z-index:1;max-width:800px}
.hero-tag{display:inline-block;background:var(--green);color:#fff;padding:12px 30px;border-radius:30px;font-size:18px;font-weight:700;margin-bottom:30px}
.hero h1{font-size:96px;font-weight:900;color:var(--green);line-height:1;margin-bottom:30px;letter-spacing:-2px}
.hero-subtitle{font-size:32px;color:var(--gray);margin-bottom:50px;font-weight:400}
.hero-stats{display:flex;gap:60px;margin-bottom:50px}
.stat{text-align:center}
.stat-number{font-size:56px;font-weight:900;color:var(--green);line-height:1}
.stat-text{font-size:20px;color:var(--gray);text-transform:uppercase;letter-spacing:1px}
.hero-cta{display:flex;align-items:center;gap:32px;margin-top:32px}
.hero-phone{display:inline-block;background:var(--red);color:#fff;padding:25px 50px;border-radius:50px;font-size:32px;font-weight:900;text-decoration:none;transition:.3s;box-shadow:0 10px 30px rgba(211,47,47,.3)}
.hero-phone:hover{background:var(--red-light);transform:translateY(-5px);box-shadow:0 15px 40px rgba(211,47,47,.4)}
.hero-halal{display:flex;align-items:center;justify-content:center;flex-shrink:0}
.hero-halal img{height:200px;width:auto;display:block}

/* Products блоки из текущей темы */
.products{padding:100px 0;background:#fff}
.section-title{font-size:64px;font-weight:900;color:var(--green);text-align:center;margin-bottom:80px;letter-spacing:-1px}
.product-big{display:grid;grid-template-columns:1fr 1fr;gap:60px;margin-bottom:60px;background:linear-gradient(135deg,#f8f9fa 0%,#fff 100%);padding:40px;border-radius:30px}
.product-image-large{position:relative;border-radius:20px;overflow:hidden;box-shadow:0 10px 40px rgba(0,0,0,.15)}
.product-image-large img{width:100%;height:500px;object-fit:cover;transition:transform .5s}
.product-image-large:hover img{transform:scale(1.05)}
.product-badge-hit{position:absolute;top:20px;right:20px;background:var(--red);color:#fff;padding:15px 30px;border-radius:50px;font-size:20px;font-weight:900;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.1)}}
.product-info-large h3{font-size:42px;font-weight:900;color:var(--text);margin-bottom:12px}
.products .product-info-large h3 a{color:inherit;text-decoration:none}
.products .product-info-large h3 a:hover{color:var(--green)}
.products .product-info-large h3 a:visited{color:inherit}
.product-price-large{font-size:32px;font-weight:900;color:var(--green);margin-bottom:10px}
.product-price-large .gc-price-main{display:block;font-size:26px;color:var(--green)}
.product-price-large .gc-price-note{display:block;font-size:20px;color:#388e3c;margin-top:4px}
.product-info-large p{font-size:20px;color:var(--gray);margin-bottom:20px}
.product-info-large .product-lead{font-size:18px;color:var(--gray);margin-bottom:18px}
.product-features{list-style:none}
.product-features li{font-size:24px;padding:15px 0;color:var(--text);font-weight:600}
.products-grid-visual{display:grid;grid-template-columns:repeat(4,1fr);gap:30px}
.product-visual-card{position:relative;border-radius:20px;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,.1);cursor:pointer}
.product-visual-card img{width:100%;height:300px;object-fit:cover;transition:transform .5s}
.product-visual-card:hover img{transform:scale(1.1)}
.product-overlay{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(to top,rgba(0,0,0,.9),transparent);padding:30px 20px;transform:translateY(0);transition:transform .3s}
.product-visual-card:hover .product-overlay{transform:translateY(-10px)}
.product-overlay h4{font-size:24px;font-weight:900;color:#fff;margin-bottom:10px}
.price-big{font-size:32px;font-weight:900;color:var(--green-light)}

/* Price и Contacts из текущей темы */
section.price{padding:100px 0;background:linear-gradient(135deg,#f8f9fa 0%,#e8f5e9 100%)}
.price-highlight{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;margin-bottom:60px}
.price-col{background:#fff;padding:40px;border-radius:20px;box-shadow:0 10px 30px rgba(0,0,0,.1)}
.highlight-col{background:linear-gradient(135deg,var(--green) 0%,var(--green-light) 100%);transform:scale(1.05)}
.price-category{font-size:28px;font-weight:900;color:var(--green);margin-bottom:30px;padding-bottom:20px;border-bottom:3px solid var(--green)}
.highlight-col .price-category{color:#fff;border-color:#fff}
.price-item{display:flex;justify-content:space-between;align-items:center;padding:20px 0;border-bottom:1px solid #eee}
.highlight-col .price-item{border-color:rgba(255,255,255,.3)}
.item-name{font-size:22px;font-weight:600;color:var(--text)}
.highlight-col .item-name{color:#fff}
.item-price{font-size:32px;font-weight:900;color:var(--green)}
.highlight-col .item-price{color:#fff}
.price-note-big{text-align:center;font-size:28px;font-weight:700;color:var(--text)}
.price-note-big p{margin:15px 0}
.price-docs-block{margin-top:30px;text-align:center;display:flex;flex-direction:column;align-items:center;gap:14px}
.btn-price-pdf{display:inline-flex;align-items:center;gap:8px;background:var(--green);color:#fff;text-decoration:none;padding:14px 26px;border-radius:999px;font-weight:800;box-shadow:0 10px 24px rgba(0,0,0,.16);transition:.2s}
.btn-price-pdf:hover{background:var(--green-light);transform:translateY(-1px);box-shadow:0 14px 30px rgba(0,0,0,.2)}
.price-declarations{font-size:15px;color:var(--gray);width:100%;max-width:1200px;margin:10px auto 0}
.price-declarations-title{font-weight:800;margin-bottom:12px;font-size:16px;text-transform:uppercase;letter-spacing:.04em}
.price-declarations-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.decl-card{background:#fdf4e3;border-radius:18px;padding:18px 18px 20px;box-shadow:0 10px 26px rgba(0,0,0,.08);display:flex;flex-direction:column;align-items:stretch}
.decl-card-doc{background:#fff;border-radius:16px;box-shadow:0 14px 32px rgba(0,0,0,.15);padding:16px 20px;margin-bottom:18px;position:relative;text-align:left;min-height:120px;display:flex;flex-direction:column;justify-content:flex-start}
.decl-card-doc-badge{position:absolute;top:10px;right:12px;background:var(--green);color:#fff;font-size:11px;font-weight:800;padding:4px 8px;border-radius:999px;text-transform:uppercase;letter-spacing:.05em}
.decl-card-doc-label{font-size:13px;font-weight:600;color:var(--text);margin-top:4px;max-width:80%}
.decl-card-body{display:flex;flex-direction:column;align-items:flex-start;gap:6px;text-align:left}
.decl-card-title{font-size:16px;font-weight:800;color:var(--text)}
.decl-card-text{font-size:14px;color:var(--gray);margin-bottom:6px}
.decl-card-btn{display:inline-flex;align-items:center;justify-content:center;padding:10px 18px;border-radius:999px;background:var(--green);color:#fff;text-decoration:none;font-size:13px;font-weight:800;text-transform:uppercase;letter-spacing:.04em;transition:.2s}
.decl-card-btn:hover{background:var(--green-light);transform:translateY(-1px);box-shadow:0 8px 18px rgba(0,0,0,.18)}

@media (max-width:1024px){
  .price-declarations-cards{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:768px){
  .price-declarations-cards{grid-template-columns:1fr}
  .decl-card{width:100%}
}

.contacts{padding:100px 0;background:#fff}
.contact-hero{display:grid;grid-template-columns:1fr 1fr;gap:60px}
.contact-big-card{background:linear-gradient(135deg,var(--red) 0%,var(--red-light) 100%);padding:80px 60px;border-radius:30px;text-align:center;color:#fff;box-shadow:0 20px 60px rgba(211,47,47,.3)}
.contact-icon-big{font-size:120px;margin-bottom:30px}
.contact-big-card h3{font-size:36px;font-weight:900;margin-bottom:40px}
.phone-huge{display:block;font-size:48px;font-weight:900;color:#fff;text-decoration:none;margin-bottom:30px;transition:transform .3s}
.phone-huge:hover{transform:scale(1.05)}
.contact-time{font-size:24px;opacity:.9}
.contact-messengers{margin-top:24px;display:flex;flex-direction:column;align-items:center;gap:8px}
.contact-messengers span{font-size:16px;opacity:.95}
.messengers-links{display:flex;flex-wrap:wrap;gap:12px;justify-content:center}
.btn-messenger{display:inline-flex;align-items:center;gap:8px;border-radius:999px;padding:10px 18px;font-weight:800;text-decoration:none;font-size:14px;letter-spacing:.03em;text-transform:uppercase}
.btn-messenger-wa{background:#25D366;color:#fff}
.btn-messenger-tg{background:#0088cc;color:#fff}
.btn-messenger-wa:hover{background:#1fb357}
.btn-messenger-tg:hover{background:#0074a8}
.btn-messenger-wa::before,.btn-messenger-tg::before{content:'';display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;background:rgba(255,255,255,.18);font-size:11px;font-weight:900}
.btn-messenger-wa::before{content:'WA'}
.btn-messenger-tg::before{content:'TG'}
.contact-info-card{background:linear-gradient(135deg,#f8f9fa 0%,#fff 100%);padding:60px;border-radius:30px;box-shadow:0 10px 30px rgba(0,0,0,.1)}
.info-row{display:flex;gap:30px;margin-bottom:40px;align-items:flex-start}
.info-icon{font-size:56px}
.info-row h4{font-size:24px;font-weight:900;color:var(--green);margin-bottom:10px}
.info-row p{font-size:20px;color:var(--gray)}

/* Responsive дополнения */
@media (max-width:1200px){
  .hero h1{font-size:72px}
  .section-title{font-size:48px}
  .products-grid-visual{grid-template-columns:repeat(2,1fr)}
  .price-highlight{grid-template-columns:1fr}
}
@media (max-width:768px){
  .nav{display:none}
  .menu-toggle{display:block}
  .hero h1{font-size:48px}
  .hero-subtitle{font-size:24px}
  .product-big{grid-template-columns:1fr}
  .products-grid-visual{grid-template-columns:1fr}
  .contact-hero{grid-template-columns:1fr}
}

.nav ul{list-style:none;display:flex;gap:40px;margin:0;padding:0}
.nav li{margin:0}
.phone-btn{display:inline-flex;align-items:center;gap:8px}
.phone-btn .phone-text{white-space:nowrap}

.woocommerce a.button,.woocommerce button.button,.woocommerce input.button{background:var(--green);color:#fff;border:none;border-radius:999px;padding:14px 24px;font-weight:900;text-transform:uppercase}
.woocommerce a.button:hover,.woocommerce button.button:hover,.woocommerce input.button:hover{background:var(--green-light)}

.woocommerce div.product .woocommerce-product-gallery__wrapper img,
.woocommerce div.product .woocommerce-product-gallery figure img{width:100%;height:380px;object-fit:contain;border-radius:12px;background:#fff;padding:10px;box-shadow:0 10px 30px rgba(0,0,0,.15)}

@media(max-width:768px){
  .woocommerce table.shop_table thead{display:table-header-group!important}
  .woocommerce table.shop_table tr{display:table-row}
  .woocommerce table.shop_table td,.woocommerce table.shop_table th{display:table-cell}
  .woocommerce table.shop_table td:before{display:none}
}

/* ===== SHOP (каталог) ===== */
.woocommerce .woocommerce-breadcrumb{margin:20px 0 30px;font-size:14px;color:var(--gray)}
.woocommerce .woocommerce-breadcrumb a{color:var(--text);text-decoration:none}
.woocommerce .woocommerce-breadcrumb a:hover{color:var(--green)}

.woocommerce .woocommerce-products-header .page-title,
.woocommerce .page-title{font-size:64px;font-weight:900;color:var(--green);text-align:center;margin:0 0 24px;letter-spacing:-1px}

.woocommerce .woocommerce-result-count{color:var(--gray);margin:10px 0}
.woocommerce .woocommerce-ordering select{padding:10px 14px;border:2px solid #e6e9ec;border-radius:10px;background:#fff}

.woocommerce nav.woocommerce-pagination{margin:30px 0}
.woocommerce nav.woocommerce-pagination ul{display:flex;gap:10px;justify-content:center}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span{display:inline-block;min-width:42px;height:42px;line-height:42px;text-align:center;border-radius:10px;border:2px solid #e6e9ec;background:#fff;color:var(--text);font-weight:700}
.woocommerce nav.woocommerce-pagination ul li .current,
.woocommerce nav.woocommerce-pagination ul li a:hover{background:var(--green);border-color:var(--green);color:#fff}

/* ===== SINGLE PRODUCT ===== */
.single-product .woocommerce-breadcrumb{margin:10px 0 20px}
.woocommerce div.product .product_meta{margin-top:20px;font-size:14px;color:var(--gray)}
.woocommerce div.product .product_meta > span{display:block;margin:6px 0}

.woocommerce div.product .woocommerce-tabs{margin-top:18px}
.woocommerce div.product .woocommerce-tabs ul.tabs{display:flex;gap:16px;border-bottom:2px solid #eef1f4;padding-left:0;margin:0 0 16px}
.woocommerce div.product .woocommerce-tabs ul.tabs li{list-style:none;margin:0}
.woocommerce div.product .woocommerce-tabs ul.tabs li a{display:block;padding:12px 18px;border-radius:10px 10px 0 0;background:#f7f9fb;color:var(--text);font-weight:700;text-decoration:none}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{background:#fff;color:var(--green);border:2px solid #eef1f4;border-bottom-color:#fff}
.woocommerce div.product .woocommerce-Tabs-panel{background:#fff;border:2px solid #eef1f4;border-radius:0 10px 10px 10px;padding:20px}

.related.products{margin-top:20px}
.related.products > h2{font-size:36px;font-weight:900;color:var(--green);text-align:center;margin:0 0 20px}
.related.products ul.products{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:28px}

/* ===== CART ===== */
.woocommerce .woocommerce-message{background:#e8f5e9;border-left:4px solid var(--green);padding:14px 16px;border-radius:10px;color:var(--text);font-weight:600;margin:0 0 20px}
.woocommerce .woocommerce-error{background:#ffebee;border-left:4px solid var(--red);padding:14px 16px;border-radius:10px;color:var(--text);font-weight:600;margin:0 0 20px}
.woocommerce .woocommerce-info{background:#e3f2fd;border-left:4px solid #2196f3;padding:14px 16px;border-radius:10px;color:var(--text);font-weight:600;margin:0 0 20px}

.woocommerce-cart .cart .coupon{display:flex;gap:10px;align-items:center}
.woocommerce-cart .cart .coupon #coupon_code{width:240px;height:48px;border:2px solid #e6e9ec;border-radius:12px;padding:0 12px}
.woocommerce-cart .cart .coupon .button{height:48px;padding:0 18px;border-radius:999px;background:var(--green);color:#fff;font-weight:900}
.woocommerce-cart .cart .coupon .button:hover{background:var(--green-light)}

.woocommerce-cart .cart-empty{font-size:22px;font-weight:700;color:var(--gray);text-align:center;margin:30px 0}
.woocommerce-cart .return-to-shop a.button{display:inline-block;background:linear-gradient(135deg,var(--green),var(--green-light));color:#fff;border:none;border-radius:999px;padding:14px 22px;font-weight:900;text-transform:uppercase;text-decoration:none}

.woocommerce .cross-sells{margin-top:30px}
.woocommerce .cross-sells h2{font-size:28px;font-weight:900;color:var(--green);margin-bottom:16px}
.woocommerce .cross-sells ul.products{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}

/* ===== FIX: конфликт .price (section) vs WooCommerce .price ===== */
.woocommerce .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price{
  background:none !important;
  padding:0 !important;
  margin:0 0 16px;
  display:block;
}

/* Полировка summary и количества */
.woocommerce div.product .summary > *{margin-bottom:16px}
.woocommerce .quantity .qty{appearance:textfield;-moz-appearance:textfield}
.woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.woocommerce .quantity .qty{appearance:textfield}

/* ===== WooCommerce Blocks (Cart/Checkout) ===== */
/* Карточки товаров в корзине (Blocks) */
.wc-block-cart-items td{padding:18px;border-bottom:1px solid #f1f3f5;vertical-align:middle}
.wc-block-cart-item__image img{width:110px;height:110px;object-fit:cover;border-radius:12px;box-shadow:0 5px 15px rgba(0,0,0,.1)}
.wc-block-components-product-name{font-size:20px;font-weight:900;color:var(--text);text-decoration:none}
.wc-block-cart-item__prices .price{font-size:22px;font-weight:900;color:var(--green)}
.wc-block-cart-item__total .price{font-size:26px;font-weight:900;color:var(--green)}

/* Количество (Blocks) */
.wc-block-components-quantity-selector{display:inline-flex;align-items:center;gap:8px;border:3px solid var(--green);border-radius:12px;padding:4px;background:#fff}
.wc-block-components-quantity-selector__input{width:80px;height:46px;font-size:20px;font-weight:900;text-align:center;border:0;outline:0}
.wc-block-components-quantity-selector__button{width:40px;height:40px;border:0;border-radius:8px;background:#f1f3f5;cursor:pointer;font-weight:900}
.wc-block-components-quantity-selector__button:hover{background:#e6eaee}
.wc-block-cart-item__remove-link{display:inline-flex;align-items:center;justify-content:center;height:40px;padding:0 14px;border-radius:999px;background:rgba(211,47,47,.1);color:var(--red);font-weight:700;text-decoration:none}
.wc-block-cart-item__remove-link:hover{background:rgba(211,47,47,.2)}

/* Итоги корзины (Blocks) */
.wc-block-cart__totals{background:#fff;border:3px solid var(--green);border-radius:16px;padding:28px;box-shadow:0 15px 40px rgba(0,0,0,.08)}
.wc-block-components-totals-item .wc-block-components-totals-item__label{color:var(--text);font-weight:700}
.wc-block-components-totals-item .wc-block-components-totals-item__value{color:var(--text);font-weight:900}
.wc-block-components-totals-item--total .wc-block-components-totals-item__label,
.wc-block-components-totals-item--total .wc-block-components-totals-item__value{font-size:32px;color:var(--green)}

/* Кнопка «Перейти к оформлению заказа» (Blocks) */
.wc-block-cart__submit .wc-block-components-button,
.wc-block-checkout__actions .wc-block-components-button{
  display:block;width:100%;
  background:linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color:#fff;text-decoration:none;border:none;border-radius:999px;
  padding:18px 24px;font-size:20px;font-weight:900;text-transform:uppercase;
  text-align:center;box-shadow:0 10px 30px rgba(45,119,56,.3)
}
.wc-block-components-button__text{color:#fff}
.wc-block-cart__submit .wc-block-components-button:hover,
.wc-block-checkout__actions .wc-block-components-button:hover{transform:translateY(-3px);box-shadow:0 15px 40px rgba(45,119,56,.45)}

/* Панель купона (Blocks) */
.wc-block-components-panel{background:#f8fbf9;border:2px solid #e6e9ec;border-radius:14px}
.wc-block-components-panel__button{font-weight:800}
.wc-block-components-text-input input{border:2px solid #e6e9ec;border-radius:12px;padding:12px 14px}
.wc-block-components-button.is-secondary{background:var(--gray);color:#fff;border-radius:999px}
.wc-block-components-button.is-secondary:hover{background:#444}

.wc-block-cart-items table{width:100%;border-collapse:separate;border-spacing:0 16px}
.wc-block-cart-items__row{background:#fff;border-radius:16px;box-shadow:0 10px 28px rgba(0,0,0,.08)}
.wc-block-cart-items__row td{border-bottom:0}
.wc-block-cart-item__image{width:150px}
.wc-block-cart-item__product{padding-right:20px}
.wc-block-cart-item__total{width:220px;text-align:right}
.wc-block-components-product-name{font-size:22px;font-weight:900;color:var(--text)}
.wc-block-cart-item__prices .wc-block-components-product-price__value{font-size:24px;color:var(--green);font-weight:900}
.wc-block-cart-item__total .wc-block-components-product-price__value{font-size:28px;color:var(--green);font-weight:900}

@media(max-width:768px){
  .wc-block-cart-items table{border-spacing:0 12px}
  .wc-block-cart-item__image{width:110px}
  .wc-block-cart-item__total{width:auto;text-align:right}
}

/* Жёсткий сброс любых фоновых заливок у цен (Blocks) */
.wc-block-cart-item__prices .price,
.wc-block-cart-item__total .price,
.wc-block-components-product-price,
.wc-block-components-product-price__value{
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Ещё больше «карточности» строк */
.wc-block-cart-items__row td:first-child{border-top-left-radius:16px;border-bottom-left-radius:16px}
.wc-block-cart-items__row td:last-child{border-top-right-radius:16px;border-bottom-right-radius:16px}
.wc-block-cart-items__row:hover{box-shadow:0 14px 36px rgba(0,0,0,.12)}

/* ===== Catalog polish ===== */
.woocommerce .woocommerce-products-header{margin:10px 0 20px}
.woocommerce .woocommerce-result-count{color:var(--gray);margin:0 0 10px;float:none}
.woocommerce .woocommerce-ordering{float:none;display:block;margin:0 0 20px 0}

/* Гарантированная сетка и корректная ширина карт при любых стилях темы/плагинов */
.woocommerce ul.products{display:grid!important;grid-template-columns:repeat(auto-fill,minmax(360px,1fr));gap:28px;justify-content:center;width:100%}
.woocommerce ul.products li.product{min-width:360px}

@media(max-width:768px){
  .woocommerce ul.products{grid-template-columns:1fr}
  .woocommerce ul.products li.product{min-width:0}
}

/* ===== Single product polish ===== */
.woocommerce div.product .flex-control-thumbs img{height:90px;width:90px;object-fit:contain;background:#fff;padding:6px;border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,.06)}
.woocommerce div.product form.cart .variations{margin:10px 0 10px}
.woocommerce div.product form.cart .variations select{padding:12px 14px;border:2px solid #e6e9ec;border-radius:12px;background:#fff}
.woocommerce div.product form.cart .reset_variations{font-size:12px;color:var(--gray);margin-left:10px;text-decoration:none}
.woocommerce div.product form.cart .reset_variations:hover{color:var(--green)}
.woocommerce div.product p.price del{color:#9aa0a6;margin-right:8px}
.woocommerce div.product p.price ins{color:var(--green);text-decoration:none}

/* ===== Variation Swatches (кнопки вместо select) ===== */
.gc-select-hidden{position:absolute!important;opacity:0!important;width:0!important;height:0!important;pointer-events:none}
.gc-swatch-group{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:10px 0 6px}
.gc-swatch-label{font-weight:800;color:var(--text)}
.gc-swatch-list{display:flex;gap:10px;flex-wrap:wrap}
.gc-swatch-btn{background:#fff;border:2px solid #e6e9ec;border-radius:12px;padding:10px 14px;font-weight:800;cursor:pointer;transition:.2s}
.gc-swatch-btn:hover{border-color:#d5dbe1}
.gc-swatch-btn.is-active{border-color:var(--green);background:linear-gradient(135deg,var(--green),var(--green-light));color:#fff;box-shadow:0 6px 18px rgba(45,119,56,.25)}
.gc-swatch-btn.is-disabled{opacity:.45;cursor:not-allowed}

/* Выравнивание формы add to cart */
.woocommerce div.product form.cart{display:flex;gap:14px;align-items:center;margin-top:6px}
.woocommerce div.product form.cart .variations{margin:0 0 8px;border:0}
.woocommerce div.product form.cart .variations_button,.woocommerce div.product form.cart .woocommerce-variation-add-to-cart{background:transparent;border:0;box-shadow:none;padding:0}
.woocommerce div.product .product_meta{margin-top:16px;font-size:14px;color:var(--gray)}
.woocommerce div.product .product_meta a{color:var(--text);text-decoration:none}
.woocommerce div.product .product_meta a:hover{color:var(--green)}

/* Вариации: лейбл сверху, свотчи ниже */
.woocommerce div.product form.cart .variations tr{display:block;margin:4px 0}
.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td{display:block;padding:0;margin:0}
.woocommerce div.product form.cart .variations th label{display:block;margin:0 0 6px;font-weight:800;color:var(--text)}

/* Форма вариаций: вертикально, а блок кнопки добавления — горизонтально */
.single-product .variations_form.cart{display:flex;flex-direction:column;gap:10px;align-items:flex-start}
.woocommerce div.product .woocommerce-variation-add-to-cart,
.woocommerce div.product .variations_button{display:flex;gap:14px;align-items:center}

/* ===== Фикс логотипа ===== */
.logo img{height:80px;width:auto}
.hero-logo-big{max-height:500px;width:auto;height:auto}

/* ===== Кнопки секции «Наша продукция» ===== */
.btn-add-cart-large{display:inline-block;background:linear-gradient(135deg,var(--green),var(--green-light));color:#fff;text-decoration:none;border-radius:999px;padding:14px 22px;font-weight:900;text-transform:uppercase;box-shadow:0 10px 30px rgba(45,119,56,.25)}
.btn-add-cart-large:hover{transform:translateY(-2px);box-shadow:0 14px 36px rgba(45,119,56,.35)}
.btn-view-large{display:inline-block;color:var(--green);font-weight:800;text-decoration:none;margin-left:16px}
.btn-view-large:hover{color:var(--green-light)}
.btn-cart-small{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:12px;background:var(--green);color:#fff;text-decoration:none;font-weight:900}
.btn-cart-small:hover{background:var(--green-light)}

/* Большая кнопка в блоке хита (включая «Выбрать параметры» для вариативных товаров) */
.products .product-actions-large .button{
  display:inline-block;
  background:linear-gradient(135deg,var(--green),var(--green-light));
  color:#fff;
  text-decoration:none;
  border-radius:999px;
  padding:14px 22px;
  font-weight:900;
  text-transform:uppercase;
  box-shadow:0 10px 30px rgba(45,119,56,.25);
}
.products .product-actions-large .button:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 36px rgba(45,119,56,.35);
}

/* ===== Главная: большой товар в «Наша продукция» ===== */
.products .product-image-large{border-radius:20px;overflow:hidden;background:#fff}
.products .product-image-large img{display:block;width:100%;height:420px;object-fit:cover}
.products .product-info-large .price-html{font-size:22px;font-weight:900;color:var(--green);margin:6px 0 10px}
.products .product-info-large .price-html .gc-price-note{display:block;color:#2d7738;font-weight:800;margin-top:4px}

/* Сеточная витрина на главной: читаемая цена на оверлее */
.products-grid-visual .product-overlay{display:flex;flex-direction:column;gap:6px}
.products-grid-visual .product-overlay .price-html{font-weight:900;color:#d1fae5}
.products-grid-visual .product-overlay .gc-price-main{color:#d1fae5}
.products-grid-visual .product-overlay .gc-price-note{color:#e5ffe5;opacity:.95;font-weight:800}

/* ===== Похожие товары (single product) ===== */
.single-product .related.products{margin-top:28px}
.single-product .related.products h2{font-size:28px;font-weight:900;color:var(--green);margin:0 0 14px;text-align:center}
.single-product .related.products ul.products{
  display:flex!important;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
  clear:both;
  align-items:stretch;
  max-width:920px;
  margin:0 auto;
}
.single-product .related.products ul.products li.product{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  text-align:center;
  transition:.25s;
  float:none!important;
  margin:0!important;
  width:auto!important;
  flex:0 1 280px;
  max-width:280px;
  min-width:280px;
}
.single-product .related.products ul.products li.product a.woocommerce-LoopProduct-link{display:flex;flex-direction:column;height:100%}
.single-product .related.products ul.products li.product:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.12)}
.single-product .related.products ul.products li.product img{width:100%;height:220px;object-fit:cover}
.single-product .related.products .price{display:block;margin:8px 0 6px}
.single-product .related.products .button{background:var(--green);color:#fff;border-radius:999px;padding:10px 16px;font-weight:800}
.single-product .related.products .button:hover{background:var(--green-light)}

/* ===== Layout .product-big (главная) ===== */
.products .product-big{display:grid;grid-template-columns:520px 1fr;gap:30px;align-items:stretch}
.products .product-image-large a{display:block}
.products .product-info-large{background:#fff;border-radius:20px;box-shadow:0 15px 40px rgba(0,0,0,.08);padding:26px 30px;display:flex;flex-direction:column;justify-content:flex-start}
.products .product-info-large h3{margin:0 0 8px}
.products .product-actions-large{margin-top:12px}

/* Меньший размер цен в оверлее маленьких карточек */
.products-grid-visual .product-overlay .price-html{font-size:16px;line-height:1.2}
.products-grid-visual .product-overlay .gc-price-note{font-size:14px}

/* Related: заголовок и цены компактнее */
.single-product .related.products ul.products li.product .woocommerce-loop-product__title{font-size:18px;font-weight:900;padding:12px}
.single-product .related.products .gc-price-main{font-size:18px}
.single-product .related.products .gc-price-note{font-size:14px}

@media(max-width:1024px){
  .products .product-big{grid-template-columns:1fr}
  .products .product-image-large img{height:360px}
}

/* ===== МОБИЛЬНАЯ АДАПТАЦИЯ ===== */
@media(max-width:1024px){
  .container{padding:0 20px}
  .hero h1{font-size:56px}
  .section-title{font-size:42px}
  .products-grid-visual{grid-template-columns:repeat(2,1fr)}
  .price-highlight{grid-template-columns:1fr}
  .woocommerce ul.products{grid-template-columns:repeat(2,1fr)}
  .woocommerce div.product{grid-template-columns:1fr}
  .woocommerce div.product .woocommerce-product-gallery img,
  .woocommerce div.product .woocommerce-product-gallery__wrapper img,
  .woocommerce div.product .woocommerce-product-gallery figure img{height:500px}
}

@media(max-width:768px){
  /* Мобильное меню */
  .menu-toggle{display:flex!important}
  .header .nav{position:fixed!important;top:0;right:-100%;width:82vw;max-width:360px;height:100vh;background:#fff;box-shadow:-5px 0 20px rgba(0,0,0,.2);padding:80px 20px 20px;transition:right .3s ease;z-index:10001!important;display:flex!important;flex-direction:column;gap:20px;overflow-y:auto}
  .header .nav.active{right:0!important}
  .header .nav a{font-size:18px;padding:12px 0;border-bottom:1px solid #f1f3f5;color:var(--text)!important;display:block}
  .header .nav a:hover{background:#f8f9fa}
  .header .phone-btn .phone-text{display:none}
  .header .cart-btn{font-size:24px}
  body.menu-open{overflow:hidden}
  body.menu-open::before{display:none}
  .nav-overlay{display:none;position:fixed;top:0;left:0;width:calc(100vw - 82vw);height:100vh;background:rgba(0,0,0,.45);z-index:10000}
  .nav-overlay.active{display:block;pointer-events:auto}
  
  /* Корзина на мобильных */
  .woocommerce-cart{padding:20px 15px!important}
  .woocommerce-cart table.cart{display:block;overflow-x:auto}
  .woocommerce-cart table.cart thead{display:none}
  .woocommerce-cart table.cart tbody{display:block}
  .woocommerce-cart table.cart tr.cart_item{display:grid;grid-template-columns:84px minmax(0,1fr);gap:12px;padding:20px 0;border-bottom:1px solid #e5e5e5;align-items:start}
  .woocommerce-cart table.cart td{display:block;border:none;padding:0}
  .woocommerce-cart table.cart tr.cart_item td *{float:none!important;position:static!important;display:inline!important}
  .woocommerce-cart .product-thumbnail{grid-row:1/4}
  .woocommerce-cart .product-thumbnail img{width:100%;max-width:84px;height:auto;border-radius:8px}
  .woocommerce-cart .product-name{grid-column:2;font-size:16px;font-weight:700;margin:0 0 6px 0}
  .woocommerce-cart .product-name a{color:var(--text)!important}
  .woocommerce-cart td.product-name .amount,
  .woocommerce-cart td.product-name .price,
  .woocommerce-cart td.product-name .woocommerce-Price-amount{display:none!important}
  .woocommerce-cart .product-price{grid-column:2;font-size:14px;color:var(--accent);font-weight:700;margin:0 0 8px 0}
  .woocommerce-cart .product-quantity{grid-column:1/3;display:flex;justify-content:center;margin-top:8px}
  .woocommerce-cart .product-subtotal{grid-column:1/3;font-size:16px;color:var(--accent);font-weight:800;text-align:right;margin-top:8px;border-top:1px solid #e5e5e5;padding-top:8px}
  .woocommerce-cart .product-remove{position:absolute;right:10px;top:10px}
  .woocommerce-cart .wc-proceed-to-checkout{margin-top:20px}
  .woocommerce-cart .wc-proceed-to-checkout .checkout-button{width:100%;padding:16px!important;font-size:16px!important;border-radius:50px!important}
  .woocommerce a.button, .woocommerce button.button, .woocommerce input.button{border-radius:12px;padding:12px 14px;font-weight:700;background:var(--accent);color:#fff;border:1px solid var(--accent)}
  .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover{filter:brightness(.95)}

  /* Контакты на мобильных */
  .contact-hero{grid-template-columns:1fr!important;gap:20px}
  .contact-big-card{padding:30px 20px;width:100%;box-sizing:border-box}
  .contact-icon-big{font-size:60px;margin-bottom:15px}
  .contact-big-card h3{font-size:22px;margin-bottom:15px}
  .phone-huge{font-size:28px;margin:15px 0;word-break:break-all}
  .contact-time{font-size:16px}
  .contact-info-card{padding:25px 20px;gap:20px;width:100%;box-sizing:border-box}
  .info-row{flex-direction:row;align-items:flex-start}
  .info-icon{font-size:32px;min-width:40px}
  .info-row h4{font-size:16px;margin-bottom:6px}
  .info-row p{font-size:14px;word-wrap:break-word;overflow-wrap:break-word}
  
  /* Шапка компактная */
  .header{padding:10px 0}
  .header .container{padding:0 15px}
  .header .logo{gap:8px;align-items:center}
  .header .logo img{width:45px;height:45px;object-fit:contain;flex-shrink:0}
  .logo-title{font-size:16px;line-height:1.2}
  .logo-subtitle{font-size:11px;line-height:1.2}
  .header .header-actions{gap:12px}
  
  /* Hero */
  .hero{padding:30px 0;min-height:auto}
  .hero h1{font-size:32px;line-height:1.2;margin-bottom:12px;word-wrap:break-word;overflow-wrap:break-word}
  .hero p,.hero-subtitle{font-size:15px;line-height:1.4;margin-bottom:16px}
  .hero .cta-btn{padding:12px 24px;font-size:15px;white-space:nowrap}
  .hero-stats{flex-direction:row;gap:15px;margin-top:25px;justify-content:center;flex-wrap:wrap}
  .hero .stat{text-align:center;min-width:100px}
  .hero .stat-number{font-size:36px}
  .hero .stat-text{font-size:13px}
  .hero-phone{display:inline-block;margin-top:20px;padding:14px 28px;font-size:18px;background:var(--red);color:#fff;border-radius:999px;text-decoration:none;font-weight:900}
  .hero-cta{flex-direction:column;align-items:flex-start;gap:14px;margin-top:20px}
  .hero-halal{margin-top:0;justify-content:flex-start}
  .hero-halal img{height:130px}
  .hero-tag{font-size:13px;padding:6px 14px}
  
  /* Секции */
  .section{padding:30px 0}
  .section-title{font-size:28px;margin-bottom:20px;text-align:center;word-wrap:break-word}
  .products-grid-visual{grid-template-columns:1fr;gap:16px}
  .products .product-big{grid-template-columns:1fr;gap:16px;margin-bottom:20px}
  .products .product-image-large{border-radius:12px;overflow:hidden}
  .products .product-image-large img{height:250px;object-fit:cover;width:100%}
  .products .product-info-large{padding:20px}
  .products .product-info-large h3{font-size:22px;word-wrap:break-word;line-height:1.3}
  .products .product-info-large h3 a{text-decoration:none;color:inherit}
  .products .product-info-large .price-html{font-size:18px;margin:12px 0}
  .products .product-info-large p{font-size:14px;line-height:1.5;margin:12px 0}
  .products .product-info-large .product-features{font-size:14px;margin:12px 0}
  .products .product-actions-large .button{width:100%;padding:14px;font-size:16px;text-align:center}
  
  /* WooCommerce */
  .woocommerce ul.products{grid-template-columns:1fr!important;gap:20px}
  .woocommerce ul.products li.product{min-width:0;margin:0!important}
  .woocommerce ul.products li.product img{height:200px;object-fit:cover}
  .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:18px;padding:12px}
  .woocommerce ul.products li.product .price{font-size:16px}
  .woocommerce ul.products li.product .button{padding:10px 16px;font-size:14px}
  .woocommerce div.product .summary{padding:20px 0}
  .woocommerce div.product .woocommerce-product-gallery__wrapper img{height:400px}
  .woocommerce div.product .product_title{font-size:24px}
  .woocommerce div.product .price{font-size:20px}
  
  /* Корзина */
  .woocommerce table.shop_table{font-size:13px;display:block;overflow-x:auto}
  .woocommerce table.shop_table img{width:60px;height:60px}
  .woocommerce table.shop_table .product-name{font-size:14px}
  .woocommerce table.shop_table .product-name a{word-break:break-word}
  .woocommerce-cart-form__contents .actions{flex-direction:column;gap:12px}
  .woocommerce-cart-form__contents .actions .button{width:100%;padding:12px;font-size:14px}
  .cart_totals{margin-top:20px}
  .cart_totals h2{font-size:22px}
  .cart_totals table{font-size:14px}
  .wc-proceed-to-checkout .button{width:100%;padding:16px;font-size:16px}
  
  /* Чекаут */
  .woocommerce-checkout .col2-set{grid-template-columns:1fr}
  .woocommerce form .form-row{margin-bottom:12px}
  
  /* Футер */
  .site-footer{padding:40px 0}
  .site-footer .wrap{grid-template-columns:1fr;gap:25px;text-align:center}
  .site-footer h3{font-size:18px;margin-bottom:12px}
  .site-footer p,.site-footer a{font-size:14px}
  .site-footer .footer-widget{padding:20px 0;border-bottom:1px solid rgba(255,255,255,.1)}
  .site-footer .footer-widget:last-child{border-bottom:none}
  
  /* Related */
  .single-product .related.products{margin-top:30px}
  .single-product .related.products h2{font-size:24px;text-align:center}
  .single-product .related.products ul.products{grid-template-columns:1fr;gap:16px}
  .single-product .related.products ul.products li.product img{height:180px}
  
  /* Blocks */
  .wc-block-cart-items{overflow-x:auto}
  .wc-block-cart-items td{padding:10px 6px}
  .wc-block-cart-item__image img{width:70px;height:70px}
  .wc-block-components-product-name{font-size:15px;word-break:break-word}
  .wc-block-cart-item__prices .price{font-size:16px}
  .wc-block-cart__totals{padding:16px;margin-top:20px}
  .wc-block-components-totals-item{font-size:14px}
  .wc-block-cart__submit .wc-block-components-button{padding:14px 20px;font-size:15px}
}

@media(max-width:480px){
  .container{padding:0 12px;max-width:100%;overflow-x:hidden}
  .hero h1{font-size:26px;line-height:1.1}
  .hero p,.hero-subtitle{font-size:14px}
  .hero-phone{font-size:16px;padding:12px 24px}
  .hero-stats{gap:10px}
  .hero .stat{min-width:90px}
  .hero .stat-number{font-size:32px}
  .hero .stat-text{font-size:12px}
  .section-title{font-size:24px}
  .logo-title{font-size:15px;line-height:1.1}
  .logo-subtitle{font-size:10px;line-height:1.1}
  .header .logo img{width:40px;height:40px;object-fit:contain}
  .header .logo{gap:6px;align-items:center}
  .woocommerce table.shop_table{font-size:12px}
  .woocommerce-cart-form__contents .coupon{flex-direction:column}
  .woocommerce-cart-form__contents .coupon input{width:100%}
  
  /* Контакты 480px */
  .contacts{padding:30px 0}
  .contact-big-card{padding:25px 15px}
  .contact-icon-big{font-size:50px}
  .contact-big-card h3{font-size:20px}
  .phone-huge{font-size:24px;word-break:break-all}
  .contact-time{font-size:14px}
  .contact-info-card{padding:20px 15px;gap:18px}
  .info-row{gap:12px}
  .info-icon{font-size:28px;min-width:35px}
  .info-row h4{font-size:15px}
  .info-row p{font-size:13px}
  
  /* Прайс */
  .price-list{padding:30px 0}
  .price-highlight{padding:25px;margin-bottom:20px}
  .price-highlight h3{font-size:20px}
  .price-highlight .price-value{font-size:28px}
  .price-table{overflow-x:auto}
  .price-table table{font-size:13px;min-width:100%}
  .price-table th,.price-table td{padding:10px 8px}
  
  /* Карточки товаров */
  .products .product-info-large h3{font-size:20px}
  .products .product-info-large .price-html{font-size:16px;line-height:1.3}
  .products .product-info-large .gc-price-note{font-size:13px}
  .products .product-actions-large .button{font-size:15px;padding:12px}
  
  /* WooCommerce карточки */
  .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:16px;padding:10px}
  .woocommerce ul.products li.product .price{font-size:15px}
  .woocommerce ul.products li.product .button{font-size:13px;padding:8px 12px}
  .woocommerce ul.products li.product img{height:180px}
}

/* Бейдж «ХИТ ПРОДАЖ» и контейнер изображения */
.products .product-image-large{position:relative}
.products .product-badge-hit{position:absolute;top:12px;right:12px;background:#ef5350;color:#fff;border-radius:999px;padding:8px 12px;font-weight:900}

/* Ссылки-оверлеи без подчёркиваний */
.products-grid-visual .product-link{text-decoration:none;color:inherit}
.products-grid-visual .product-overlay h4{margin:0}
.products-grid-visual .product-overlay .gc-price-note{display:none}

/* Растягиваем related на всю ширину при размещении внутри grid товара */
.single-product .summary ~ .related.products{grid-column:1 / -1}

/* ===== Header: меню и телефон ===== */
.header .container{display:flex;justify-content:space-between;align-items:center;padding:14px 0}
.header .nav a{color:var(--text);text-decoration:none;font-weight:800}
.header .nav a:hover{color:var(--green)}
.header .phone-btn{display:inline-flex;align-items:center;gap:8px;color:var(--green);text-decoration:none;font-weight:900}
.header .phone-btn:hover{color:var(--green-light)}

/* Гамбургер-меню */
.menu-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:8px;z-index:1001;position:relative}
.menu-toggle span{display:block;width:28px;height:3px;background:var(--green);border-radius:2px;transition:.3s}
.menu-toggle.active span:nth-child(1){transform:rotate(45deg) translate(7px,7px)}
.menu-toggle.active span:nth-child(2){opacity:0}
.menu-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(7px,-7px)}

/* Контакты: базовые стили */
.contacts{padding:60px 0;background:#f8f9fa}
.contact-hero{display:grid;grid-template-columns:1fr 1fr;gap:30px;margin-top:40px}
@media(max-width:1024px){
  .contact-hero{grid-template-columns:1fr}
}
.contact-big-card{background:linear-gradient(135deg,var(--red),#d32f2f);color:#fff;border-radius:20px;padding:50px;text-align:center;box-shadow:0 15px 40px rgba(211,47,47,.3)}
.contact-icon-big{font-size:80px;margin-bottom:20px}
.contact-big-card h3{font-size:28px;font-weight:900;margin-bottom:20px}
.phone-huge{display:block;font-size:36px;font-weight:900;color:#fff;text-decoration:none;margin:20px 0}
.contact-time{font-size:18px;opacity:.9;margin-top:15px}
.contact-info-card{background:#fff;border-radius:20px;padding:40px;box-shadow:0 10px 30px rgba(0,0,0,.1);display:flex;flex-direction:column;gap:30px}
.info-row{display:flex;align-items:flex-start;gap:20px}
.info-icon{font-size:40px;min-width:50px}
.info-row h4{font-size:18px;font-weight:900;color:var(--green);margin:0 0 8px}
.info-row p{font-size:16px;color:var(--gray);margin:0;line-height:1.5}

/* ===== Related: выравнивание карточек, кнопка внизу ===== */
.single-product .related.products ul.products li.product{display:flex;flex-direction:column}
.single-product .related.products ul.products li.product .button{margin-top:auto;align-self:center}
