/* Product List Styles */
.products-section {
    margin: 3rem 0;
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Premium feel */
    border-top: 4px solid var(--color-kurenai);
    /* Brand color */
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.product-card {
    background: var(--color-bg-dark);
    /* Using variable from template */
    border-radius: 8px;
    padding: 1.25rem;
    border: 1px solid #eee;
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
}

.product-card.featured {
    border-color: var(--color-kurenai);
    background: #FFF9F9;
    /* Slight tint */
    box-shadow: 0 4px 8px rgba(142, 5, 15, 0.1);
}

.product-card:hover {
    transform: translateY(-2px);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 0.5rem;
}

.product-name {
    font-weight: 700;
    color: var(--color-ai);
    font-size: 1.1rem;
    margin: 0;
}

.product-price {
    font-weight: 700;
    color: var(--color-kurenai);
    font-size: 1.1rem;
    white-space: nowrap;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--color-sumi);
    line-height: 1.6;
    margin: 0;
}

.product-featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-kurenai);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-bottom-left-radius: 8px;
    font-weight: bold;
}

.price-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
    text-align: right;
    font-style: italic;
}

/* Early Closing Tip */
.tips-section {
    background: #FFF9E6;
    /* Light yellow */
    border-radius: 8px;
    padding: 1.25rem;
    margin: 2rem 0;
    border-left: 5px solid #F4B400;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tips-icon {
    font-size: 2rem;
}

.tips-content h4 {
    margin: 0 0 0.25rem 0;
    color: #F4B400;
    /* Darker yellow/orange */
    color: #B48400;
}

.tips-content p {
    margin: 0;
    font-size: 0.95rem;
}