/* Pékség Kosár CSS - Csak kosár panel stílusok */

/* Kosár panel alapok */
.pekseg-kosar-panel {
    position: fixed;
    top: 0;
    font-family: "Montserrat", Sans-serif;
    right: -400px;
    width: 400px;
    height: 100vh;
       background: #ebe6e2;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

svg#fi_18695999 {
    width: 30px;
    height: auto;
    fill: white;
}

span.kosar-szamlaló {
    color: #ffffff;
    margin-bottom: 0px;
    font-family: "Montserrat", Sans-serif;
    font-size: 17px;
    font-weight: 400;
}

button.kosar-icon-btn {
    background-color: #faebd700;
    padding: 0px;
    display: flex;
    align-items: center;
    gap: 5px;
}

svg#fi_4903482 {
    fill: white;
}

.pekseg-kosar-panel.open {
    right: 0;
}

.pekseg-kosar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pekseg-kosar-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Kosár header */
.kosar-header {
    background: #ebe6e2;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
        font-family: "Montserrat", Sans-serif;
    font-size: 35px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #827B75;
}

.kosar-header h3 {
    margin: 0;
    font-size: 20px;
}

.kosar-close {
    background: none;
    border: none;
    color: #827B75;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
}

/* Kosár tartalom */
.kosar-content {
    padding: 20px;
}

.kosar-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kosar-item:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 400;
    margin-bottom: 5px;
    color: #827B75;
    font-size: 16px;
}

.item-details {
    font-size: 13px;
    color: #827B75;
    font-weight: 500;
}

.item-remove {
    cursor: pointer;
    font-size: 12px;
    background: #8b451300;
    border: 1px solid #827B75 !important;
    padding: 8px 15px;
    color: #827B75;
    font-family: "Montserrat", Sans-serif;
}

.item-remove:hover {
    background: #827B75;
        color: #ffffff;
}

/* Kosár footer */
.kosar-footer {
    border-top: 1px solid #827B75;
    padding-top: 20px;
    margin-top: 20px;
}

.kosar-osszeg {
    text-align: center;
    margin-bottom: 15px;
}

.kosar-osszeg strong {
    font-size: 18px;
    font-weight: 600;
    color: #827B75;
}

.darab-szam {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
        display: none;
}

.kosar-info {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 0px;
    margin: 20px 0;
    text-align: center;
  
}

.kosar-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.kosar-gombok {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

a.regisztraciokosar {
    cursor: pointer;
    font-size: 15px;
    background: #8b451300;
    border: 1px solid #827B75 !important;
    padding: 10px 15px;
    color: #827B75;
    font-family: "Montserrat", Sans-serif;
    border-radius: 0px;
    display: block;
    margin-top: 20px;
}

.kosar-ures {
    cursor: pointer;
    background: #8b451300;
    border: 1px solid #827B75 !important;
    padding: 13px 15px;
    color: #827B75;
    font-family: "Montserrat", Sans-serif;
    border-radius: 0px;
}

.kosar-ures:hover {
    background: #827B75;
    color: #ffffff;
}

.fizetes-gomb {
    background: #827B75;
        font-family: "Montserrat", Sans-serif;
    color: white;
      padding: 13px 15px;
    border: none;
    border-radius: 0px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.fizetes-gomb:hover {
    background: #218838;
    color: white;
    text-decoration: none;
}

/* Üres kosár üzenet */
.kosar-ures-uzenet {
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

.kosar-ures-uzenet p {
    margin: 10px 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pekseg-kosar-panel {
        width: 100%;
        right: -100%;
    }
    
    .kosar-header {
        padding: 15px;
    }
    
    .kosar-content {
        padding: 15px;
    }
}

/* Animációk */
.kosar-item {
    transition: all 0.3s ease;
}

.kosar-item.removing {
    opacity: 0;
    transform: translateX(100px);
}