.cake-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cake-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 171, 185, 0.2);
}

.cake-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cake-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.cake-card:hover .cake-image img {
    transform: scale(1.03);
}

.cake-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFABB9;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.cake-badge.sold-out {
    background: #d4a5a5;
}

.cake-body {
    padding: 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cake-title {
    font-size: 16px;
    font-weight: 700;
    color: #5c3d2e;
    margin-bottom: 5px;
}

.cake-weight {
    font-size: 12px;
    color: #c9aa98;
    margin-bottom: 8px;
}

.cake-price {
    font-size: 20px;
    font-weight: 700;
    color: #FFABB9;
    margin-bottom: 12px;
}

.cake-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn-detail {
    flex: 1;
    padding: 8px;
    background: none;
    border: 1px solid #f0dfd3;
    color: #c4816e;
    border-radius: 25px;
    text-decoration: none;
    font-size: 12px;
    text-align: center;
    transition: all 0.2s;
}

.btn-detail:hover {
    background: #f5e6d3;
    border-color: #FFABB9;
    color: #b06d5a;
    text-decoration: none;
}

.btn-cart {
    flex: 1;
    padding: 8px;
    background: #FFABB9;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 12px;
    text-align: center;
    transition: all 0.2s;
}

.btn-cart:hover {
    background: #ff95a6;
    color: white;
    text-decoration: none;
}

.btn-cart.disabled {
    background: #e0e0e0;
    cursor: not-allowed;
}
.pagination {
    gap: 5px;
}
.pagination .page-link {
    background: white;
    border: 1px solid #f0dfd3;
    color: #c4816e;
    border-radius: 8px;
}
.pagination .active .page-link {
    background: #FFABB9;
    border-color: #FFABB9;
    color: white;
}