@charset "utf-8";
/* CSS Document */

/* 购物车侧边栏 */
.cart-sidebar {
    position: fixed;
    right: 20px;
    top: 150px;
    width: 300px;
    background: white;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 99;
}

.cart-items {
    max-height: 400px;
    overflow-y: auto;
}

.cart-total {
    margin-top: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-btn {
    background: #A6585A;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

/* 花卉卡片网格 */
.flower-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 1300px;
    margin: 20px auto;
}

.flower-card-goumai {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding: 15px;
}

.flower-card-goumai:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.flower-card-goumai img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
}

.flower-card-goumai h3 {
    margin: 10px 0;
}

.price {
    color: #A6585A;
    font-weight: bold;
    margin: 10px 0;
}

.add-to-cart {
    background: #A6585A;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}
