/*
Theme Name: Plants Melb
Theme URI: https://www.plantsmelb.com
Author: Plants Melb
Description: Plants Melb Melbourne Plant Nursery - WooCommerce Theme
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: plantsmelb
Tags: woocommerce, e-commerce, plant, nursery, responsive
*/

:root {
  --g: #2d4a2d; --gm: #4a7c4a; --gl: #8aad6e;
  --cream: #f7f4ee; --white: #ffffff;
  --text: #1a2a1a; --mid: #4a5a4a; --light: #7a8a7a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', sans-serif;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.14);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
p { margin-bottom: 1em; color: var(--mid); }
p:last-child { margin-bottom: 0; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--text); }

.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.section { padding: 80px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.text-center { text-align: center; }

/* ANNOUNCEMENT BAR */
.announcement-bar { background: var(--g); color: #fff; text-align: center; padding: 10px 20px; font-size: 13px; letter-spacing: .1em; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 200; background: var(--white); box-shadow: 0 1px 12px rgba(0,0,0,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 24px; }
.site-logo img { height: 56px; width: auto; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 32px; }
.primary-nav > li { position: relative; }
.primary-nav > li > a { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text); padding: 28px 0; display: block; transition: color .2s; }
.primary-nav > li > a::after { content: ''; position: absolute; bottom: 20px; left: 0; right: 0; height: 2px; background: var(--gm); transform: scaleX(0); transition: transform .22s; }
.primary-nav > li:hover > a { color: var(--gm); }
.primary-nav > li:hover > a::after { transform: scaleX(1); }
.primary-nav .sub-menu { position: absolute; top: calc(100% - 1px); left: -16px; background: var(--white); border-top: 3px solid var(--gm); box-shadow: 0 12px 40px rgba(0,0,0,.12); min-width: 230px; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: all .22s; z-index: 100; }
.primary-nav > li:hover .sub-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.primary-nav .sub-menu li a { display: block; padding: 13px 22px; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); border-bottom: 1px solid #f0f0f0; transition: background .15s, color .15s; }
.primary-nav .sub-menu li a:hover { background: var(--cream); color: var(--g); }
.header-right { display: flex; align-items: center; gap: 14px; }
.header-cart { position: relative; display: flex; align-items: center; gap: 6px; padding: 10px 14px; border: 1.5px solid var(--cream); border-radius: var(--radius); font-size: 13px; font-weight: 700; transition: border-color .2s, color .2s; }
.header-cart:hover { border-color: var(--gm); color: var(--gm); }
.header-cart svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.cart-count { position: absolute; top: -6px; right: -6px; background: var(--gm); color: #fff; width: 18px; height: 18px; border-radius: 50%; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.header-cta { background: var(--g); color: #fff; padding: 11px 24px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-radius: var(--radius); transition: background .2s; }
.header-cta:hover { background: var(--gm); }
.hamburger-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.hamburger-btn span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 300; }
.mobile-overlay.open { display: block; }
.mobile-nav { position: fixed; top: 0; right: -320px; width: 300px; height: 100%; background: var(--white); z-index: 301; padding: 24px; overflow-y: auto; transition: right .3s; display: flex; flex-direction: column; }
.mobile-nav.open { right: 0; }
.mobile-nav-close { align-self: flex-end; background: none; border: none; font-size: 24px; margin-bottom: 24px; color: var(--text); }
.mobile-nav a { display: block; padding: 13px 0; font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid #f0f0f0; }
.mobile-nav a.sub { padding-left: 18px; font-size: 12px; color: var(--mid); }
.mobile-nav a:hover { color: var(--gm); }

/* BUTTONS */
.btn { display: inline-block; padding: 14px 32px; font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-radius: var(--radius); transition: all .2s; border: 2px solid transparent; cursor: pointer; }
.btn-primary { background: var(--gm); color: #fff; border-color: var(--gm); }
.btn-primary:hover { background: var(--g); border-color: var(--g); transform: translateY(-1px); }
.btn-dark { background: var(--g); color: #fff; border-color: var(--g); }
.btn-dark:hover { background: var(--gm); border-color: var(--gm); }
.btn-outline { border-color: var(--g); color: var(--g); background: transparent; }
.btn-outline:hover { background: var(--g); color: #fff; }
.btn-white { background: #fff; color: var(--g); border-color: #fff; }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,.6); color: #fff; background: transparent; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-lg { padding: 16px 40px; font-size: 13px; }

/* SECTION LABELS */
.section-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--gl); margin-bottom: 12px; }
.section-title { margin-bottom: 16px; font-size: clamp(1.8rem,3.5vw,2.6rem); }

/* =============================================
   HERO — YouTube iframe background
   ============================================= */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; background: #1a2a1a; }
.hero-video-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; background: #1a2e1a; }
.hero-iframe {
    position: absolute; top: 50%; left: 50%;
    width: 177.78vh; height: 56.25vw;
    min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%);
    border: none; pointer-events: none;
}
.hero-video-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(120deg, rgba(20,40,20,.72) 0%, rgba(10,25,10,.45) 60%, rgba(0,0,0,.2) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero > .container { position: relative; z-index: 2; }
.hero-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--gl); border: 1px solid var(--gl); padding: 6px 16px; margin-bottom: 24px; }
.hero h1 { color: #fff; max-width: 680px; margin-bottom: 20px; font-size: clamp(2.2rem,5vw,4rem); }
.hero h1 em { font-style: italic; color: var(--gl); }
.hero-desc { color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.75; max-width: 520px; margin-bottom: 36px; font-weight: 300; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-phone { position: absolute; bottom: 36px; right: 0; z-index: 2; background: rgba(255,255,255,.12); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.25); color: #fff; padding: 13px 22px; font-size: 13px; font-weight: 700; letter-spacing: .06em; border-radius: var(--radius); display: flex; align-items: center; gap: 8px; transition: background .2s; }
.hero-phone:hover { background: rgba(255,255,255,.2); }
.hero-phone svg { width: 16px; height: 16px; fill: var(--gl); }

/* GALLERY SLIDER */
.gallery-slider { overflow: hidden; width: 100%; }
.gallery-track { display: flex; gap: 16px; animation: slideLeft 50s linear infinite; width: max-content; }
.gallery-track:hover { animation-play-state: paused; }
@keyframes slideLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.gallery-slide { width: 340px; height: 420px; border-radius: var(--radius); overflow: hidden; position: relative; flex-shrink: 0; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-slide:hover img { transform: scale(1.05); }
.gallery-slide-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(20,40,20,.5) 0%,transparent 50%); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main { width: 100%; height: 540px; object-fit: cover; border-radius: var(--radius); }
.about-badge { position: absolute; bottom: -28px; right: -28px; width: 150px; height: 150px; background: var(--g); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; }
.about-badge .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; }
.about-badge .lbl { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; opacity: .85; }
.about-features { display: flex; gap: 24px; margin: 28px 0 36px; flex-wrap: wrap; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.about-feature-icon { width: 44px; height: 44px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-feature-icon svg { width: 20px; height: 20px; fill: var(--g); }
.about-feature strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.about-feature span { font-size: 13px; color: var(--light); }

/* BENEFITS */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.benefits-img { width: 100%; height: 560px; object-fit: cover; border-radius: var(--radius); }

/* BENEFITS SLIDESHOW */
.benefits-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 560px;
    background: var(--cream);
}
.bs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
}
.bs-slide.active { opacity: 1; }
.bs-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bs-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.85);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--g);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background .2s, transform .2s;
    box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.bs-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.bs-prev { left: 14px; }
.bs-next { right: 14px; }
.bs-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 10;
}
.bs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    transition: background .2s, transform .2s;
    border: none;
}
.bs-dot.active {
    background: #fff;
    transform: scale(1.25);
}
.benefits-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 32px; }
.benefit-item { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--mid); }
.benefit-check { width: 24px; height: 24px; background: var(--gm); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-check svg { width: 12px; height: 12px; fill: none; stroke: white; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* CAT CARDS */
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.cat-card { background: var(--white); border-radius: var(--radius); overflow: hidden; text-align: center; transition: box-shadow .25s, transform .25s; }
.cat-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.cat-card-img-wrap { overflow: hidden; }
.cat-card-img { width: 100%; height: 200px; object-fit: cover; transition: transform .5s; }
.cat-card:hover .cat-card-img { transform: scale(1.04); }
.cat-card-body { padding: 22px 18px; }
.cat-card-body h3 { font-size: 17px; margin-bottom: 14px; }
.cat-card:hover .btn-outline { background: var(--g); color: #fff; }

/* HOMEPAGE PRODUCTS HEADER */
.hp-products-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 20px; margin-bottom: 36px; flex-wrap: wrap;
}
.hp-products-header .section-title { margin-bottom: 0; }

/* CALL BANNER */
.call-banner { background: var(--g); padding: 70px 40px; text-align: center; }
.call-banner h2 { color: #fff; margin-bottom: 10px; font-size: clamp(1.5rem,3vw,2.2rem); }
.call-banner h2 strong { color: var(--gl); }
.call-banner p { color: rgba(255,255,255,.7); margin-bottom: 28px; }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg,var(--g) 0%,var(--gm) 100%); padding: 70px 0; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; font-size: 16px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.breadcrumb a { color: var(--gl); }
.breadcrumb span::before { content: '/'; margin-right: 8px; }

/* SHOP LAYOUT */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 44px; padding: 60px 0; }
.widget-title { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--g); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--cream); }
.sidebar-widget { margin-bottom: 36px; }
.sidebar-widget ul li a { display: flex; justify-content: space-between; align-items: center; padding: 9px 12px; font-size: 13.5px; color: var(--mid); border-radius: var(--radius); transition: background .15s, color .15s; }
.sidebar-widget ul li a:hover, .sidebar-widget ul li.current-cat > a { background: var(--cream); color: var(--g); font-weight: 700; }
.sidebar-widget ul li a .count { background: var(--cream); color: var(--light); font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 10px; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; padding-bottom: 20px; border-bottom: 1px solid var(--cream); }
.shop-result-count { font-size: 14px; color: var(--light); }
.woocommerce-ordering select { padding: 9px 14px; border: 1.5px solid #ddd; border-radius: var(--radius); font-size: 13px; background: #fff; color: var(--text); outline: none; }

/* =============================================
   WOOCOMMERCE PRODUCT GRID
   ============================================= */
/* WooCommerce product grid — !important to override WC default columns */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(4,1fr) !important;
    gap: 22px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .25s, transform .22s;
    border: 1px solid #f0f0f0;
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    clear: none !important;
}
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.woocommerce ul.products li.product .product-img-wrap { overflow: hidden; position: relative; }
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    transition: transform .5s;
}
.woocommerce ul.products li.product:hover img { transform: scale(1.04); }
.woocommerce ul.products li.product .onsale { position: absolute; top: 12px; left: 12px; background: var(--gm); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .1em; padding: 4px 10px; border-radius: 10px; text-transform: uppercase; z-index: 2; }
.woocommerce ul.products li.product .product-body { padding: 16px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
.woocommerce ul.products li.product .category-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--cream); color: var(--gm); padding: 3px 8px; border-radius: 10px; margin-bottom: 8px; }
.woocommerce ul.products li.product .price { font-size: 17px; font-weight: 700; color: var(--g); display: block; margin-bottom: 12px; }
.woocommerce ul.products li.product .price del { color: var(--light); font-size: 14px; font-weight: 400; margin-right: 6px; }
.woocommerce ul.products li.product .button { display: block; width: 100%; padding: 10px; background: var(--g); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-align: center; border-radius: var(--radius); border: none; transition: background .2s; }
.woocommerce ul.products li.product .button:hover { background: var(--gm); }
.out-of-stock-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .1em; color: #c0392b; background: #fef2f2; padding: 4px 10px; border-radius: 10px; text-transform: uppercase; margin-bottom: 10px; }
.woocommerce-pagination { margin-top: 48px; display: flex; justify-content: center; }
.woocommerce-pagination ul { display: flex; gap: 8px; }
.woocommerce-pagination ul li a, .woocommerce-pagination ul li span { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius); font-size: 14px; font-weight: 700; color: var(--mid); border: 1.5px solid var(--cream); transition: all .2s; }
.woocommerce-pagination ul li a:hover { border-color: var(--gm); color: var(--gm); }
.woocommerce-pagination ul li span.current { background: var(--g); color: #fff; border-color: var(--g); }

/* WOOCOMMERCE GENERAL */
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button { background: var(--g); color: #fff; padding: 12px 28px; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-radius: var(--radius); border: none; transition: background .2s; }
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover { background: var(--gm); }
.woocommerce-message { background: var(--cream); border-top: 3px solid var(--gm); color: var(--text); padding: 14px 20px; margin-bottom: 20px; border-radius: var(--radius); }
.woocommerce-error { background: #fef2f2; border-top: 3px solid #c0392b; padding: 14px 20px; margin-bottom: 20px; border-radius: var(--radius); }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; padding: 70px 0; }
.contact-info-card { background: var(--cream); border-radius: var(--radius); padding: 40px; }
.contact-info-card h2 { margin-bottom: 28px; font-size: 1.6rem; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-icon { width: 48px; height: 48px; background: var(--g); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; fill: #fff; }
.contact-detail h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--g); margin-bottom: 4px; font-family: var(--font-body); }
.contact-detail p { font-size: 15px; color: var(--mid); margin: 0; }
.contact-hours { border-top: 1px solid rgba(0,0,0,.08); padding-top: 20px; margin-top: 4px; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: 14px; color: var(--mid); }
.hours-row .day { font-weight: 700; color: var(--text); }
.contact-form-wrap { padding: 40px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form-wrap h2 { margin-bottom: 28px; font-size: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid #ddd; border-radius: var(--radius); font-size: 14.5px; color: var(--text); background: #fff; outline: none; transition: border-color .2s; font-family: var(--font-body); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gm); }
.form-group textarea { height: 140px; resize: vertical; }

/* PLANT CARE */
.plant-care-search { background: var(--cream); padding: 40px; border-radius: var(--radius); text-align: center; margin-bottom: 48px; }
.search-bar { display: flex; max-width: 500px; margin: 20px auto 0; }
.search-bar input { flex: 1; padding: 13px 20px; border: 1.5px solid #ddd; border-right: none; border-radius: var(--radius) 0 0 var(--radius); font-size: 15px; outline: none; font-family: var(--font-body); }
.search-bar button { padding: 13px 24px; background: var(--g); color: #fff; border: none; border-radius: 0 var(--radius) var(--radius) 0; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: background .2s; }
.search-bar button:hover { background: var(--gm); }
.care-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.care-card { background: #fff; border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s, transform .22s; }
.care-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.care-card-img { width: 100%; height: 200px; object-fit: cover; }
.care-card-body { padding: 18px; }
.care-card-body h3 { font-size: 16px; margin-bottom: 10px; }
.care-card-body a { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gm); border-bottom: 1.5px solid var(--gl); }

/* FOOTER */
.site-footer { background: #111d11; color: rgba(255,255,255,.65); }
.footer-main { padding: 72px 0 56px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; }
.footer-logo img { height: 52px; object-fit: contain; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-logo p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.5); max-width: 220px; }
.footer-col h4 { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--gl); margin-bottom: 20px; }
.footer-col p, .footer-col address { font-size: 14px; line-height: 1.9; font-style: normal; color: rgba(255,255,255,.55); }
.footer-col p strong { color: rgba(255,255,255,.85); font-weight: 700; }
.footer-col a { color: var(--gl); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 13.5px; color: rgba(255,255,255,.55); }
.footer-hours-row .day { color: rgba(255,255,255,.85); font-weight: 700; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-social { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color .2s, background .2s; }
.footer-social:hover { border-color: var(--gl); background: rgba(138,173,110,.15); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,.65); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.3); }

/* =============================================
   SINGLE PRODUCT
   ============================================= */
.sp-breadcrumb { background: var(--cream); padding: 12px 0; font-size: 12.5px; color: var(--light); border-bottom: 1px solid #eee; }
.sp-breadcrumb a { color: var(--gm); }
.sp-breadcrumb span { color: var(--mid); }
.sp-wrap { padding-top: 52px; padding-bottom: 80px; }
.sp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 60px; }
.sp-gallery__main { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--cream); margin-bottom: 10px; }
.sp-gallery__main img { width: 100%; height: 480px; object-fit: cover; display: block; transition: transform .4s; cursor: zoom-in; }
.sp-gallery__main img:hover { transform: scale(1.02); }
.sp-gallery__zoom-hint { position: absolute; bottom: 12px; right: 12px; font-size: 11px; background: rgba(0,0,0,.45); color: #fff; padding: 4px 10px; border-radius: 10px; pointer-events: none; }
.sp-badge { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 10px; }
.sp-badge--sold { background: #c0392b; color: #fff; }
.sp-badge--sale { background: var(--gm); color: #fff; }
.sp-gallery__thumbs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.sp-gallery__thumb { width: 76px; height: 76px; border-radius: 6px; overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: border-color .2s, opacity .2s; opacity: .75; flex-shrink: 0; }
.sp-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-gallery__thumb:hover, .sp-gallery__thumb.active { border-color: var(--gm); opacity: 1; }
.sp-trust { display: flex; gap: 8px; padding: 16px; background: var(--cream); border-radius: var(--radius); flex-wrap: wrap; }
.sp-trust__item { flex: 1; min-width: 60px; text-align: center; }
.sp-trust__item span { font-size: 20px; display: block; }
.sp-trust__item small { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--g); display: block; margin-top: 4px; line-height: 1.3; }
.sp-cats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.sp-cat-tag { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--cream); color: var(--gm); padding: 3px 10px; border-radius: 10px; transition: background .2s; }
.sp-cat-tag:hover { background: var(--gl); color: #fff; }
.sp-title { font-size: clamp(1.5rem,3vw,2.1rem); line-height: 1.2; margin-bottom: 20px; }
.sp-price-block { padding: 20px; background: #f9f9f7; border: 1px solid #e8e4dc; border-radius: var(--radius); margin-bottom: 20px; }
.sp-price-main .woocommerce-Price-amount, .sp-price-main .price { font-size: 2rem !important; font-weight: 700 !important; color: var(--g) !important; line-height: 1; display: block; margin-bottom: 8px; }
.sp-price-tax-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.sp-price-gst-badge { font-size: 10.5px; font-weight: 700; background: var(--g); color: #fff; padding: 2px 8px; border-radius: 10px; letter-spacing: .06em; }
.sp-price-gst-amount { font-size: 12.5px; color: var(--light); }
.sp-price-exgst { font-size: 12.5px; color: var(--light); margin-bottom: 12px; }
.sp-price-exgst strong { color: var(--mid); }
.sp-stock { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 10px; margin-top: 4px; }
.sp-stock--in { background: #e8f5e9; color: #2e7d32; }
.sp-stock--out { background: #fef2f2; color: #c0392b; }
.sp-stock svg { flex-shrink: 0; stroke: currentColor; fill: none; }
.sp-short-desc { font-size: 15px; line-height: 1.8; color: var(--mid); margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--cream); }
.sp-cart-wrap { display: flex; gap: 12px; align-items: stretch; margin-bottom: 12px; }
.sp-qty-wrap { display: flex; border: 1.5px solid #ddd; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.sp-qty-btn { width: 40px; background: var(--cream); border: none; font-size: 18px; cursor: pointer; color: var(--g); transition: background .15s; font-weight: 700; }
.sp-qty-btn:hover { background: var(--gl); color: #fff; }
.sp-qty-input { width: 48px; text-align: center; border: none; border-left: 1px solid #ddd; border-right: 1px solid #ddd; font-size: 15px; font-family: var(--font-body); outline: none; -moz-appearance: textfield; }
.sp-qty-input::-webkit-outer-spin-button, .sp-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.sp-cart-form { flex: 1; }
.sp-add-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px 20px; background: var(--g); color: #fff; border: none; border-radius: var(--radius); font-size: 13.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: background .2s; text-decoration: none; }
.sp-add-btn:hover { background: var(--gm); color: #fff; }
.sp-enquire-btn { display: block; text-align: center; color: var(--gm); font-size: 13px; font-weight: 700; padding: 10px; border: 1.5px solid var(--gl); border-radius: var(--radius); transition: all .2s; margin-top: 6px; }
.sp-enquire-btn:hover { background: var(--g); color: #fff; border-color: var(--g); }
.sp-sold-out-box { background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--radius); padding: 20px; text-align: center; }
.sp-sold-out-box p { color: #c0392b; font-weight: 600; margin-bottom: 12px; }
.sp-meta { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--cream); display: flex; flex-direction: column; gap: 8px; }
.sp-meta__row { display: flex; gap: 10px; font-size: 13px; color: var(--light); }
.sp-meta__label { font-weight: 700; color: var(--mid); min-width: 80px; }
.sp-meta a { color: var(--gm); }
.sp-tabs-wrap { margin-bottom: 60px; border: 1px solid #eee; border-radius: var(--radius); overflow: hidden; }
.sp-tabs { display: flex; background: var(--cream); border-bottom: 1px solid #e0ddd4; }
.sp-tab { padding: 14px 24px; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: none; border: none; border-bottom: 2px solid transparent; color: var(--light); cursor: pointer; margin-bottom: -1px; transition: color .2s, border-color .2s; }
.sp-tab:hover { color: var(--gm); }
.sp-tab.active { color: var(--g); border-bottom-color: var(--g); background: #fff; }
.sp-tab-content { padding: 32px; font-size: 15px; line-height: 1.8; color: var(--mid); }
.sp-tab-content h3, .sp-tab-content h4 { color: var(--text); margin: 20px 0 8px; }
.sp-tab-content h3:first-child, .sp-tab-content h4:first-child { margin-top: 0; }
.sp-tab-content ul, .sp-tab-content ol { padding-left: 20px; margin-bottom: 16px; }
.sp-tab-content li { margin-bottom: 4px; }
.sp-tab-content p { margin-bottom: 12px; }
.sp-tab-content strong { color: var(--text); }
.sp-delivery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.sp-delivery-item { text-align: center; }
.sp-delivery-item > span { font-size: 2rem; display: block; margin-bottom: 10px; }
.sp-delivery-item h4 { font-size: 14px; color: var(--g); margin-bottom: 8px; }
.sp-delivery-item p { font-size: 13.5px; color: var(--light); }
.sp-delivery-item a { color: var(--gm); font-weight: 700; }
.sp-tax-table h3 { margin-bottom: 16px; font-size: 1.1rem; }
.sp-tax-breakdown { width: 100%; max-width: 400px; border-collapse: collapse; font-size: 14.5px; margin-bottom: 16px; }
.sp-tax-breakdown td { padding: 10px 14px; border-bottom: 1px solid #eee; color: var(--mid); }
.sp-tax-breakdown td:last-child { text-align: right; }
.sp-tax-total td { background: var(--g); color: #fff; font-weight: 700; border-bottom: none; }
.sp-tax-note { font-size: 12.5px; color: var(--light); font-style: italic; }
.sp-related { margin-bottom: 40px; }
.sp-related h2 { font-size: 1.5rem; margin-bottom: 24px; }
.sp-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
.sp-lightbox.active { display: flex; }
.sp-lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 4px; display: block; }
.sp-lightbox__close { position: fixed; top: 16px; right: 20px; background: rgba(255,255,255,.15); border: none; color: #fff; font-size: 22px; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; }
.sp-lightbox__close:hover { background: rgba(255,255,255,.3); }
.sp-lightbox__prev, .sp-lightbox__next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: none; color: #fff; font-size: 36px; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; }
.sp-lightbox__prev { left: 16px; }
.sp-lightbox__next { right: 16px; }
.sp-lightbox__prev:hover, .sp-lightbox__next:hover { background: rgba(255,255,255,.25); }
.sp-lightbox__count { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: 13px; }

/* =============================================
   PRODUCTS PAGE (page-products.php)
   ============================================= */
.pp-hero { position: relative; min-height: 80vh; background: url('/wp-content/themes/plantsmelb-theme/assets/images/a_modern_white_house_with_lush_green_monstera_plants_in_pots_and_ficus_burgundy_plants+(2)-600h.jpeg') center/cover no-repeat; display: flex; align-items: center; overflow: hidden; }
.pp-hero__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(20,40,20,.78) 0%, rgba(10,25,10,.45) 60%, rgba(0,0,0,.15) 100%); }
.pp-hero__inner { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; }
.pp-hero__content { max-width: 640px; }
.pp-hero__content h1 { color: #fff; font-size: clamp(1.9rem,4vw,3.2rem); margin-bottom: 20px; line-height: 1.15; }
.pp-hero__content p { color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.8; font-weight: 300; margin-bottom: 12px; }
.pp-hero__content p strong { color: var(--gl); font-weight: 700; }
.pp-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.pp-hero__phone { position: absolute; bottom: 32px; right: 0; z-index: 2; display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.12); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.22); color: #fff; padding: 12px 22px; font-size: 13.5px; font-weight: 700; letter-spacing: .04em; border-radius: var(--radius); transition: background .2s; }
.pp-hero__phone:hover { background: rgba(255,255,255,.22); color: #fff; }
.pp-hero__phone svg { width: 18px; height: 18px; fill: var(--gl); flex-shrink: 0; }
.pp-hero__phone strong { color: var(--gl); }
.pp-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--gl); margin-bottom: 10px; }
.pp-available { padding: 90px 0; }
.pp-available__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.pp-available__text h2 { font-size: clamp(1.7rem,3vw,2.4rem); margin-bottom: 16px; }
.pp-available__text > p { color: var(--mid); margin-bottom: 24px; }
.pp-plant-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pp-plant-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--mid); }
.pp-plant-list__check { width: 24px; height: 24px; background: var(--gm); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pp-plant-list__check svg { width: 12px; height: 12px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.pp-available__img { position: relative; }
.pp-available__img img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); }
.pp-available__badge { position: absolute; bottom: -24px; right: -24px; width: 140px; height: 140px; background: var(--g); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,.18); }
.pp-available__badge .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.pp-available__badge .lbl { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; margin-top: 5px; opacity: .85; padding: 0 12px; line-height: 1.3; }
.pp-cats { padding: 90px 0; }
.pp-cats__header { text-align: center; margin-bottom: 52px; }
.pp-cats__header h2 { font-size: clamp(1.7rem,3vw,2.4rem); }
.pp-cats__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pp-cat-card { display: block; border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); transition: box-shadow .25s, transform .25s; }
.pp-cat-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.pp-cat-card__img-wrap { position: relative; overflow: hidden; height: 200px; }
.pp-cat-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.pp-cat-card:hover .pp-cat-card__img-wrap img { transform: scale(1.06); }
.pp-cat-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,40,20,.55) 0%, transparent 60%); }
.pp-cat-card__emoji { position: absolute; top: 14px; left: 14px; font-size: 1.5rem; line-height: 1; background: rgba(255,255,255,.9); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.pp-cat-card__body { padding: 22px 20px; }
.pp-cat-card__body h3 { font-size: 15px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 7px; }
.pp-cat-card__body p { font-size: 13.5px; color: var(--light); margin-bottom: 14px; line-height: 1.5; }
.pp-cat-card__btn { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gm); border-bottom: 1.5px solid var(--gl); padding-bottom: 1px; transition: color .2s; }
.pp-cat-card:hover .pp-cat-card__btn { color: var(--g); border-color: var(--g); }
.pp-products { padding: 90px 0; }
.pp-products__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.pp-products__header h2 { font-size: clamp(1.7rem,3vw,2.4rem); margin: 0; }
.pp-filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.pp-filter-tab { padding: 8px 18px; border: 1.5px solid #ddd; border-radius: 20px; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; background: var(--white); color: var(--mid); cursor: pointer; transition: all .2s; }
.pp-filter-tab:hover { border-color: var(--gm); color: var(--gm); }
.pp-filter-tab.active { background: var(--g); border-color: var(--g); color: #fff; }
.pp-toolbar { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid #eee; }
.pp-search-wrap { position: relative; flex: 1; min-width: 200px; }
.pp-search-wrap svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; fill: none; stroke: var(--light); stroke-width: 2; stroke-linecap: round; }
.pp-search-wrap input { width: 100%; padding: 11px 16px 11px 40px; border: 1.5px solid #ddd; border-radius: var(--radius); font-size: 14px; font-family: var(--font-body); outline: none; transition: border-color .2s; }
.pp-search-wrap input:focus { border-color: var(--gm); }
.pp-sort-select { padding: 11px 14px; border: 1.5px solid #ddd; border-radius: var(--radius); font-size: 13px; font-family: var(--font-body); background: var(--white); color: var(--text); cursor: pointer; outline: none; transition: border-color .2s; }
.pp-result-count { font-size: 13px; color: var(--light); white-space: nowrap; }
.pp-product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; list-style: none; margin: 0; padding: 0; }
.pp-product-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid #f0f0f0; transition: box-shadow .25s, transform .22s; }
.pp-product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.pp-product-card > a { display: flex; flex-direction: column; height: 100%; }
.pp-product-card__img { position: relative; overflow: hidden; height: 220px; flex-shrink: 0; }
.pp-product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pp-product-card:hover .pp-product-card__img img { transform: scale(1.05); }
.pp-badge { position: absolute; top: 10px; left: 10px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 3px 9px; border-radius: 10px; z-index: 2; }
.pp-badge--sale { background: var(--gm); color: #fff; }
.pp-badge--sold { background: #c0392b; color: #fff; }
.pp-product-card__body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.pp-product-card__cat { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--cream); color: var(--gm); padding: 3px 8px; border-radius: 10px; margin-bottom: 9px; }
.pp-product-card__body h3 { font-size: 15.5px; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: auto; padding-bottom: 12px; }
.pp-product-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--cream); gap: 8px; margin-top: 12px; }
.pp-product-card__price { font-size: 17px; font-weight: 700; color: var(--g); }
.pp-product-card__btn { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--g); color: #fff; padding: 7px 13px; border-radius: var(--radius); white-space: nowrap; transition: background .2s; }
.pp-product-card:hover .pp-product-card__btn { background: var(--gm); }
.pp-product-card__btn--out { background: #f0f0f0; color: var(--light); }
.pp-view-all { text-align: center; margin-top: 52px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .pp-product-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-grid, .benefits-grid { gap: 48px; }
    .cat-grid { grid-template-columns: repeat(2,1fr); }
    .care-grid { grid-template-columns: repeat(2,1fr); }
    .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(3,1fr) !important; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { display: none; }
    .pp-cats__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
    .primary-nav, .header-cta { display: none; }
    .hamburger-btn { display: flex; }
    .about-grid, .benefits-grid, .contact-layout { grid-template-columns: 1fr; }
    .benefits-img { height: 350px; }
    .about-images { margin-bottom: 48px; }
    .about-badge { bottom: -16px; right: 12px; width: 120px; height: 120px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .sp-layout { grid-template-columns: 1fr; gap: 32px; }
    .sp-gallery__main img { height: 360px; }
    .sp-delivery-grid { grid-template-columns: 1fr; gap: 16px; }
    .sp-delivery-item { text-align: left; display: flex; gap: 16px; align-items: flex-start; }
    .sp-delivery-item > span { font-size: 1.5rem; margin-bottom: 0; flex-shrink: 0; }
    .pp-available__grid { grid-template-columns: 1fr; gap: 40px; }
    .pp-available__img { order: -1; }
    .pp-available__img img { height: 360px; }
    .pp-products__header { flex-direction: column; align-items: flex-start; }
    .pp-product-grid { grid-template-columns: repeat(2,1fr); }
    .hp-products-header { flex-direction: column; align-items: flex-start; }
    .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .section { padding: 56px 0; }
    .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .care-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
    .gallery-slide { width: 260px; height: 320px; }
    .hero { min-height: 80vh; }
    .call-banner { padding: 56px 20px; }
    .header-cart span { display: none; }
    .sp-wrap { padding-top: 24px; }
    .sp-gallery__main img { height: 280px; }
    .sp-tab { padding: 10px 14px; font-size: 11px; }
    .sp-tab-content { padding: 20px 16px; }
    .sp-lightbox__prev { left: 6px; }
    .sp-lightbox__next { right: 6px; }
    .pp-cats__grid { grid-template-columns: 1fr; }
    .pp-product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .pp-product-card__img { height: 160px; }
    .pp-product-card__body { padding: 12px; }
    .pp-product-card__body h3 { font-size: 13px; }
    .pp-toolbar { flex-direction: column; align-items: stretch; }
    .pp-hero__phone { position: static; display: inline-flex; margin-top: 20px; }
}
