/* Friendly Case Builder - frontend styles (mobile-first) */
.fcb-builder{font-family:inherit;max-width:980px;margin:1.25rem auto;padding:1rem}
.fcb-title{font-size:1.125rem;margin:0 0 .75rem}
.fcb-mode-switch{display:flex;gap:.5rem;margin-bottom:.75rem}
.fcb-mode-button{flex:1;padding:.5rem .75rem;border:1px solid #e6e6e6;background:#fff;border-radius:10px;font-weight:600;cursor:pointer}
.fcb-mode-button[aria-pressed="true"]{background:#111;color:#fff;border-color:#111}
.fcb-flavour-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.5rem}
.fcb-flavour-card{display:block;align-items:center;gap:.75rem;padding:.5rem;border:1px solid #eaeaea;border-radius:12px;background:#fff;cursor:pointer;transition:box-shadow .18s,transform .18s}
.fcb-flavour-card:hover{box-shadow:0 6px 18px rgba(17,17,17,.06);transform:translateY(-2px)}
.fcb-flavour-card.is-active{border-color:#0073aa;box-shadow:0 8px 24px rgba(0,115,170,.08)}
.fcb-card-media{width:64px;height:64px;flex:0 0 64px;border-radius:8px;overflow:hidden;display:flex;align-items:center;justify-content:center;background:#fafafa}
.fcb-card-image{width:100%;height:100%;object-fit:cover;display:block}
.fcb-card-placeholder{width:36px;height:36px;background:linear-gradient(135deg,#f3f3f3,#e9e9e9);border-radius:6px}
.fcb-card-body{display:flex;flex-direction:column}
.fcb-card-title{font-weight:700}
.fcb-card-price{color:#666;font-size:.95rem}
.fcb-mixed-view{margin-top:.75rem}
.fcb-quick-fill{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:.75rem}
.fcb-quick-btn{padding:.4rem .6rem;border-radius:8px;border:1px solid #e6e6e6;background:#fff;cursor:pointer}
.fcb-rows{display:flex;flex-direction:column;gap:.5rem}
.fcb-quantity-row{display:flex;justify-content:space-between;align-items:center;padding:.45rem .5rem;border:1px solid #f0f0f0;border-radius:10px;background:#fff}
.fcb-row-name{font-weight:600}
.fcb-row-controls{display:flex;align-items:center;gap:.5rem}
.fcb-decrease,.fcb-increase{width:38px;height:38px;border-radius:8px;border:1px solid #e6e6e6;background:#fff;font-size:1.25rem;line-height:1;cursor:pointer}
.fcb-qty{width:56px;text-align:center;border-radius:8px;border:1px solid #eaeaea;padding:.5rem}
.fcb-progress{margin-top:.75rem}
.fcb-progress-text{font-weight:600;margin-bottom:.4rem}
.fcb-progress-bar{width:100%;height:12px;background:#f0f0f0;border-radius:999px;overflow:hidden}
.fcb-progress-fill{width:0;height:100%;background:linear-gradient(90deg,#00a3ff,#0066cc);transition:width .36s ease}
.fcb-actions{margin-top:.75rem}
.fcb-add-to-cart{padding:.75rem 1rem;border-radius:12px;background:#0073aa;color:#fff;border:none;cursor:pointer}
.fcb-add-to-cart[disabled]{opacity:.45;cursor:not-allowed}
.fcb-mixed-notice{padding:.75rem 1rem;margin-bottom:.75rem;border-radius:10px;background:#fff4e5;border:1px solid #ffd8a8;color:#664d03;font-weight:600}

body.fcb-enabled form.cart,
body.fcb-enabled .product form.cart,
body.fcb-enabled .variations_form,
body.fcb-enabled .product .variations_form,
body.fcb-enabled .variations_form.cart,
body.fcb-enabled form.cart.variations_form,
body.fcb-enabled table.variations,
body.fcb-enabled .variations_form table.variations,
body.fcb-enabled .single_variation_wrap,
body.fcb-enabled .product .single_variation_wrap,
body.fcb-enabled .variations_button,
body.fcb-enabled .product .variations_button,
body.fcb-enabled .single_add_to_cart_button,
body.fcb-enabled .product .single_add_to_cart_button,
body.fcb-enabled .quantity,
body.fcb-enabled .product .quantity,
body.fcb-enabled .woocommerce-variation-add-to-cart,
body.fcb-enabled .product .woocommerce-variation-add-to-cart,
body.fcb-enabled .woocommerce-variation.single_variation,
body.fcb-enabled .product .woocommerce-variation.single_variation,
.fcb-builder ~ form.cart,
.fcb-builder ~ .variations_form,
.fcb-builder ~ table.variations,
.fcb-builder ~ .single_variation_wrap,
.fcb-builder ~ .variations_button,
.fcb-builder ~ .single_add_to_cart_button,
.fcb-builder ~ .quantity,
.fcb-builder ~ .woocommerce-variation-add-to-cart {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Responsive */
@media(min-width:768px){.fcb-flavour-grid{grid-template-columns:repeat(4,1fr)}.fcb-card-media{width:80px;height:80px}}
