.section {
    padding: 4rem 2rem;
    background-color: #faf9f7;
    margin-top: 0px;
}

.collection-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #2b2b2b;
    letter-spacing: 0.5px;
}

/* Candle Card Layout */
.candle-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: #ffffff;
    border-radius: 1.2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 3rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.candle-details ul {
    list-style-type: none;

}
.candle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Image styling */
.candle-image img {
    width: 300px;
    height: 300px;
    border-radius: 1rem;
    object-fit: cover;
    display: block;
}

/* Details styling */
.candle-details {
    flex: 1;
    color: #333;
}

.candle-details h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1f1f1f;
}

.candle-details p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Specs list */
.specs {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.specs li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Note */
.note {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1.2rem;
}

/* Buy Button */
.buy-btn {
    display: inline-block;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.buy-btn:hover {
    background: linear-gradient(90deg, #e52e71, #ff8a00);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .candle-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .candle-image img {
        width: 100%;
        height: auto;
    }

    .candle-details {
        text-align: left;
    }
}