/* =============================================================
   PALMWOOD RENTALS – COMPONENT STYLES
   ============================================================= */

/* ---- HEADER ---- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--dark);
    border-bottom: 2px solid var(--brand);
}
.header-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    height: 68px; gap: 1.5rem;
}
.site-logo, .logo-text {
    font-family: var(--font-head); font-size: 1.9rem;
    color: var(--white); text-decoration: none; letter-spacing: 2px;
}
.logo-text em { color: var(--brand); font-style: normal; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: #ccc; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links .current-menu-item a { color: var(--brand); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.cart-icon {
    color: var(--white); text-decoration: none; font-size: 1.3rem;
    position: relative; display: flex; align-items: center;
}
.cart-count {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: #888;
    font-size: 0.7rem; font-weight: 700; min-width: 16px;
    margin-left: 2px; transition: all 0.2s;
}
.cart-count.has-items {
    background: var(--brand); color: var(--white);
    border-radius: 50%; width: 18px; height: 18px;
    position: absolute; top: -6px; right: -8px; font-size: 0.65rem;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.nav-cta { white-space: nowrap; }

/* ---- TRUST BAR ---- */
.trust-bar {
    background: var(--brand); padding: 0.8rem 1.5rem;
    display: flex; gap: 2rem; justify-content: center;
    align-items: center; flex-wrap: wrap;
}
.trust-item { color: var(--white); font-size: 0.82rem; font-weight: 600; }
.trust-item::before { content: '✓ '; }

/* ---- HERO ---- */
.hero {
    background: var(--dark); padding: 5rem 0 4rem;
    text-align: center; position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(255,92,26,0.15) 0%, transparent 65%);
    pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
    display: inline-block; background: var(--brand); color: var(--white);
    font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 20px; margin-bottom: 1.5rem;
}
.hero h1 { font-family: var(--font-head); font-size: clamp(3rem,8vw,6rem); color: var(--white); line-height: 1; letter-spacing: 2px; margin-bottom: 1rem; }
.hero h1 span { color: var(--brand); }
.hero > .hero-inner > p { color: #aaa; font-size: 1.1rem; max-width: 560px; margin: 0 auto 2.5rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 3.5rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2.5rem; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: var(--font-head); font-size: 2.2rem; color: var(--brand); }
.hero-stat span { font-size: 0.78rem; color: #777; letter-spacing: 0.5px; text-transform: uppercase; }

/* ---- BG UTILITIES ---- */
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }
.bg-dark .section-title { color: var(--white); }
.bg-dark .section-sub { color: #888; }

/* ---- HOW IT WORKS ---- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.step-card { background: var(--white); border-radius: var(--radius); padding: 2rem 1.5rem; border: 1px solid #eee; transition: box-shadow 0.2s, transform 0.2s; }
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.step-num { font-family: var(--font-head); font-size: 3rem; color: var(--brand); line-height: 1; margin-bottom: 0.8rem; }
.step-card h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ---- PACKAGES ---- */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.pkg-card { background: var(--white); border: 1.5px solid #eee; border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.pkg-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.pkg-card.featured { border-color: var(--brand); }
.pkg-header { padding: 1.5rem; background: var(--dark); color: var(--white); position: relative; }
.pkg-card.featured .pkg-header { background: var(--brand); }
.pkg-badge { position: absolute; top: 1rem; right: 1rem; background: var(--white); color: var(--brand); font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 20px; }
.pkg-header h3 { font-family: var(--font-head); font-size: 1.8rem; letter-spacing: 1px; }
.pkg-header p { font-size: 0.85rem; opacity: 0.85; margin: 0.3rem 0 0; }
.pkg-body { padding: 1.5rem; flex: 1; }
.pkg-price { font-family: var(--font-head); font-size: 2.2rem; color: var(--brand); }
.pkg-price .woocommerce-Price-amount { font-family: var(--font-head); font-size: 2.2rem; color: var(--brand); }
.pkg-features { list-style: none; margin: 1.2rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.pkg-features li { font-size: 0.9rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.pkg-features li::before { content: '▶'; color: var(--brand); font-size: 0.65rem; margin-top: 3px; flex-shrink: 0; }
.pkg-footer { padding: 0 1.5rem 1.5rem; }
.pkg-btn { display: block; width: 100%; text-align: center; background: var(--dark); color: var(--white) !important; padding: 0.8rem; border-radius: var(--radius-sm); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: background 0.2s; }
.pkg-btn:hover { background: var(--brand); color: var(--white) !important; }
.pkg-card.featured .pkg-btn { background: var(--brand); }
.pkg-card.featured .pkg-btn:hover { background: var(--brand-dark); }

/* ---- EQUIPMENT GRID ---- */
.equip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.equip-card { background: var(--dark2); border: 1px solid var(--dark3); border-radius: var(--radius); padding: 1.5rem 1rem; text-align: center; cursor: pointer; transition: border-color 0.2s, transform 0.2s; text-decoration: none; color: inherit; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.equip-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.equip-icon { font-size: 2rem; line-height: 1; }
.equip-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin: 0; }
.equip-card p { font-size: 0.78rem; color: var(--gray); margin: 0; }

/* ---- SERVICE AREA ---- */
.area-flex { display: flex; gap: 3rem; align-items: stretch; flex-wrap: wrap; }
.area-text { flex: 1; min-width: 260px; }
.area-map { flex: 1; min-width: 280px; display: flex; flex-direction: column; }

.city-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.city-tag { background: var(--white); border: 1px solid #ddd; border-radius: 20px; padding: 0.3rem 0.8rem; font-size: 0.8rem; font-weight: 500; color: var(--text-muted); }
.contact-card { background: var(--brand); border-radius: var(--radius); padding: 2rem; color: var(--white); flex: 1; display: flex; flex-direction: column; justify-content: center; }
.contact-card h4 { font-family: var(--font-head); font-size: 1.6rem; margin-bottom: 0.8rem; }
.contact-info { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-info a { color: var(--white); text-decoration: none; font-weight: 600; font-size: 1.05rem; }
.contact-info span { font-size: 0.85rem; opacity: 0.85; }

/* ---- REVIEWS ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.review-card { background: var(--light); border-radius: var(--radius); padding: 1.5rem; border: 1px solid #eee; transition: box-shadow 0.2s; }
.review-card:hover { box-shadow: var(--shadow); }
.stars { color: var(--brand); font-size: 1rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.reviewer { display: flex; align-items: center; gap: 0.7rem; }
.reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--brand); color: var(--white); font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.reviewer-name { font-weight: 600; font-size: 0.9rem; }
.reviewer-event { font-size: 0.78rem; color: var(--text-muted); }

/* ---- QUOTE FORM ---- */
.quote-form {
    background: #1e1e1c;
    border: 1px solid #2e2e2b;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.quote-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.quote-form .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.quote-form label { color: #aaa; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.3px; text-align: center; }
.quote-form label span { color: var(--brand); }
.quote-form input,
.quote-form select,
.quote-form textarea {
    background: #2a2a27;
    border: 1px solid #3a3a37;
    color: var(--white);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
.quote-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--brand); }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #555; }
.quote-form select option { background: #2a2a27; color: var(--white); }
.quote-form textarea { min-height: 110px; resize: vertical; }
.quote-form .form-group-full { margin-bottom: 1.5rem; }
.quote-success { background: #1a3a1a; border: 1px solid #2E7D32; color: #81c784; padding: 1rem 1.5rem; border-radius: 10px; margin-bottom: 1.5rem; text-align: center; font-weight: 600; }

/* HoneyBook embed wrapper — homepage dark card */
.hb-embed-wrap { max-width: 720px; margin: 0 auto; background: #1e1e1c; border: 1px solid #2e2e2b; border-radius: 16px; overflow: hidden; padding: 1rem; box-shadow: 0 8px 40px rgba(0,0,0,0.4); }

/* HoneyBook embed — product page white card */
.pq-hb-wrap { background: #fff; border-radius: 16px; overflow: hidden; width: 100%; max-width: 100%; box-sizing: border-box; }
.pq-hb-wrap > div { width: 100% !important; max-width: 100% !important; }
.pq-hb-wrap iframe { display: block; width: 100% !important; max-width: 100% !important; border: none; }

/* ---- FAQ ---- */
.faq-list { max-width: 720px; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item { border: 1px solid #eee; border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; padding: 1.1rem 1.3rem; text-align: left; cursor: pointer; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--text); }
.faq-q .arrow { color: var(--brand); font-size: 1rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-a { padding: 0 1.3rem; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s; }
.faq-a p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.3rem 1.1rem; }

/* ---- STICKY CALL BAR (mobile) ---- */
.sticky-call-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: var(--brand); padding: 0.9rem; text-align: center; color: var(--white) !important; font-weight: 700; font-size: 1rem; text-decoration: none; border-top: 2px solid var(--brand-dark); }

/* ---- SHOP PAGE ---- */
.shop-hero { background: var(--dark); padding: 3rem 0; text-align: center; border-bottom: 2px solid var(--brand); }
.shop-hero h1 { font-family: var(--font-head); color: var(--white); font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 0.5rem; }
.shop-hero p { color: #888; max-width: 560px; margin: 0 auto; }
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2.5rem; align-items: start; }
.shop-sidebar { position: sticky; top: 90px; }
.sidebar-widget { background: var(--white); border: 1px solid #eee; border-radius: var(--radius); padding: 1.2rem; margin-bottom: 1.2rem; }
.sidebar-widget h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem; }
.cat-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.cat-list a { font-size: 0.9rem; color: var(--text-muted); text-decoration: none; padding: 0.3rem 0; display: flex; justify-content: space-between; }
.cat-list a:hover, .cat-list a.active { color: var(--brand); font-weight: 600; }
.cat-list a span { font-size: 0.78rem; }
.sidebar-cta { background: var(--light); }
.sidebar-cta p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.5rem; }
ul.products { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
ul.products li.product { background: var(--white); border: 1px solid #eee; border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; }
ul.products li.product:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
ul.products li.product a img { width: 100%; aspect-ratio: 1; object-fit: cover; }
ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-head); font-size: 1.3rem; padding: 1rem 1rem 0.3rem; letter-spacing: 0.5px; }
ul.products li.product .price { padding: 0 1rem 0.5rem; color: var(--brand); font-weight: 600; }
ul.products li.product .button { margin: 0.5rem 1rem 1rem; display: block; text-align: center; }

/* ---- SINGLE PRODUCT ---- */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
.product-summary .product_title { font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem); margin-bottom: 0.5rem; }
.product-summary .woocommerce-product-rating { margin-bottom: 1rem; }
.product-summary .price { font-family: var(--font-head); font-size: 2.2rem; color: var(--brand); display: block; margin-bottom: 1.2rem; }
.product-summary .woocommerce-product-details__short-description { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.rental-date-field { background: var(--light); padding: 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.2rem; }
.rental-date-field label { font-weight: 600; margin-bottom: 0.3rem; color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; }
.product-trust { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; padding: 1.2rem; background: var(--light); border-radius: var(--radius-sm); }
.trust-point { font-size: 0.88rem; color: var(--text-muted); }
.palmwood-checkout-extra { margin-top: 2rem; }
.palmwood-checkout-extra h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 1rem; }

/* ---- FOOTER ---- */
.site-footer { background: var(--dark); color: #888; padding: 3rem 0 1.5rem; border-top: 2px solid var(--brand); }
.footer-inner { display: flex; gap: 3rem; flex-wrap: wrap; justify-content: space-between; margin-bottom: 2.5rem; }
.footer-brand .logo-text { font-size: 1.7rem; color: var(--white); }
.footer-brand p { font-size: 0.85rem; margin-top: 0.5rem; max-width: 240px; line-height: 1.6; }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a { font-size: 0.82rem; color: #888; text-decoration: none; transition: color 0.2s; }
.footer-social a:hover { color: var(--brand); }
.footer-links h5 { color: var(--white); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a { color: #888; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom { border-top: 1px solid var(--dark3); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; font-size: 0.78rem; }
.footer-bottom a { color: var(--brand); }

/* ---- BREADCRUMBS ---- */
.woocommerce-breadcrumb { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.woocommerce-breadcrumb a { color: var(--brand); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.hero-inner { animation: fadeUp 0.7s ease both; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .product-layout { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .sticky-call-bar { display: block; }
    body { padding-bottom: 56px; }
    .quote-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .area-flex { flex-direction: column; }
    .hero { padding: 3rem 0 2.5rem; }
    .section-pad { padding: 3rem 0; }

    /* Hide trust bar on mobile */
    .trust-bar { display: none !important; }

    /* Dropdown nav */
    .nav-links.nav-open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #111110;
        z-index: 999;
        padding: 1.5rem 0;
        gap: 0;
        overflow-y: auto;
    }
    .nav-links.nav-open li { border-bottom: 1px solid rgba(255,255,255,0.07); }
    .nav-links.nav-open li a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        color: #fff;
        text-decoration: none;
    }
    .nav-links.nav-open li a:hover { color: var(--brand); }

    /* Hamburger → X animation */
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---- SHOP FILTER BAR (categories + sort in one row) ---- */
.shop-filter-bar {
    background: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 68px; /* height of site header */
    z-index: 50;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.filter-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    flex-wrap: wrap;
}

/* CATEGORY DROPDOWN */
.cat-dropdown-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}
.cat-dropdown-wrap label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}
.cat-dropdown {
    padding: 0.45rem 2.2rem 0.45rem 1rem !important;
    border: 1.5px solid #ddd !important;
    border-radius: 20px !important;
    background: var(--white) !important;
    color: var(--text) !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    width: auto !important;
    min-width: 200px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.9rem center !important;
    transition: border-color 0.2s !important;
}
.cat-dropdown:focus {
    border-color: var(--brand) !important;
    outline: none !important;
}

/* SORT SIDE */
.filter-bar-sort {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.filter-bar-sort .woocommerce-result-count {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    white-space: nowrap;
}
.filter-bar-sort .woocommerce-ordering {
    margin: 0;
}
.filter-bar-sort .woocommerce-ordering select {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border: 1.5px solid #ddd;
    border-radius: 20px;
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    width: auto;
    transition: border-color 0.18s;
}
.filter-bar-sort .woocommerce-ordering select:focus {
    border-color: var(--brand);
    outline: none;
}

/* Remove old sidebar-based shop layout now that bar is top */
.shop-layout {
    display: block !important;
}
.shop-sidebar {
    display: none !important;
}
.shop-main {
    width: 100%;
}

/* Full-width product grid without sidebar */
ul.products {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
}

/* No-products state */
.no-products {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}
.no-products p { font-size: 1rem; margin-bottom: 1.2rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .shop-filter-bar { position: static; }
    .filter-bar-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .filter-bar-sort { width: 100%; justify-content: space-between; }
    .cat-dropdown-wrap { width: 100%; }
    .cat-dropdown { width: 100% !important; min-width: unset !important; }
}

/* =============================================================
   PRODUCT PAGE QUOTE FORM SECTION
   ============================================================= */
.product-quote-section {
    background: linear-gradient(135deg, #FF5C1A 0%, #C93D00 50%, #111110 100%);
    padding: 5rem 3rem;
    margin-top: 3rem;
    overflow: hidden;
}
.product-quote-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

/* ---- LEFT PANEL ---- */
.product-quote-left { color: var(--white); flex: 0 0 32%; max-width: 32%; }
.pq-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.8rem;
}
.product-quote-left h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
.product-quote-left h2 span { color: rgba(255,255,255,0.75); }
.product-quote-left > p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.pq-contact-block {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.pq-contact-heading {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.6rem;
}
.pq-phone {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.3rem;
    transition: opacity 0.2s;
}
.pq-phone:hover { opacity: 0.8; color: var(--white); }
.pq-hours {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}
.pq-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.pq-social a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.pq-social a:hover { color: var(--white); }

/* ---- RIGHT PANEL (FORM) ---- */
.product-quote-right {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}
.pq-form .pq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}
.pq-form .pq-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.pq-form label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pq-form label span { color: var(--brand); }
.pq-form input,
.pq-form select,
.pq-form textarea {
    background: var(--light);
    border: 1.5px solid #eee;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
}
.pq-form input:focus,
.pq-form select:focus,
.pq-form textarea:focus { border-color: var(--brand); background: var(--white); }
.pq-form textarea { resize: vertical; min-height: 110px; }
.pq-submit {
    width: 100% !important;
    font-size: 1.05rem !important;
    padding: 1rem !important;
    letter-spacing: 0.5px;
}
.pq-disclaimer {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.7rem !important;
}
.pq-error {
    background: #fdf0ef;
    border-left: 4px solid #c0392b;
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.2rem;
    color: #c0392b;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ---- SUCCESS STATE ---- */
.pq-success {
    text-align: center;
    padding: 2rem 1rem;
}
.pq-success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.pq-success h3 {
    font-family: var(--font-head);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.pq-success p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ---- RESPONSIVE ---- */
@media (max-width: 860px) {
    .product-quote-inner {
        flex-direction: column;
        gap: 2.5rem;
    }
    .product-quote-left {
        flex: none !important;
        max-width: 100% !important;
        width: 100%;
    }
    .product-quote-right {
        width: 100%;
    }
    .product-quote-section { padding: 3.5rem 1.5rem; }
}
@media (max-width: 560px) {
    .pq-form .pq-row { grid-template-columns: 1fr; }
    .product-quote-right { padding: 1.5rem; }
}

/* ---- HIDE CART ICON FROM HEADER ---- */
.cart-icon { display: none !important; }



/* ---- HOMEPAGE PACKAGE CARDS – show features, hide header subtitle only ---- */
.pkg-card .pkg-header p { display: none !important; }
.pkg-card .pkg-features { display: flex !important; }

/* ---- HERO – Get a Free Quote outline button white ---- */
.hero .btn-outline {
    border-color: var(--white) !important;
    color: var(--white) !important;
}
.hero .btn-outline:hover {
    background: var(--white) !important;
    color: var(--dark) !important;
}
