/* ===================== Hero Section ===================== */
.workwear-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

.workwear-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 0;
    transition: transform 0.5s ease;
}

.workwear-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.workwear-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    color: #fff;
    background-color: #00000080;
    border-radius: 8px;
    animation: fadeInUp 1s ease forwards;
}

.workwear-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease forwards;
}

.workwear-hero-content p {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #eee;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    animation: slideInRight 1.2s ease forwards;
}

.workwear-hero-buttons a {
    margin: 0 10px;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workwear-hero-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===================== Animation ===================== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================== Product Category Section ===================== */
.workwear-product-category {
    max-width: 1200px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.workwear-product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

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

.workwear-product-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.workwear-product-card-info {
    padding: 16px;
}

.workwear-product-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.workwear-product-card-price {
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
}

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
    .workwear-hero-content h1 {
        font-size: 2.5rem;
    }

    .workwear-hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .workwear-hero {
        height: 40vh;
    }

    .workwear-hero-content h1 {
        font-size: 2rem;
    }

    .workwear-hero-content p {
        font-size: 0.95rem;
    }

    .workwear-hero-buttons a {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .workwear-product-category {
        grid-template-columns: 1fr;
    }
}
