/* LUXE Fashion - Clothing Store Styles */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 100px;
}

.hero-image-box {
    position: relative;
}

.hero-placeholder {
    background: linear-gradient(135deg, #343a40 0%, #212529 100%);
    height: 500px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Category Cards */
.category-card {
    height: 300px;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.category-bg {
    height: 100%;
    border-radius: 15px;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    border-radius: 0 0 15px 15px;
}

/* Product Cards */
.product-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
    overflow: hidden;
}

.product-placeholder {
    height: 280px;
}

.product-actions {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-placeholder {
        height: 300px;
    }

    .product-placeholder {
        height: 200px;
    }

    .category-card {
        height: 200px;
    }
}
