.product-price-display {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
}

.discounted-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 22px;
}

/* Add this to the existing modal.css file */
.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Update the product display on the main page */
.product-display-price {
    margin-top: 15px;
    text-align: center;
}

/* Footer styles */
.footer {
    background-color: #f5f5f5;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

.legitscript-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.legitscript-placeholder {
    width: 100px;
    height: 50px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #999;
    font-size: 12px;
}

/* GLP-1 Support clickable section */
.upsell-section {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.upsell-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.upsell-stats {
    background-color: #f0f7ff;
    border-radius: 8px;
    padding: 10px 15px;
    margin-top: 15px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: bold;
}

.upsell-testimonial {
    font-style: italic;
    color: #666;
    margin-top: 10px;
    padding: 10px;
    border-left: 3px solid var(--accent-color);
    background-color: #fafafa;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
}
