/* Product Styles */
.men-thumb-item {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.men-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.men-thumb-item img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.product-men {
    margin-bottom: 30px;
}

.men-pro-item {
    border: 1px solid #e8e8e8;
    background: #fff;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.men-pro-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.item-info-product {
    padding-top: 15px;
    text-align: center;
}

.item-info-product h4 {
    margin-bottom: 10px;
}

.item-info-product h4 a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.info-product-price {
    margin: 15px 0;
}

/* Product Lightbox */
.product-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 9999;
    padding: 40px;
}

.product-lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
}

/* Product Details */
.product-details {
    padding: 15px;
}

.product-new-top {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFC107;
    color: #fff;
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 12px;
    z-index: 1;
}