/**
 * 2007-2026 PrestaShop
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@prestashop.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
 * versions in the future. If you wish to customize PrestaShop for your
 * needs please refer to http://www.prestashop.com for more information.
 *
 *  @author    PrestaShop SA <contact@prestashop.com>
 *  @copyright 2007-2026 PrestaShop SA
 *  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 *  International Registered Trademark & Property of PrestaShop SA
 */

/* Color Variables: 
   Primary: #fe670e
   Secondary: #000000
*/

#dfd-supplier-page,
#dfd-supplier-page-16 {
    margin: 20px auto;
    max-width: 1000px;
}

.header-section h1,
.page-heading {
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 3px solid #fe670e;
    padding-bottom: 10px;
}

.header-section .lead {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-boxes .box-left {
    color: #000000;
    border: 1px solid #000000 !important;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 20px !important;
}

.info-boxes .box-left:hover {
    border: 1px solid #fe670e !important;
    transform: translateY(-5px);
    color: #fe670e !important;
}

/* Info Boxes */
.info-boxes .box-right {
    background: #fe670e;
    color: #ffffff;
    border: none !important;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 20px !important;
}

.info-boxes .box-right:hover {
    background: #000000;
    transform: translateY(-5px);
}

/* Interest Card */
.interest-card {
    border: 2px solid #fe670e;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.interest-card .card-title,
.interest-card .page-subheading {
    background: #fe670e;
    color: #ffffff;
    padding: 15px;
    margin: 0;
    border-radius: 4px 4px 0 0;
}

.interest-card .card-body,
.interest-card .panel-body {
    padding: 25px;
}

.interest-card ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    font-weight: 500;
}

.interest-card ul li::before {
    content: "\f058";
    font-family: "FontAwesome", "Font Awesome 5 Free", sans-serif;
    color: #fe670e;
    position: absolute;
    left: 0;
    font-weight: 900;
}

/* Footer Section */
.footer-text {
    background: #f8f9fa;
    padding: 30px;
    border-left: 5px solid #000000;
    margin-top: 40px;
    font-style: italic;
    font-weight: 500;
}

/* Form Styling */
.contact-form,
.contact-form-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 50px;
}

.contact-form label,
.contact-form-box label {
    font-weight: bold;
    color: #000000;
}

.form-control:focus {
    border-color: #fe670e;
    box-shadow: 0 0 0 0.2rem rgba(254, 103, 14, 0.25);
}

.btn-primary,
.button-medium {
    background-color: #fe670e !important;
    border-color: #fe670e !important;
    color: #ffffff !important;
    padding: 12px 30px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover,
.button-medium:hover {
    background-color: #000000 !important;
    border-color: #000000 !important;
    transform: scale(1.05);
}

/* Notifications */
#dfd-notifications .alert {
    border-radius: 4px;
    margin-top: 20px;
}

#dfd-notifications .alert-success {
    background-color: #fe670e;
    border-color: #fe670e;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .info-boxes .box {
        margin-bottom: 10px;
    }
}