/* ========================================================
   1. TA BORT LAGERSTATUS HELT
   ======================================================== */
.product-current-stock-status, 
.product-current-stock-qty-box,
.instock,
.outofstock {
    display: none !important;
}

/* ========================================================
   2. TVINGA PRODUKTKORTEN ATT BLI EXAKT LIKA HÖGA
   ======================================================== */
.product {
    display: flex !important;
    flex-direction: column !important;
}

/* GUL LINJE I TOPPEN & FAST HÖJD FÖR KORTET */
.product .bg-white.shadow-small {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    border-top: 4px solid #ffb900 !important; 
}

/* ========================================================
   3. FIX FÖR TITLAR (NU ÄNNU MINDRE: 14px)
   ======================================================== */
.product-title, .product-name {
    font-size: 14px !important; /* Ändrad från 16px till 14px */
    line-height: 1.3 !important;
    min-height: 40px !important; /* Justerad höjd för att passa mindre text */
    margin-bottom: 5px !important;
    padding: 0 10px;
}

/* Placerar knappbehållaren längst ner */
.product-btn-footer {
    margin-top: auto !important;
    padding: 0 10px 10px 10px !important;
}

/* ========================================================
   4. KNAPPAR: SEPARERADE, RUNDADE OCH SLIMMADE
   ======================================================== */
.custom-btn-group {
    display: flex !important;
    gap: 10px !important; 
    width: 100% !important;
}

.custom-btn-group .btn-visa,
.custom-btn-group .btn-kop-form {
    flex: 1 !important;
}

.custom-yellow-btn {
    background-color: #ffb900 !important;
    color: #000000 !important;
    border: none !important;
    padding: 8px 5px !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 13px !important;        
    border-radius: 8px !important;     
    display: block !important;
    width: 100% !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease !important;
}

.custom-yellow-btn:hover {
    background-color: #e2a400 !important;
}

.custom-yellow-btn.sold-out-btn {
    background-color: #f5f5f5 !important;
    color: #aaa !important;
}

/* ========================================================
   5. PRODUKTPRIS
   ======================================================== */
.product-price {
    font-size: 18px !important;    
    font-weight: 700 !important;  
    color: #111111 !important;     
    display: inline-block;
    margin-top: 5px !important;
    padding: 0 10px;
}