/* ===========================================================
   Project-specific styles added on top of the theme.
   =========================================================== */

/* About page "The problem / Our approach" block — uses the site's normal
   light section styling; only needs spacing between the two stacked blocks. */
.problemApproach_item + .problemApproach_item {
    margin-top: 40px;
}

/* "Everything you need, everywhere you go" carousel (Explore page):
   large photo cards with text overlaid at the bottom. */
.everythingCard {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.everythingCard img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.everythingCard_overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 28px;
    background: linear-gradient(to top, rgba(10, 18, 33, 0.88), rgba(10, 18, 33, 0.45) 55%, rgba(10, 18, 33, 0) 100%);
    color: #fff;
}

.everythingCard_overlay h3 {
    color: #fff;
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.everythingCard_overlay p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* Home: Spring Sale banner */
.springSale_section {
    padding: 30px 0;
}

.springSale_bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    background: linear-gradient(90deg, #7c43ab, #b8336a);
    color: #fff;
    border-radius: 14px;
    padding: 20px 30px;
    text-align: center;
}

.springSale_text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.springSale_bar .btn {
    white-space: nowrap;
}

/* Home: deal category cards */
.categoryCard {
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    height: calc(100% - 30px);
    transition: box-shadow .25s ease, transform .25s ease;
}

.categoryCard:hover {
    box-shadow: 0 18px 40px rgba(20, 30, 60, 0.10);
    transform: translateY(-4px);
}

.categoryCard_img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.categoryCard_body {
    padding: 26px 24px 30px;
}

.categoryCard_price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #01702d;
    margin: 6px 0 12px;
}

.categoryCard_body p {
    color: #6c757d;
    margin-bottom: 20px;
}
