.basket-hero {
    padding: 55px 30px;
    text-align: center;
    background: #e8dfd2;
}

.basket-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.basket-hero p {
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.1rem;
}

.basket-section {
    padding: 50px 30px;
    background: #f8f6f2;
}

.basket-message {
    max-width: 900px;
    margin: 0 auto 25px auto;
    font-weight: bold;
    text-align: center;
}

.basket-items {
    max-width: 1000px;
    margin: 0 auto;
}

.basket-card {
    display: flex;
    gap: 25px;
    background: white;
    margin-bottom: 25px;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.basket-image {
    width: 220px;
    min-height: 220px;
    background: #f3eee6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.basket-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.basket-card-body {
    flex: 1;
}

.basket-card-body h2 {
    margin-top: 0;
    color: #6b4f2a;
}

.basket-ref {
    color: #777;
    font-size: 0.95rem;
}

.basket-price,
.basket-subtotal {
    font-weight: bold;
}

.basket-quantity {
    display: block;
    margin-top: 7px;
    margin-bottom: 15px;
    max-width: 90px;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 6px;
}

.basket-warning {
    color: #9b1c1c;
    font-weight: bold;
}

.basket-summary {
    max-width: 1000px;
    margin: 30px auto 0 auto;
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.basket-summary h2 {
    margin-top: 0;
    color: #6b4f2a;
}

.basket-note {
    color: #555;
    line-height: 1.6;
}

.hidden {
    display: none;
}

.basket-count {
    display: inline-block;
    min-width: 20px;
    padding: 2px 6px;
    margin-left: 4px;
    border-radius: 12px;
    background: #6b4f2a;
    color: white;
    font-size: 0.8rem;
    text-align: center;
}

.site-footer a {
    color: white;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 720px) {
    .basket-card {
        flex-direction: column;
    }

    .basket-image {
        width: 100%;
        height: 260px;
    }

    .basket-section {
        padding: 35px 20px;
    }

    .basket-hero h1 {
        font-size: 2rem;
    }
}