@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&display=swap');

.spa-showcase-container {
    font-family: 'Outfit', sans-serif;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
    color: #1e293b;
    background: radial-gradient(circle at top right, rgba(28, 134, 249, 0.05), transparent 400px);
}

.spa-showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.spa-showcase-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #0f172a 0%, #1c86f9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.spa-showcase-header p {
    color: #64748b;
    font-size: 20px;
    font-weight: 500;
}

/* Grid System */
.spa-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

/* Card Styling */
.spa-product-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    display: flex;
    flex-direction: column;
}

.spa-product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(28, 134, 249, 0.15);
    border-color: rgba(28, 134, 249, 0.3);
}

.spa-product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    margin: 12px;
    border-radius: 18px;
}

.spa-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.spa-badge-offer {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(239, 68, 68, 0.9);
    backdrop-filter: blur(4px);
    color: white;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.spa-hover-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    z-index: 10;
}

.spa-product-card:hover .spa-hover-actions {
    opacity: 1;
}

.spa-btn-view {
    background: white;
    color: #0f172a;
    padding: 14px 30px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    transform: translateY(30px);
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.spa-product-card:hover .spa-btn-view {
    transform: translateY(0);
}

.spa-product-info {
    padding: 10px 25px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.spa-product-cat {
    color: #1c86f9;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.spa-product-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.spa-product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    margin-bottom: 25px;
}

.spa-current-price {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
}

.spa-btn-share {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    color: #64748b;
}

.spa-btn-share:hover {
    background: white;
    color: #1c86f9;
    border-color: #1c86f9;
    transform: rotate(-10deg);
}

.spa-btn-buy {
    background: linear-gradient(135deg, #1c86f9 0%, #1570d6 100%);
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(28, 134, 249, 0.25);
    border: none;
}

.spa-btn-buy:hover {
    box-shadow: 0 15px 35px rgba(28, 134, 249, 0.35);
    transform: scale(1.03);
}

@media (max-width: 600px) {
    .spa-product-grid {
        grid-template-columns: 1fr;
    }

    .spa-showcase-header h2 {
        font-size: 34px;
    }
}