/* Custom CSS for Sowjanya Studios */

/* General Styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Product Card Styles */
.product-card {
    transition: all 0.3s ease-in-out;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 62, 231, 0.15);
}

.product-card .wishlist-btn,
.product-card .quick-view-btn,
.product-card .add-to-cart-btn {
    transition: all 0.3s ease;
}

/* Product Image */
.product-card img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover img {
    transform: scale(1.08);
}

/* Product Card Overlay */
.product-card .relative::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .relative::after {
    opacity: 1;
}

/* Product Info Section */
.product-card .p-4 {
    padding: 1.25rem;
    background: white;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.product-card:hover .p-4 {
    background: linear-gradient(to bottom, white, #f9f7ff);
}

/* Product Title */
.product-card a.text-gray-800 {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.product-card:hover a.text-gray-800 {
    color: #8A3EE7;
}

/* Product Price */
.product-card .text-primary {
    font-weight: 600;
    font-size: 1.1rem;
    background: linear-gradient(45deg, #8A3EE7, #9b5de5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Add to Cart Button */
.product-card .add-to-cart-btn {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(138, 62, 231, 0.1);
    color: #8A3EE7;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(138, 62, 231, 0.1);
}

.product-card .add-to-cart-btn:hover {
    background: #8A3EE7;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(138, 62, 231, 0.3);
}

/* Wishlist and Quick View Buttons */
.product-card .wishlist-btn,
.product-card .quick-view-btn {
    opacity: 0.7;
    transform: translateY(5px);
}

.product-card:hover .wishlist-btn,
.product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translateY(0);
}

.product-card .wishlist-btn:hover,
.product-card .quick-view-btn:hover {
    background: #8A3EE7;
    color: white;
    transform: scale(1.1);
}

/* Badge Styles */
.product-card .absolute.top-2.left-2 {
    z-index: 5;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Category Card Styles */
.category-card img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover img {
    transform: scale(1.08);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product-card .wishlist-btn,
    .product-card .quick-view-btn {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ... rest of your existing CSS ... */