.category-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #2c3e50;
}

.category-subtitle {
    font-size: 1.1rem;
    color: #777;
    font-weight: 300;
    letter-spacing: 1px;
}

.premium-card {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.image-wrapper {
    position: relative;
    padding-top: 100%;
    background: #f8f9fa;
    overflow: hidden;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover .image-wrapper img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-card:hover .overlay {
    opacity: 1;
}

.view-details {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 8px 24px;
    border: 2px solid white;
    border-radius: 30px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.premium-card:hover .view-details {
    transform: translateY(0);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-name {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.price {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.promo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.add-to-cart {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: #2ecc71;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.add-to-cart:hover {
    transform: scale(1.1);
    background: #27ae60;
}

.add-to-cart i {
    font-size: 1.2rem;
}
