/*
 * File: assets/css/ifl-store-pnt.css
 * Description: Paws & Tales brand overrides
 * Loaded when ifl_brand_key = 'pnt'
 *
 * Token reference (complete set — keep all brand files in sync):
 *   --brand-primary         Primary brand color (price, links, accents)
 *   --brand-primary-hover   Hover state for primary
 *   --brand-light           Light tint bg (subtle cards, hovers)
 *   --brand-light-border    Light borders matched to --brand-light
 *   --brand-dark            Dark accent (banner backgrounds, dark buttons)
 *   --brand-font            Body font family
 *   --brand-bg              Page background
 *   --brand-cta             Call-to-action button color (Add to Cart)
 *   --brand-cta-hover       Hover state for CTA
 */

:root {
    --brand-primary: #e0660d;
    --brand-primary-hover: #c4550b;
    --brand-light: #fff7ed;
    --brand-light-border: #fed7aa;
    --brand-dark: #0e3216;
    --brand-font: 'Burbank', -apple-system, BlinkMacSystemFont, sans-serif;
    --brand-bg: #FFF8F0;
    --brand-cta: #10b981;
    --brand-cta-hover: #059669;
}

/* PNT-specific: header cart sits in dark nav, needs white + larger size + vertical layout + bottom-border hover effect */
.genesis-nav-menu .ifl-header-cart-trigger {
    color: #fff !important;
    flex-direction: column !important;
    gap: 2px !important;
    text-decoration: none !important;
    padding: 0 15px 2px !important;
    border-bottom: 3px solid transparent !important;
    transition: border-color 0.2s, color 0.2s !important;
}
.genesis-nav-menu .ifl-header-cart-trigger:hover,
.genesis-nav-menu .ifl-header-cart-trigger:focus {
    border-bottom-color: var(--brand-primary, #e0660d) !important;
}
.genesis-nav-menu .ifl-header-cart-trigger:hover .ifl-header-cart-icon,
.genesis-nav-menu .ifl-header-cart-trigger:hover .ifl-header-cart-label {
    color: var(--brand-primary, #e0660d) !important;
}
.genesis-nav-menu .ifl-header-cart-trigger:hover .ifl-header-cart-icon {
    stroke: var(--brand-primary, #e0660d) !important;
}
.ifl-header-cart-icon {
    width: 28px !important;
    height: 28px !important;
}
.genesis-nav-menu .ifl-header-cart-trigger:hover .ifl-header-cart-icon {
    width: 34px !important;
    height: 34px !important;
}
.ifl-header-cart-label {
    color: #fff !important;
    font-size: 1.05em !important;
    letter-spacing: 1px !important;
    font-weight: bold !important;
}
