
.select-section {
    width: 100%;
}

.select-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.select-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.select-header-content {
    flex: 1;
}

.select-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    color: #000;
    margin: 0;
}

.select-sparkle {
    position: absolute;
    top: -0.5rem;
    right: -2rem;
    width: 2rem;
    height: 2rem;
    color: #f97316;
    filter: drop-shadow(0 0 8px rgba(251, 146, 60, 0.6));
    fill: currentColor;
}

.select-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #6b7280;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* ===== GRID STYLES ===== */
.select-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* ===== CARD STYLES ===== */
.select-card-wrapper {
    width: 100%;
}

.select-card {
    background: #FFFFFF;
    border: 2px dashed rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.select-card-image {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: 180px;
    margin-bottom: 0;
    border-radius: 99px;
    transition: all 0.5s;
}

.select-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.select-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    color: #000000;
    margin-top: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1.3;
}

.select-card-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #374151;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: auto;
}

.select-card-price-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.select-card-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    color: white;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #fb923c 0%, #fbbf24 100%);
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.select-card-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-card-button-arrow {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
    transition: transform 0.3s;
}

/* ===== HOVER EFFECTS ===== */
.select-card-wrapper:hover .select-card {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.select-card-wrapper:hover .select-card-image {
    transform: scale(1.05);
}

.select-card-button:hover {
    box-shadow: 0 8px 24px rgba(251, 146, 60, 0.5);
    transform: scale(1.03);
}

.select-card-button:hover .select-card-button-arrow {
    transform: translateX(4px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (min-width: 480px) {
    .select-card-image {
        height: 200px;
    }

    .select-card {
        padding: 2.5rem 2rem;
    }
}

@media (min-width: 640px) {
    .select-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .select-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .select-container {
        padding: 0 2rem;
    }

    .select-title {
        font-size: 2.75rem;
    }

    .select-card-title {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .select-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .select-title {
        font-size: 3rem;
    }

    .select-card {
        padding: 2.5rem 2rem;
    }

    .select-card-image {
        height: 200px;
    }
}

@media (min-width: 1280px) {
    .select-container {
        padding: 0;
    }

    .select-card {
        padding: 2.5rem 2rem;
    }
}

/* For very small screens */
@media (max-width: 359px) {
    .select-card {
        padding: 1.5rem 1rem;
        border-radius: 30px;
    }

    .select-card-image {
        height: 160px;
        border-radius: 80px;
    }

    .select-card-title {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .select-card-price {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .select-card-price-value {
        font-size: 1.1rem;
    }

    .select-card-button {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}
