/* Dölj priser med 0 Kr i shop-loop eller produkt-sida */
.woocommerce-Price-amount bdi:contains('0 Kr'),
.elementor-widget-woocommerce-product-price .woocommerce-Price-amount bdi:contains('0 Kr'),
li.price-wrap .woocommerce-Price-amount bdi:contains('0 Kr') {
    display: none !important;
}

/* Dölj tomma wrapper-divar */
.elementor-widget-woocommerce-product-price:empty,
li.price-wrap:empty {
    display: none !important;
}

.rq-cart-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rq-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: box-shadow 0.2s;
}

.rq-cart-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.rq-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rq-item-thumb img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.rq-item-name a {
    font-weight: 600;
    color: #007cba;
    text-decoration: none;
}

.rq-item-name a:hover {
    text-decoration: underline;
}

.rq-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.rq-item-price {
    font-weight: bold;
    color: #111;
}

.remove-from-rq {
    color: #c00;
    cursor: pointer;
    text-decoration: underline;
    font-size: 13px;
}

/* Style för länkar som knappar */
#rq-form a.button {
    background: #007cba;       /* blå bakgrund */
    color: #fff;               /* vit text */
    padding: 10px 20px;        /* inre marginaler */
    border: none;              /* ingen kant */
    border-radius: 4px;        /* rundade hörn */
    cursor: pointer;           /* pekare vid hover */
    text-decoration: none;     /* ingen understrykning */
    display: inline-block;     /* så att padding fungerar */
    text-align: center;        /* centrera text */
    transition: background 0.3s; /* mjuk hover */
}

/* Hover-effekt */
#rq-form a.button:hover {
    background: #005a8c;       /* mörkare blå vid hover */
    color: #fff;               /* bibehåll vit text */
    text-decoration: none;     /* ingen understrykning vid hover */
}

.rq-added-message {
    display: inline-block;
    font-size: 14px;
}
.rq-added-message a {
    color: #007cba;
    text-decoration: underline;
}
.request-quote-btn {
    background: #007cba;
    color: #fff;
    padding:8px 12px;
    display:inline-block;
    border-radius:4px;
    text-decoration:none;
}
.request-quote-btn:hover {
    background:#005a8c;
}
#rq-cart { 
    border:1px solid #ccc; 
    padding:20px; 
    background:#fff; 
   
}
#rq-cart ul { 
    list-style:none; 
    padding:0; 
}
#rq-cart li { 
    margin-bottom:5px; 
}
.remove-from-rq { 
    color:#c00; 
    cursor:pointer; 
    margin-left:10px; 
    text-decoration:underline; 
}
#rq-form input, #rq-form textarea {
    width:100%; 
    margin-bottom:10px; 
    padding:5px;
    border:1px solid #ccc;
    border-radius:4px;
}
#rq-form button.button {
    background:#007cba; 
    color:#fff; 
    padding:10px 20px; 
    border:none; 
    border-radius:4px; 
    cursor:pointer;
}
#rq-form button.button:hover { background:#005a8c; }