/* ==========================================================================
   NOVÁ SEKCE PRO MNOŽSTVÍ A KOŠÍK (Šablona Pop - gavri.cz)
   ========================================================================== */

/* Společný kontejner pro kusy, který nahrazuje původní .quantity */
#product-detail .field-pieces-wrap {
    display: flex !important;           
    align-items: center;
    border: solid #f2f2f2;
    border-radius: 24px;
    background: #f2f2f2;
    overflow: hidden;          /* kvůli zaoblení krajů */
    width: 144px;
    height: 48px;
    padding: 0 !important;     /* přebití Shoptet paddingu */
    margin-right: 32px;
    position: relative;
}

/* Seřazení prvků uvnitř kontejneru: [ Mínus ] [ Input ] [ Plus ] */
#product-detail .field-pieces-wrap .remove-pcs { order: 1; }
#product-detail .field-pieces-wrap .amount     { order: 2; }
#product-detail .field-pieces-wrap .add-pcs    { order: 3; }

/* Stylování inputu s číslem */
#product-detail .field-pieces-wrap .amount {
    width: 64px !important;
    height: 48px !important;
    border: 0 !important;
    outline: none !important;
    background: transparent !important;
    text-align: center;
    font-size: 16px;
    line-height: 48px;
    display: inline-block;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Vypnutí nativních šipek inputu (pro jistotu, aby to nerozbíjelo layout) */
#product-detail .field-pieces-wrap .amount::-webkit-outer-spin-button,
#product-detail .field-pieces-wrap .amount::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#product-detail .field-pieces-wrap .amount {
    -moz-appearance: textfield;
}

/* Společný styl pro Shoptet tlačítka plus a mínus (odkazy <a>) */
#product-detail .field-pieces-wrap .add-pcs,
#product-detail .field-pieces-wrap .remove-pcs {
    width: 40px !important;
    height: 48px !important;
    border: 0 !important;
    background: #f2f2f2 !important;        /* splyne s podkladem */
    box-shadow: none !important;
    outline: none;
    display: inline-block;              
    position: relative; 
    top: 0; 
    text-align: center;
    cursor: pointer;
    text-decoration: none !important;
}

/* Zneškodnění původních šablonových šipek a ikon */
#product-detail .field-pieces-wrap .add-pcs::before,
#product-detail .field-pieces-wrap .remove-pcs::before {
    content: "" !important;
    background: none !important;
    mask: none !important;
    -webkit-mask: none !important;
}

/* Vykreslení vlastních znaků + a − pomocí ::after */
#product-detail .field-pieces-wrap .add-pcs::after,
#product-detail .field-pieces-wrap .remove-pcs::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    font-weight: 700;
    font-size: 20px;
    color: #282828;
    line-height: 48px;                     /* vycentrování na výšku */
    text-align: center;
    pointer-events: none;
}
#product-detail .field-pieces-wrap .add-pcs::after    { content: "+"; }
#product-detail .field-pieces-wrap .remove-pcs::after { content: "−"; }

/* Focus stavy pro lepší přístupnost */
#product-detail .field-pieces-wrap .add-pcs:focus-visible,
#product-detail .field-pieces-wrap .remove-pcs:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: -2px;
}