

footer {
    margin-top: 150px;
}

.block-small, .info, .form-info, .change-pwd, .cart-empty,  #address_submit {
    width: 500px;
    margin: 0 auto;
}

.block-register, .block-return-product {
    width: 800px;
    margin: 0 auto;
}

.comment-blog {
    margin-left: 15px;
    width: 600px;
}
#comment_submit {
    width: 90%;
    margin-left: 20px;
}

.address-form {
    width: 1000px;
    margin: 0 auto;
}

#address_submit {
    margin-left: 250px;
}
#contact_submit {
    margin-left: 120px;
}
#search_blog_submit {
    width: 200px;
    margin-top: 3px;
}
#search_blog_string, #string {
    height: 38px;
}

.search-product {
    width: 500px;
    margin-bottom: 50px;
}
.search-blog {
    width: 200px;
    margin-bottom: 50px;
    position: relative;
    left: 430px;
}
#submit {
    width: 500px;
}

.promo-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 360px;
    background: linear-gradient(135deg, #1e3c72, #2a5298); /* Bleu premium */
    z-index: 3000;
    border: 2px solid rgba(255,255,255,0.3);
}


.product-price {
    font-size: 25px;
    color: rgb(39, 37, 37);
    border: 1px solid rgb(212, 217, 221);
    background-color: rgb(212, 217, 221);
    border-radius: 5px;
    padding: 5px;
}
#quantity {
    width: 30px;
}
.order-sumary {
    background-color: aliceblue;
    padding: 20px 25px;
    border-radius: 10px;
}
.descri {
    font-size: large;
    font-weight: 200;
}
.content {
    width: 500px;
}
.block-contact {
    margin: 0 auto;
}
/* .form-check {
    background-color: #eaebef;
    color: #1b1e26;
}
.form-check:hover {
    background-color: #f0f1f5;
}
.form-check-input:checked {
    background-color: #326c65 !important;
} */
#blog-date {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 5px;
    color: #326c65;
}
#img_blog {
    border-radius: 5px;
}

.h2 {
    display: inline-block;
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    padding: 12px 24px;
    margin: 20px auto;
    text-align: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #326c65, #4ecdc4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: fadeSlideIn 1s ease-out;
}

/* Animation d’apparition */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Effet de lueur subtile au survol */
.h2:hover {
    box-shadow: 0 0 25px rgba(20, 87, 163, 0.8), 0 0 50px rgba(78, 133, 205, 0.705);
    transform: translateY(-3px);
    transition: all 0.4s ease;
}

/* Animation soulignement dynamique */
.h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9a9e, #fad0c4, #fad0c4, #ff9a9e);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.6s ease;
}

.h2:hover::after {
    width: 80%;
}

.see-more {
    margin-left: 70px;
}
#h-products {
    background-color: #326c65;
    color: #ffffff;
    text-align: center;
    border: 1px solid #326c65;
    border-radius: 5px;
    padding: 7px;
    width: 300px;
    margin: 0 auto;
    width: 450px;
}
.comments-reactions {
    width: 500px;
    border: 1px solid rgb(230, 224, 224);
    border-radius: 10px;
    padding: 20px 0 20px 20px;
    
}
.btn-like, .btn-adore, .btn-dislike, .btn-delete {
    border: 1px solid rgb(237, 230, 230);
    border-radius: 10px;
    padding: 5px;
    margin: 0 8px;
}
body.register {
    background-image: url('/images/register-hero.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}
body.app_login {
    background-image: url('/images/login-hero.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
.custom-navbar {
    padding: 0;
}
.block-description {
    width: 700px;
}
.search_button {
    border: none;
    position: relative;
    left: 200px;
    bottom: 30px;
}
.alert-width {
    width: 50%;
    justify-self: center;
}

/*
    Product Show
*/
.product-details {
	padding-top: 70px;
	padding-bottom: 50px;
}

.product__details__pic {
	overflow: hidden;
}

.product__details__pic__left {
	width: 22%;
	max-height: 574px;
	float: left;
	overflow-y: auto;
}

.product__details__pic__left .pt {
	display: block;
	margin-bottom: 20px;
	cursor: pointer;
	position: relative;
}

.product__details__pic__left .pt::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.product__details__pic__left .pt.active::after {
	opacity: 0.3;
}

.product__details__pic__left .pt:last-child {
	margin-bottom: 0;
}

.product__details__pic__left .pt img {
	min-width: 100%;
}

.product__details__slider__content {
	width: calc(78% - 20px);
	float: left;
	margin-left: 20px;
}

.product__details__pic__slider.owl-carousel .owl-nav button {
	position: absolute;
	left: 10px;
	top: 50%;
	font-size: 22px;
	color: #111111;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	line-height: 44px;
	text-align: center;
	margin-top: -20px;
}

.product__details__pic__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 10px;
}

.product__details__text h3 {
	color: #111111;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.product__details__text h3 span {
	display: block;
	font-size: 14px;
	color: #444444;
	text-transform: none;
	font-weight: 400;
	margin-top: 5px;
}

.product__details__text .rating {
	margin-bottom: 16px;
}

.product__details__text .rating i {
	font-size: 12px;
	color: #e3c01c;
	margin-right: -4px;
}

.product__details__text .rating span {
	font-size: 12px;
	color: #666666;
	margin-left: 5px;
}

.product__details__text p {
	color: #444444;
	margin-bottom: 28px;
}

.product__details__price {
	font-size: 30px;
	font-weight: 600;
	color: #ca1515;
	margin-bottom: 30px;
}

.product__details__price span {
	font-size: 18px;
	color: #b1b0b0;
	text-decoration: line-through;
	margin-left: 10px;
	display: inline-block;
}

.quantity {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.quantity>span {
	font-size: 14px;
	color: #111111;
	font-weight: 600;
	float: left;
	margin-top: 14px;
	margin-right: 15px;
}

.pro-qty {
	height: 50px;
	width: 150px;
	border: 1px solid #ebebeb;
	border-radius: 50px;
	padding: 0 20px;
	overflow: hidden;
	display: inline-block;
}

.pro-qty .qtybtn {
	font-size: 14px;
	color: #666666;
	cursor: pointer;
	float: left;
	width: 12px;
	line-height: 46px;
}

.pro-qty input {
	font-size: 14px;
	color: #666666;
	font-weight: 500;
	border: none;
	float: left;
	width: 60px;
	text-align: center;
	height: 29px;
	position: absolute;
	right: -5px;
}


.product__details__button {
	overflow: hidden;
	margin-bottom: 25px;
}

.product__details__button .cart-btn {
	display: inline-block;
	font-size: 14px;
	color: #ffffff;
	background: #ca1515;
	font-weight: 600;
	text-transform: uppercase;
	padding: 14px 30px 15px;
	border-radius: 50px;
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.product__details__button ul {
	float: left;
}

.product__details__button ul li {
	list-style: none;
	display: inline-block;
	margin-right: 5px;
}

.product__details__button ul li:last-child {
	margin-right: 0;
}

.product__details__button ul li a {
	display: inline-block;
	height: 50px;
	width: 50px;
	border: 1px solid #ebebeb;
	border-radius: 50%;
	line-height: 50px;
	text-align: center;
	padding-top: 1px;
}

.product__details__button ul li a span {
	font-size: 18px;
	color: #666666;
}

.product__details__widget {
	border-top: 1px solid #ebebeb;
	padding-top: 35px;
}

.product__details__widget ul li {
	list-style: none;
	margin-bottom: 10px;
}

.product__details__widget ul li:last-child {
	margin-bottom: 0;
}

.product__details__widget ul li span {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: #111111;
	width: 150px;
	float: left;
}

.product__details__widget ul li .stock__checkbox {
	overflow: hidden;
}

.product__details__widget ul li .stock__checkbox label {
	display: block;
	padding-left: 20px;
	font-size: 14px;
	color: #666666;
	position: relative;
	cursor: pointer;
}

.product__details__widget ul li .stock__checkbox label input {
	position: absolute;
	visibility: hidden;
}

.product__details__widget ul li .stock__checkbox label input:checked~.checkmark {
	border-color: #ca1515;
}

.product__details__widget ul li .stock__checkbox label input:checked~.checkmark:after {
	border-color: #ca1515;
	opacity: 1;
}

.product__details__widget ul li .stock__checkbox label .checkmark {
	position: absolute;
	left: 0;
	top: 5px;
	height: 10px;
	width: 10px;
	border: 1px solid #444444;
	border-radius: 2px;
}

.product__details__widget ul li .stock__checkbox label .checkmark:after {
	position: absolute;
	left: 0px;
	top: -2px;
	width: 11px;
	height: 5px;
	border: solid #ffffff;
	border-width: 1.5px 1.5px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
	opacity: 0;
	content: "";
}

.product__details__widget ul li .color__checkbox label {
	display: inline-block;
	cursor: pointer;
	position: relative;
	margin-right: 20px;
}

.product__details__widget ul li .color__checkbox label.active input~.checkmark:after {
	border-color: #ffffff;
	opacity: 1;
}

.product__details__widget ul li .color__checkbox label:last-child {
	margin-right: 0;
}

.product__details__widget ul li .color__checkbox label input {
	position: absolute;
	visibility: hidden;
}

.product__details__widget ul li .color__checkbox label input:checked~.checkmark:after {
	border-color: #ffffff;
	opacity: 1;
}

.product__details__widget ul li .color__checkbox label .checkmark {
	position: absolute;
	left: 0;
	top: -10px;
	height: 20px;
	width: 20px;
	background: #e31e2f;
	border-radius: 50%;
	content: "";
}

.product__details__widget ul li .color__checkbox label .checkmark.black-bg {
	background: #111111;
}

.product__details__widget ul li .color__checkbox label .checkmark.grey-bg {
	background: #e4aa8b;
}

.product__details__widget ul li .color__checkbox label .checkmark:after {
	position: absolute;
	left: 3px;
	top: 5px;
	width: 13px;
	height: 6px;
	border: solid #ffffff;
	border-width: 1.5px 1.5px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
	opacity: 0;
	content: "";
}

.product__details__widget ul li .size__btn label {
	font-size: 14px;
	color: #666666;
	text-transform: uppercase;
	cursor: pointer;
	margin-right: 10px;
	display: inline-block;
	margin-bottom: 0;
}

.product__details__widget ul li .size__btn label:last-child {
	margin-right: 0;
}

.product__details__widget ul li .size__btn label.active {
	color: #ca1515;
}

.product__details__widget ul li .size__btn label input {
	position: absolute;
	visibility: hidden;
}

.product__details__widget ul li p {
	margin-bottom: 0;
	color: #666666;
}

.product__details__tab {
	padding-top: 80px;
	margin-bottom: 65px;
}

.nav {
	border-bottom: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	margin-bottom: 40px;
}

.nav::before {
	position: absolute;
	left: 0;
	top: 13px;
	height: 1px;
	width: 335px;
	background: #e1e1e1;
	content: "";
}

.nav::after {
	position: absolute;
	right: 0;
	top: 13px;
	height: 1px;
	width: 335px;
	background: #e1e1e1;
	content: "";
}

.nav-item {
	margin-right: 46px;
}

.nav-item:last-child {
	margin-right: 0;
}

.nav-item .nav-link {
	font-size: 18px;
	color: #666666;
	font-weight: 600;
	border: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 0;
}

.nav-item .nav-link.active {
	color: #111111;
}

.tab-content .tab-pane h6 {
	color: #666666;
	font-weight: 600;
	margin-bottom: 24px;
}

.tab-content .tab-pane p:last-child {
	margin-bottom: 0;
}

.related__title h5 {
	font-size: 20px;
	color: #111111;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 35px;
}

/* Reveal on scroll (sans AOS) */
        .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
        .reveal.is-visible { opacity: 1; transform: translateY(0); }

        /* Hero */
        .hero-carousel .carousel-item {
            min-height: 70vh; background-size: cover; background-position: center; position: relative;
        }
        .hero-overlay {
            position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
        }
        .hero-content {
            position: relative; z-index: 2; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.35);
        }
        .btn-ghost { background: transparent; border: 1px solid #fff; color: #fff; }
        .btn-ghost:hover { background: rgba(255,255,255,.15); color:#fff; }

        /* Avantages */
        .usp-strip .icon-wrap { width:54px; height:54px; display:grid; place-items:center; border-radius:14px; background: #f4f6f8; }

        /* Cards produits */
        .product-card { border: 0; border-radius: 18px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,.06); transition: transform .25s ease, box-shadow .25s ease; background: #fff; }
        .product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,.1); }
        .product-thumb { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
        .price { font-weight: 700; letter-spacing: .2px; }
        .badge-new { position:absolute; top:12px; left:12px; background:#0d6efd; color:#fff; padding:.35rem .6rem; border-radius:999px; font-size:.75rem; }

        /* Mosaïque catégories */
        .cat-tile { position: relative; border-radius: 18px; overflow: hidden; }
        .cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
        .cat-tile:hover img { transform: scale(1.06); }
        .cat-tile .label { position:absolute; left:16px; bottom:14px; background: rgba(0,0,0,.55); color:#fff; padding:.35rem .7rem; border-radius:12px; font-size:.9rem; }

        /* Newsletter */
        .newsletter { background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%); color:#fff; border-radius: 24px; }

        /* Blog cards */
        .post-card { border:0; border-radius: 18px; overflow:hidden; box-shadow: 0 8px 24px rgba(0,0,0,.06); height:100%; }
        .post-thumb { width:100%; aspect-ratio: 16/10; object-fit:cover; }

        /* Petites améliorations */
        .section-title { letter-spacing: .3px; }
		#heroCarousel .carousel-item {
    position: relative;
  }

  #heroCarousel .hero-img {
    object-fit: cover;
    height: 100vh;
    filter: brightness(70%);
    transform: scale(1.05);
    transition: transform 10s ease;
  }

  #heroCarousel .carousel-item.active .hero-img {
    transform: scale(1);
  }

  #heroCarousel .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 1;
  }

  #heroCarousel .carousel-caption {
    z-index: 2;
    text-align: center;
  }

  #heroCarousel h1, 
  #heroCarousel p, 
  #heroCarousel a {
    color: #fff;
  }

  .inspire-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  height: 100%;
}
.inspire-card img,
.inspire-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inspire-card:hover img,
.inspire-card:hover video {
  transform: scale(1.1);
}
.inspire-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  transition: opacity .4s ease;
}
.inspire-card:hover .overlay {
  opacity: 1;
}

.avatar {
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,0,0,.15);
}
.nav-link {
  padding: .6rem .8rem;
  border-radius: 10px;
  font-weight: 500;
  color: #333;
  transition: all .3s ease;
}
.nav-link:hover, .nav-link.active {
  background: #f4f6f8;
  color: #0d6efd;
}
.hover-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.hover-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
}
.account-wrapper {
  min-height: 80vh;
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}

/* Sidebar */
.account-sidebar {
  width: 260px;
  background: #fff;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.account-sidebar .nav-link {
  padding: .65rem 1rem;
  border-radius: 12px;
  color: #333;
  font-weight: 500;
  transition: all .3s ease;
}
.account-sidebar .nav-link:hover {
  background: #f0f4ff;
  color: #0d6efd;
  transform: translateX(4px);
}
.account-sidebar img {
  border: 3px solid #0d6efd33;
}

/* Content */
.account-content {
  background: #fff;
}
.dashboard-card {
  border: none;
  border-radius: 16px;
  transition: all .3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
}
.dashboard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.account-sidebar .nav-link.active {
  background: #0d6efd;
  color: #fff;
}
.account-sidebar .nav-link.active:hover {
  background: #0b5ed7;
}

.list-group-item {
  border: none;
  padding: .65rem 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: .5rem;
}
.list-group-item a {
  font-size: .85rem;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: #0b5ed7;
    color: #fff !important;
    border-radius: 5px;
}

.navbar.sticky-top {
    top: 30px; /* décale la navbar sous le topbar */
}
.min-vh-80 { min-height: 80vh; }
.card input.form-control { transition: all 0.3s ease; }
.card input.form-control:focus { box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25); }

/* BARRE DE RECHERCHE */
.card .form-control-lg {
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.card .form-control-lg:focus {
    border-color: #0d6efd;
    box-shadow: 0 4px 15px rgba(13,110,253,0.25);
}

/* CHECKBOX CUSTOM */
.form-check-input {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 1.5px solid #ced4da;
    transition: all 0.3s;
}
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.form-check-label {
    font-weight: 500;
    cursor: pointer;
}

.achievements-section {
    background: linear-gradient(270deg, #6a11cb, #2575fc, #ff6a00, #ff3cac);
    background-size: 800% 800%;
    animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.achievements-section i {
    transition: transform 0.4s ease, color 0.4s ease;
}
.achievements-section i:hover {
    transform: scale(1.2) rotate(5deg);
    color: #ffd700;
}

.counter {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.final-cta {
  background: linear-gradient(270deg, #6a11cb, #2575fc, #ff6f61, #00c9ff);
  background-size: 800% 800%;
  animation: gradientShift 12s ease infinite;
  overflow: hidden;
  position: relative;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.floating-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatIcon 3s ease-in-out infinite;
  opacity: 0.15;
}

@keyframes floatIcon {
  0%, 100% { transform: translate(-50%, -10px); }
  50% { transform: translate(-50%, 10px); }
}

.hover-glow {
  transition: all 0.4s ease;
  border: 2px solid white;
}

.hover-glow:hover {
  background: white;
  color: #2575fc !important;
  box-shadow: 0 0 25px rgba(255,255,255,0.6);
  transform: scale(1.05);
}
.testimonials {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 24px;
}

.testimonial-card {
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #333;
}
/* Fond animé doux */
.faq-section {
  background: linear-gradient(-45deg, #f8f9fa, #e9ecef, #ffffff, #f1f3f6);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
  border-radius: 20px;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hover animation */
.hover-animate {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-animate:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
/* Hover animation */
.hover-animate {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-animate:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Gradient animé */
.bg-gradient {
  background: linear-gradient(-45deg, #6a11cb, #2575fc, #ff6a00, #ee0979);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.btn-animated {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-animated .btn-text {
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-animated .btn-glow {
    background: linear-gradient(45deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1), rgba(255,255,255,0.3));
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 50%;
    z-index: 1;
}

.btn-animated:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.btn-animated:hover .btn-text {
    transform: translateY(-2px);
}

.btn-animated:hover .btn-glow {
    opacity: 1;
    top: -25%;
    left: -25%;
}
.promo-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 360px;
    background: linear-gradient(135deg, #1e3c72, #2a5298); /* Bleu premium */
    z-index: 3000;
    border: 2px solid rgba(255,255,255,0.3);
}

.promo-banner-product {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 380px;
    background: linear-gradient(135deg, #ff512f, #dd2476); /* Rouge chaud + rose punchy */
    z-index: 4000;
    border: 2px solid rgba(255,255,255,0.2);
    animation: glowPulse 2s infinite alternate;
}

/* Glow effect */
@keyframes glowPulse {
    from { box-shadow: 0 0 10px rgba(255, 100, 50, 0.6); }
    to   { box-shadow: 0 0 25px rgba(255, 50, 0, 0.9); }
}
/* Zoom sur image principale active */
.gallery-slide.is-active {
  transition: transform .4s ease, opacity .4s ease;
}

.gallery-slide.is-active:hover {
  transform: scale(1.1);
  cursor: zoom-in;
}
.gallery-slide { 
  position: absolute; inset: 0; width: 100%; height: 500px; object-fit: cover; 
  opacity: 0; transform: scale(1.02); transition: opacity .4s ease, transform .4s ease; 
}

.gallery-canape .gallery-slide {
  height: 200px; /* Hauteur réduite uniquement pour les canapés */
}

.nav::after, .nav::before {
  height: 0;
}
/* Animation */
.fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Wrapper */
.notif-wrapper {
    font-family: "Inter", sans-serif;
    padding: 40px 20px;
}

/* Hero */
.notif-hero {
    text-align: center;
    margin-bottom: 40px;
}
.notif-title {
    font-size: 2.8rem;
    font-weight: bold;
    background: linear-gradient(90deg, #4f46e5, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.notif-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Stats */
.notif-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}
.stat-card {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    color: white;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: scale(1);
    transition: transform 0.3s;
}
.stat-card:hover {
    transform: scale(1.05);
}
.stat-card i { font-size: 2rem; margin-bottom: 10px; display: block; }
.stat-card.total { background: linear-gradient(135deg, #2563eb, #1e3a8a); }
.stat-card.unread { background: linear-gradient(135deg, #f59e0b, #b45309); }
.stat-card.read { background: linear-gradient(135deg, #db2215, #b72823); }
.stat-card.last { background: linear-gradient(135deg, #10b981, #065f46); }

/* Notifications */
.notif-list h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.notif-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.notif-card.unread {
    border-left: 6px solid #f59e0b;
    background: #fff7ed;
}
.notif-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.notif-icon i {
    font-size: 1.6rem;
}
.notif-icon i.read { color: #10b981; }
.notif-icon i.unread { color: #f59e0b; }
.notif-actions {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.notif-actions .btn {
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    transition: background 0.3s;
}
.btn.toggle { background: #3b82f6; }
.btn.toggle:hover { background: #2563eb; }
.btn.delete { background: #ef4444; }
.btn.delete:hover { background: #b91c1c; }

/* Pagination */
.pagination-wrapper {
    text-align: center;
    margin-top: 20px;
}

/* Historique */
.history-timeline {
    border-left: 3px solid #e5e7eb;
    margin-top: 20px;
    padding-left: 20px;
}
.timeline-item {
    margin-bottom: 20px;
    position: relative;
}
.timeline-item .dot {
    position: absolute;
    left: -12px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6366f1;
}
/* Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: all;
}

/* Card */
.modal-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-card {
    transform: scale(1);
}

/* Buttons */
.modal-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cancel {
    background: #ccc;
    color: #333;
}

.btn-cancel:hover {
    background: #b3b3b3;
}

.btn-delete {
    background: #e74c3c;
    color: #fff;
}

.btn-delete:hover {
    background: #c0392b;
}
.color-dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 4px;
    border: 1px solid;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.hover-scale:hover {
    transform: scale(1.03);
    transition: transform 0.3s;
}

.reveal.slide-up {
    transform: translateY(40px);
}

.reveal.fade-in {
    opacity: 0;
    transform: none;
    transition: opacity 0.8s ease;
}

.timeline {
    list-style: none;
    padding-left: 0;
    border-left: 2px solid #0d6efd;
    margin-left: 1rem;
}

.timeline li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.timeline li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #0d6efd;
    border-radius: 50%;
}


/* Animation cards */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-scale:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.timeline-simple .timeline-item { 
  padding: .75rem 0; 
  border-left: 2px solid rgba(0,0,0,.04); 
  margin-left: .5rem; 
  position: relative; 
}

.timeline-simple .timeline-item::before { 
  content: ''; 
  width:12px;
  height:12px;
  border-radius:50%; 
  background:var(--bs-primary); 
  position:absolute; 
  left:-8px; 
  top:8px; 
  box-shadow:0 6px 18px rgba(0,0,0,.08); 
}

.list-group-item { 
  transition: transform .32s cubic-bezier(.2,.9,.3,1), box-shadow .3s; 
}
.list-group-item:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 18px 40px rgba(10,25,50,.08); 
}
.badge { 
  font-size: .9rem; 
}
/* Effet dégradé */
.text-gradient {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}
.timeline:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #0d6efd, #6610f2);
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}
.timeline-icon {
    position: absolute;
    left: -5px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.5);
}
.bg-gradient {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
}
.btn-gradient {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    border: none;
    color: #fff;
    transition: transform 0.2s ease;
}
.btn-gradient:hover {
    transform: scale(1.05);
    color: #fff;
}
.hover-animate {
    transition: all 0.3s ease;
}
.hover-animate:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

@keyframes revealAnimation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
.hover-effect:hover {
  background: #f8f9fa;
  transition: 0.3s ease;
}

@keyframes fall {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}
.hover-zoom:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}
.hero-partnership[data-aos="fade-in"] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-out;
}
.hero-partnership[data-aos="fade-in"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery */
.main-image-wrap {
    min-height: 440px;
    display: grid;
    place-items: center;
    position: relative;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(1.02);
}

.gallery-slide.is-active {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.thumb-img {
    height: 78px;
    width: 100%;
    object-fit: cover;
    border-radius: 0.6rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.2s;
}

.thumb-img.active {
    border-color: var(--bs-primary);
    transform: translateY(-2px);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    z-index: 3;
}

.gallery-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.04);
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

.min-vh-80 { 
  min-height: 80vh; 
}
.card input.form-control { 
  transition: all 0.3s ease; 
}
.card input.form-control:focus { 
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25); 
}

.wishlist-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}
.wishlist-card:hover {
    transform: translateY(-8px) scale(1.03);
}
.wishlist-heart {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0.9;
    transition: transform 0.3s;
}
.wishlist-heart:hover {
    transform: scale(1.3);
}
.product-img {
    object-fit: cover;
    height: 250px;
    width: 100%;
}

.modal-content {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.modal.fade .modal-dialog {
    transform: translateY(-50px);
}

.modal.show .modal-dialog {
    transform: translateY(0);
}
