/* Style for Product Cards */
.product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    background: #fff;
    padding: 15px;
    text-align: center;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.card-body {
    padding: 15px;
}

.card-body h5 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.card-body p {
    color: #28a745;
    font-size: 16px;
    font-weight: bold;
}

.card-body .btn {
    width: 100%;
    background-color: #28a745;
    color: white;
    border-radius: 5px;
}

.card-body .btn:hover {
    background-color: #218838;
}

/* Grid Layout for Products */
.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.product-image-container {
    background: #f8f9fa; /* Light grey background */
    padding: 20px;
    border-radius: 10px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.product-image-container img:hover {
    transform: scale(1.05);
}

.product-title {
    font-size: 28px;
    font-weight: bold;
}

   .product-description ul,
    .product-description ol {
        margin: 1rem 0;
        padding-left: 1.5rem;
    }

    .product-description ul {
        list-style-type: disc;
    }

    .product-description ol {
        list-style-type: decimal;
    }

    .product-description li {
        margin-bottom: 0.5rem;
        line-height: 1.6;
    }

    .product-description {
        font-size: 1rem;
        color: #333;
    }

#affiliateTable {
    table-layout: auto;
    white-space: nowrap;
    min-width: 100%;
}
.custom--tabs .nav-link {
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    color: #6c757d;
}

.custom--tabs .nav-link.active {
    background-color: #f1f1f1;
    color: #3b0764;
    border-radius: 6px;
}
.plan-image img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.watermark {
    position: fixed;
    top: 45%;
    left: 20%;
    transform: rotate(-30deg);
    font-size: 80px;
    color: rgba(200, 200, 200, 0.15);
    z-index: 0;
    pointer-events: none;
}
.team-bio {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}
.bio-toggle {
    font-weight: bold;
    color: #007bff;
    cursor: pointer;
}
.footer-link {
    color: #1abc9c;  /* Example: teal. Change to fit your theme */
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
    margin: 0 4px;
    font-weight: 500;
}

.footer-link:hover, .footer-link:focus {
    color: #16a085;  /* Darker teal on hover */
    text-decoration: underline;
}