* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
.top-header {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid #003496;
    z-index: 1000;
}
body:not(.login-page):not(.admin-page) {
    padding-top: 190px;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: auto;
    padding: 15px 25px;
}
.logo img {
    height: 130px;
    width: 150px;
    object-fit: fill; 
}
.search-bar {
    flex: 1;
    max-width: 400px;
    margin: 0 30px;
}
.search-bar input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #003496;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: box-shadow 0.3s ease;
}
.search-bar input:focus {
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.4);
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}
.main-nav a {
    text-decoration: none;
    color: #003496;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding-bottom: 4px;
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 3px;
    background-color: #003496;
    transition: width 0.3s ease;
}
.main-nav a:hover::after {
    width: 100%;
}
.footer-copyright {
    margin-top: 25px;
    padding-top: 20px;
    text-align: center;
    font-size: 15px;
    color: #003496;
    letter-spacing: 0.5px;
}
.admin-link {
    border: 1px solid #003496;
    border-radius: 8px;
    padding: 10px 18px !important;
    color: #003496 !important;
    font-weight: 600;
    transition: all .3s ease;
}
.admin-link:hover {
    background: #003496;
    color: white !important;
}
.admin-link::after {
    display: none;
}
#stock-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background:
    linear-gradient(
        90deg,
        #002a78,
        #003496,
        #0044c7
    );
    color: white;
    text-align: center;
    padding: 6px 20px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    z-index: 1001;
    box-shadow:
        0 4px 15px rgba(0,0,0,0.15);
}
#stock-banner a {
    display: inline-block;
    margin-left: 10px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}
#stock-banner a:hover {
    background: white;
    color: #003496;
    transform: translateY(-1px);
}
@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .search-bar {
        margin: 0;
        max-width: 90%;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .slide h1,
    .slide h2 {
        font-size: 36px;
    }

    .slide p {
        font-size: 16px;
    }

}
.cta-help {
    background-color: #ffffff;
    padding: 60px 20px;
}
.cta-container {
    max-width: 1200px;
    margin: auto;
    border-radius: 10px;
    padding: 40px 50px;
    box-shadow:
    0 10px 25px rgba(0,0,0,0.12),
    0 20px 50px rgba(0,0,0,0.18);
    background: white;
}
.cta-top {
    display: flex;
    align-items: center;
    gap: 40px;
}
.cta-logo img {
    width: 150px;
}
.cta-text {
    flex: 1;
}
.cta-text h2 {
    font-size: 28px;
    color: #003496;
    margin-bottom: 10px;
}
.cta-text p {
    font-size: 17.5px;
    color: #003496;
    line-height: 1.6;
    max-width: 600px;
}
.cta-button {
    margin-left: auto; 
}
.cta-btn {
    background-color: #003496;
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}
.cta-bottom {
    margin-top: 20px;
    font-size: 17.5px;
    color: #003496;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cta-bottom a {
    color: #003496;
    text-decoration: none;
}
@media (max-width: 900px) {
    .cta-top {
        flex-direction: column;
        text-align: center;
    }

    .cta-button {
        margin-left: 0;
    }
}
html {
    scroll-behavior: smooth;
}
section {
    scroll-margin-top: 180px; 
}
.suggestions-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    border-top: none;
    position: absolute;
    width: 200px; 
    background: #fff;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none; 
}
.suggestions-list li {
    padding: 8px 10px;
    cursor: pointer;
}
.suggestions-list li:hover {
    background-color: #f0f0f0;
}
/*================================INDEX.HTML===============================*/
.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 40px;
}
.catalogue-item {
    text-decoration: none;
    color: #003496;
    text-align: center;
    transition: transform 0.3s ease;
}
.catalogue-item img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.catalogue-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}
.catalogue-item p {
    margin-top: 12px;
    font-weight: 600;
    font-size: 15px;
}
@media (max-width: 900px) {
    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.why-aa2de {
    padding: 100px 20px;
    background: white;
    text-align: center;
}
.why-aa2de h2 {
    font-size: 42px;
    color: #003496;
    margin-bottom: 60px;
    position: relative;
}
.why-aa2de h2::after {
    content: "";
    width: 90px;
    height: 4px;
    background: #003496;
    display: block;
    margin: 18px auto 0;
    border-radius: 10px;
}
.why-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.why-item {
    background: white;
    padding: 35px 28px;
    border-radius: 18px;
    text-align: left;
    transition: all 0.35s ease;
    border: 1px solid rgba(0,52,150,0.08);
    box-shadow:
        0 10px 25px rgba(0,0,0,0.08),
        0 20px 45px rgba(0,0,0,0.06);
}
.why-item:hover {
    transform: translateY(-10px);
    box-shadow:
        0 18px 40px rgba(0,52,150,0.18),
        0 30px 60px rgba(0,0,0,0.12);
}
.why-item h3 {
    font-size: 35px;
    color: #003496;
    margin-bottom: 15px;
    line-height: 1.4;
}
.why-item p {
    color: #003496;
    line-height: 1.7;
    font-size: 17.5px;
}
.stats-section {
    padding: 90px 20px;
    background:
        linear-gradient(
            135deg,
            #003496 0%,
            #0b4bc0 100%
        );
}
.stats-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.stat-box {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 45px 20px;
    text-align: center;
    transition: all 0.35s ease;
}
.stat-box:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.14);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.25);
}
.stat-box h2 {
    font-size: 54px;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
}
.stat-box p {
    color: rgba(255,255,255,0.92);
    font-size: 18px;
    line-height: 1.5;
}
@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .why-grid,
    .stats-container {
        grid-template-columns: 1fr;
    }
    .why-aa2de h2 {
        font-size: 34px;
    }
    .stat-box h2 {
        font-size: 42px;
    }
}
.categories-grid-slider {
    max-width: 1200px;
    margin: 80px auto;
    text-align: center;
    color: #003496;
}
.partners-slider {
    max-width: 1200px;
    margin: 80px auto;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: #003496;
}
.partners-title {
    font-size: 36px;
    color: #003496;
    margin-bottom: 40px;
}
.partners-container {
    overflow: hidden;
    width: 100%;
}
.partners-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}
.partner {
    min-width: 20%; 
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner img {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.partner img:hover {
    transform: scale(1.05);
}
.partners-dots {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.partners-dots span {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
.partners-dots span.active {
    background: #003496;
}
@media (max-width: 600px) {
    .partner {
        min-width: 50%;
    }
}
.partners-slider h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #003496;
}
.partners-slider span,
.partners-slider p {
    color: #003496;
}
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}
.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 1.2s ease,
        visibility 1.2s ease;
    overflow: hidden;
}
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease;
    z-index: 0;
}
.slide {
    background-size: cover;
    background-position: center;
}
.slide.active::after {
    transform: scale(1.08);
}
.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.72) 0%,
            rgba(0,0,0,0.45) 45%,
            rgba(0,0,0,0.15) 100%
        );
    z-index: 1;
}
.slide-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1400px;
    padding: 0 80px;
    transform: translateY(50px);
    opacity: 0;
    transition:
        opacity 1s ease 0.3s,
        transform 1s ease 0.3s;
}
.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}
.slide h1,
.slide h2 {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 700;
    color: white;
    max-width: 900px;
    margin-bottom: 30px;
    letter-spacing: -2px;
}
.slide p {
    font-size: 20px;
    line-height: 1.9;
    color: rgba(255,255,255,0.92);
    max-width: 750px;
    text-align: left;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 28px;
    border-radius: 24px;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.35s ease;
}
.slider-arrow:hover {
    background: white;
    color: #003496;
    transform: translateY(-50%) scale(1.08);
}
.slider-arrow.prev {
    left: 30px;
}
.slider-arrow.next {
    right: 30px;
}
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    z-index: 20;
}
.slider-progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: white;
    animation: progress 15s linear infinite;
}
@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}
@media (max-width: 900px) {
    .slide-content {
        padding: 0 30px;
    }
    .slide h1,
    .slide h2 {
        font-size: 42px;
    }
    .slide p {
        font-size: 16px;
        padding: 20px;
    }
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}
/*================================INDEX.HTML===============================*/
/*================================VENDEZ-VOS-STOCKS.HTML===============================*/
.sell-stock-page {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
    color: #003496;
}
.sell-stock-page h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 5px;
}
.sell-stock-page h3 {
    text-align: center;
    color: #003496;
    margin-bottom: 30px;
    font-weight: normal;
}
.sell-stock-page h2 {
    margin-top: 40px;
    color: #003496;
}
.sell-stock-page .intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: #003496;
}
.sell-stock-page p {
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 18px;
}
.sell-stock-form {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow:
    0 10px 25px rgba(0,0,0,0.12),
    0 20px 50px rgba(0,0,0,0.18);
}
.sell-stock-form h2 {
    margin-bottom: 25px;
    text-align: center;
}
.sell-stock-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.sell-stock-form input,
.sell-stock-form textarea {
    padding: 12px;
    font-size: 15px;
    border: 1px solid #003496;
    border-radius: 6px;
    width: 100%;
}
.sell-stock-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
}
.sell-stock-form label {
    grid-column: 1 / -1;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
}
.sell-stock-form input[type="file"] {
    grid-column: 1 / -1;
    padding: 8px;
    background: white;
}
.sell-stock-form button {
    grid-column: 1 / -1;
    padding: 14px;
    background: #003496;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}
@media (max-width: 768px) {
    .sell-stock-form form {
        grid-template-columns: 1fr;
    }
    .sell-stock-page h1 {
        font-size: 32px;
    }
}
/*================================VENDEZ-VOS-STOCKS.HTML===============================*/
/*=================DEVIS.HTML=================*/
.quote-hero {
    padding: 80px 20px;
    background: white;
}
.quote-content {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}
.quote-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #003496;
    margin-bottom: 30px;
}
.quote-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #003496;
    max-width: 900px;
    margin: 0 auto 20px auto;
}
.quote-form-section {
    padding: 20px 20px 80px 20px;
    background: white;
    padding-top: 0;
}
.quote-form-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 50px;
    background: white;
    border-radius: 10px;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.12),
        0 20px 50px rgba(0,0,0,0.18);
}
.quote-form-container h2 {
    text-align: center;
    margin-bottom: 35px;
    color: #003496;
    font-size: 32px;
    font-weight: 700;
}
#quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#quote-form input,
#quote-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #003496;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}
#quote-form input:focus,
#quote-form textarea:focus {
    outline: none;
    border-color: #003496;
    box-shadow: 0 0 0 4px rgba(13,27,62,0.1);
}
#quote-form textarea {
    min-height: 150px;
    resize: vertical;
}
.file-upload {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.file-upload label {
    font-weight: 600;
    color: #003496;
}
.file-upload input[type="file"] {
    border: 2px dashed white;
    padding: 18px;
    border-radius: 12px;
    background: white;
    cursor: pointer;
}
.file-upload input[type="file"]:hover {
    border-color: #003496;
}
#quote-form button {
    background: #003496;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}
@media (max-width: 768px) {
    .quote-content h1 {
        font-size: 32px;
    }
    .quote-content p {
        font-size: 16px;
    }
    .quote-form-container {
        padding: 30px;
    }
    .quote-form-container h2 {
        font-size: 28px;
    }
}
/*=================DEVIS.HTML=================*/
/*=================LINECARD.HTML=================*/

.line-card {
    padding: 80px 30px;
    background: white;
    text-align: center;
}

.line-card h1 {
    color: #003496;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.line-card h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #003496;
    margin: 18px auto 0;
    border-radius: 50px;
}

.line-card-subtitle {
    font-weight: 600;
    color: #003496;
    margin: 20px 0 35px;
    font-size: 16px;
}

.line-card-description {
    max-width: 950px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #003496;
}

.line-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 28px;
    max-width: 1250px;
    margin: auto;
}

.line-card-grid img {
    width: 100%;
    max-width: 145px;
    height: 95px;
    object-fit: contain;
    margin: auto;
    padding: 22px;

    background: white;
    border-radius: 18px;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.06),
        0 18px 40px rgba(0,52,150,0.08);

    opacity: 0.9;
    transition: all 0.3s ease;
}

.line-card-grid img:hover {
    opacity: 1;
    transform: translateY(-6px) scale(1.04);
    box-shadow:
        0 14px 30px rgba(0,52,150,0.16),
        0 25px 55px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
    .line-card {
        padding: 60px 20px;
    }

    .line-card h1 {
        font-size: 32px;
    }

    .line-card-description {
        font-size: 16px;
    }

    .line-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/*=================LINECARD.HTML=================*/
/*=================FAQ.HTML=================*/
.faq-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
    color: #003496;
}
.faq-page h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
}
.faq-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17.5px;
    
}
.faq-list details {
    background: #f7f7f7;
    padding: 18px;
    margin-bottom: 15px;
    border-radius: 6px;
    cursor: pointer;
}
.faq-list summary {
    font-weight: 600;
    font-size: 18px;
}
.faq-list p {
    margin-top: 10px;
    line-height: 1.6;
}
.faq-form {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow:
    0 10px 25px rgba(0,0,0,0.12),
    0 20px 50px rgba(0,0,0,0.18);
}
.faq-form h2 {
    margin-bottom: 20px;
}
.faq-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-form input,
.faq-form textarea {
    padding: 12px;
    border: 1px solid #003496;
    border-radius: 6px;
    font-size: 15px;
}
.faq-form textarea {
    min-height: 120px;
}
.faq-form button {
    background: #003496;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}
#faq-status {
    margin-top: 15px;
    font-weight: 600;
}
/*=================FAQ.HTML=================*/
/*===========================LOGIN.HTML===========================*/
.login-page {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        linear-gradient(
            135deg,
            #02163d,
            #003496,
            #001a4d
        );
    font-family: 'Inter', sans-serif;
}
.login-box {
    width: 420px;
    padding: 50px;
    text-align: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    box-shadow:
        0 15px 35px rgba(0,0,0,0.35),
        0 0 30px rgba(0,52,150,0.25);
}
.login-logo {
    width: 180px;
    margin-bottom: 20px;
}
.login-box h1 {
    color: white;
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}
.login-subtitle {
    color: rgba(255,255,255,0.75);
    margin-bottom: 35px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.login-box input {
    width: 100%;
    padding: 16px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 15px;
    box-sizing: border-box;
}
.login-box input::placeholder {
    color: rgba(255,255,255,0.6);
}
.login-box input:focus {
    outline: none;
    border-color: #4f8cff;
    box-shadow:
        0 0 10px rgba(79,140,255,0.4);
}
.login-box button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: #003496;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.login-box button:hover {
    background: #0052e0;
    transform: translateY(-2px);
}
.login-box button:active {
    transform: translateY(0);
}
/*===========================LOGIN.HTML===========================*/
/*===========================ADMIN-STOCK.HTML===========================*/
.admin-page {
    margin: 0;
    min-height: 100vh;
    background:
        linear-gradient(135deg, #001a4d, #003496, #02163d);
    font-family: 'Inter', sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}
.admin-container {
    width: 100%;
    max-width: 900px;
}
.admin-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}
.admin-logo {
    width: 150px;
    background: white;
    padding: 12px;
    border-radius: 14px;
}
.admin-header h1 {
    font-size: 42px;
    margin: 0 0 8px;
    font-weight: 700;
}
.admin-header p {
    margin: 0;
    color: rgba(255,255,255,0.75);
    font-size: 16px;
}
.admin-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 22px;
    padding: 45px;
    box-shadow:
        0 20px 50px rgba(0,0,0,0.35),
        0 0 40px rgba(0,52,150,0.25);
}
.admin-card h2 {
    margin: 0 0 30px;
    font-size: 28px;
    color: white;
}
#upload-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
#upload-form input[type="text"] {
    width: 100%;
    padding: 17px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}
#upload-form input::placeholder {
    color: rgba(255,255,255,0.6);
}
#upload-form input:focus {
    outline: none;
    border-color: #7aa7ff;
    box-shadow: 0 0 12px rgba(122,167,255,0.45);
}
.admin-file-upload {
    border: 2px dashed rgba(255,255,255,0.35);
    border-radius: 16px;
    padding: 30px;
    background: rgba(255,255,255,0.06);
}
.admin-file-upload label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: white;
}
.admin-file-upload input[type="file"] {
    width: 100%;
    color: white;
    font-size: 15px;
}
.admin-file-upload input[type="file"]::file-selector-button {
    margin-right: 15px;
    border: none;
    border-radius: 8px;
    background: white;
    color: #003496;
    padding: 12px 18px;
    font-weight: 600;
    cursor: pointer;
}
.admin-file-upload input[type="file"]::file-selector-button:hover {
    background: #e8eefc;
}
#upload-form button {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    background: white;
    color: #003496;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}
#upload-form button:hover {
    background: #e8eefc;
    transform: translateY(-2px);
}
.logout-btn {
    margin-top: 25px;
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 13px 22px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}
.logout-btn:hover {
    background: rgba(255,255,255,0.12);
    color: white;
}
@media (max-width: 768px) {
    .admin-header {
        flex-direction: column;
        text-align: center;
    }
    .admin-header h1 {
        font-size: 32px;
    }
    .admin-card {
        padding: 30px;
    }
}
/*===========================ADMIN-STOCK.HTML===========================*/
/*===========================PRODUIT.HTML=========================== */
.product-page {
    min-height: 100vh;
    background:
        linear-gradient(
            135deg,
            #f5f8ff,
            #ffffff
        );
    font-family: 'Inter', sans-serif;
    padding: 60px 20px;
}
.product-card {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.08),
        0 20px 50px rgba(0,0,0,0.12);
}
.product-title {
    font-size: 42px;
    font-weight: 700;
    color: #003496;
    margin-bottom: 30px;
}
.product-status {
    display: inline-block;
    background: #e9fff0;
    color: #0a8f38;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 35px;
}
.product-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.product-label {
    font-weight: 700;
    color: #003496;
}
.product-value {
    color: #444;
}
.quantity-box {
    margin-top: 35px;
    padding: 25px;
    border-radius: 14px;
    background: #f6f9ff;
    border-left: 6px solid #003496;
}
.quantity-box h3 {
    margin: 0 0 10px;
    color: #003496;
}
.quantity-number {
    font-size: 36px;
    font-weight: 700;
    color: #003496;
}
.product-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}
.product-btn {
    text-decoration: none;
    background: #003496;
    color: white;
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}
.product-btn:hover {
    background: #00286f;
    transform: translateY(-2px);
}
.back-btn {
    text-decoration: none;
    background: #f2f2f2;
    color: #333;
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 600;
}
.back-btn:hover {
    background: #e4e4e4;
}
@media(max-width:768px){
    .product-card{
        padding:30px;
    }
    .product-title{
        font-size:30px;
    }
    .product-grid{
        grid-template-columns:1fr;
    }
}
/*===========================PRODUIT.HTML=========================== */
/*=================MENTIONS-LEGALES.HTML=================*/

.legal-page {

    padding: 80px 20px;

    background: white;

}

.legal-content {

    max-width: 1100px;

    margin: auto;

    text-align: center;

}

.legal-content h1 {

    font-size: 42px;

    font-weight: 700;

    color: #003496;

    margin-bottom: 30px;

}

.legal-content p {

    font-size: 18px;

    line-height: 1.8;

    color: #003496;

    max-width: 900px;

    margin: 0 auto 20px auto;

}

.legal-section {

    padding: 20px 20px 80px 20px;

    background: white;

    padding-top: 0;

}

.legal-container {

    max-width: 850px;

    margin: 0 auto;

    padding: 50px;

    background: white;

    border-radius: 10px;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.12),
        0 20px 50px rgba(0,0,0,0.18);

}

.legal-container h2 {

    color: #003496;

    font-size: 24px;

    margin-top: 30px;

    margin-bottom: 15px;

}

.legal-container p {

    color: #444;

    line-height: 1.8;

    font-size: 16px;

}

@media (max-width: 768px) {

    .legal-content h1 {

        font-size: 32px;

    }

    .legal-content p {

        font-size: 16px;

    }

    .legal-container {

        padding: 30px;

    }

}

#legal-title {

    color: #003496;

    font-size: 42px;

    font-weight: 700;

}

/*=================MENTIONS-LEGALES.HTML=================*/



.footer-copyright a {

    color: #003496;

    text-decoration: none;

    font-weight: 500;

}

.footer-copyright a:hover {

    text-decoration: underline;

}








.rgpd-check {

    font-weight: normal !important;

    color: #666 !important;

}

.rgpd-check input {

    width: auto !important;

    margin: 0;

}