html {
    height: 100%;
}

body {
   
    background-size: cover;
    height: calc(100vh - 164px);
    color: #555;
    font-family: 'Lato';
}

/* from Bulma */
.icon {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem;
}

.logo-font {
    text-transform: uppercase;
}

.main-logo-link {
    width: fit-content;
}

.shop-now-button {
    background: black;
    color: white;
    min-width: 260px;
}

.btn-black {
    background: black;
    color: white;
}

.btn-outline-black {
    background: white;
    color: black !important; /* use important to override link colors for <a> elements */
    border: 1px solid black;
}

.btn-outline-black:hover,
.btn-outline-black:active,
.btn-outline-black:focus {
    background: black;
    color: white !important;
}

.shop-now-button:hover,
.shop-now-button:active,
.shop-now-button:focus,
.btn-black:hover,
.btn-black:active,
.btn-black:focus {
    background: #222;
    color: white;
}

.text-black {
    color: #000 !important;
}

.border-black {
    border: 1px solid black !important;
}

.bg-black {
    background: #000 !important;
}

.overlay {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: fixed;
	background: white;
	z-index: -1;
}

a.category-badge > span.badge:hover {
    background: #212529 !important;
    color: #fff !important;
}

.btt-button {
    height: 42px;
    width: 42px;
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.btt-link,
.update-link,
.remove-item {
    cursor: pointer;
}

input[name='q']::placeholder {
    color: #aab7c4;
}

/* ------------------------------- bootstrap toasts */

.message-container {
    position: fixed;
    top: 72px;
    right: 15px;
    z-index: 99999999999;
}

.custom-toast {
    overflow: visible;
}

.toast-capper {
    height: 2px;
}

/* from CSS-tricks.com: https://css-tricks.com/snippets/css/css-triangle/ */
.arrow-up {
    width: 0; 
    height: 0; 
    border-left: 4px solid transparent;
    border-right: 4px solid transparent; 
    border-bottom: 10px solid black;
    position: absolute;
    top: -10px;
    right: 36px;
}

/* Convenience classes - colors copied from Bootstrap */
.arrow-primary {
    border-bottom-color: #007bff !important;
}

.arrow-secondary {
    border-bottom-color: #6c757d !important;
}

.arrow-success {
    border-bottom-color: #28a745 !important;
}

.arrow-danger {
    border-bottom-color: #dc3545 !important;
}

.arrow-warning {
    border-bottom-color: #ffc107 !important;
}

.arrow-info {
    border-bottom-color: #17a2b8 !important;
}

.arrow-light {
    border-bottom-color: #f8f9fa !important;
}

.arrow-dark {
    border-bottom-color: #343a40 !important;
}

.bag-notification-wrapper {
    height: 100px;
    overflow-x: hidden;
    overflow-y: auto;
}

/* -------------------------------- Footer */

.hr-footer {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    background-color:rgb(0, 0, 0);
}

.main-footer {
    padding: 0!important;
    margin-bottom: auto;
    color: #ffffff;
}

#mb-footer {
    color:rgb(0, 0, 0);
}

.footer-top a {
    color: #555555;
    text-decoration: none;
    text-transform: uppercase;
}

.main-footer a {
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-top a:hover {
    color: #888787;
}

.main-footer a:hover {
    color: #212529;
}

/*--------------------------------- Fixes */

.mb-cust {
    margin-bottom: 6rem; /* Cust tag for logout and bag spacing for the footer */
}

/* -------------------------------- Media Queries */

/* Slightly larger container on xl screens */
@media (min-width: 1200px) {
  .container {
    max-width: 80%;
  }
}

/* Allauth form formatting */

.allauth-form-inner-content p {
    margin-top: 1.5rem; /* mt-4 */
    color: #6c757d; /* text-secondary */
}

.allauth-form-inner-content input {
    border-color: #000;
    border-radius: 0;
}

.allauth-form-inner-content label:not([for='id_remember']) {
    display: none;
}

.allauth-form-inner-content input::placeholder {
    color: #aab7c4;
}

.allauth-form-inner-content button,
.allauth-form-inner-content input[type='submit'] {
	/* btn */
	display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #000;
    border: 1px solid #000;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0;

    /* standard bootstrap btn transitions */
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.allauth-form-inner-content button:hover,
.allauth-form-inner-content input[type='submit']:hover {	
	color: #fff;
    background-color: #222;
    border-color: #222;
}

.allauth-form-inner-content a {
	color: #17a2b8; /* text-info */
}

/* Product Form */

.btn-file {
    position: relative;
    overflow: hidden;
}

.btn-file input[type="file"] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    opacity: 0;
    cursor: pointer;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0;
    border-color: #dc3545;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #dc3545;
    border-color: #dc3545;
    border-radius: 0;
}


/* fixed top navbar only on medium and up */
@media (min-width: 992px) {
    .fixed-top-desktop-only {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
    }

    .header-container {
        padding-top: 164px;
    }
}

/* pad the top a bit when navbar is collapsed on mobile */
@media (max-width: 991px) {
    .header-container {
        padding-top: 116px;
    }

    body {
        height: calc(100vh - 116px);
    }

    .display-4.logo-font.text-black {
        font-size: 2rem;
    }

    .nav-link {
        padding: 0.15rem;
    }

    .nav-link i.fa-lg {
        font-size: 1rem;
    }

    .navbar-toggler {
        padding: .6rem .6rem;
        font-size: 1rem;
    }

    #delivery-banner h4 {
        font-size: .9rem;
    }

    .btn.btn-outline-black.rounded-0,
    .btn.btn-black.rounded-0 {
        padding: .375rem .375rem;
    }

    .btn.btn-outline-black.rounded-0.btn-lg,
    .btn.btn-black.rounded-0.btn-lg {
        padding: .375rem .375rem;
        font-size: .75rem;
    }

    .increment-qty, .decrement-qty {
        padding: .25rem .5rem !important;
    }
}




:root {
    --primary-color: #4a6bff;
    --secondary-color: #ff6b6b;
    --accent-color: #6bdbff;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

/* Styles généraux */
body {
    font-family: 'Lato', sans-serif;
    padding-top: 120px;
}

/* Header */
.logo-font {
    font-weight: 700;
    color: var(--dark-color);
}

/* Icônes principales */
.icon-home {
    color: var(--dark-color);
}
.icon-products {
    color: var(--primary-color);
}
.icon-clothing {
    color: var(--success-color);
}
.icon-homeware {
    color: #fd7e14;
}
.icon-specials {
    color: var(--danger-color);
}

/* Icônes secondaires */
.icon-products-light {
    color: #8fa8ff;
}
.icon-clothing-light {
    color: #5cdb95;
}
.icon-homeware-light {
    color: #ff9f43;
}
.icon-specials-light {
    color: #ff8a8a;
}

/* Icônes utilitaires */
.icon-search {
    color: var(--primary-color);
}
.icon-user {
    color: var(--dark-color);
}
.icon-cart {
    color: var(--success-color);
}
.icon-warning {
    color: var(--warning-color);
}
.icon-success {
    color: var(--success-color);
}
.icon-info {
    color: var(--primary-color);
}

/* Icônes réseaux sociaux */
.icon-contact {
    color: var(--dark-color);
}
.icon-github {
    color: #333;
}
.icon-linkedin {
    color: #0a66c2;
}
.icon-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.icon-facebook {
    color: #1877f2;
}

/* Navigation */
.navbar-nav .nav-item {
    margin-right: 1.5rem;
}
.nav-link {
    transition: all 0.3s ease;
}
.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Boutons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: #3a5ae8;
    border-color: #3a5ae8;
}

/* Toast */
.custom-toast {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.toast-capper {
    height: 4px;
    border-radius: 8px 8px 0 0;
}

/* Footer */
.hr-footer {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
    margin: 2rem 0;
}
.icon-footer-container {
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
}
.icon-footer-container:hover {
    transform: scale(1.2) translateY(-3px);
}
.media-icons {
    font-size: 1.5rem;
}

/* Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 992px) {
    body {
        padding-top: 80px;
    }
}


/* product */


/* Couleurs des icônes principales (main_nav.html) */
.icon-home {
color: #6c757d; /* Gris neutre */
}
.icon-products {
color: #0d6efd; /* Bleu primaire */
}
.icon-clothing {
color: #198754; /* Vert */
}
.icon-homeware {
color: #fd7e14; /* Orange */
}
.icon-specials {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes des dropdowns (main_nav.html) */
.icon-products-light {
color: #6ea8fe; /* Bleu clair */
}
.icon-clothing-light {
color: #54d787; /* Vert clair */
}
.icon-homeware-light {
color: #ff9f43; /* Orange clair */
}
.icon-specials-light {
color: #f87171; /* Rouge clair */
}

/* Couleurs des icônes pour mobile_top_header.html */
.icon-search {
color: #6ea8fe; /* Bleu clair */
}
.icon-user {
color: #6c757d; /* Gris */
}
.icon-cart {
color: #54d787; /* Vert clair */
}

/* Couleurs des icônes pour footer.html */
.icon-contact {
color: #6c757d; /* Gris */
}
.icon-github {
color: #333333; /* Noir */
}
.icon-linkedin {
color: #0d6efd; /* Bleu */
}
.icon-instagram {
color: #e4405f; /* Rose */
}
.icon-facebook {
color: #6ea8fe; /* Bleu clair */
}

/* Couleurs des icônes pour toast.html (avertissement) */
.icon-warning {
color: #ffc107; /* Jaune */
}

/* Couleurs des icônes pour toast_success.html */
.icon-success {
color: #198754; /* Vert */
}
.icon-checkout {
color: #6c757d; /* Gris */
}

/* Couleur de l'icône pour toast_info.html */
.icon-info {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour products.html */
.icon-category {
color: #6ea8fe; /* Bleu clair, assorti à icon-products-light */
}
.icon-sort {
color: #6c757d; /* Gris, assorti à icon-home */
}
.icon-rating {
color: #ffc107; /* Jaune, assorti à icon-warning */
}
.icon-edit {
color: #6c757d; /* Gris, assorti à icon-home */
}
.icon-delete {
color: #dc3545; /* Rouge, assorti à icon-specials */
}

/* Espacement des éléments du menu (main_nav.html) */
.navbar-nav .nav-item {
margin-right: 1.5rem;
}

/* Animation au survol (main_nav.html, mobile_top_header.html) */
.nav-link {
transition: color 0.3s ease;
}
.nav-link:hover {
color: #0d6efd;
}

/* Style pour le footer */
.icon-footer-container {
margin: 0 0.5rem;
transition: transform 0.3s ease;
}
.icon-footer-container:hover {
transform: scale(1.2);
}
.media-icons {
font-size: 1.5rem;
}

/* Styles personnalisés pour les toasts */
.custom-toast {
border-radius: 0;
}
.arrow-up {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
margin: 0 auto;
}
.arrow-warning {
border-bottom: 10px solid #ffc107;
}
.arrow-success {
border-bottom: 10px solid #198754;
}
.arrow-info {
border-bottom: 10px solid #0d6efd;
}
.toast-capper {
height: 4px;
}

/* Style pour le toast du panier (toast_success.html) */
.bag-notification-wrapper {
max-height: 200px;
overflow-y: auto;
}

/* Style pour products.html */
.btt-button {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
z-index: 1000;
}
.category-badge .badge {
transition: background-color 0.3s ease;
}
.category-badge .badge:hover {
background-color: #0d6efd;
}


/* pdetail */


/* Couleurs des icônes principales (main_nav.html) */
.icon-home {
color: #6c757d; /* Gris neutre */
}
.icon-products {
color: #0d6efd; /* Bleu primaire */
}
.icon-clothing {
color: #198754; /* Vert */
}
.icon-homeware {
color: #fd7e14; /* Orange */
}
.icon-specials {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes des dropdowns (main_nav.html) */
.icon-products-light {
color: #6ea8fe; /* Bleu clair */
}
.icon-clothing-light {
color: #54d787; /* Vert clair */
}
.icon-homeware-light {
color: #ff9f43; /* Orange clair */
}
.icon-specials-light {
color: #f87171; /* Rouge clair */
}

/* Couleurs des icônes pour mobile_top_header.html */
.icon-search {
color: #6ea8fe; /* Bleu clair */
}
.icon-user {
color: #6c757d; /* Gris */
}
.icon-cart {
color: #54d787; /* Vert clair */
}

/* Couleurs des icônes pour footer.html */
.icon-contact {
color: #6c757d; /* Gris */
}
.icon-github {
color: #333333; /* Noir */
}
.icon-linkedin {
color: #0d6efd; /* Bleu */
}
.icon-instagram {
color: #e4405f; /* Rose */
}
.icon-facebook {
color: #6ea8fe; /* Bleu clair */
}

/* Couleurs des icônes pour toast.html (avertissement) */
.icon-warning {
color: #ffc107; /* Jaune */
}

/* Couleurs des icônes pour toast_success.html */
.icon-success {
color: #198754; /* Vert */
}
.icon-checkout {
color: #6c757d; /* Gris */
}

/* Couleur de l'icône pour toast_info.html */
.icon-info {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour products.html */
.icon-category {
color: #6ea8fe; /* Bleu clair */
}
.icon-sort {
color: #6c757d; /* Gris */
}
.icon-rating {
color: #ffc107; /* Jaune */
}
.icon-edit {
color: #6c757d; /* Gris */
}
.icon-delete {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes pour product_detail.html */
.icon-quantity {
color: #6c757d; /* Gris, assorti à icon-home */
}
.icon-continue {
color: #6c757d; /* Gris, assorti à icon-home */
}
.icon-add-to-cart {
color: #0d6efd; /* Bleu, assorti à icon-products */
}
.icon-buy-now {
color: #198754; /* Vert, assorti à icon-success */
}

/* Espacement des éléments du menu (main_nav.html) */
.navbar-nav .nav-item {
margin-right: 1.5rem;
}

/* Animation au survol (main_nav.html, mobile_top_header.html) */
.nav-link {
transition: color 0.3s ease;
}
.nav-link:hover {
color: #0d6efd;
}

/* Style pour le footer */
.icon-footer-container {
margin: 0 0.5rem;
transition: transform 0.3s ease;
}
.icon-footer-container:hover {
transform: scale(1.2);
}
.media-icons {
font-size: 1.5rem;
}

/* Styles personnalisés pour les toasts */
.custom-toast {
border-radius: 0;
}
.arrow-up {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
margin: 0 auto;
}
.arrow-warning {
border-bottom: 10px solid #ffc107;
}
.arrow-success {
border-bottom: 10px solid #198754;
}
.arrow-info {
border-bottom: 10px solid #0d6efd;
}
.toast-capper {
height: 4px;
}

/* Style pour le toast du panier (toast_success.html) */
.bag-notification-wrapper {
max-height: 200px;
overflow-y: auto;
}

/* Style pour products.html */
.btt-button {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
z-index: 1000;
}
.category-badge .badge {
transition: background-color 0.3s ease;
}
.category-badge .badge:hover {
background-color: #0d6efd;
}

/* Style pour product_detail.html */
.image-container img {
max-height: 400px;
object-fit: contain;
}
.product-details-container .btn {
transition: background-color 0.3s ease;
}
.product-details-container .btn:hover i {
transform: scale(1.1);
}



/* add product */


/* Couleurs des icônes principales (main_nav.html) */
.icon-home {
color: #6c757d; /* Gris neutre */
}
.icon-products {
color: #0d6efd; /* Bleu primaire */
}
.icon-clothing {
color: #198754; /* Vert */
}
.icon-homeware {
color: #fd7e14; /* Orange */
}
.icon-specials {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes des dropdowns (main_nav.html) */
.icon-products-light {
color: #6ea8fe; /* Bleu clair */
}
.icon-clothing-light {
color: #54d787; /* Vert clair */
}
.icon-homeware-light {
color: #ff9f43; /* Orange clair */
}
.icon-specials-light {
color: #f87171; /* Rouge clair */
}

/* Couleurs des icônes pour mobile_top_header.html */
.icon-search {
color: #6ea8fe; /* Bleu clair */
}
.icon-user {
color: #6c757d; /* Gris */
}
.icon-cart {
color: #54d787; /* Vert clair */
}

/* Couleurs des icônes pour footer.html */
.icon-contact {
color: #6c757d; /* Gris */
}
.icon-github {
color: #333333; /* Noir */
}
.icon-linkedin {
color: #0d6efd; /* Bleu */
}
.icon-instagram {
color: #e4405f; /* Rose */
}
.icon-facebook {
color: #6ea8fe; /* Bleu clair */
}

/* Couleurs des icônes pour toast.html (avertissement) */
.icon-warning {
color: #ffc107; /* Jaune */
}

/* Couleurs des icônes pour toast_success.html */
.icon-success {
color: #198754; /* Vert */
}
.icon-checkout {
color: #6c757d; /* Gris */
}

/* Couleur de l'icône pour toast_info.html */
.icon-info {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour products.html */
.icon-category {
color: #6ea8fe; /* Bleu clair */
}
.icon-sort {
color: #6c757d; /* Gris */
}
.icon-rating {
color: #ffc107; /* Jaune */
}
.icon-edit {
color: #6c757d; /* Gris */
}
.icon-delete {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes pour product_detail.html */
.icon-quantity {
color: #6c757d; /* Gris */
}
.icon-continue {
color: #6c757d; /* Gris */
}
.icon-add-to-cart {
color: #0d6efd; /* Bleu */
}
.icon-buy-now {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour add_product.html */
.icon-cancel {
color: #6c757d; /* Gris, assorti à icon-home */
}
.icon-add-product {
color: #0d6efd; /* Bleu, assorti à icon-products */
}

/* Espacement des éléments du menu (main_nav.html) */
.navbar-nav .nav-item {
margin-right: 1.5rem;
}

/* Animation au survol (main_nav.html, mobile_top_header.html) */
.nav-link {
transition: color 0.3s ease;
}
.nav-link:hover {
color: #0d6efd;
}

/* Style pour le footer */
.icon-footer-container {
margin: 0 0.5rem;
transition: transform 0.3s ease;
}
.icon-footer-container:hover {
transform: scale(1.2);
}
.media-icons {
font-size: 1.5rem;
}

/* Styles personnalisés pour les toasts */
.custom-toast {
border-radius: 0;
}
.arrow-up {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
margin: 0 auto;
}
.arrow-warning {
border-bottom: 10px solid #ffc107;
}
.arrow-success {
border-bottom: 10px solid #198754;
}
.arrow-info {
border-bottom: 10px solid #0d6efd;
}
.toast-capper {
height: 4px;
}

/* Style pour le toast du panier (toast_success.html) */
.bag-notification-wrapper {
max-height: 200px;
overflow-y: auto;
}

/* Style pour products.html */
.btt-button {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
z-index: 1000;
}
.category-badge .badge {
transition: background-color 0.3s ease;
}
.category-badge .badge:hover {
background-color: #0d6efd;
}

/* Style pour product_detail.html */
.image-container img {
max-height: 400px;
object-fit: contain;
}
.product-details-container .btn {
transition: background-color 0.3s ease;
}
.product-details-container .btn:hover i {
transform: scale(1.1);
}

/* Style pour add_product.html */
.form .btn {
transition: background-color 0.3s ease;
}
.form .btn:hover i {
transform: scale(1.1);
}
#filename {
font-size: 0.9rem;
}

/* checkout */


/* Couleurs des icônes principales (main_nav.html) */
.icon-home {
color: #6c757d; /* Gris neutre */
}
.icon-products {
color: #0d6efd; /* Bleu primaire */
}
.icon-clothing {
color: #198754; /* Vert */
}
.icon-homeware {
color: #fd7e14; /* Orange */
}
.icon-specials {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes des dropdowns (main_nav.html) */
.icon-products-light {
color: #6ea8fe; /* Bleu clair */
}
.icon-clothing-light {
color: #54d787; /* Vert clair */
}
.icon-homeware-light {
color: #ff9f43; /* Orange clair */
}
.icon-specials-light {
color: #f87171; /* Rouge clair */
}

/* Couleurs des icônes pour mobile_top_header.html */
.icon-search {
color: #6ea8fe; /* Bleu clair */
}
.icon-user {
color: #6c757d; /* Gris */
}
.icon-cart {
color: #54d787; /* Vert clair */
}

/* Couleurs des icônes pour footer.html */
.icon-contact {
color: #6c757d; /* Gris */
}
.icon-github {
color: #333333; /* Noir */
}
.icon-linkedin {
color: #0d6efd; /* Bleu */
}
.icon-instagram {
color: #e4405f; /* Rose */
}
.icon-facebook {
color: #6ea8fe; /* Bleu clair */
}

/* Couleurs des icônes pour toast.html (avertissement) */
.icon-warning {
color: #ffc107; /* Jaune */
}

/* Couleurs des icônes pour toast_success.html */
.icon-success {
color: #198754; /* Vert */
}
.icon-checkout {
color: #6c757d; /* Gris */
}

/* Couleur de l'icône pour toast_info.html */
.icon-info {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour products.html */
.icon-category {
color: #6ea8fe; /* Bleu clair */
}
.icon-sort {
color: #6c757d; /* Gris */
}
.icon-rating {
color: #ffc107; /* Jaune */
}
.icon-edit {
color: #6c757d; /* Gris */
}
.icon-delete {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes pour product_detail.html */
.icon-quantity {
color: #6c757d; /* Gris */
}
.icon-continue {
color: #6c757d; /* Gris */
}
.icon-add-to-cart {
color: #0d6efd; /* Bleu */
}
.icon-buy-now {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour add_product.html */
.icon-cancel {
color: #6c757d; /* Gris */
}
.icon-add-product {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour checkout.html */
.icon-submit {
color: #198754; /* Vert, assorti à icon-success */
}

/* Espacement des éléments du menu (main_nav.html) */
.navbar-nav .nav-item {
margin-right: 1.5rem;
}

/* Animation au survol (main_nav.html, mobile_top_header.html) */
.nav-link {
transition: color 0.3s ease;
}
.nav-link:hover {
color: #0d6efd;
}

/* Style pour le footer */
.icon-footer-container {
margin: 0 0.5rem;
transition: transform 0.3s ease;
}
.icon-footer-container:hover {
transform: scale(1.2);
}
.media-icons {
font-size: 1.5rem;
}

/* Styles personnalisés pour les toasts */
.custom-toast {
border-radius: 0;
}
.arrow-up {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
margin: 0 auto;
}
.arrow-warning {
border-bottom: 10px solid #ffc107;
}
.arrow-success {
border-bottom: 10px solid #198754;
}
.arrow-info {
border-bottom: 10px solid #0d6efd;
}
.toast-capper {
height: 4px;
}

/* Style pour le toast du panier (toast_success.html) */
.bag-notification-wrapper {
max-height: 200px;
overflow-y: auto;
}

/* Style pour products.html */
.btt-button {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
z-index: 1000;
}
.category-badge .badge {
transition: background-color 0.3s ease;
}
.category-badge .badge:hover {
background-color: #0d6efd;
}

/* Style pour product_detail.html */
.image-container img {
max-height: 400px;
object-fit: contain;
}
.product-details-container .btn {
transition: background-color 0.3s ease;
}
.product-details-container .btn:hover i {
transform: scale(1.1);
}

/* Style pour add_product.html */
.form .btn {
transition: background-color 0.3s ease;
}
.form .btn:hover i {
transform: scale(1.1);
}
#filename {
font-size: 0.9rem;
}

/* Style pour checkout.html */
#order-form .btn {
transition: background-color 0.3s ease;
}
#order-form .btn:hover i {
transform: scale(1.1);
}
#loading-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 9999;
}
.loading-spinner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.loading-spinner i {
font-size: 3rem;
}



/* succes */


/* Couleurs des icônes principales (main_nav.html) */
.icon-home {
color: #6c757d; /* Gris neutre */
}
.icon-products {
color: #0d6efd; /* Bleu primaire */
}
.icon-clothing {
color: #198754; /* Vert */
}
.icon-homeware {
color: #fd7e14; /* Orange */
}
.icon-specials {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes des dropdowns (main_nav.html) */
.icon-products-light {
color: #6ea8fe; /* Bleu clair */
}
.icon-clothing-light {
color: #54d787; /* Vert clair */
}
.icon-homeware-light {
color: #ff9f43; /* Orange clair */
}
.icon-specials-light {
color: #f87171; /* Rouge clair */
}

/* Couleurs des icônes pour mobile_top_header.html */
.icon-search {
color: #6ea8fe; /* Bleu clair */
}
.icon-user {
color: #6c757d; /* Gris */
}
.icon-cart {
color: #54d787; /* Vert clair */
}

/* Couleurs des icônes pour footer.html */
.icon-contact {
color: #6c757d; /* Gris */
}
.icon-github {
color: #333333; /* Noir */
}
.icon-linkedin {
color: #0d6efd; /* Bleu */
}
.icon-instagram {
color: #e4405f; /* Rose */
}
.icon-facebook {
color: #6ea8fe; /* Bleu clair */
}

/* Couleurs des icônes pour toast.html (avertissement) */
.icon-warning {
color: #ffc107; /* Jaune */
}

/* Couleurs des icônes pour toast_success.html */
.icon-success {
color: #198754; /* Vert */
}
.icon-checkout {
color: #6c757d; /* Gris */
}

/* Couleur de l'icône pour toast_info.html */
.icon-info {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour products.html */
.icon-category {
color: #6ea8fe; /* Bleu clair */
}
.icon-sort {
color: #6c757d; /* Gris */
}
.icon-rating {
color: #ffc107; /* Jaune */
}
.icon-edit {
color: #6c757d; /* Gris */
}
.icon-delete {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes pour product_detail.html */
.icon-quantity {
color: #6c757d; /* Gris */
}
.icon-continue {
color: #6c757d; /* Gris */
}
.icon-add-to-cart {
color: #0d6efd; /* Bleu */
}
.icon-buy-now {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour add_product.html */
.icon-cancel {
color: #6c757d; /* Gris */
}
.icon-add-product {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour checkout.html */
.icon-submit {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour checkout_success.html */
.icon-deals {
color: #0d6efd; /* Bleu, assorti à icon-products */
}

/* Espacement des éléments du menu (main_nav.html) */
.navbar-nav .nav-item {
margin-right: 1.5rem;
}

/* Animation au survol (main_nav.html, mobile_top_header.html) */
.nav-link {
transition: color 0.3s ease;
}
.nav-link:hover {
color: #0d6efd;
}

/* Style pour le footer */
.icon-footer-container {
margin: 0 0.5rem;
transition: transform 0.3s ease;
}
.icon-footer-container:hover {
transform: scale(1.2);
}
.media-icons {
font-size: 1.5rem;
}

/* Styles personnalisés pour les toasts */
.custom-toast {
border-radius: 0;
}
.arrow-up {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
margin: 0 auto;
}
.arrow-warning {
border-bottom: 10px solid #ffc107;
}
.arrow-success {
border-bottom: 10px solid #198754;
}
.arrow-info {
border-bottom: 10px solid #0d6efd;
}
.toast-capper {
height: 4px;
}

/* Style pour le toast du panier (toast_success.html) */
.bag-notification-wrapper {
max-height: 200px;
overflow-y: auto;
}

/* Style pour products.html */
.btt-button {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
z-index: 1000;
}
.category-badge .badge {
transition: background-color 0.3s ease;
}
.category-badge .badge:hover {
background-color: #0d6efd;
}

/* Style pour product_detail.html */
.image-container img {
max-height: 400px;
object-fit: contain;
}
.product-details-container .btn {
transition: background-color 0.3s ease;
}
.product-details-container .btn:hover i {
transform: scale(1.1);
}

/* Style pour add_product.html */
.form .btn {
transition: background-color 0.3s ease;
}
.form .btn:hover i {
transform: scale(1.1);
}
#filename {
font-size: 0.9rem;
}

/* Style pour checkout.html */
#order-form .btn {
transition: background-color 0.3s ease;
}
#order-form .btn:hover i {
transform: scale(1.1);
}
#loading-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 9999;
}
.loading-spinner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.loading-spinner i {
font-size: 3rem;
}

/* Style pour checkout_success.html */
.order-confirmation-wrapper {
background-color: #f8f9fa;
border-radius: 0.25rem;
}
.order-confirmation-wrapper .row {
padding: 0.5rem 0;
}
.order-confirmation-wrapper .text-muted {
font-size: 0.9rem;
}
.order-confirmation-wrapper .btn {
transition: background-color 0.3s ease;
}
.order-confirmation-wrapper .btn:hover i {
transform: scale(1.1);
}



/* Couleurs des icônes principales (main_nav.html) */
.icon-home {
color: #6c757d; /* Gris neutre */
}
.icon-products {
color: #0d6efd; /* Bleu primaire */
}
.icon-clothing {
color: #198754; /* Vert */
}
.icon-homeware {
color: #fd7e14; /* Orange */
}
.icon-specials {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes des dropdowns (main_nav.html) */
.icon-products-light {
color: #6ea8fe; /* Bleu clair */
}
.icon-clothing-light {
color: #54d787; /* Vert clair */
}
.icon-homeware-light {
color: #ff9f43; /* Orange clair */
}
.icon-specials-light {
color: #f87171; /* Rouge clair */
}

/* Couleurs des icônes pour mobile_top_header.html */
.icon-search {
color: #6ea8fe; /* Bleu clair */
}
.icon-user {
color: #6c757d; /* Gris */
}
.icon-cart {
color: #54d787; /* Vert clair */
}

/* Couleurs des icônes pour footer.html */
.icon-contact {
color: #6c757d; /* Gris */
}
.icon-github {
color: #333333; /* Noir */
}
.icon-linkedin {
color: #0d6efd; /* Bleu */
}
.icon-instagram {
color: #e4405f; /* Rose */
}
.icon-facebook {
color: #6ea8fe; /* Bleu clair */
}

/* Couleurs des icônes pour toast.html (avertissement) */
.icon-warning {
color: #ffc107; /* Jaune */
}

/* Couleurs des icônes pour toast_success.html */
.icon-success {
color: #198754; /* Vert */
}
.icon-checkout {
color: #198754; /* Vert */
}

/* Couleur de l'icône pour toast_info.html */
.icon-info {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour products.html */
.icon-category {
color: #6ea8fe; /* Bleu clair */
}
.icon-sort {
color: #6c757d; /* Gris */
}
.icon-rating {
color: #ffc107; /* Jaune */
}
.icon-edit {
color: #6c757d; /* Gris */
}
.icon-delete {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes pour product_detail.html */
.icon-quantity {
color: #6c757d; /* Gris */
}
.icon-continue {
color: #6c757d; /* Gris */
}
.icon-add-to-cart {
color: #0d6efd; /* Bleu */
}
.icon-buy-now {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour add_product.html */
.icon-cancel {
color: #6c757d; /* Gris */
}
.icon-add-product {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour checkout.html */
.icon-submit {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour checkout_success.html */
.icon-deals {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour bag.html */
.icon-scroll-top {
color: #6c757d; /* Gris */
}

/* Couleurs des icônes pour bag-total.html */
.icon-delivery {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes pour checkout-buttons.html */
.icon-checkout {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour product-image.html */
.icon-no-image {
color: #6c757d; /* Gris */
}

/* Couleurs des icônes pour product-info.html */
.icon-product-name {
color: #0d6efd; /* Bleu */
}
.icon-size {
color: #6c757d; /* Gris */
}
.icon-sku {
color: #6c757d; /* Gris */
}

/* Couleurs des icônes pour quantity-form.html */
.icon-decrement {
color: #6c757d; /* Gris */
}
.icon-increment {
color: #6c757d; /* Gris */
}
.icon-update {
color: #0dcaf0; /* Bleu clair */
}
.icon-remove {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes pour edit_product.html */
.icon-cancel {
color: #6c757d; /* Gris, assorti à add_product.html */
}
.icon-update-product {
color: #0d6efd; /* Bleu, assorti à icon-add-product */
}

/* Espacement des éléments du menu (main_nav.html) */
.navbar-nav .nav-item {
margin-right: 1.5rem;
}

/* Animation au survol (main_nav.html, mobile_top_header.html) */
.nav-link {
transition: color 0.3s ease;
}
.nav-link:hover {
color: #0d6efd;
}

/* Style pour le footer */
.icon-footer-container {
margin: 0 0.5rem;
transition: transform 0.3s ease;
}
.icon-footer-container:hover {
transform: scale(1.2);
}
.media-icons {
font-size: 1.5rem;
}

/* Styles personnalisés pour les toasts */
.custom-toast {
border-radius: 0;
}
.arrow-up {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
margin: 0 auto;
}
.arrow-warning {
border-bottom: 10px solid #ffc107;
}
.arrow-success {
border-bottom: 10px solid #198754;
}
.arrow-info {
border-bottom: 10px solid #0d6efd;
}
.toast-capper {
height: 4px;
}

/* Style pour le toast du panier (toast_success.html) */
.bag-notification-wrapper {
max-height: 200px;
overflow-y: auto;
}

/* Style pour products.html */
.btt-button {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
z-index: 1000;
}
.category-badge .badge {
transition: background-color 0.3s ease;
}
.category-badge .badge:hover {
background-color: #0d6efd;
}

/* Style pour product_detail.html */
.image-container img {
max-height: 400px;
object-fit: contain;
}
.product-details-container .btn {
transition: background-color 0.3s ease;
}
.product-details-container .btn:hover i {
transform: scale(1.1);
}

/* Style pour add_product.html */
.form .btn {
transition: background-color 0.3s ease;
}
.form .btn:hover i {
transform: scale(1.1);
}
#filename {
font-size: 0.9rem;
}

/* Style pour checkout.html */
#order-form .btn {
transition: background-color 0.3s ease;
}
#order-form .btn:hover i {
transform: scale(1.1);
}
#loading-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 9999;
}
.loading-spinner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.loading-spinner i {
font-size: 3rem;
}

/* Style pour checkout_success.html */
.order-confirmation-wrapper {
background-color: #f8f9fa;
border-radius: 0.25rem;
}
.order-confirmation-wrapper .row {
padding: 0.5rem 0;
}
.order-confirmation-wrapper .text-muted {
font-size: 0.9rem;
}
.order-confirmation-wrapper .btn {
transition: background-color 0.3s ease;
}
.order-confirmation-wrapper .btn:hover i {
transform: scale(1.1);
}

/* Style pour bag.html */
.bag-container .btn {
transition: background-color 0.3s ease;
}
.bag-container .btn:hover i {
transform: scale(1.1);
}
.btt-button {
background-color: #fff;
transition: background-color 0.3s ease;
}
.btt-button:hover {
background-color: #f8f9fa;
}

/* Style pour bag-total.html */
.bag-total-container {
font-size: 1rem;
}

/* Style pour checkout-buttons.html */
.checkout-buttons-container .btn {
transition: background-color 0.3s ease;
}
.checkout-buttons-container .btn:hover i {
transform: scale(1.1);
}

/* Style pour product-image.html */
.product-image {
max-height: 100px;
object-fit: cover;
transition: transform 0.3s ease;
}
.product-image:hover {
transform: scale(1.05);
}
.product-image-placeholder {
width: 100%;
height: 100px;
max-height: 100px;
}

/* Style pour product-info.html */
.product-info-container p {
display: flex;
align-items: center;
}

/* Style pour quantity-form.html */
.quantity-form-container .btn {
transition: background-color 0.3s ease;
}
.quantity-form-container .btn:hover i {
transform: scale(1.1);
}
.quantity-form-container .form-control {
width: 60px;
}
.quantity-form-container .update-link,
.quantity-form-container .remove-item {
transition: color 0.3s ease;
}
.quantity-form-container .update-link:hover,
.quantity-form-container .remove-item:hover {
color: #0d6efd;
}

/* Style pour edit_product.html */
.edit-product-container .btn {
transition: background-color 0.3s ease;
}
.edit-product-container .btn:hover i {
transform: scale(1.1);
}


/* bag */






/* Couleurs des icônes principales (main_nav.html) */
.icon-home {
color: #6c757d; /* Gris neutre */
}
.icon-products {
color: #0d6efd; /* Bleu primaire */
}
.icon-clothing {
color: #198754; /* Vert */
}
.icon-homeware {
color: #fd7e14; /* Orange */
}
.icon-specials {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes des dropdowns (main_nav.html) */
.icon-products-light {
color: #6ea8fe; /* Bleu clair */
}
.icon-clothing-light {
color: #54d787; /* Vert clair */
}
.icon-homeware-light {
color: #ff9f43; /* Orange clair */
}
.icon-specials-light {
color: #f87171; /* Rouge clair */
}

/* Couleurs des icônes pour mobile_top_header.html */
.icon-search {
color: #6ea8fe; /* Bleu clair */
}
.icon-user {
color: #6c757d; /* Gris */
}
.icon-cart {
color: #54d787; /* Vert clair */
}

/* Couleurs des icônes pour footer.html */
.icon-contact {
color: #6c757d; /* Gris */
}
.icon-github {
color: #333333; /* Noir */
}
.icon-linkedin {
color: #0d6efd; /* Bleu */
}
.icon-instagram {
color: #e4405f; /* Rose */
}
.icon-facebook {
color: #6ea8fe; /* Bleu clair */
}

/* Couleurs des icônes pour toast.html (avertissement) */
.icon-warning {
color: #ffc107; /* Jaune */
}

/* Couleurs des icônes pour toast_success.html */
.icon-success {
color: #198754; /* Vert */
}
.icon-checkout {
color: #6c757d; /* Gris */
}

/* Couleur de l'icône pour toast_info.html */
.icon-info {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour products.html */
.icon-category {
color: #6ea8fe; /* Bleu clair */
}
.icon-sort {
color: #6c757d; /* Gris */
}
.icon-rating {
color: #ffc107; /* Jaune */
}
.icon-edit {
color: #6c757d; /* Gris */
}
.icon-delete {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes pour product_detail.html */
.icon-quantity {
color: #6c757d; /* Gris */
}
.icon-continue {
color: #6c757d; /* Gris */
}
.icon-add-to-cart {
color: #0d6efd; /* Bleu */
}
.icon-buy-now {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour add_product.html */
.icon-cancel {
color: #6c757d; /* Gris */
}
.icon-add-product {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour checkout.html */
.icon-submit {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour checkout_success.html */
.icon-deals {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour bag.html */
.icon-scroll-top {
color: #6c757d; /* Gris, assorti à icon-home */
}

/* Espacement des éléments du menu (main_nav.html) */
.navbar-nav .nav-item {
margin-right: 1.5rem;
}

/* Animation au survol (main_nav.html, mobile_top_header.html) */
.nav-link {
transition: color 0.3s ease;
}
.nav-link:hover {
color: #0d6efd;
}

/* Style pour le footer */
.icon-footer-container {
margin: 0 0.5rem;
transition: transform 0.3s ease;
}
.icon-footer-container:hover {
transform: scale(1.2);
}
.media-icons {
font-size: 1.5rem;
}

/* Styles personnalisés pour les toasts */
.custom-toast {
border-radius: 0;
}
.arrow-up {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
margin: 0 auto;
}
.arrow-warning {
border-bottom: 10px solid #ffc107;
}
.arrow-success {
border-bottom: 10px solid #198754;
}
.arrow-info {
border-bottom: 10px solid #0d6efd;
}
.toast-capper {
height: 4px;
}

/* Style pour le toast du panier (toast_success.html) */
.bag-notification-wrapper {
max-height: 200px;
overflow-y: auto;
}

/* Style pour products.html */
.btt-button {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
z-index: 1000;
}
.category-badge .badge {
transition: background-color 0.3s ease;
}
.category-badge .badge:hover {
background-color: #0d6efd;
}

/* Style pour product_detail.html */
.image-container img {
max-height: 400px;
object-fit: contain;
}
.product-details-container .btn {
transition: background-color 0.3s ease;
}
.product-details-container .btn:hover i {
transform: scale(1.1);
}

/* Style pour add_product.html */
.form .btn {
transition: background-color 0.3s ease;
}
.form .btn:hover i {
transform: scale(1.1);
}
#filename {
font-size: 0.9rem;
}

/* Style pour checkout.html */
#order-form .btn {
transition: background-color 0.3s ease;
}
#order-form .btn:hover i {
transform: scale(1.1);
}
#loading-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 9999;
}
.loading-spinner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.loading-spinner i {
font-size: 3rem;
}

/* Style pour checkout_success.html */
.order-confirmation-wrapper {
background-color: #f8f9fa;
border-radius: 0.25rem;
}
.order-confirmation-wrapper .row {
padding: 0.5rem 0;
}
.order-confirmation-wrapper .text-muted {
font-size: 0.9rem;
}
.order-confirmation-wrapper .btn {
transition: background-color 0.3s ease;
}
.order-confirmation-wrapper .btn:hover i {
transform: scale(1.1);
}

/* Style pour bag.html */
.bag-container .btn {
transition: background-color 0.3s ease;
}
.bag-container .btn:hover i {
transform: scale(1.1);
}
.btt-button {
background-color: #fff;
transition: background-color 0.3s ease;
}
.btt-button:hover {
background-color: #f8f9fa;
}



/* Couleurs des icônes principales (main_nav.html) */
.icon-home {
color: #6c757d; /* Gris neutre */
}
.icon-products {
color: #0d6efd; /* Bleu primaire */
}
.icon-clothing {
color: #198754; /* Vert */
}
.icon-homeware {
color: #fd7e14; /* Orange */
}
.icon-specials {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes des dropdowns (main_nav.html) */
.icon-products-light {
color: #6ea8fe; /* Bleu clair */
}
.icon-clothing-light {
color: #54d787; /* Vert clair */
}
.icon-homeware-light {
color: #ff9f43; /* Orange clair */
}
.icon-specials-light {
color: #f87171; /* Rouge clair */
}

/* Couleurs des icônes pour mobile_top_header.html */
.icon-search {
color: #6ea8fe; /* Bleu clair */
}
.icon-user {
color: #6c757d; /* Gris */
}
.icon-cart {
color: #54d787; /* Vert clair */
}

/* Couleurs des icônes pour footer.html */
.icon-contact {
color: #6c757d; /* Gris */
}
.icon-github {
color: #333333; /* Noir */
}
.icon-linkedin {
color: #0d6efd; /* Bleu */
}
.icon-instagram {
color: #e4405f; /* Rose */
}
.icon-facebook {
color: #6ea8fe; /* Bleu clair */
}

/* Couleurs des icônes pour toast.html (avertissement) */
.icon-warning {
color: #ffc107; /* Jaune */
}

/* Couleurs des icônes pour toast_success.html */
.icon-success {
color: #198754; /* Vert */
}
.icon-checkout {
color: #6c757d; /* Gris */
}

/* Couleur de l'icône pour toast_info.html */
.icon-info {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour products.html */
.icon-category {
color: #6ea8fe; /* Bleu clair */
}
.icon-sort {
color: #6c757d; /* Gris */
}
.icon-rating {
color: #ffc107; /* Jaune */
}
.icon-edit {
color: #6c757d; /* Gris */
}
.icon-delete {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes pour product_detail.html */
.icon-quantity {
color: #6c757d; /* Gris */
}
.icon-continue {
color: #6c757d; /* Gris */
}
.icon-add-to-cart {
color: #0d6efd; /* Bleu */
}
.icon-buy-now {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour add_product.html */
.icon-cancel {
color: #6c757d; /* Gris */
}
.icon-add-product {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour checkout.html */
.icon-submit {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour checkout_success.html */
.icon-deals {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour bag.html */
.icon-scroll-top {
color: #6c757d; /* Gris */
}

/* Couleurs des icônes pour bag-total.html */
.icon-delivery {
color: #dc3545; /* Rouge, assorti à icon-specials */
}

/* Espacement des éléments du menu (main_nav.html) */
.navbar-nav .nav-item {
margin-right: 1.5rem;
}

/* Animation au survol (main_nav.html, mobile_top_header.html) */
.nav-link {
transition: color 0.3s ease;
}
.nav-link:hover {
color: #0d6efd;
}

/* Style pour le footer */
.icon-footer-container {
margin: 0 0.5rem;
transition: transform 0.3s ease;
}
.icon-footer-container:hover {
transform: scale(1.2);
}
.media-icons {
font-size: 1.5rem;
}

/* Styles personnalisés pour les toasts */
.custom-toast {
border-radius: 0;
}
.arrow-up {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
margin: 0 auto;
}
.arrow-warning {
border-bottom: 10px solid #ffc107;
}
.arrow-success {
border-bottom: 10px solid #198754;
}
.arrow-info {
border-bottom: 10px solid #0d6efd;
}
.toast-capper {
height: 4px;
}

/* Style pour le toast du panier (toast_success.html) */
.bag-notification-wrapper {
max-height: 200px;
overflow-y: auto;
}

/* Style pour products.html */
.btt-button {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
z-index: 1000;
}
.category-badge .badge {
transition: background-color 0.3s ease;
}
.category-badge .badge:hover {
background-color: #0d6efd;
}

/* Style pour product_detail.html */
.image-container img {
max-height: 400px;
object-fit: contain;
}
.product-details-container .btn {
transition: background-color 0.3s ease;
}
.product-details-container .btn:hover i {
transform: scale(1.1);
}

/* Style pour add_product.html */
.form .btn {
transition: background-color 0.3s ease;
}
.form .btn:hover i {
transform: scale(1.1);
}
#filename {
font-size: 0.9rem;
}

/* Style pour checkout.html */
#order-form .btn {
transition: background-color 0.3s ease;
}
#order-form .btn:hover i {
transform: scale(1.1);
}
#loading-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 9999;
}
.loading-spinner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.loading-spinner i {
font-size: 3rem;
}

/* Style pour checkout_success.html */
.order-confirmation-wrapper {
background-color: #f8f9fa;
border-radius: 0.25rem;
}
.order-confirmation-wrapper .row {
padding: 0.5rem 0;
}
.order-confirmation-wrapper .text-muted {
font-size: 0.9rem;
}
.order-confirmation-wrapper .btn {
transition: background-color 0.3s ease;
}
.order-confirmation-wrapper .btn:hover i {
transform: scale(1.1);
}

/* Style pour bag.html */
.bag-container .btn {
transition: background-color 0.3s ease;
}
.bag-container .btn:hover i {
transform: scale(1.1);
}
.btt-button {
background-color: #fff;
transition: background-color 0.3s ease;
}
.btt-button:hover {
background-color: #f8f9fa;
}

/* Style pour bag-total.html */
.bag-total-container {
font-size: 1rem;
}


/* Couleurs des icônes principales (main_nav.html) */
.icon-home {
color: #6c757d; /* Gris neutre */
}
.icon-products {
color: #0d6efd; /* Bleu primaire */
}
.icon-clothing {
color: #198754; /* Vert */
}
.icon-homeware {
color: #fd7e14; /* Orange */
}
.icon-specials {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes des dropdowns (main_nav.html) */
.icon-products-light {
color: #6ea8fe; /* Bleu clair */
}
.icon-clothing-light {
color: #54d787; /* Vert clair */
}
.icon-homeware-light {
color: #ff9f43; /* Orange clair */
}
.icon-specials-light {
color: #f87171; /* Rouge clair */
}

/* Couleurs des icônes pour mobile_top_header.html */
.icon-search {
color: #6ea8fe; /* Bleu clair */
}
.icon-user {
color: #6c757d; /* Gris */
}
.icon-cart {
color: #54d787; /* Vert clair */
}

/* Couleurs des icônes pour footer.html */
.icon-contact {
color: #6c757d; /* Gris */
}
.icon-github {
color: #333333; /* Noir */
}
.icon-linkedin {
color: #0d6efd; /* Bleu */
}
.icon-instagram {
color: #e4405f; /* Rose */
}
.icon-facebook {
color: #6ea8fe; /* Bleu clair */
}

/* Couleurs des icônes pour toast.html (avertissement) */
.icon-warning {
color: #ffc107; /* Jaune */
}

/* Couleurs des icônes pour toast_success.html */
.icon-success {
color: #198754; /* Vert */
}
.icon-checkout {
color: #198754; /* Vert, assorti à icon-buy-now */
}

/* Couleur de l'icône pour toast_info.html */
.icon-info {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour products.html */
.icon-category {
color: #6ea8fe; /* Bleu clair */
}
.icon-sort {
color: #6c757d; /* Gris */
}
.icon-rating {
color: #ffc107; /* Jaune */
}
.icon-edit {
color: #6c757d; /* Gris */
}
.icon-delete {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes pour product_detail.html */
.icon-quantity {
color: #6c757d; /* Gris */
}
.icon-continue {
color: #6c757d; /* Gris */
}
.icon-add-to-cart {
color: #0d6efd; /* Bleu */
}
.icon-buy-now {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour add_product.html */
.icon-cancel {
color: #6c757d; /* Gris */
}
.icon-add-product {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour checkout.html */
.icon-submit {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour checkout_success.html */
.icon-deals {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour bag.html */
.icon-scroll-top {
color: #6c757d; /* Gris */
}

/* Couleurs des icônes pour bag-total.html */
.icon-delivery {
color: #dc3545; /* Rouge */
}

/* Espacement des éléments du menu (main_nav.html) */
.navbar-nav .nav-item {
margin-right: 1.5rem;
}

/* Animation au survol (main_nav.html, mobile_top_header.html) */
.nav-link {
transition: color 0.3s ease;
}
.nav-link:hover {
color: #0d6efd;
}

/* Style pour le footer */
.icon-footer-container {
margin: 0 0.5rem;
transition: transform 0.3s ease;
}
.icon-footer-container:hover {
transform: scale(1.2);
}
.media-icons {
font-size: 1.5rem;
}

/* Styles personnalisés pour les toasts */
.custom-toast {
border-radius: 0;
}
.arrow-up {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
margin: 0 auto;
}
.arrow-warning {
border-bottom: 10px solid #ffc107;
}
.arrow-success {
border-bottom: 10px solid #198754;
}
.arrow-info {
border-bottom: 10px solid #0d6efd;
}
.toast-capper {
height: 4px;
}

/* Style pour le toast du panier (toast_success.html) */
.bag-notification-wrapper {
max-height: 200px;
overflow-y: auto;
}

/* Style pour products.html */
.btt-button {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
z-index: 1000;
}
.category-badge .badge {
transition: background-color 0.3s ease;
}
.category-badge .badge:hover {
background-color: #0d6efd;
}

/* Style pour product_detail.html */
.image-container img {
max-height: 400px;
object-fit: contain;
}
.product-details-container .btn {
transition: background-color 0.3s ease;
}
.product-details-container .btn:hover i {
transform: scale(1.1);
}

/* Style pour add_product.html */
.form .btn {
transition: background-color 0.3s ease;
}
.form .btn:hover i {
transform: scale(1.1);
}
#filename {
font-size: 0.9rem;
}

/* Style pour checkout.html */
#order-form .btn {
transition: background-color 0.3s ease;
}
#order-form .btn:hover i {
transform: scale(1.1);
}
#loading-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 9999;
}
.loading-spinner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.loading-spinner i {
font-size: 3rem;
}

/* Style pour checkout_success.html */
.order-confirmation-wrapper {
background-color: #f8f9fa;
border-radius: 0.25rem;
}
.order-confirmation-wrapper .row {
padding: 0.5rem 0;
}
.order-confirmation-wrapper .text-muted {
font-size: 0.9rem;
}
.order-confirmation-wrapper .btn {
transition: background-color 0.3s ease;
}
.order-confirmation-wrapper .btn:hover i {
transform: scale(1.1);
}

/* Style pour bag.html */
.bag-container .btn {
transition: background-color 0.3s ease;
}
.bag-container .btn:hover i {
transform: scale(1.1);
}
.btt-button {
background-color: #fff;
transition: background-color 0.3s ease;
}
.btt-button:hover {
background-color: #f8f9fa;
}

/* Style pour bag-total.html */
.bag-total-container {
font-size: 1rem;
}

/* Style pour checkout-buttons.html */
.checkout-buttons-container .btn {
transition: background-color 0.3s ease;
}
.checkout-buttons-container .btn:hover i {
transform: scale(1.1);
}




/* Couleurs des icônes principales (main_nav.html) */
.icon-home {
color: #6c757d; /* Gris neutre */
}
.icon-products {
color: #0d6efd; /* Bleu primaire */
}
.icon-clothing {
color: #198754; /* Vert */
}
.icon-homeware {
color: #fd7e14; /* Orange */
}
.icon-specials {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes des dropdowns (main_nav.html) */
.icon-products-light {
color: #6ea8fe; /* Bleu clair */
}
.icon-clothing-light {
color: #54d787; /* Vert clair */
}
.icon-homeware-light {
color: #ff9f43; /* Orange clair */
}
.icon-specials-light {
color: #f87171; /* Rouge clair */
}

/* Couleurs des icônes pour mobile_top_header.html */
.icon-search {
color: #6ea8fe; /* Bleu clair */
}
.icon-user {
color: #6c757d; /* Gris */
}
.icon-cart {
color: #54d787; /* Vert clair */
}

/* Couleurs des icônes pour footer.html */
.icon-contact {
color: #6c757d; /* Gris */
}
.icon-github {
color: #333333; /* Noir */
}
.icon-linkedin {
color: #0d6efd; /* Bleu */
}
.icon-instagram {
color: #e4405f; /* Rose */
}
.icon-facebook {
color: #6ea8fe; /* Bleu clair */
}

/* Couleurs des icônes pour toast.html (avertissement) */
.icon-warning {
color: #ffc107; /* Jaune */
}

/* Couleurs des icônes pour toast_success.html */
.icon-success {
color: #198754; /* Vert */
}
.icon-checkout {
color: #198754; /* Vert */
}

/* Couleur de l'icône pour toast_info.html */
.icon-info {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour products.html */
.icon-category {
color: #6ea8fe; /* Bleu clair */
}
.icon-sort {
color: #6c757d; /* Gris */
}
.icon-rating {
color: #ffc107; /* Jaune */
}
.icon-edit {
color: #6c757d; /* Gris */
}
.icon-delete {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes pour product_detail.html */
.icon-quantity {
color: #6c757d; /* Gris */
}
.icon-continue {
color: #6c757d; /* Gris */
}
.icon-add-to-cart {
color: #0d6efd; /* Bleu */
}
.icon-buy-now {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour add_product.html */
.icon-cancel {
color: #6c757d; /* Gris */
}
.icon-add-product {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour checkout.html */
.icon-submit {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour checkout_success.html */
.icon-deals {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour bag.html */
.icon-scroll-top {
color: #6c757d; /* Gris */
}

/* Couleurs des icônes pour bag-total.html */
.icon-delivery {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes pour checkout-buttons.html */
.icon-checkout {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour product-image.html */
.icon-no-image {
color: #6c757d; /* Gris, assorti à icon-home */
}

/* Espacement des éléments du menu (main_nav.html) */
.navbar-nav .nav-item {
margin-right: 1.5rem;
}

/* Animation au survol (main_nav.html, mobile_top_header.html) */
.nav-link {
transition: color 0.3s ease;
}
.nav-link:hover {
color: #0d6efd;
}

/* Style pour le footer */
.icon-footer-container {
margin: 0 0.5rem;
transition: transform 0.3s ease;
}
.icon-footer-container:hover {
transform: scale(1.2);
}
.media-icons {
font-size: 1.5rem;
}

/* Styles personnalisés pour les toasts */
.custom-toast {
border-radius: 0;
}
.arrow-up {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
margin: 0 auto;
}
.arrow-warning {
border-bottom: 10px solid #ffc107;
}
.arrow-success {
border-bottom: 10px solid #198754;
}
.arrow-info {
border-bottom: 10px solid #0d6efd;
}
.toast-capper {
height: 4px;
}

/* Style pour le toast du panier (toast_success.html) */
.bag-notification-wrapper {
max-height: 200px;
overflow-y: auto;
}

/* Style pour products.html */
.btt-button {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
z-index: 1000;
}
.category-badge .badge {
transition: background-color 0.3s ease;
}
.category-badge .badge:hover {
background-color: #0d6efd;
}

/* Style pour product_detail.html */
.image-container img {
max-height: 400px;
object-fit: contain;
}
.product-details-container .btn {
transition: background-color 0.3s ease;
}
.product-details-container .btn:hover i {
transform: scale(1.1);
}

/* Style pour add_product.html */
.form .btn {
transition: background-color 0.3s ease;
}
.form .btn:hover i {
transform: scale(1.1);
}
#filename {
font-size: 0.9rem;
}

/* Style pour checkout.html */
#order-form .btn {
transition: background-color 0.3s ease;
}
#order-form .btn:hover i {
transform: scale(1.1);
}
#loading-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 9999;
}
.loading-spinner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.loading-spinner i {
font-size: 3rem;
}

/* Style pour checkout_success.html */
.order-confirmation-wrapper {
background-color: #f8f9fa;
border-radius: 0.25rem;
}
.order-confirmation-wrapper .row {
padding: 0.5rem 0;
}
.order-confirmation-wrapper .text-muted {
font-size: 0.9rem;
}
.order-confirmation-wrapper .btn {
transition: background-color 0.3s ease;
}
.order-confirmation-wrapper .btn:hover i {
transform: scale(1.1);
}

/* Style pour bag.html */
.bag-container .btn {
transition: background-color 0.3s ease;
}
.bag-container .btn:hover i {
transform: scale(1.1);
}
.btt-button {
background-color: #fff;
transition: background-color 0.3s ease;
}
.btt-button:hover {
background-color: #f8f9fa;
}

/* Style pour bag-total.html */
.bag-total-container {
font-size: 1rem;
}

/* Style pour checkout-buttons.html */
.checkout-buttons-container .btn {
transition: background-color 0.3s ease;
}
.checkout-buttons-container .btn:hover i {
transform: scale(1.1);
}

/* Style pour product-image.html */
.product-image {
max-height: 100px;
object-fit: cover;
transition: transform 0.3s ease;
}
.product-image:hover {
transform: scale(1.05);
}
.product-image-placeholder {
width: 100%;
height: 100px;
max-height: 100px;
}





/* Couleurs des icônes principales (main_nav.html) */
.icon-home {
color: #6c757d; /* Gris neutre */
}
.icon-products {
color: #0d6efd; /* Bleu primaire */
}
.icon-clothing {
color: #198754; /* Vert */
}
.icon-homeware {
color: #fd7e14; /* Orange */
}
.icon-specials {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes des dropdowns (main_nav.html) */
.icon-products-light {
color: #6ea8fe; /* Bleu clair */
}
.icon-clothing-light {
color: #54d787; /* Vert clair */
}
.icon-homeware-light {
color: #ff9f43; /* Orange clair */
}
.icon-specials-light {
color: #f87171; /* Rouge clair */
}

/* Couleurs des icônes pour mobile_top_header.html */
.icon-search {
color: #6ea8fe; /* Bleu clair */
}
.icon-user {
color: #6c757d; /* Gris */
}
.icon-cart {
color: #54d787; /* Vert clair */
}

/* Couleurs des icônes pour footer.html */
.icon-contact {
color: #6c757d; /* Gris */
}
.icon-github {
color: #333333; /* Noir */
}
.icon-linkedin {
color: #0d6efd; /* Bleu */
}
.icon-instagram {
color: #e4405f; /* Rose */
}
.icon-facebook {
color: #6ea8fe; /* Bleu clair */
}

/* Couleurs des icônes pour toast.html (avertissement) */
.icon-warning {
color: #ffc107; /* Jaune */
}

/* Couleurs des icônes pour toast_success.html */
.icon-success {
color: #198754; /* Vert */
}
.icon-checkout {
color: #198754; /* Vert */
}

/* Couleur de l'icône pour toast_info.html */
.icon-info {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour products.html */
.icon-category {
color: #6ea8fe; /* Bleu clair */
}
.icon-sort {
color: #6c757d; /* Gris */
}
.icon-rating {
color: #ffc107; /* Jaune */
}
.icon-edit {
color: #6c757d; /* Gris */
}
.icon-delete {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes pour product_detail.html */
.icon-quantity {
color: #6c757d; /* Gris */
}
.icon-continue {
color: #6c757d; /* Gris */
}
.icon-add-to-cart {
color: #0d6efd; /* Bleu */
}
.icon-buy-now {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour add_product.html */
.icon-cancel {
color: #6c757d; /* Gris */
}
.icon-add-product {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour checkout.html */
.icon-submit {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour checkout_success.html */
.icon-deals {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour bag.html */
.icon-scroll-top {
color: #6c757d; /* Gris */
}

/* Couleurs des icônes pour bag-total.html */
.icon-delivery {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes pour checkout-buttons.html */
.icon-checkout {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour product-image.html */
.icon-no-image {
color: #6c757d; /* Gris */
}

/* Couleurs des icônes pour product-info.html */
.icon-product-name {
color: #0d6efd; /* Bleu, assorti à icon-products */
}
.icon-size {
color: #6c757d; /* Gris, assorti à icon-continue */
}
.icon-sku {
color: #6c757d; /* Gris, assorti à icon-home */
}

/* Espacement des éléments du menu (main_nav.html) */
.navbar-nav .nav-item {
margin-right: 1.5rem;
}

/* Animation au survol (main_nav.html, mobile_top_header.html) */
.nav-link {
transition: color 0.3s ease;
}
.nav-link:hover {
color: #0d6efd;
}

/* Style pour le footer */
.icon-footer-container {
margin: 0 0.5rem;
transition: transform 0.3s ease;
}
.icon-footer-container:hover {
transform: scale(1.2);
}
.media-icons {
font-size: 1.5rem;
}

/* Styles personnalisés pour les toasts */
.custom-toast {
border-radius: 0;
}
.arrow-up {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
margin: 0 auto;
}
.arrow-warning {
border-bottom: 10px solid #ffc107;
}
.arrow-success {
border-bottom: 10px solid #198754;
}
.arrow-info {
border-bottom: 10px solid #0d6efd;
}
.toast-capper {
height: 4px;
}

/* Style pour le toast du panier (toast_success.html) */
.bag-notification-wrapper {
max-height: 200px;
overflow-y: auto;
}

/* Style pour products.html */
.btt-button {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
z-index: 1000;
}
.category-badge .badge {
transition: background-color 0.3s ease;
}
.category-badge .badge:hover {
background-color: #0d6efd;
}

/* Style pour product_detail.html */
.image-container img {
max-height: 400px;
object-fit: contain;
}
.product-details-container .btn {
transition: background-color 0.3s ease;
}
.product-details-container .btn:hover i {
transform: scale(1.1);
}

/* Style pour add_product.html */
.form .btn {
transition: background-color 0.3s ease;
}
.form .btn:hover i {
transform: scale(1.1);
}
#filename {
font-size: 0.9rem;
}

/* Style pour checkout.html */
#order-form .btn {
transition: background-color 0.3s ease;
}
#order-form .btn:hover i {
transform: scale(1.1);
}
#loading-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 9999;
}
.loading-spinner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.loading-spinner i {
font-size: 3rem;
}

/* Style pour checkout_success.html */
.order-confirmation-wrapper {
background-color: #f8f9fa;
border-radius: 0.25rem;
}
.order-confirmation-wrapper .row {
padding: 0.5rem 0;
}
.order-confirmation-wrapper .text-muted {
font-size: 0.9rem;
}
.order-confirmation-wrapper .btn {
transition: background-color 0.3s ease;
}
.order-confirmation-wrapper .btn:hover i {
transform: scale(1.1);
}

/* Style pour bag.html */
.bag-container .btn {
transition: background-color 0.3s ease;
}
.bag-container .btn:hover i {
transform: scale(1.1);
}
.btt-button {
background-color: #fff;
transition: background-color 0.3s ease;
}
.btt-button:hover {
background-color: #f8f9fa;
}

/* Style pour bag-total.html */
.bag-total-container {
font-size: 1rem;
}

/* Style pour checkout-buttons.html */
.checkout-buttons-container .btn {
transition: background-color 0.3s ease;
}
.checkout-buttons-container .btn:hover i {
transform: scale(1.1);
}

/* Style pour product-image.html */
.product-image {
max-height: 100px;
object-fit: cover;
transition: transform 0.3s ease;
}
.product-image:hover {
transform: scale(1.05);
}
.product-image-placeholder {
width: 100%;
height: 100px;
max-height: 100px;
}

/* Style pour product-info.html */
.product-info-container p {
display: flex;
align-items: center;
}



/* Couleurs des icônes principales (main_nav.html) */
.icon-home {
color: #6c757d; /* Gris neutre */
}
.icon-products {
color: #0d6efd; /* Bleu primaire */
}
.icon-clothing {
color: #198754; /* Vert */
}
.icon-homeware {
color: #fd7e14; /* Orange */
}
.icon-specials {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes des dropdowns (main_nav.html) */
.icon-products-light {
color: #6ea8fe; /* Bleu clair */
}
.icon-clothing-light {
color: #54d787; /* Vert clair */
}
.icon-homeware-light {
color: #ff9f43; /* Orange clair */
}
.icon-specials-light {
color: #f87171; /* Rouge clair */
}

/* Couleurs des icônes pour mobile_top_header.html */
.icon-search {
color: #6ea8fe; /* Bleu clair */
}
.icon-user {
color: #6c757d; /* Gris */
}
.icon-cart {
color: #54d787; /* Vert clair */
}

/* Couleurs des icônes pour footer.html */
.icon-contact {
color: #6c757d; /* Gris */
}
.icon-github {
color: #333333; /* Noir */
}
.icon-linkedin {
color: #0d6efd; /* Bleu */
}
.icon-instagram {
color: #e4405f; /* Rose */
}
.icon-facebook {
color: #6ea8fe; /* Bleu clair */
}

/* Couleurs des icônes pour toast.html (avertissement) */
.icon-warning {
color: #ffc107; /* Jaune */
}

/* Couleurs des icônes pour toast_success.html */
.icon-success {
color: #198754; /* Vert */
}
.icon-checkout {
color: #198754; /* Vert */
}

/* Couleur de l'icône pour toast_info.html */
.icon-info {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour products.html */
.icon-category {
color: #6ea8fe; /* Bleu clair */
}
.icon-sort {
color: #6c757d; /* Gris */
}
.icon-rating {
color: #ffc107; /* Jaune */
}
.icon-edit {
color: #6c757d; /* Gris */
}
.icon-delete {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes pour product_detail.html */
.icon-quantity {
color: #6c757d; /* Gris */
}
.icon-continue {
color: #6c757d; /* Gris */
}
.icon-add-to-cart {
color: #0d6efd; /* Bleu */
}
.icon-buy-now {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour add_product.html */
.icon-cancel {
color: #6c757d; /* Gris */
}
.icon-add-product {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour checkout.html */
.icon-submit {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour checkout_success.html */
.icon-deals {
color: #0d6efd; /* Bleu */
}

/* Couleurs des icônes pour bag.html */
.icon-scroll-top {
color: #6c757d; /* Gris */
}

/* Couleurs des icônes pour bag-total.html */
.icon-delivery {
color: #dc3545; /* Rouge */
}

/* Couleurs des icônes pour checkout-buttons.html */
.icon-checkout {
color: #198754; /* Vert */
}

/* Couleurs des icônes pour product-image.html */
.icon-no-image {
color: #6c757d; /* Gris */
}

/* Couleurs des icônes pour product-info.html */
.icon-product-name {
color: #0d6efd; /* Bleu */
}
.icon-size {
color: #6c757d; /* Gris */
}
.icon-sku {
color: #6c757d; /* Gris */
}

/* Couleurs des icônes pour quantity-form.html */
.icon-decrement {
color: #6c757d; /* Gris, assorti à icon-continue */
}
.icon-increment {
color: #6c757d; /* Gris, assorti à icon-quantity */
}
.icon-update {
color: #0dcaf0; /* Bleu clair, assorti à text-info */
}
.icon-remove {
color: #dc3545; /* Rouge, assorti à icon-delete */
}

/* Espacement des éléments du menu (main_nav.html) */
.navbar-nav .nav-item {
margin-right: 1.5rem;
}

/* Animation au survol (main_nav.html, mobile_top_header.html) */
.nav-link {
transition: color 0.3s ease;
}
.nav-link:hover {
color: #0d6efd;
}

/* Style pour le footer */
.icon-footer-container {
margin: 0 0.5rem;
transition: transform 0.3s ease;
}
.icon-footer-container:hover {
transform: scale(1.2);
}
.media-icons {
font-size: 1.5rem;
}

/* Styles personnalisés pour les toasts */
.custom-toast {
border-radius: 0;
}
.arrow-up {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
margin: 0 auto;
}
.arrow-warning {
border-bottom: 10px solid #ffc107;
}
.arrow-success {
border-bottom: 10px solid #198754;
}
.arrow-info {
border-bottom: 10px solid #0d6efd;
}
.toast-capper {
height: 4px;
}

/* Style pour le toast du panier (toast_success.html) */
.bag-notification-wrapper {
max-height: 200px;
overflow-y: auto;
}

/* Style pour products.html */
.btt-button {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
z-index: 1000;
}
.category-badge .badge {
transition: background-color 0.3s ease;
}
.category-badge .badge:hover {
background-color: #0d6efd;
}

/* Style pour product_detail.html */
.image-container img {
max-height: 400px;
object-fit: contain;
}
.product-details-container .btn {
transition: background-color 0.3s ease;
}
.product-details-container .btn:hover i {
transform: scale(1.1);
}

/* Style pour add_product.html */
.form .btn {
transition: background-color 0.3s ease;
}
.form .btn:hover i {
transform: scale(1.1);
}
#filename {
font-size: 0.9rem;
}

/* Style pour checkout.html */
#order-form .btn {
transition: background-color 0.3s ease;
}
#order-form .btn:hover i {
transform: scale(1.1);
}
#loading-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 9999;
}
.loading-spinner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.loading-spinner i {
font-size: 3rem;
}

/* Style pour checkout_success.html */
.order-confirmation-wrapper {
background-color: #f8f9fa;
border-radius: 0.25rem;
}
.order-confirmation-wrapper .row {
padding: 0.5rem 0;
}
.order-confirmation-wrapper .text-muted {
font-size: 0.9rem;
}
.order-confirmation-wrapper .btn {
transition: background-color 0.3s ease;
}
.order-confirmation-wrapper .btn:hover i {
transform: scale(1.1);
}

/* Style pour bag.html */
.bag-container .btn {
transition: background-color 0.3s ease;
}
.bag-container .btn:hover i {
transform: scale(1.1);
}
.btt-button {
background-color: #fff;
transition: background-color 0.3s ease;
}
.btt-button:hover {
background-color: #f8f9fa;
}

/* Style pour bag-total.html */
.bag-total-container {
font-size: 1rem;
}

/* Style pour checkout-buttons.html */
.checkout-buttons-container .btn {
transition: background-color 0.3s ease;
}
.checkout-buttons-container .btn:hover i {
transform: scale(1.1);
}

/* Style pour product-image.html */
.product-image {
max-height: 100px;
object-fit: cover;
transition: transform 0.3s ease;
}
.product-image:hover {
transform: scale(1.05);
}
.product-image-placeholder {
width: 100%;
height: 100px;
max-height: 100px;
}

/* Style pour product-info.html */
.product-info-container p {
display: flex;
align-items: center;
}

/* Style pour quantity-form.html */
.quantity-form-container .btn {
transition: background-color 0.3s ease;
}
.quantity-form-container .btn:hover i {
transform: scale(1.1);
}
.quantity-form-container .form-control {
width: 60px;
}
.quantity-form-container .update-link,
.quantity-form-container .remove-item {
transition: color 0.3s ease;
}
.quantity-form-container .update-link:hover,
.quantity-form-container .remove-item:hover {
color: #0d6efd;
}





@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
}
.form-input {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}
.form-input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.btn-primary {
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #059669;
}
.btn-secondary {
    transition: background-color 0.3s ease;
}
.btn-secondary:hover {
    background-color: #e5e7eb;
}
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
#loading-overlay.active {
    display: flex;
}