/* HERO SECTION */
.hp-hero-section {
    height: 260px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.hp-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.35)
    );
}
.hp-overlay {
    position: relative;
    width: 100%;
}
.hp-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 0 60px;
    box-sizing: border-box;
    cursor: grab;
    user-select: none;
}
.hp-carousel-wrapper:active {
    cursor: grabbing;
}
.hp-carousel {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease-in-out;
}
.hp-card {
    min-width: 250px;
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #00dcffab);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.hp-card-overlay {
    height: 100%;
    padding: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hp-card-overlay p {
    color: black !important;
    font-weight: 600;
    margin: 0 0 4px 0;
}
.hp-card h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #dbeafe;
    letter-spacing: 0.5px;
}
.hp-card .value {
    font-size: 24px;
    font-weight: 700;
    margin: 8px 0;
    color: black;
}
.hp-card .price {
    font-size: 12px;
    color: black;
    margin-bottom: 4px;
}
.hp-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 10;
}
.hp-nav-btn:hover {
    background: #1a73e8;
    color: #fff;
}
.hp-prev {
    left: 15px;
}
.hp-next {
    right: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
    .hp-hero-section {
        height: auto;
        padding: 20px 0;
    }
    .hp-carousel-container {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw !important;
    }
    .hp-carousel-wrapper {
        width: 100vw;
        overflow: hidden;
        padding-left:20px;
        padding-right:20px!important;
        margin: 0;
        box-sizing: border-box;
        cursor: default;
        user-select: none;
    }
    .hp-carousel-wrapper:active {
        cursor: default;
    }
    .hp-carousel {
        display: flex;
        gap: 10px;
        width: max-content;
        transition: transform 0.4s ease-in-out;
    }
    .hp-card {
        min-width: calc(50vw - 15px);
        width: calc(50vw - 15px);
        height: 145px;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        flex-shrink: 0;
        border-radius: 8px;
    }
    .hp-card-overlay {
        padding: 10px;
        border-radius: 8px;
    }
    .hp-card h3 {
        font-size: 12px;
    }
    .hp-card p {
        color: black;
        font-weight: 700;
        font-size: 12px;
        line-height: 1.4;
        margin: 0 0 4px 0;
    }
    .hp-card .value {
        font-size: 18px;
        margin: 4px 0;
    }
    .hp-card .price {
        font-size: 11px;
    }
    .hp-nav-btn {
        display: none;
    }
}