/* Products Page Styles */

.main-nav .active {
    color: #0066cc;
    font-weight: bold;
}

/* Products Container */
.products-container {
    margin-top: 0;
}

/* Product Display */
.product-display {
    width: 100%;
    min-height: 580px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.product-display-full {
    height: 580px;
}

/* Product Backgrounds */
.fish-oil-bg {
    background-image: url('images/products-fish-oil-banner.jpg');
}

.coq10-bg {
    background-image: url('images/products-coq10-banner.jpg');
}

.milk-bg {
    background-image: url('images/products-milk-banner.jpg');
}

/* Product Content */
.product-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

.product-info {
    max-width: 500px;
    padding: 50px 0;
}

.product-info h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: normal;
}

.product-features {
    list-style: none;
    margin-bottom: 35px;
}

.product-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
}

.product-features li:before {
    content: "●";
    position: absolute;
    left: 0;
    font-size: 22px;
}

.view-product-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #fff;
    color: #003087;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.view-product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 968px) {
    .product-display {
        min-height: 400px;
    }

    .product-display-full {
        height: auto;
        min-height: 400px;
    }

    .product-content {
        padding: 0 20px;
    }

    .product-info h1 {
        font-size: 32px;
    }

    .product-features li {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .product-info h1 {
        font-size: 26px;
    }

    .product-features li {
        font-size: 14px;
    }
}


