/*
 * Plugin: CCC Coffee Catalog V2
 * File: assets/catalog-v2.css
 *
 * PURPOSE
 * -------
 * Styles the parallel Cimarron Coffee catalog.
 *
 * SAFETY
 * ------
 * All selectors are scoped beneath `.ccc-catalog-v2`.
 * This prevents the stylesheet from changing:
 *
 * - The live V1 catalog
 * - EasyCart product-detail pages
 * - The cart
 * - Checkout
 * - Customer account pages
 *
 * EDITING
 * -------
 * The file is divided into numbered sections.
 * Future changes can replace an entire numbered section instead of
 * appending duplicate rules at the bottom of the stylesheet.
 */


/* ==========================================================================
   01. CATALOG VARIABLES AND OUTER CONTAINER
   ========================================================================== */

.ccc-catalog-v2 {
    --ccc-border: #dedbd5;
    --ccc-border-strong: #d3cdc4;
    --ccc-muted: #66635f;
    --ccc-surface: #f7f5f1;
    --ccc-sidebar-surface: #f0ede7;
    --ccc-sidebar-border: #ded8cf;
    --ccc-text: #26231f;

    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 30px 24px 64px;
    color: var(--ccc-text);
    box-sizing: border-box;
}

.ccc-catalog-v2 *,
.ccc-catalog-v2 *::before,
.ccc-catalog-v2 *::after {
    box-sizing: border-box;
}


/* ==========================================================================
   02. PAGE HERO
   ========================================================================== */

.ccc-catalog-v2__hero {
    max-width: 760px;
    margin-bottom: 36px;
}

.ccc-catalog-v2__hero h1 {
    margin: 4px 0 12px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.ccc-catalog-v2__intro,
.ccc-catalog-v2__section-heading > p:last-child {
    color: var(--ccc-muted);
    line-height: 1.65;
}

.ccc-catalog-v2__eyebrow {
    margin: 0 0 7px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}


/* ==========================================================================
   03. CATALOG TOOLBAR
   ========================================================================== */

.ccc-catalog-v2__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--ccc-border);
}

/*
 * The filter-toggle button is hidden on desktop because the filter sidebar
 * is already visible. It becomes visible in the mobile section below.
 */
.ccc-catalog-v2__filter-toggle {
    display: none;
}

.ccc-catalog-v2__result-count {
    margin: 0 0 0 auto;
    color: var(--ccc-muted);
    font-size: 0.95rem;
}


/* ==========================================================================
   04. DESKTOP CATALOG LAYOUT
   ========================================================================== */

.ccc-catalog-v2__layout {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}


/* ==========================================================================
   05. DESKTOP FILTER SIDEBAR
   ========================================================================== */

.ccc-catalog-v2__filters {
    position: sticky;
    top: 24px;
    padding: 22px 18px 24px;
    background: var(--ccc-sidebar-surface);
    border: 1px solid var(--ccc-sidebar-border);
    border-radius: 4px;
}

.ccc-catalog-v2__filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.ccc-catalog-v2__filters-header h2 {
    margin: 0;
    font-size: 1.25rem;
}

/*
 * The close button is used only by the mobile filter drawer.
 */
.ccc-catalog-v2__filters-close {
    display: none;
}


/* ==========================================================================
   06. FILTER GROUPS AND OPTIONS
   ========================================================================== */

.ccc-catalog-v2__filter-group {
    margin: 0;
    padding: 20px 0;
    border: 0;
    border-top: 1px solid var(--ccc-border-strong);
}

.ccc-catalog-v2__filter-group legend {
    width: 100%;
    margin-bottom: 13px;
    padding: 0;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ccc-catalog-v2__filter-option {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    gap: 9px;
    align-items: center;
    margin: 0 0 11px;
    cursor: pointer;
    line-height: 1.35;
}

.ccc-catalog-v2__filter-option input {
    width: 17px;
    height: 17px;
    margin: 0;
}

.ccc-catalog-v2__filter-option small {
    min-width: 1.5em;
    color: var(--ccc-muted);
    text-align: right;
}


/* ==========================================================================
   07. FILTER BUTTONS
   ========================================================================== */

.ccc-catalog-v2__clear,
.ccc-catalog-v2__filter-toggle {
    min-height: 42px;
    padding: 9px 15px;
    border: 1px solid var(--ccc-text);
    border-radius: 3px;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.ccc-catalog-v2__clear:hover,
.ccc-catalog-v2__filter-toggle:hover {
    background: var(--ccc-text);
    color: #fff;
}

.ccc-catalog-v2__clear:focus-visible,
.ccc-catalog-v2__filter-toggle:focus-visible,
.ccc-catalog-v2__filters-close:focus-visible,
.ccc-catalog-v2__filter-option input:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}


/* ==========================================================================
   08. PRODUCT SECTIONS AND HEADINGS
   ========================================================================== */

.ccc-catalog-v2__product-section {
    margin: 0 0 64px;
    scroll-margin-top: 24px;
}

.ccc-catalog-v2__section-heading {
    max-width: 720px;
    margin-bottom: 24px;
}

.ccc-catalog-v2__section-heading h2 {
    margin: 0 0 8px;
    font-size: clamp(1.55rem, 2.6vw, 2.25rem);
    line-height: 1.15;
}

.ccc-catalog-v2__product-section[hidden] {
    display: none !important;
}


/* ==========================================================================
   09. EASYCART PRODUCT CARD NORMALIZATION
   ========================================================================== */

/*
 * EasyCart still generates the product-card markup.
 * These rules adjust only cards rendered inside the V2 catalog.
 */

.ccc-catalog-v2 li[id^="ec_product_li_"] {
    margin-bottom: 28px !important;
    transition: opacity 160ms ease;
}

.ccc-catalog-v2 li[id^="ec_product_li_"][hidden] {
    display: none !important;
}

.ccc-catalog-v2 li[id^="ec_product_li_"] img {
    max-width: 100%;
    height: auto;
}


/* ==========================================================================
   10. VETERAN DONATION SECTION
   ========================================================================== */

.ccc-catalog-v2__donation {
    margin-top: 20px;
    padding: 54px 28px;
    border-top: 1px solid var(--ccc-border);
    background: var(--ccc-surface);
    text-align: center;
}

.ccc-catalog-v2__donation li[id^="ec_product_li_"] {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.ccc-catalog-v2__donation img {
    max-width: 100%;
    height: auto;
}


/* ==========================================================================
   11. ADMINISTRATOR CONFIGURATION NOTICE
   ========================================================================== */

/*
 * This notice appears only to logged-in administrators when a category,
 * such as Coffee Cups & Mugs, has not yet been configured.
 */

.ccc-catalog-v2__admin-note {
    margin: 0 0 44px;
    padding: 15px 18px;
    border-left: 4px solid #aa7a00;
    background: #fff8dd;
    line-height: 1.55;
}


/* ==========================================================================
   12. MOBILE FILTER BACKDROP DEFAULT
   ========================================================================== */

/*
 * The backdrop remains hidden on desktop.
 * Mobile rules below convert it into a full-screen overlay.
 */

.ccc-catalog-v2__backdrop {
    display: none;
}


/* ==========================================================================
   13. TABLET AND MOBILE LAYOUT
   Breakpoint: 820px and below
   ========================================================================== */

@media (max-width: 820px) {

    /*
     * Outer page spacing
     */

    .ccc-catalog-v2 {
        padding: 24px 16px 48px;
    }


    /*
     * Mobile toolbar
     */

    .ccc-catalog-v2__toolbar {
        gap: 16px;
    }

    .ccc-catalog-v2__filter-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }


    /*
     * Remove the desktop two-column layout.
     */

    .ccc-catalog-v2__layout {
        display: block;
    }


    /*
     * Mobile filter drawer
     *
     * This replaces the desktop sticky sidebar.
     */

    .ccc-catalog-v2__filters {
        position: fixed;
        z-index: 100002;
        top: 0;
        left: 0;
        width: min(88vw, 360px);
        height: 100dvh;
        overflow-y: auto;
        padding: 24px;
        background: #fff;
        border: 0;
        border-radius: 0;
        box-shadow: 12px 0 32px rgba(0, 0, 0, 0.2);
        transform: translateX(-105%);
        transition: transform 180ms ease;
    }

    .ccc-catalog-v2__filters.is-open {
        transform: translateX(0);
    }


    /*
     * Mobile drawer close button
     */

    .ccc-catalog-v2__filters-close {
        display: inline-grid;
        place-items: center;
        width: 42px;
        height: 42px;
        padding: 0;
        border: 0;
        background: transparent;
        font-size: 2rem;
        cursor: pointer;
    }


    /*
     * Mobile backdrop
     */

    .ccc-catalog-v2__backdrop {
        position: fixed;
        z-index: 100001;
        inset: 0;
        background: rgba(0, 0, 0, 0.48);
    }

    .ccc-catalog-v2__backdrop:not([hidden]) {
        display: block;
    }


    /*
     * Prevent the page behind the open filter drawer from scrolling.
     */

    body.ccc-catalog-v2-filter-open {
        overflow: hidden;
    }
}


/* ==========================================================================
   14. SMALL MOBILE ADJUSTMENTS
   Breakpoint: 480px and below
   ========================================================================== */

@media (max-width: 480px) {

    .ccc-catalog-v2__result-count {
        font-size: 0.86rem;
    }

    .ccc-catalog-v2__donation {
        padding-inline: 16px;
    }
}


/* ==========================================================================
   15. REDUCED-MOTION ACCESSIBILITY
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    .ccc-catalog-v2__filters,
    .ccc-catalog-v2 li[id^="ec_product_li_"] {
        transition: none;
    }
}