/* Men's Page Styles */

.mens-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1550246140-5119ae4790b8?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.hero-overlay h1 {
    font-size: 4rem;
    margin: 1rem 0;
}

.hero-overlay p {
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Sub-navigation for sections */
.sub-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: #000;
    position: sticky;
    top: 80px;
    z-index: 10;
    border-bottom: 1px solid #222;
}

.sub-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.sub-nav a:hover {
    color: var(--gold);
}

/* Section Styling */
.collection-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.gold-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

/* Men's Product Cards */
.men-card {
    margin-bottom: 2rem;
}

.img-container {
    position: relative;
    height: 450px;
    background: #000;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: all 0.5s ease;
}

.men-card:hover img {
    opacity: 0.5;
    transform: scale(1.05);
}

.add-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 12px 25px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.men-card:hover .add-btn {
    opacity: 1;
}

.card-meta {
    padding: 1.5rem 0;
    text-align: center;
}

.card-meta h4 {
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.card-meta .price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mens-hero h1 { font-size: 2.5rem; }
    .sub-nav { gap: 1rem; padding: 1rem; }
}