/*
Theme Name: PARTSDOZER
Theme URI: https://example.com/partsdozer
Author: PARTS Team
Author URI: https://example.com
Description: WooCommerce theme with request list functionality for sending product requests to manager
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: parts
Tags: woocommerce, e-commerce, responsive
*/

:root {   
    --text-color: #111112;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #4DA235;
     --theme-green:#4DA235; 
     --secondary-color:#1A1A1A;
     --bg-gr: #F9F9F9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:'Golos Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-gr);
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 50px;
}
.admin-bar .site-header{
    top:44px;
}
.admin-bar  .site-main .home-hero{
    padding-top: 169px;
}
/* Header */
.site-header {
    background-color: transparent; 
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 100;
}
.custom-logo-link .custom-logo {
	height: 61px;
	width: auto;
}
 .header-main{
    background: var(--secondary-color); 
    padding: 12px 24px;   
    border-radius: 0px 0px 14px 14px; 
 }
.site-main .home-hero{
    padding-top: 153px;
}
.header-top { 
	color: var(--white);
	padding: 14px 24px;
	font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    font-weight: 500;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.request-list-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
}

.request-list-btn:hover {
    background-color: var(--primary-dark);
}

.request-list-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: red;
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn:hover {
    opacity: 0.9;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

/* Section Titles */
.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

/* Products Grid */
.products-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.add-to-request-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-request-btn:hover {
    background-color: var(--primary-dark);
}

.add-to-request-btn.added {
    background-color: var(--success-color);
    color: white;
}

 

 
 

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-text {
    color: #666;
}

.contact-map {
    margin-top: 40px;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 8px;
}

/* Forms Section */
.forms-section {
    padding: 80px 0;
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.form-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: var(--primary-dark);
}

/* Footer */
.site-footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #aaa;
}

/* Request List Modal */
.request-list-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.request-list-modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

.request-list-items {
    margin-bottom: 30px;
}

.request-list-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    gap: 20px;
}

.request-list-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.request-list-item-info {
    flex: 1;
}

.request-list-item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.request-list-item-price {
    color: #666;
}

.remove-item-btn {
    background: none;
    border: none;
    color: red;
    cursor: pointer;
    padding: 5px;
    font-size: 14px;
}

.request-list-total {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.send-request-btn {
    width: 100%;
    background-color: var(--success-color);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.send-request-btn:hover {
    background-color: #43A047;
}

.empty-list-message {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s;
}

.pagination a:hover {
    background-color: var(--primary-color);
}

.pagination .current {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .header-main .container {
        flex-wrap: wrap;
    }

    .main-navigation ul {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid,
    .forms-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid,
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Detail */
.product-detail {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-detail-image img {
    width: 100%;
    border-radius: 8px;
}

.product-image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #f0f0f0;
    border-radius: 8px;
}

.product-detail-info .product-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.product-detail-info .product-price {
    font-size: 28px;
    margin-bottom: 30px;
}

.product-detail-info .product-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

.view-product-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.product-detail-grid .add-to-request-btn {
    width: auto;
    padding: 16px 40px;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* ============================================
   404 PAGE
============================================ */

.error-404-section {
    padding: 280px 20px 100px;
    background:
        radial-gradient(ellipse at top, rgba(81, 168, 50, 0.08) 0%, transparent 60%),
        #0E0E0E;
    color: #fff;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-404-wrap {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* ---------- Visual: 4 [gear] 4 ---------- */
.error-404-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    line-height: 1;
}

.error-404-digit {
    font-size: clamp(120px, 22vw, 220px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 0.85;
    text-shadow: 0 6px 30px rgba(81, 168, 50, 0.25);
}

.error-404-gear {
    display: inline-flex;
    width: clamp(110px, 20vw, 200px);
    height: clamp(110px, 20vw, 200px);
    color: var(--theme-green);
    animation: error404Spin 8s linear infinite;
    filter: drop-shadow(0 0 30px rgba(81, 168, 50, 0.4));
}

@keyframes error404Spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ---------- Text ---------- */
.error-404-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin: 0 0 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.error-404-text {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 36px;
}

/* ---------- Search ---------- */
.error-404-search {
    max-width: 520px;
    margin: 0 auto 32px;
}

.error-404-search form {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.error-404-search form:focus-within {
    border-color: var(--theme-green);
    box-shadow: 0 0 0 4px rgba(81, 168, 50, 0.15);
}

.error-404-search input[type="search"] {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 16px 22px;
    color: #fff;
    font-size: 15px;
}

.error-404-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.error-404-search button {
    background: var(--theme-green);
    border: 0;
    color: #fff;
    width: 56px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.error-404-search button:hover {
    background: #45901E;
}

/* ---------- Actions ---------- */
.error-404-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-404 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-404--primary {
    background: var(--theme-green);
    color: #fff;
    box-shadow: 0 6px 20px rgba(81, 168, 50, 0.35);
}

.btn-404--primary:hover {
    background: #45901E;
    transform: translateY(-2px);
}

.btn-404--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-404--ghost:hover {
    border-color: var(--theme-green);
    color: var(--theme-green);
    transform: translateY(-2px);
}

/* ---------- Popular brands ---------- */
.error-404-brands {
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.error-404-brands-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin: 0 0 18px;
}

.error-404-brands-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.error-404-brands-list a {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.error-404-brands-list a:hover {
    background: var(--theme-green);
    border-color: var(--theme-green);
    color: #fff;
    transform: translateY(-1px);
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
    .error-404-section {
        padding: 50px 16px 70px;
    }

    .error-404-visual {
        gap: 4px;
        margin-bottom: 20px;
    }

    .error-404-text {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .error-404-text br {
        display: none;
    }

    .btn-404 {
        padding: 13px 24px;
        font-size: 13px;
    }
}
/* ============================================
   BREADCRUMBS (universal)
============================================ */

.breadcrumbs {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item a:hover {
    color: var(--theme-green);
}

.breadcrumb-item--home a {
    color: #fff;
}

.breadcrumb-item--home svg {
    display: block;
}

.breadcrumb-item--current span {
    color: #fff;
    font-weight: 500;
      font-size: 16px;
}

.breadcrumb-sep {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    list-style: none;
}

.breadcrumb-sep svg {
    display: block;
      width: 24px;
  height: 24px;
}

/* When breadcrumbs are NOT inside dark page-hero (light bg) */
.breadcrumbs--light .breadcrumb-item a,
.breadcrumbs--light .breadcrumb-item--home a,
.breadcrumbs--light .breadcrumb-item--current span {
    color: #2A2A2A;
}

.breadcrumbs--light .breadcrumb-item a:hover {
    color: var(--theme-green);
}

.breadcrumbs--light .breadcrumb-sep {
    color: rgba(0, 0, 0, 0.35);
}

/* Mobile */
@media (max-width: 600px) {
    .breadcrumbs {
        font-size: 13px;
    }

    .breadcrumb-list {
        gap: 4px;
    }

    .breadcrumb-item--home svg,
    .breadcrumb-sep svg {
        width: 16px;
        height: 16px;
    }
}
/* ============================================
   SHOP TOOLBAR 
============================================ */

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.shop-toolbar__title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-toolbar__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #E8F5E0;
    color: var(--theme-green);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.shop-toolbar__sort {
    display: flex;
    align-items: center;
}

.shop-toolbar__sort .orderby,
.shop-toolbar__sort select {
    padding: 10px 32px 10px 14px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: #1A1A1A;
    cursor: pointer;
}


/* ============================================
   PRODUCTS GRID
============================================ */

.shop-content ul.products,
.shop-content .products {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.shop-content ul.products::before,
.shop-content ul.products::after {
    content: none !important;
}

@media (max-width: 1200px) {
    .shop-content ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .shop-content ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .shop-content ul.products {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   PRODUCT CARD
============================================ */

.product-card {
	background: #fff;
	border: none;
	border-radius: 8px;
	overflow: hidden;
	display: flex !important;
	flex-direction: column;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	width: 100% !important;
	margin: 0 !important;
	padding: 0px !important;
	list-style: none;
	position: relative;  
    filter: drop-shadow(0px 12px 60px rgba(0, 0, 0, 0.03)) drop-shadow(0px 4.62222px 19.1111px rgba(0, 0, 0, 0.0303704)) drop-shadow(0px 0.977778px 4.88889px rgba(0, 0, 0, 0.0196296));
  
}

.product-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.product-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    flex-grow: 1;
}

.product-card__link:hover {
    text-decoration: none;
    color: inherit;
}

.product-card__media {
	position: relative;
	background: #F4F4F4;
	border-radius: 0;
	aspect-ratio: 16 / 14;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 0;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.05);
}

/* GENUINE Badge */
.product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: var(--theme-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-card__badge svg {
    flex-shrink: 0;
}
 
.product-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	text-align: left;
	padding: 20px 16px;
      justify-content: flex-start;
  align-items: flex-start;
}
.product-card__button {
	padding: 0 8px 8px;
}
 
.product-card__sku {
	color: var(--theme-green);
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 14px;
	background: #DBEDDB;
	border-radius: 4px;
	width: auto;
	display: inline-block;
	padding: 4px;
	line-height: 1;
}
.product-card__body .product-card__title, .product-card__title {
	margin: 0 0 0px;
	font-size: 20px !important;
	font-weight: 600;
	color: var(--text-color);
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 1.5em;
      padding: 0px !important;
}

.product-card__brand {
    color: #6B7280;
    font-size: 16px;
    margin-bottom: 0px;
}
/* Add to Quote button on product card */
.btn-add-quote {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background:var(--theme-green);
    color: #fff !important;
    border: none;
    border-radius: 6px;
    padding: 10px 10px 10px 16px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
    cursor: pointer;
    margin-top: 0px;
    width: 100%;
      display: flex;
  justify-content: space-between;
}
/* ===========================
   CF7 Submit button with icon
=========================== */
.contact-page__form-wrap .wpcf7-submit{
    background-color: var(--theme-green);    
    padding: 18px 24px;
    border-radius: 10px;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    /* Icon via background-image */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M10.8 0H4.8C2.1492 0 0 2.1492 0 4.8V19.2C0 21.8508 2.1492 24 4.8 24H19.2C21.8508 24 24 21.8508 24 19.2C24 16.4748 24 13.2 24 13.2C24 12.5376 23.4624 12 22.8 12C22.1376 12 21.6 12.5376 21.6 13.2V19.2C21.6 20.5248 20.5248 21.6 19.2 21.6C15.204 21.6 8.7948 21.6 4.8 21.6C3.474 21.6 2.4 20.5248 2.4 19.2C2.4 15.204 2.4 8.7948 2.4 4.8C2.4 3.474 3.474 2.4 4.8 2.4H10.8C11.4624 2.4 12 1.8624 12 1.2C12 0.5376 11.4624 0 10.8 0ZM19.9032 2.4H15.6C14.9376 2.4 14.4 1.8624 14.4 1.2C14.4 0.5376 14.9376 0 15.6 0H22.8C23.4624 0 24 0.5376 24 1.2V8.4C24 9.0624 23.4624 9.6 22.8 9.6C22.1376 9.6 21.6 9.0624 21.6 8.4V4.0968L12.8484 12.8484C12.3804 13.3164 11.6196 13.3164 11.1516 12.8484C10.6824 12.3804 10.6824 11.6196 11.1516 11.1516L19.9032 2.4Z' fill='white'/></svg>");
    background-repeat: no-repeat!important;
    background-position: right 16px center;
    background-size: 18px 18px;
    content: "";
    /* Space for icon */
    padding-right: 48px;
    width: 240px;
    text-align: left;
} 

.contact-page__form-wrap .wpcf7-submit:hover {
    background-color: #408a26;
}

.contact-page__form-wrap .wpcf7-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.btn-add-quote:hover {
    background: #16a34a;
    transform: translateY(-1px);
}
 

.btn-add-quote.is-added::after {
	content: '✓ ';
	height: 32px;
	width: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 4px;
	color: var(--theme-green);
}
.card__button_p {
	height: 32px;
	width: 32px;
	border-radius: 4px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-card__quote svg path{
    stroke: var(--theme-green);
}

/* ============================================
   SHOP LAYOUT (Sidebar + Content)
============================================ */

.shop-archive__layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 900px) {
    .shop-archive__layout {
        grid-template-columns: 1fr;
    }
}
  
 


/* ============================================
   PRODUCT SINGLE LAYOUT
============================================ */

.product-single {
    padding: 40px 0 60px;
}

.product-single__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 900px) {
    .product-single__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* ============================================
   GALLERY
============================================ */

.product-single__image-wrap {
    background: #F4F4F4;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px;
}

.product-single__image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-single__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.product-single__thumb {
    width: 80px;
    height: 80px;
    background: #F4F4F4;
    border-radius: 10px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s;
}

.product-single__thumb:hover {
    border-color: var(--theme-green);
}

.product-single__thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* ============================================
   SUMMARY  
============================================ */

.product-single__summary {
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	background: #FFFFFF;
	border-radius: 12px;
}

/* GENUINE Badge */
.product-single__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #E8F5E0;
    color: var(--theme-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* SKU */
.product-single__sku {
	color: var(--theme-green);
	font-size: clamp(14px, calc(10.5714px + 1.0714vw), 26px);
	font-weight: 700;
	margin-bottom: 14px;
	background: #DBEDDB;
	padding: 12px;
	border-radius: 4px;
	line-height: 1.2;
}

/* TITLE */
.product-single__title {
    margin: 0 0 14px;
    font-size: clamp(1.25rem, 0.9286rem + 1.6071vw, 2.625rem);
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
}

 

/* BRAND */
.product-single__brand {
	margin-bottom: 28px;
	font-size: clamp(14px, calc(10.5714px + 1.0714vw), 26px);
	color: var(--text-color);
	opacity: .5;
}

.product-single__brand-label { 
    margin-right: 4px;
}

.product-single__brand-name {
    color: #1A1A1A;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s;
}

.product-single__brand-name:hover {
    border-bottom-color: var(--theme-green);
    color: var(--theme-green);
}

/* DESCRIPTION */
.product-single__description {
    margin-bottom: 32px;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 12px;
    border-left: 3px solid var(--theme-green);
}

.product-single__description-title {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
}

.product-single__description-text {
    color: #4B5563;
    font-size: 14px;
    line-height: 1.6;
}

.product-single__description-text p {
    margin: 0 0 10px;
}

.product-single__description-text p:last-child {
    margin: 0;
}


/* ============================================
   ACTIONS  
============================================ */

.product-single__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	padding-top: 32px;
	border-top: 1px solid var(--border-color);
}

.product-single__btn {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 40px;
	width: 100%;
	padding: 12px;
	border-radius: 12px;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	border: 2px solid transparent;
	position: relative;
}

.product-single__btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-single__btn-text {
    flex-grow: 1;
    text-align: left;
}

.product-single__btn-arrow {
    margin-left: auto;
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

/* Primary (Add to Quote) */
.product-single__btn--primary {
    background: var(--theme-green);
    color: #fff;
    border-color: var(--theme-green);
    width: auto;
}

.product-single__btn--primary:hover {
    background: #468f2a;
    border-color: #468f2a;
    color: #fff;
}

/* Outline (Request a Call) */
.product-single__btn--outline {
    background: #fff;
    color: #1A1A1A;
    border-color: #E0E0E0;
}

.product-single__btn--outline:hover {
    border-color: var(--theme-green);
    color: var(--theme-green);
}


 
/* ============================================
   PRODUCT GALLERY
============================================ */

.product-gallery {
    width: 100%;
}

/* Main image area */
.product-gallery__main {
    position: relative;
    background: #F4F4F4;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/14;
}

.product-gallery__main-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.product-gallery__main-item.is-active {
    opacity: 1;
    visibility: visible;
}

.product-gallery__main-item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	cursor: zoom-in;
	width: 100%;
	height: 100%;
}

/* Zoom button */
.product-gallery__zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #1A1A1A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    z-index: 2;
    display: none;
}

.product-gallery__zoom:hover {
    background: var(--theme-green);
    color: #fff;
    transform: scale(1.05);
}

/* Nav arrows */
.product-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #1A1A1A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.2s;
    z-index: 2;
    opacity: 0;
}

.product-gallery__main:hover .product-gallery__nav {
    opacity: 1;
}

.product-gallery__nav:hover {
    background: var(--theme-green);
    color: #fff;
}

.product-gallery__nav--prev { left: 14px; }
.product-gallery__nav--next { right: 14px; }

@media (max-width: 600px) {
    .product-gallery__nav {
        opacity: 1;
        width: 38px;
        height: 38px;
    }
}

/* Thumbnails */
.product-gallery__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.product-gallery__thumb {
    width: 160px;
    height: 120px; 
    border-radius: 10px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    flex-shrink: 0;
}

.product-gallery__thumb:hover {
    border-color: #B0D9A0;
}

.product-gallery__thumb.is-active {
    border-color: var(--theme-green);
}

.product-gallery__thumb img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	width: 100%;
	object-position: center;
}


/* ============================================
   LIGHTBOX
============================================ */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.lightbox.is-open {
    display: flex;
    opacity: 1;
}

.lightbox__content {
    position: relative;
    width: 90vw;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
    transition: opacity 0.2s;
}

.lightbox__image.is-loading {
    opacity: 0.3;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.lightbox__nav:hover {
    background: var(--theme-green);
}

.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

.lightbox__counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .lightbox__close {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
    }

    .lightbox__nav {
        width: 44px;
        height: 44px;
    }

    .lightbox__nav--prev { left: 8px; }
    .lightbox__nav--next { right: 8px; }
}
 
body.lightbox-open {
    overflow: hidden;
}
/* Dots */
.product-gallery__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    border-radius: 999px;
}

.product-gallery__dot {
    width: 16px;
    height: 16px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #11111240;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-gallery__dot:hover {
    background: #8FBF7A;
}

.product-gallery__dot.is-active {
    background: var(--theme-green);
    width: 16px;
    border-radius: 50px;
}
.product-gallery__main {
    position: relative;
    /* ...твои стили */
}

.product-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-gallery__nav:hover {
    background: #51A832;
    color: #fff;
}

.product-gallery__nav--prev {
    left: 12px;
}

.product-gallery__nav--next {
    right: 12px;
}
 
.product-gallery__main-item img {
    user-select: none;
    -webkit-user-drag: none;
    touch-action: pan-y; 
}
@media (max-width: 768px) {
    .product-gallery__nav {
        display: none;
    }
}
.product-shipping {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 32px;
    padding: 0px;  
}

.product-shipping__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8F5E1;
    border-radius: 10px;
}

.product-shipping__content {
    flex: 1;
}

.product-shipping__title {
    font-weight: 700;
    font-size: 20px; 
    margin-bottom: 4px;
}

.product-shipping__text {
    font-size: 16px; 
    line-height: 1.5;
}
.similar-products {
    margin-top: 60px;
    padding-bottom: 100px;
}

.similar-products__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

.similar-products__title {
	font-size: 36px;
	font-weight: 700;
	margin: 0;
	color: var(--text-color);
}
.card__button_p path {
	stroke: var(--theme-green);
}
.similar-products__nav {
    display: flex;
    gap: 8px;
}

.similar-products__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #D9D9D9;
    background: #fff;
    color: #1A1A1A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.similar-products__btn:hover:not(:disabled) {
    background: #51A832;
    border-color: #51A832;
    color: #fff;
}

.similar-products__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Viewport / Track */
.similar-products__viewport {
    overflow: hidden;
}

.similar-products__track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    will-change: transform;
      padding: 48px 0;
}

.similar-products__slide {
    flex-shrink: 0;
     
}

/* Dots */
.similar-products__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.similar-products__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #D9D9D9;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.similar-products__dot.is-active {
    background: #51A832;
    width: 24px;
    border-radius: 4px;
}

/* Touch */
.similar-products__viewport {
    touch-action: pan-y;
}
.woocommerce nav.woocommerce-pagination ul li {
	  
	float: none; 
	margin: 0 5px;
}
.woocommerce-pagination ul.page-numbers span.current {
	background: var(--text-color) !important;
	color: #fff !important;
	border-color: var(--text-color) !important;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
   border: none;
  border-radius: 8px;
  background: transparent;
   font-weight: 600;
	width: 36px;
	height: 36px;
}
/* ===========================
   Doc Page (Customer Service)
=========================== */
.doc-page {
    background: #F8FAFC;
}

/* ----- Hero ----- */
.doc-page__hero {
    background: #1A1A1A;
    color: #fff;
    padding: 32px 0 40px;
}

.doc-page__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #94A3B8;
    margin-bottom: 18px;
}

.doc-page__breadcrumbs-link {
    color: #94A3B8;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.doc-page__breadcrumbs-link:hover {
    color: #51A832;
}

.doc-page__breadcrumbs-sep {
    color: #475569;
}

.doc-page__breadcrumbs-current {
    color: #cbd5e1;
}

.doc-page__title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

/* ----- Body / two-column ----- */
.doc-page__body {
    padding: 100px 0 80px;
}

.doc-page__layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: start;
}

/* ----- Sidebar (TOC) ----- */
.doc-page__sidebar {
	position: sticky;
	top: 100px;
	border-right: 1px solid #11111240;
}

.doc-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
      padding: 40px 0;
}
.doc-toc__item a {
	font-size: 14px;
	color: #0F0F0F;
}
.doc-toc__link {
    position: relative;
    display: block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0; 
    text-decoration: none;
    padding-left: 0px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.doc-toc__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid #cbd5e1;
    transition: all 0.2s ease;
    display: none;
}

.doc-toc__link:hover {
    color: #1A1A1A;
}

.doc-toc__link.is-active {
    color: #51A832;
    padding-left: 18px;
}

.doc-toc__link.is-active::before {
    background: #51A832;
    border-color: #51A832;
    display: block;
}

/* ----- Content ----- */
.doc-page__content {
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
    max-width: 760px;
}

.doc-page__content h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--text-color);
	text-transform: uppercase;
	letter-spacing: -0.01em;
	margin: 48px 0 20px;
	scroll-margin-top: 100px;
}

.doc-page__content h2:first-child {
    margin-top: 0;
}

.doc-page__content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 32px 0 12px;
}

.doc-page__content p {
    margin: 0 0 16px;
}

.doc-page__content a {
    color: #51A832;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.doc-page__content a:hover {
    color: #408a26;
}

/* ----- Lists with arrow markers ----- */
.doc-page__content ul,
.doc-page__content ol {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.doc-page__content ul li,
.doc-page__content ol li {
    position: relative;
    padding-left: 32px;
}

.doc-page__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 18px;
    height: 12px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'><path d='M1 6h15m0 0l-5-5m5 5l-5 5' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}

.doc-page__content ol {
    counter-reset: ordered-list;
}

.doc-page__content ol li {
    counter-increment: ordered-list;
}

.doc-page__content ol li::before {
    content: counter(ordered-list) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #51A832;
}

/* ----- Strong & blockquote ----- */
.doc-page__content strong {
    color: #1A1A1A;
    font-weight: 700;
}

.doc-page__content blockquote {
    border-left: 3px solid #51A832;
    padding: 8px 20px;
    margin: 24px 0;
    background: #F0FAEC;
    color: #334155;
    border-radius: 4px;
}

/* ----- Responsive ----- */
@media (max-width: 992px) {
    .doc-page__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .doc-page__sidebar {
        position: static;
        border-right: none;
    }

    .doc-toc__list {
        gap: 10px;
    }
    .doc-page__body {
	padding: 30px 0 80px;
}
}

@media (max-width: 600px) {
    .doc-page__hero {
        padding: 24px 0 28px;
    }

    .doc-page__title {
        font-size: 28px;
    }

    .doc-page__content h2 {
        font-size: 22px;
    }
}
/* ===========================
   Default page layout
=========================== */
.page-content {
    padding: 60px 0 80px;
    background: #fff;
}

.page-content__article { 
    margin: 0 auto;
}

.page-content__body {
    font-size: 16px;
    line-height: 1.7;
    color: #1A1A1A;
}

/* ----- Gutenberg block defaults inside page content ----- */
.page-content__body > * + * {
    margin-top: 1.2em;
}

.page-content__body h2.wp-block-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    margin-top: 2em;
    margin-bottom: 0.6em;
    line-height: 1.3;
    scroll-margin-top: 100px; /* for anchor links */
}

.page-content__body h3.wp-block-heading {
    font-size: 22px;
    font-weight: 600;
    color: #1A1A1A;
    margin-top: 1.6em;
    margin-bottom: 0.5em;
    line-height: 1.35;
}

.page-content__body h4.wp-block-heading {
    font-size: 18px;
    font-weight: 600;
    margin-top: 1.4em;
    margin-bottom: 0.4em;
}

.page-content__body p {
    margin-bottom: 1.2em;
}

.page-content__body a {
    color: #51A832;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.page-content__body a:hover {
    color: #408A26;
}

/* Lists */
.page-content__body ul,
.page-content__body ol {
    padding-left: 1.5em;
    margin: 1em 0 1.4em;
}

.page-content__body ul li,
.page-content__body ol li {
    margin-bottom: 0.4em;
}

.page-content__body ul {
    list-style: disc;
}

.page-content__body ol {
    list-style: decimal;
}

/* Blockquote */
.page-content__body blockquote.wp-block-quote {
    border-left: 4px solid #51A832;
    padding: 12px 0 12px 22px;
    margin: 1.5em 0;
    font-style: italic;
    color: #475569;
    background: #F8FAFC;
}

.page-content__body blockquote.wp-block-quote cite {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-style: normal;
    color: #94A3B8;
}

/* Images */
.page-content__body .wp-block-image {
    margin: 1.6em 0;
}

.page-content__body .wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.page-content__body .wp-block-image figcaption {
    text-align: center;
    font-size: 13px;
    color: #64748B;
    margin-top: 8px;
}

/* Tables */
.page-content__body .wp-block-table {
    margin: 1.5em 0;
    overflow-x: auto;
}

.page-content__body .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.page-content__body .wp-block-table th,
.page-content__body .wp-block-table td {
    padding: 12px 14px;
    border: 1px solid #E2E8F0;
    text-align: left;
}

.page-content__body .wp-block-table th {
    background: #F8FAFC;
    font-weight: 600;
}

/* Buttons */
.page-content__body .wp-block-button__link {
    background: #51A832;
    color: #fff;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
}

.page-content__body .wp-block-button__link:hover {
    background: #408A26;
    color: #fff;
}

/* Separator */
.page-content__body hr.wp-block-separator {
    border: none;
    border-top: 1px solid #E2E8F0;
    margin: 2em 0;
}

/* Pagination (multi-page posts) */
.page-content__pagination {
    margin-top: 2em;
    padding-top: 1.5em;
    border-top: 1px solid #E2E8F0;
    font-size: 14px;
}

.page-content__pagination-link {
    display: inline-block;
    margin-right: 8px;
    padding: 6px 12px;
    border-radius: 6px;
    background: #F1F5F9;
    color: #1A1A1A;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 768px) {
    .site-header > .container {
	padding-left: 0;
	padding-right: 0;
}
    .page-content {
        padding: 40px 0 60px;
    }

    .page-content__body h2.wp-block-heading {
        font-size: 24px;
    }

    .page-content__body h3.wp-block-heading {
        font-size: 19px;
    }
    .shop-toolbar__title{
          font-size: 22px;
    }
        .shop-archive__title {
        font-size: 24px;
    }
    .product-card__sku{
        font-size: 14px;
    }
    .product-card__body .product-card__title, .product-card__title{
          font-size: 16px !important;
    }
    .product-card__brand { 
        font-size: 14px; 
    }
    .btn-add-quote {  
        font-size: 16px; 
    }
     
    .btn-block{
          font-size: 16px;

    }
    .product-shipping__title { 
	font-size: 16px; 
    }
    .product-shipping__text{
        font-size: 14px;
    }
    .product-gallery__thumb{
        width: 90px;
  height: 70px;  border-radius: 6px;
    }
    .product-single__sku{
        padding: 6px;
    }
    .product-single__summary{
        padding: 20px;
    }
    .similar-products{
          margin-top: 0;  padding-bottom: 50px;
    }
    .similar-products__title {
	font-size: 24px;
	font-weight: 700;
	margin: 0;
	color: var(--text-color);
}.similar-products__track { 
	padding: 28px 0;
}
.doc-toc__list {
	padding-top: 10px;
    padding-bottom: 0;
}
.quote-page__layout{
    border-radius: 12px;
  margin: 40px 0;padding: 20px;
}.quote-item__meta {
	font-size: 14px;
}
}
@media (max-width: 480px) {
.custom-logo-link .custom-logo {
	height: 41px;
	width: auto;
}
}