/* Overlay pour la section hero - améliorer la lisibilité du texte */
.hero__items {
    position: relative;
}

.hero__items::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero__items .container {
    position: relative;
    z-index: 2;
}

.testimonial-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #f5f7fb;
}

.testimonials {
    max-width: 1120px;
    margin: 0 auto;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials__tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #4b5563;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.testimonials__title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    padding: 22px 20px 18px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card__quote-icon {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 40px;
    line-height: 1;
    color: #0f172a;
    opacity: 0.10;
    pointer-events: none;
}

.testimonial-card__text {
    margin-top: 20px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #111827;
}

.testimonial-card__accent {
    color: #2563eb;
    font-weight: 700;
}

.testimonial-card__author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle at 0% 0%, #22c55e, #16a34a);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.testimonial-card__author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__author-name {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.testimonial-card__author-username {
    font-size: 12px;
    color: #9ca3af;
}

@media (max-width: 991px) {
    .testimonials__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .testimonial-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .testimonials__header {
        margin-bottom: 30px;
    }

    .testimonials__title {
        font-size: 22px;
    }

    .testimonials__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .testimonial-card {
        padding: 20px 18px 16px;
    }
}

.hero__text {
    position: relative;
    z-index: 2;
}

.hero__text h6 {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero__text h2 {
    color: #ffffff !important;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
    font-weight: 700;
}

.hero__text p {
    color: #f5f5f5 !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.hero__text .primary-btn {
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Section Banner - Bento Grid Design */
.banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin: 0;
    width: 100%;
    position: relative;
}

.banner .container {
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

/* Bento Grid Container */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 20px;
    width: 100%;
    margin: 0;
}

/* Bento Cards Base */
.bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Grande carte - prend 50% de la largeur */
.bento-card--large {
    grid-column: span 6;
    grid-row: span 2;
}

/* Carte moyenne - prend 50% de la largeur */
.bento-card--medium {
    grid-column: span 6;
    grid-row: span 2;
}

/* Image Container */
.bento-card__image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    flex: 1;
}

.bento-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bento-card:hover .bento-card__image img {
    transform: scale(1.15);
}

.bento-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.bento-card:hover .bento-card__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
}

/* Content */
.bento-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    color: #fff;
}

/* Badge */
.bento-card__badge {
    display: inline-block;
    padding: 6px 14px;
    background: #007bff;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 20px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    animation: fadeInUp 0.6s ease;
}

.bento-card__badge--orange {
    background: #ff5722;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.bento-card__badge--green {
    background: #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

/* Title */
.bento-card__title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 0.8s ease;
}

/* Description */
.bento-card__description {
    color: #f0f0f0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}


/* Button */
.bento-card__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #ffffff;
    color: #111111;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease;
    position: relative;
    overflow: hidden;
}


.bento-card__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.bento-card__button:hover::before {
    left: 100%;
}

.bento-card__button:hover {
    background: #007bff;
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.bento-card__button i {
    transition: transform 0.3s ease;
}

.bento-card__button:hover i {
    transform: translateX(5px);
}

.banner__item__pic {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.banner__item__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner__item--modern:hover .banner__item__pic img {
    transform: scale(1.1);
}

.banner__item__pic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.banner__item--modern:hover .banner__item__pic::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.banner__item__text--modern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

/* Style uniforme pour toutes les bannières */

.banner__item--modern:hover .banner__item__text--modern {
    transform: translateY(-5px);
}

.banner__badge {
    display: inline-block;
    padding: 6px 16px;
    background: #007bff;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.banner__badge--orange {
    background: #ff5722;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

.banner__badge--green {
    background: #28a745;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.banner__item__text--modern h2 {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease;
}

/* Taille uniforme pour tous les titres */
.banner__item--modern .banner__item__text--modern h2 {
    font-size: 24px;
}

.banner__item__text--modern p {
    color: #f0f0f0 !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
    max-width: 100%;
}

/* Taille uniforme pour tous les textes */
.banner__item--modern .banner__item__text--modern p {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 12px;
}

.banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #ffffff;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.2s ease;
    position: relative;
    overflow: hidden;
}

.banner__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.banner__btn:hover::before {
    left: 100%;
}

.banner__btn:hover {
    background: #007bff;
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.banner__btn i {
    transition: transform 0.3s ease;
}

.banner__btn:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Bento Grid */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-rows: repeat(4, 100px);
        gap: 15px;
    }
    
    .bento-card__content {
        padding: 25px;
    }
    
    .bento-card__title {
        font-size: 24px;
    }
    
}

/* ============================
   Shop Sidebar (desktop & tablet)
   ============================ */
.shop__sidebar {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 20px 20px 10px 20px;
}

.shop__sidebar__section {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.shop__sidebar__section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.shop__sidebar__section h4 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #111111;
    margin-bottom: 12px;
}

.shop__sidebar__categories ul,
.shop__sidebar__price ul,
.shop__sidebar__brand ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop__sidebar__categories ul li,
.shop__sidebar__price ul li,
.shop__sidebar__brand ul li {
    margin-bottom: 6px;
}

.shop__sidebar__categories ul li:last-child,
.shop__sidebar__price ul li:last-child,
.shop__sidebar__brand ul li:last-child {
    margin-bottom: 0;
}

.shop__sidebar__categories ul li a,
.shop__sidebar__price ul li a,
.shop__sidebar__brand ul li a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: #555555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.shop__sidebar__categories ul li a:hover,
.shop__sidebar__price ul li a:hover,
.shop__sidebar__brand ul li a:hover {
    background: #f5f5f5;
    color: #111111;
}

.shop__sidebar__categories ul li a.active,
.shop__sidebar__price ul li a.active,
.shop__sidebar__brand ul li a.active {
    background: #111111;
    color: #ffffff;
    font-weight: 700;
}

/* Price slider */
.price-slider {
    margin-top: 5px;
}

.price-slider__labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 8px;
}

.price-slider__label {
    color: #888888;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}

.price-slider__value {
    font-weight: 700;
    color: #111111;
}

.price-slider__track-wrapper {
    position: relative;
    width: 100%;
    height: 32px;
}

.price-slider__track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #e5e5e5;
    border-radius: 999px;
    transform: translateY(-50%);
}

.price-slider__range {
    position: absolute;
    top: 50%;
    height: 4px;
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    border-radius: 999px;
    transform: translateY(-50%);
}

.price-slider__track-wrapper input[type="range"] {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    background: transparent;
    height: 32px;
    margin: 0;
}

.price-slider__track-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
    cursor: pointer;
}

.price-slider__track-wrapper input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
    cursor: pointer;
}

.price-slider__track-wrapper input[type="range"]::-ms-thumb {
    pointer-events: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
    cursor: pointer;
}

/* Mobile filter toggle button */
.shop__filter__toggle {
    display: none;
    margin-bottom: 15px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop__filter__toggle i {
    margin-right: 6px;
}

@media (max-width: 991px) {
    .banner {
        padding: 60px 0;
    }
    
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(6, 100px);
        gap: 15px;
    }
    
    .bento-card--large {
        grid-column: span 6;
        grid-row: span 3;
    }
    
    .bento-card--medium {
        grid-column: span 3;
        grid-row: span 3;
    }
    
    
    .bento-card__content {
        padding: 20px;
    }
    
    .bento-card__title {
        font-size: 22px;
    }
    
    .bento-card__description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .banner {
        padding: 50px 0;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }
    
    .bento-card--large,
    .bento-card--medium {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 300px;
    }
    
    
    .bento-card__content {
        padding: 25px;
    }
    
    .bento-card__title {
        font-size: 24px;
    }
    
    
    .bento-card__description {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .bento-card__button {
        padding: 12px 24px;
        font-size: 12px;
    }
}

/* ============================
   Premium Checkout (2-column)
   ============================ */
.premium-checkout {
    background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 65%);
}

.premium-checkout .pc-shell {
    max-width: 1120px;
    margin: 0 auto;
}

.premium-checkout .pc-title {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #111111;
    margin: 0 0 18px 0;
    letter-spacing: -0.02em;
}

.premium-checkout .pc-grid {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.premium-checkout .pc-left {
    flex: 0 0 70%;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: visible;
}

.premium-checkout .pc-right {
    flex: 0 0 30%;
    max-width: 30%;
}

.premium-checkout .pc-card {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
    overflow: visible;
}

.premium-checkout .pc-card__header {
    padding: 18px 18px 0 18px;
}

.premium-checkout .pc-card__title {
    font-size: 18px;
    font-weight: 800;
    color: #111111;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
}

.premium-checkout .pc-card__subtitle {
    margin: 0;
    color: rgba(17, 17, 17, 0.62);
    font-size: 13px;
    line-height: 1.5;
}

.premium-checkout .pc-card__body {
    padding: 16px 18px 18px 18px;
    overflow: visible;
}

.premium-checkout .form-group label {
    font-weight: 700;
    color: rgba(17, 17, 17, 0.85);
    font-size: 13px;
    margin-bottom: 8px;
}

.premium-checkout .pc-input.form-control {
    border-radius: 14px;
    min-height: 48px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(17, 17, 17, 0.02);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
}

.premium-checkout select.pc-input.form-control {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    color: #111111;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.premium-checkout select.pc-input.form-control:focus {
    z-index: 1000;
    position: relative;
}

.premium-checkout select.pc-input.form-control option {
    color: #111111;
    background-color: #ffffff;
    padding: 10px 16px;
}

.premium-checkout .pc-input.form-control:focus {
    border-color: rgba(22, 163, 74, 0.55);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.premium-checkout textarea.pc-input.form-control {
    min-height: 110px;
    padding-top: 12px;
}

.premium-checkout .pc-row {
    display: flex;
    gap: 14px;
}

.premium-checkout .pc-col {
    flex: 1;
}

.premium-checkout .pc-checkbox {
    margin-top: 6px;
}

.premium-checkout .pc-checkbox__label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    cursor: pointer;
    user-select: none;
}

.premium-checkout .pc-checkbox__input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: #16a34a;
}

.premium-checkout .pc-checkbox__text {
    color: rgba(17, 17, 17, 0.72);
    font-size: 13px;
    line-height: 1.5;
}

.premium-checkout .pc-summary .pc-card__header {
    padding-bottom: 8px;
}

.premium-checkout .pc-summary__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-checkout .pc-summary__item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.premium-checkout .pc-summary__thumb {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f4f6;
    border: 1px solid rgba(17, 17, 17, 0.08);
    flex: 0 0 auto;
}

.premium-checkout .pc-summary__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.premium-checkout .pc-summary__meta {
    min-width: 0;
    flex: 1;
}

.premium-checkout .pc-summary__name {
    font-weight: 800;
    color: #111111;
    font-size: 13px;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.premium-checkout .pc-summary__qty {
    margin-top: 3px;
    color: rgba(17, 17, 17, 0.62);
    font-size: 12px;
}

.premium-checkout .pc-summary__price {
    font-weight: 800;
    color: #111111;
    font-size: 13px;
    white-space: nowrap;
}

.premium-checkout .pc-divider {
    height: 1px;
    background: rgba(17, 17, 17, 0.08);
    margin: 14px 0;
}

.premium-checkout .pc-breakdown__row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: rgba(17, 17, 17, 0.72);
    font-size: 13px;
    padding: 6px 0;
}

.premium-checkout .pc-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}

.premium-checkout .pc-total__label {
    font-size: 13px;
    font-weight: 800;
    color: rgba(17, 17, 17, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.premium-checkout .pc-total__value {
    font-size: 22px;
    font-weight: 900;
    color: #111111;
    letter-spacing: -0.02em;
}

.premium-checkout .pc-cta {
    width: 100%;
    border: 0;
    border-radius: 16px;
    min-height: 52px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.01em;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.premium-checkout .pc-cta:hover {
    filter: brightness(1.02);
    box-shadow: 0 16px 36px rgba(34, 197, 94, 0.30);
    transform: translateY(-1px);
}

.premium-checkout .pc-cta:active {
    transform: translateY(0);
}

.premium-checkout .pc-trust {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(17, 17, 17, 0.60);
    font-size: 12px;
}

@media (max-width: 991px) {
    .premium-checkout .pc-grid {
        flex-direction: column;
    }
    .premium-checkout .pc-left,
    .premium-checkout .pc-right {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 575px) {
    .premium-checkout .pc-title {
        font-size: 28px;
    }
    .premium-checkout .pc-row {
        flex-direction: column;
    }
}

/* ============================
   Order Success (Bank Transfer)
   ============================ */
.premium-order-success .pos-shell {
    max-width: 1120px;
    margin: 0 auto;
}

.premium-order-success .pos-header {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
    padding: 18px;
    margin-bottom: 18px;
}

.premium-order-success .pos-header__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.25);
    flex: 0 0 auto;
}

.premium-order-success .pos-title {
    margin: 0 0 6px 0;
    font-size: 22px;
    font-weight: 900;
    color: #111111;
    letter-spacing: -0.01em;
}

.premium-order-success .pos-subtitle {
    margin: 0;
    color: rgba(17, 17, 17, 0.62);
    font-size: 13px;
    line-height: 1.6;
}

.premium-order-success .pos-card {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
    overflow: hidden;
    margin-bottom: 16px;
}

.premium-order-success .pos-card__head {
    padding: 16px 18px 0 18px;
}

.premium-order-success .pos-card__title {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 900;
    color: #111111;
}

.premium-order-success .pos-card__subtitle {
    margin: 0;
    color: rgba(17, 17, 17, 0.62);
    font-size: 13px;
    line-height: 1.5;
}

.premium-order-success .pos-card__body {
    padding: 16px 18px 18px 18px;
}

.premium-order-success .pos-steps {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.premium-order-success .pos-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(17, 17, 17, 0.02);
    border: 1px solid rgba(17, 17, 17, 0.06);
}

.premium-order-success .pos-step__n {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #16a34a;
    background: rgba(34, 197, 94, 0.12);
    flex: 0 0 auto;
}

.premium-order-success .pos-step__t {
    color: rgba(17, 17, 17, 0.72);
    font-size: 13px;
    line-height: 1.55;
}

.premium-order-success .pos-instructions {
    padding: 14px 14px;
    border-radius: 14px;
    background: #0b1220;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    line-height: 1.65;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(11, 18, 32, 0.18);
}

.premium-order-success .pos-address {
    margin: 0;
    color: rgba(17, 17, 17, 0.78);
    font-size: 13px;
    line-height: 1.65;
}

.premium-order-success .pos-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-order-success .pos-line {
    display: flex;
    gap: 12px;
    align-items: center;
}

.premium-order-success .pos-line__thumb {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f4f6;
    border: 1px solid rgba(17, 17, 17, 0.08);
    flex: 0 0 auto;
}

.premium-order-success .pos-line__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.premium-order-success .pos-line__meta {
    min-width: 0;
    flex: 1;
}

.premium-order-success .pos-line__name {
    font-weight: 900;
    color: #111111;
    font-size: 13px;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.premium-order-success .pos-line__qty {
    margin-top: 3px;
    color: rgba(17, 17, 17, 0.62);
    font-size: 12px;
}

.premium-order-success .pos-line__price {
    font-weight: 900;
    color: #111111;
    font-size: 13px;
    white-space: nowrap;
}

.premium-order-success .pos-divider {
    height: 1px;
    background: rgba(17, 17, 17, 0.08);
    margin: 14px 0;
}

.premium-order-success .pos-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: rgba(17, 17, 17, 0.72);
    font-size: 13px;
    padding: 6px 0;
}

.premium-order-success .pos-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}

.premium-order-success .pos-total__label {
    font-size: 12px;
    font-weight: 900;
    color: rgba(17, 17, 17, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.premium-order-success .pos-total__value {
    font-size: 20px;
    font-weight: 900;
    color: #111111;
    letter-spacing: -0.02em;
}

.premium-order-success .pos-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    min-height: 52px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.premium-order-success .pos-cta:hover {
    color: #ffffff;
    filter: brightness(1.02);
    box-shadow: 0 16px 36px rgba(34, 197, 94, 0.30);
    transform: translateY(-1px);
}

/* Cart UX (hide manual update when JS is enabled) */
html.js .js-cart-update-btn {
    display: none !important;
}

/* ============================
   Sticky Navbar
   ============================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001; /* Au-dessus de la bannière (1000), en dessous de offcanvas (98-99) */
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
    background: #ffffff;
    transition: top 0.3s ease;
}

body.promo-banner-active .header {
    top: 50px;
}

@media (max-width: 768px) {
    body.promo-banner-active .header {
        top: 45px;
    }
}

@media (max-width: 480px) {
    body.promo-banner-active .header {
        top: 40px; /* Hauteur exacte de la bannière sur mobile (padding 8px*2 + contenu ~24px) */
    }
}

/* ============================
   Admin Dashboard Layout
   ============================ */
.admin-body {
    background: #f7f8fb;
}

.admin-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px 1fr;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    background: #0b1220;
    color: rgba(255,255,255,0.88);
    padding: 18px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.admin-brand__link {
    text-decoration: none;
    display: block;
}
.admin-brand__name {
    display: block;
    color: #ffffff;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.01em;
}
.admin-brand__sub {
    display: block;
    margin-top: 2px;
    color: rgba(255,255,255,0.62);
    font-size: 12px;
}

.admin-nav {
    margin-top: 18px;
    display: grid;
    gap: 8px;
}

.admin-nav__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.admin-nav__item:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.05);
}

.admin-nav__item.active {
    background: rgba(34,197,94,0.18);
    border-color: rgba(34,197,94,0.30);
    color: #ffffff;
}

.admin-sidebar__footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.admin-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}
.admin-link:hover { color: #ffffff; }

.admin-logout {
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.admin-main {
    padding: 18px;
}

.admin-topbar {
    background: #ffffff;
    border: 1px solid rgba(17,17,17,0.08);
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(17,17,17,0.06);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.admin-page-title {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: #111111;
}

.admin-user {
    color: rgba(17,17,17,0.72);
    font-weight: 700;
    font-size: 13px;
}

.admin-content {
    padding: 0;
}

@media (max-width: 991px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }
    .admin-sidebar {
        position: relative;
        height: auto;
    }
}

/* ============================
   Dashboard Premium Design
   ============================ */

/* Filtres de période */
.dashboard-filters {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(17, 17, 17, 0.06);
    flex-wrap: wrap;
}

.dashboard-filters__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 14px;
    color: rgba(17, 17, 17, 0.72);
}

.dashboard-filters__label i {
    color: rgba(17, 17, 17, 0.55);
}

.dashboard-filters__buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.dashboard-filter-btn {
    padding: 8px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: rgba(17, 17, 17, 0.72);
    background: rgba(17, 17, 17, 0.04);
    border: 1px solid rgba(17, 17, 17, 0.08);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dashboard-filter-btn:hover {
    background: rgba(17, 17, 17, 0.06);
    color: #111111;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(17, 17, 17, 0.08);
}

.dashboard-filter-btn.active {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.dashboard-filter-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* Cards de statistiques */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.dashboard-stat-card {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 26px rgba(17, 17, 17, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.dashboard-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.12);
}

.dashboard-stat-card:hover::before {
    opacity: 1;
}

.dashboard-stat-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.dashboard-stat-card--revenue .dashboard-stat-card__icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dashboard-stat-card--period .dashboard-stat-card__icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.dashboard-stat-card--orders .dashboard-stat-card__icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.dashboard-stat-card--pending .dashboard-stat-card__icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.dashboard-stat-card--products .dashboard-stat-card__icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.dashboard-stat-card--sellers .dashboard-stat-card__icon {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #111111;
}

.dashboard-stat-card__content {
    flex: 1;
    min-width: 0;
}

.dashboard-stat-card__label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(17, 17, 17, 0.55);
    margin-bottom: 6px;
}

.dashboard-stat-card__value {
    font-size: 24px;
    font-weight: 900;
    color: #111111;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.dashboard-stat-card__sub {
    font-size: 11px;
    color: rgba(17, 17, 17, 0.62);
    margin-top: 4px;
}

/* Contenu du dashboard */
.dashboard-content {
    display: grid;
    gap: 20px;
}

/* Cards génériques */
.dashboard-chart-card,
.dashboard-table-card {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(17, 17, 17, 0.06);
    overflow: hidden;
}

.dashboard-card__header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(17, 17, 17, 0.02);
}

.dashboard-card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    color: #111111;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-card__title i {
    color: rgba(17, 17, 17, 0.55);
}

.dashboard-card__link {
    font-size: 13px;
    font-weight: 700;
    color: rgba(17, 17, 17, 0.72);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.dashboard-card__link:hover {
    color: #16a34a;
    gap: 8px;
}

.dashboard-card__body {
    padding: 24px;
}

/* Graphique */
.dashboard-chart-card .dashboard-card__body {
    padding: 24px;
    min-height: 300px;
}

#salesChart {
    max-height: 300px;
}

/* Tableaux */
.dashboard-table {
    overflow-x: auto;
}

.dashboard-table table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table thead {
    background: rgba(17, 17, 17, 0.02);
}

.dashboard-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(17, 17, 17, 0.55);
    border-bottom: 2px solid rgba(17, 17, 17, 0.08);
}

.dashboard-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    font-size: 14px;
    color: rgba(17, 17, 17, 0.85);
}

.dashboard-table tbody tr {
    transition: background 0.2s ease;
}

.dashboard-table tbody tr:hover {
    background: rgba(17, 17, 17, 0.02);
}

.dashboard-table__link {
    color: #16a34a;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.dashboard-table__link:hover {
    color: #15803d;
}

.dashboard-table__product {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard-table__brand {
    font-size: 12px;
    color: rgba(17, 17, 17, 0.55);
}

.dashboard-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-badge--pending {
    background: rgba(250, 204, 21, 0.15);
    color: #ca8a04;
}

.dashboard-badge--processing {
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
}

.dashboard-badge--completed,
.dashboard-badge--paid {
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
}

.dashboard-badge--cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

.dashboard-btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(17, 17, 17, 0.04);
    color: rgba(17, 17, 17, 0.72);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.dashboard-btn-sm:hover {
    background: #16a34a;
    color: #ffffff;
    border-color: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-filters {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-filters__buttons {
        width: 100%;
    }

    .dashboard-filter-btn {
        flex: 1;
        text-align: center;
        min-width: 0;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-stat-card {
        padding: 16px;
    }

    .dashboard-stat-card__value {
        font-size: 20px;
    }

    .dashboard-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .dashboard-table {
        font-size: 12px;
    }

    .dashboard-table th,
    .dashboard-table td {
        padding: 10px 12px;
    }
}

@media (max-width: 576px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================
   Cart responsive (mobile)
   ============================ */
.cart-unit-price {
    display: none;
}

.cart-items-summary {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cart-items-summary__label {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.cart-items-summary__count {
    font-size: 14px;
    font-weight: 800;
    color: #111111;
}

.cart-item-menu-form {
    display: none;
}

/* ============================
   Cart Desktop - Up-Down Component
   ============================ */
/* Style desktop pour la cellule quantité */
.shopping__cart__table table.cart-table td.quantity__item {
    width: auto;
    min-width: 0;
    max-width: 150px;
    box-sizing: border-box;
}

.shopping__cart__table table.cart-table td.quantity__item form.js-cart-update-form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Composant up-down horizontal pour desktop (même design que mobile) */
.quantity-updown {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 4px;
    width: 100%;
    max-width: 140px;
    min-width: 120px;
    box-sizing: border-box;
    margin: 0 auto;
}

.qty-updown__btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 8px;
    border: 0;
    background: #ffffff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    touch-action: manipulation;
    padding: 0;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.qty-updown__btn i {
    font-size: 12px;
    line-height: 1;
    color: #6b7280;
}

.qty-updown__btn:hover {
    background: #e5e7eb;
}

.qty-updown__btn:hover i {
    color: #111827;
}

.qty-updown__btn:active {
    background: #d1d5db;
    transform: scale(0.95);
}

.qty-updown__input {
    width: 48px;
    min-width: 40px;
    max-width: 48px;
    height: 32px;
    border: 0;
    outline: none;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: #111827;
    background: transparent;
    padding: 0;
    -moz-appearance: textfield;
    flex-shrink: 0;
    box-sizing: border-box;
}

.qty-updown__input::-webkit-inner-spin-button,
.qty-updown__input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ============================
   Cart Mobile - Premium Layout
   ============================ */
@media (max-width: 767px) {
    /* Container: fond neutre clair, max-width écran */
    .shopping-cart {
        background: #f8f9fa;
    }

    .shopping-cart .container {
        max-width: 100vw;
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .shopping__cart__table {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        background: transparent;
    }

    /* Masquer le header de table */
    .shopping__cart__table table.cart-table thead {
        display: none;
    }

    .shopping__cart__table table.cart-table {
        display: block;
        width: 100%;
        max-width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        background: transparent;
    }

    /* Item row: ligne horizontale avec diviseur */
    .shopping__cart__table table.cart-table tbody tr.cart-row {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 16px 0;
        background: transparent;
        margin: 0;
        gap: 12px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .shopping__cart__table table.cart-table tbody tr.cart-row:last-child {
        border-bottom: none;
    }

    .shopping__cart__table table.cart-table tbody tr.cart-row td {
        border: 0 !important;
        padding: 0 !important;
        background: transparent;
    }

    /* Zone principale: Image + Infos (ligne horizontale) */
    .shopping__cart__table table.cart-table td.product__cart__item {
        flex: 0 0 auto;
        display: flex;
        align-items: flex-start;
        width: 100%;
    }

    .shopping__cart__table table.cart-table td.product__cart__item > div {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
    }

    .product__cart__item__pic-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        flex-shrink: 0;
    }

    .shopping__cart__table table.cart-table td.product__cart__item .product__cart__item__pic {
        flex: 0 0 80px;
        width: 80px;
        height: 80px;
        min-width: 80px;
        min-height: 80px;
        border-radius: 12px;
        background: #e8f5e9;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        flex-shrink: 0;
    }

    .shopping__cart__table table.cart-table td.product__cart__item .product__cart__item__pic img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 10px;
    }

    /* Actions secondaires sous l'image */
    .cart-item-secondary-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: 0;
    }

    .cart-item-action-btn {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        background: transparent;
        border: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #9ca3af;
        cursor: pointer;
        padding: 0;
        transition: color 0.2s ease;
    }

    .cart-item-action-btn i {
        font-size: 14px;
        line-height: 1;
    }

    .cart-item-action-btn:hover {
        color: #6b7280;
    }

    .cart-item-trash:hover {
        color: #ef4444;
    }

    .cart-item-trash-form {
        display: inline-block;
        margin: 0;
        padding: 0;
    }

    /* Zone 2: Infos produit (milieu, flexible) */
    .shopping__cart__table table.cart-table td.product__cart__item .product__cart__item__text {
        min-width: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        overflow-wrap: break-word;
        word-wrap: break-word;
        gap: 6px;
    }

    .cart-product-name {
        font-size: 13px;
        line-height: 1.4;
        margin: 0;
        color: #111827;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .cart-product-benefit {
        font-size: 12px;
        line-height: 1.5;
        margin: 0;
        color: #6b7280;
        font-weight: 400;
    }

    .cart-product-price {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin-top: 2px;
    }

    .cart-price-current {
        font-size: 16px;
        color: #111827;
        font-weight: 700;
    }

    .cart-unit-price {
        display: none !important;
    }

    /* Zone 3: Contrôle quantité (en bas, centré) */
    .shopping__cart__table table.cart-table td.quantity__item {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 4px;
    }

    .shopping__cart__table table.cart-table td.quantity__item form.js-cart-update-form {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        width: 100%;
    }

    /* Composant up-down horizontal centré */
    .quantity-updown {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4px;
        background: #f3f4f6;
        border-radius: 12px;
        padding: 4px;
        width: auto;
        min-width: 120px;
    }

    .qty-updown__btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        border-radius: 8px;
        border: 0;
        background: #ffffff;
        color: #111827;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        touch-action: manipulation;
        padding: 0;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    .qty-updown__btn i {
        font-size: 12px;
        line-height: 1;
        color: #6b7280;
    }

    .qty-updown__btn:hover {
        background: #e5e7eb;
    }

    .qty-updown__btn:hover i {
        color: #111827;
    }

    .qty-updown__btn:active {
        background: #d1d5db;
        transform: scale(0.95);
    }

    .qty-updown__input {
        width: 48px;
        min-width: 48px;
        height: 32px;
        border: 0;
        outline: none;
        text-align: center;
        font-weight: 700;
        font-size: 15px;
        color: #111827;
        background: transparent;
        padding: 0;
        -moz-appearance: textfield;
        flex-shrink: 0;
    }

    .qty-updown__input::-webkit-inner-spin-button,
    .qty-updown__input::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Masquer colonnes inutiles */
    .shopping__cart__table table.cart-table td.cart__price,
    .shopping__cart__table table.cart-table td.cart__close {
        display: none;
    }

    /* Masquer le bouton "Mettre à jour" et l'ancien menu 3 points */
    .shopping__cart__table table.cart-table td.quantity__item .js-cart-update-btn,
    .cart-item-menu-form {
        display: none !important;
    }
}

/* Styles personnalisés pour les produits avec hover */

.product__item {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 15px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product__item--clickable {
    cursor: pointer;
}

.product__item__pic {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    flex-shrink: 0;
}

/* Bouton Ajouter au panier */
.product__add-to-cart-btn {
    width: 100%;
    margin-top: auto;
    padding: 12px 20px;
    background: #111111;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.product__add-to-cart-btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.product__add-to-cart-btn:active {
    transform: translateY(0);
}

/* plus d'icône de panier sur le bouton, texte uniquement */

.product__item__pic .product__hover {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 1;
    visibility: visible;
}

.product__item:hover .product__item__pic .product__hover {
    transform: translateX(-50%);
}

.product__item__pic .product__hover li {
    list-style: none;
}

.product__item__pic .product__hover a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.product__item__pic .product__hover a:hover {
    background: #007bff;
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

.product__item__pic .product__hover a i {
    font-size: 20px;
    line-height: 1;
    display: inline-block;
}

/* Badge produit */
.product__item__pic .label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #007bff;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
}

.product__item__pic .label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    z-index: -1;
}

/* Compteur panier animé */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cart-link {
    position: relative;
    display: inline-block;
}

.cart-link:hover .cart-count {
    transform: scale(1.2);
    background: #c82333;
}

/* Animation d'ajout au panier */
@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.cart-count.updated {
    animation: cartPulse 0.5s ease;
}

/* Styles pour le texte du produit */
.product__item__text {
    padding: 15px 15px 0 15px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Surcharger le style original qui cache le h6 au hover */
.product__item:hover .product__item__text h6 {
    opacity: 1 !important;
    visibility: visible !important;
}

.product__item__text h6 {
    margin-bottom: 10px;
    min-height: 50px;
    display: block;
    color: #111111;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.product__item__text h6 a {
    color: #111111 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    line-height: 1.5 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-height: 3em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    top: auto !important;
    left: auto !important;
}

.product__item__text h6 a:hover {
    color: #007bff !important;
}

.product__item__text h5 {
    color: #0d0d0d !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    margin-top: 8px !important;
    margin-bottom: 10px !important;
    display: block !important;
}

.product__item__text small {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
}

/* Espacement amélioré pour les détails */
.product__item__text > * {
    margin-bottom: 8px;
}

.product__item__text > *:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .product__item__pic .product__hover {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 1;
        visibility: visible;
        right: auto !important;
    }
    
    .product__item__text {
        padding: 15px 10px 0 10px;
    }
    
    .product__item__text h6 {
        min-height: 40px;
        font-size: 14px !important;
    }
    
    .product__item__text h6 a {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }
}

/* ============================
   Product details (RameurX)
   ============================ */
.rameurx-gallery {
    background: #f3f2ee;
    padding: 30px 20px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.rameurx-gallery__main img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.rameurx-gallery__thumbs {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.rameurx-thumb {
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 0;
    background: transparent;
    cursor: pointer;
    flex: 0 0 auto;
}

.rameurx-thumb.is-active {
    border-color: #007bff;
}

.rameurx-thumb img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.rameurx-details {
    text-align: left;
}

.rameurx-details h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.rameurx-details__meta {
    margin-bottom: 12px;
    font-size: 14px;
    color: #666666;
}

.rameurx-details__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.rameurx-details__rating i {
    color: #ffc107;
    font-size: 14px;
}

.rameurx-details__rating span {
    font-weight: 600;
}

.rameurx-details__rating-count {
    color: #888888;
}

.rameurx-details__meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rameurx-details__meta-line span {
    font-size: 13px;
}

.rameurx-details__short {
    margin-top: 10px;
    margin-bottom: 16px;
    color: #444444;
}

.rameurx-details__cart {
    margin-top: 10px;
}

/* Quantity selector - global style (product details + panier) */
.product__details__quantity {
    margin-top: 10px;
    margin-bottom: 10px;
}

.quantity .pro-qty,
.quantity .pro-qty-2 {
    width: 120px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    overflow: hidden;
}

.quantity .pro-qty input,
.quantity .pro-qty-2 input {
    border: none;
    width: 60px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #111111;
}

.quantity .pro-qty .qtybtn,
.quantity .pro-qty-2 .qtybtn {
    width: 40px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    user-select: none;
    color: #111111;
}

.quantity .pro-qty .qtybtn:hover,
.quantity .pro-qty-2 .qtybtn:hover {
    background: #f3f4ff;
}

.rameurx-details__wishlist {
    margin-top: 10px;
    color: #dc3545;
    font-size: 14px;
}

.rameurx-details__trust {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.rameurx-details__trust > div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555555;
    margin-bottom: 6px;
}

.rameurx-details__trust i {
    color: #007bff;
}

.rameurx-details__section {
    margin-top: 24px;
}

.rameurx-details__section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rameurx-details__features {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.rameurx-details__features li {
    padding: 4px 0;
    font-size: 14px;
    color: #444444;
}

.rameurx-details__specs ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.rameurx-details__specs li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}

.rameurx-details__specs li span:first-child {
    color: #777777;
}

.rameurx-details__specs li span:last-child {
    color: #111111;
    font-weight: 600;
}
/* 2 colonnes sur mobile UNIQUEMENT pour les produits */
@media (max-width: 576px) {
    /* Page d'accueil - conteneur product__filter uniquement */
    .product__filter > [class*="col-lg-3"],
    .product__filter > [class*="col-lg-4"],
    .product__filter > [class*="col-md-6"],
    .product__filter > [class*="col-sm-6"] {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 8px;
        padding-right: 8px;
    }
    
    /* Page shop - uniquement la ligne avec les produits (pas la sidebar) */
    .shop .col-lg-9 .row:last-child > [class*="col-lg-3"],
    .shop .col-lg-9 .row:last-child > [class*="col-lg-4"],
    .shop .col-lg-9 .row:last-child > [class*="col-md-6"],
    .shop .col-lg-9 .row:last-child > [class*="col-sm-6"] {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 8px;
        padding-right: 8px;
    }
    
    /* Ajuster les espacements pour les produits sur mobile */
    .product__item {
        margin-bottom: 20px;
    }
    
    .product__item__pic {
        margin-bottom: 10px;
    }
    
    .product__item__text {
        padding: 10px 5px 0 5px;
    }
    
    .product__item__text h6 {
        font-size: 13px !important;
        min-height: 36px;
    }
    
    .product__item__text h5 {
        font-size: 16px !important;
    }
}

/* ============================
   Shop Sidebar Mobile - Full Width & Toggle
   ============================ */
@media (max-width: 767px) {
    /* Bouton de filtre visible sur mobile */
    .shop__filter__toggle {
        display: flex;
    }
    
    /* Colonne sidebar prend toute la largeur sur mobile */
    .row > .col-lg-3:first-child {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 10px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Colonne produits prend toute la largeur sur mobile */
    .row > .col-lg-9 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Sidebar cachée par défaut sur mobile, togglée par JS */
    .shop__sidebar {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
        display: none;
    }
    
    .shop__sidebar.is-open {
        display: block;
    }
    
    /* Barre de recherche - pleine largeur */
    .shop__sidebar__search {
        margin-bottom: 30px;
        width: 100%;
    }
    
    .shop__sidebar__search form {
        width: 100%;
    }
    
    .shop__sidebar__search form input {
        width: 100%;
        padding: 12px 50px 12px 15px;
        border-radius: 8px;
        border: 1px solid #e5e5e5;
        box-sizing: border-box;
    }
    
    .shop__sidebar__search form button {
        right: 5px;
        padding: 0 12px;
    }
    
    /* Accordéons - pleine largeur */
    .shop__sidebar__accordion {
        width: 100%;
    }
    
    .shop__sidebar__accordion .card {
        margin-bottom: 20px;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        overflow: hidden;
        width: 100%;
    }
    
    .shop__sidebar__accordion .card-heading {
        padding: 15px 20px;
        background: #f8f9fa;
        width: 100%;
    }
    
    .shop__sidebar__accordion .card-heading a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        color: #111111;
        width: 100%;
    }
    
    .shop__sidebar__accordion .card-body {
        padding: 15px 20px;
        border-bottom: none;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Listes - pleine largeur */
    .shop__sidebar__categories,
    .shop__sidebar__price,
    .shop__sidebar__brand {
        width: 100%;
    }
    
    .shop__sidebar__categories ul,
    .shop__sidebar__price ul,
    .shop__sidebar__brand ul {
        height: auto;
        margin: 0;
        padding: 0;
        width: 100%;
        list-style: none;
    }
    
    .shop__sidebar__categories ul li,
    .shop__sidebar__price ul li,
    .shop__sidebar__brand ul li {
        margin-bottom: 8px;
        width: 100%;
    }
    
    .shop__sidebar__categories ul li:last-child,
    .shop__sidebar__price ul li:last-child,
    .shop__sidebar__brand ul li:last-child {
        margin-bottom: 0;
    }
    
    .shop__sidebar__categories ul li a,
    .shop__sidebar__price ul li a,
    .shop__sidebar__brand ul li a {
        display: block;
        width: 100%;
        padding: 10px 12px;
        line-height: 1.5;
        color: #111111;
        text-decoration: none;
        transition: all 0.3s ease;
        box-sizing: border-box;
        border-radius: 8px;
        background: transparent;
    }
    
    .shop__sidebar__categories ul li a:hover,
    .shop__sidebar__price ul li a:hover,
    .shop__sidebar__brand ul li a:hover {
        background: #f3f4ff;
        padding-left: 16px;
    }
    
    .shop__sidebar__categories ul li a.active,
    .shop__sidebar__price ul li a.active,
    .shop__sidebar__brand ul li a.active {
        background: #111111;
        color: #ffffff;
        font-weight: 700;
    }
}

/* ============================
   Mobile Header Actions (Panier + Hamburger)
   ============================ */
.header__mobile__actions {
    display: none;
}

@media (max-width: 767px) {
    /* Cacher le canvas__open original qui est en dehors du conteneur */
    .header .container > .canvas__open {
        display: none !important;
    }
    
    .header__mobile__actions {
        display: flex;
        align-items: center;
        gap: 15px;
        position: absolute;
        right: 15px;
        top: 25px;
        z-index: 2; /* Relatif au header, pas besoin d'être très élevé */
    }
    
    .mobile-cart-link {
        position: relative;
        display: inline-block;
    }
    
    .mobile-cart-link img {
        width: 20px;
        height: 20px;
    }
    
    .header__mobile__actions .canvas__open {
        position: relative;
        right: 0;
        top: 0;
        margin: 0;
    }
}

/* ============================
   Static Pages Styles
   ============================ */

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 100px 0;
    position: relative;
}

.breadcrumb__text {
    text-align: center;
}

.breadcrumb__text h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.breadcrumb__option {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.breadcrumb__option a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.breadcrumb__option a:hover {
    color: #7fad39;
}

.breadcrumb__option span {
    color: #ffffff;
    font-size: 16px;
}

.breadcrumb__option span::before {
    content: '/';
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Page */
.contact.spad {
    overflow-x: hidden;
}

.contact .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.contact__widget {
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    max-width: 100%;
    box-sizing: border-box;
}

.contact__widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact__widget span {
    font-size: 48px;
    color: #7fad39;
    margin-bottom: 20px;
    display: block;
}

.contact__widget h4 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.contact__widget p {
    color: #4A90E2;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact__form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.contact__form h3 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 24px;
}

.contact__form input,
.contact__form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact__form input:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: #7fad39;
}

.contact__form .error-message {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.contact__form input.error,
.contact__form textarea.error {
    border-color: #dc3545;
}

.contact__form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact__info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.contact__info h3 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 20px;
}

.contact__info p {
    color: #4A90E2;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact__info ul {
    list-style: none;
    padding: 0;
}

.contact__info ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #4A90E2;
}

.contact__info ul li:last-child {
    border-bottom: none;
}

.contact__social {
    margin-top: 30px;
}

.contact__social h4 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact__social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #7fad39;
    color: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact__social a:hover {
    background: #6a8f2f;
    transform: translateY(-3px);
}

/* Payment Methods Page */
.payment__method {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.payment__method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.payment__method--featured {
    text-align: left;
    border: 2px solid #7fad39;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
}

.payment__method__icon {
    margin-bottom: 20px;
    text-align: center;
}

.payment__method h3 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 28px;
    text-align: center;
}

.payment__method--featured h3 {
    text-align: left;
}

.payment__method__description {
    color: #4A90E2;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
    text-align: center;
}

.payment__method--featured .payment__method__description {
    text-align: left;
}

.payment__method__details {
    margin-top: 30px;
}

.payment__method__details h4 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment__method__details h4 i {
    color: #7fad39;
}

.payment__steps {
    margin-bottom: 30px;
}

.payment__step {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #7fad39;
    transition: all 0.3s ease;
}

.payment__step:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.payment__step__number {
    width: 45px;
    height: 45px;
    background: #7fad39;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(127, 173, 57, 0.3);
}

.payment__step__content {
    flex: 1;
}

.payment__step__content strong {
    color: #111111;
    font-weight: 700;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

.payment__step__content p {
    color: #4A90E2;
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}

.payment__info {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
}

.payment__info h4 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment__info h4 i {
    color: #7fad39;
}

.payment__info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment__info ul li {
    padding: 10px 0;
    color: #4A90E2;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.payment__info ul li i {
    color: #7fad39;
    margin-top: 3px;
    flex-shrink: 0;
}

.payment__info ul li a {
    color: #7fad39;
    text-decoration: none;
    font-weight: 700;
}

.payment__info ul li a:hover {
    text-decoration: underline;
}

.payment__method ul {
    list-style: none;
    padding: 0;
}

.payment__method ul li {
    padding: 10px 0;
    color: #4A90E2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment__method ul li i {
    color: #7fad39;
}

.payment__security {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.payment__security h3 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 24px;
    text-align: center;
}

.security__item {
    text-align: center;
    padding: 20px;
}

.security__item i {
    margin-bottom: 15px;
}

.security__item h4 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.security__item p {
    color: #4A90E2;
    line-height: 1.8;
    font-size: 14px;
}

/* Delivery Page */
.delivery__option {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.delivery__option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.delivery__option--featured {
    text-align: left;
    border: 2px solid #7fad39;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
}

.delivery__option--featured .delivery__option__icon {
    text-align: center;
}

.delivery__option--featured h3 {
    text-align: center;
}

.delivery__option--featured .delivery__price {
    text-align: center;
}

.delivery__option__icon {
    margin-bottom: 20px;
    text-align: center;
}

.delivery__option h3 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 28px;
}

.delivery__option--featured h3 {
    font-size: 32px;
}

.delivery__price {
    font-size: 36px;
    font-weight: 900;
    color: #7fad39;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.delivery__option__description {
    color: #4A90E2;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
    text-align: center;
}

.delivery__option--featured .delivery__option__description {
    text-align: left;
}

.delivery__benefits {
    margin-top: 30px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.delivery__benefits h4 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery__benefits h4 i {
    color: #7fad39;
}

.delivery__benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delivery__benefits ul li {
    padding: 12px 0;
    color: #4A90E2;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
    border-bottom: 1px solid #e0e0e0;
}

.delivery__benefits ul li:last-child {
    border-bottom: none;
}

.delivery__benefits ul li i {
    color: #7fad39;
    margin-top: 3px;
    flex-shrink: 0;
}

.delivery__option ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.delivery__option ul li {
    padding: 10px 0;
    color: #4A90E2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery__option ul li i {
    color: #7fad39;
}

.delivery__info,
.delivery__faq {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.delivery__info h3,
.delivery__faq h3 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 24px;
}

.delivery__info h4 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery__info ul {
    list-style: none;
    padding: 0;
}

.delivery__info ul li {
    padding: 10px 0;
    color: #4A90E2;
    border-bottom: 1px solid #e0e0e0;
}

.delivery__info ul li:last-child {
    border-bottom: none;
}

.faq__item {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #7fad39;
}

.faq__item h4 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq__item h4 i {
    color: #7fad39;
}

.faq__item p {
    color: #4A90E2;
    line-height: 1.8;
    margin: 0;
}

/* Returns Page */
.return__policy,
.return__process,
.return__exchange,
.return__refund,
.return__exceptions,
.return__contact {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.return__policy h3,
.return__process h3,
.return__exchange h3,
.return__refund h3,
.return__exceptions h3,
.return__contact h3 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.return__policy h3 i,
.return__process h3 i,
.return__exchange h3 i,
.return__refund h3 i,
.return__exceptions h3 i,
.return__contact h3 i {
    color: #7fad39;
}

.return__policy p,
.return__process p,
.return__exchange p,
.return__refund p,
.return__contact p {
    color: #4A90E2;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy__details {
    margin-top: 20px;
}

.policy__details h4 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.policy__details ul {
    list-style: none;
    padding: 0;
}

.policy__details ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #4A90E2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy__details ul li i {
    color: #7fad39;
}

.process__steps {
    margin-top: 20px;
}

.step {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step__number {
    width: 40px;
    height: 40px;
    background: #7fad39;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step__content h4 {
    color: #111111;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 16px;
}

.step__content p {
    color: #4A90E2;
    margin: 0;
    line-height: 1.6;
}

.refund__info {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    height: 100%;
}

.refund__info h4 {
    color: #7fad39;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.refund__info p {
    color: #4A90E2;
    line-height: 1.8;
    margin: 0;
}

.alert-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
}

.alert-warning h4 {
    color: #856404;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.alert-warning ul {
    list-style: none;
    padding-left: 0;
}

.alert-warning ul li {
    padding: 8px 0;
    color: #856404;
}

.contact__options {
    margin-top: 20px;
}

.contact__options p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact__options a {
    color: #7fad39;
    text-decoration: none;
    font-weight: 700;
}

.contact__options a:hover {
    text-decoration: underline;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: #111111;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 15px;
}

.section-title p {
    color: #4A90E2;
    font-size: 16px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb__text h2 {
        font-size: 28px;
    }
    
    .contact__form {
        padding: 25px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact__widget {
        max-width: 100%;
        box-sizing: border-box;
        padding: 20px 15px;
    }
    
    .contact__info {
        max-width: 100%;
        box-sizing: border-box;
        padding: 20px;
        margin-top: 20px;
    }
    
    .contact .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .contact .row > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .payment__method,
    .delivery__option {
        padding: 25px;
    }
    
    .payment__method--featured {
        padding: 20px;
    }
    
    .payment__step {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .payment__step__number {
        align-self: center;
    }
    
    .payment__step__content {
        text-align: left;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
}

/* ========================================
   Chat Widget - Floating Chat Component
   ======================================== */

.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    pointer-events: none;
}

.chat-widget__button {
    pointer-events: auto;
}

/* Chat Window */
.chat-widget__window {
    width: 380px;
    max-width: calc(100vw - 48px);
    height: 600px;
    max-height: calc(100vh - 100px);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    visibility: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
}

.chat-widget__window.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
}

/* Header */
.chat-widget__header {
    background: #111827;
    color: #ffffff;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chat-widget__header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.chat-widget__avatar-wrapper--small {
    position: relative;
    flex-shrink: 0;
}

.chat-widget__avatar--small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.chat-widget__avatar--small svg {
    width: 100%;
    height: 100%;
}

.chat-widget__online-indicator--small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #10B981;
    border: 2px solid #111827;
    border-radius: 50%;
}

.chat-widget__header-text {
    flex: 1;
    min-width: 0;
}

.chat-widget__agent-name--small {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 2px;
}

.chat-widget__status {
    font-size: 12px;
    color: #9CA3AF;
}

.chat-widget__minimize-btn {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.chat-widget__minimize-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Messages Container */
.chat-widget__messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #F9FAFB;
}

.chat-widget__messages::-webkit-scrollbar {
    width: 6px;
}

.chat-widget__messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-widget__messages::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 3px;
}

.chat-widget__messages::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

/* Message */
.chat-widget__message {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-widget__message--bot {
    align-self: flex-start;
}

.chat-widget__message--user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chat-widget__message-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.chat-widget__message-avatar svg {
    width: 100%;
    height: 100%;
}

/* Avatar styles */
.chat-widget__message-avatar--support {
    background: transparent;
}

.chat-widget__message-avatar--user {
    background: transparent;
}

.chat-widget__avatar--support {
    background: transparent;
}

.chat-widget__message-content {
    max-width: 75%;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.chat-widget__message--user .chat-widget__message-content {
    background: #111827;
    color: #ffffff;
}

.chat-widget__message-text {
    font-size: 14px;
    line-height: 1.5;
    color: #111827;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.chat-widget__message--user .chat-widget__message-text {
    color: #ffffff;
}

/* Typing Indicator */
.chat-widget__typing {
    padding: 0 20px 20px;
    display: none;
}

.chat-widget__typing.is-visible {
    display: block;
}

.chat-widget__typing-dots {
    display: flex;
    gap: 4px;
    padding: 10px 14px;
}

.chat-widget__typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9CA3AF;
    animation: typingDot 1.4s infinite ease-in-out;
}

.chat-widget__typing-dots span:nth-child(1) {
    animation-delay: 0s;
}

.chat-widget__typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-widget__typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* Input Area */
.chat-widget__input-area {
    border-top: 1px solid #E5E7EB;
    background: #ffffff;
    padding: 16px;
    flex-shrink: 0;
}

.chat-widget__input-step {
    display: block;
}

.chat-widget__input-step--hidden {
    display: none;
}

.chat-widget__form {
    width: 100%;
}

.chat-widget__input-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    background: #F3F4F6;
    border-radius: 12px;
    padding: 8px;
}

.chat-widget__input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    line-height: 1.5;
    color: #111827;
    resize: none;
    outline: none;
    font-family: inherit;
    max-height: 120px;
    overflow-y: auto;
}

.chat-widget__input::placeholder {
    color: #9CA3AF;
}

.chat-widget__input--email {
    padding: 8px 12px;
}

.chat-widget__send-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #111827;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.chat-widget__send-btn:hover:not(:disabled) {
    background: #1F2937;
    transform: scale(1.05);
}

.chat-widget__send-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.chat-widget__send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-widget__send-btn svg {
    width: 18px;
    height: 18px;
}

/* Chat Button */
.chat-widget__button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #111827;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-widget__button:hover {
    background: #1F2937;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.chat-widget__button:active {
    transform: scale(0.95);
}

.chat-widget__button.is-hidden {
    display: none;
}

.chat-widget__button svg {
    width: 24px;
    height: 24px;
}

/* Refresh Button */
.chat-widget__refresh-btn {
    background: #111827;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-family: inherit;
    display: inline-block;
}

.chat-widget__refresh-btn:hover {
    background: #1F2937;
    transform: translateY(-1px);
}

.chat-widget__refresh-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 16px;
        right: 16px;
    }
    
    .chat-widget__window {
        width: calc(100vw - 32px);
        height: calc(100vh - 80px);
        max-height: 600px;
    }
    
    .chat-widget__button {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .chat-widget {
        bottom: 12px;
        right: 12px;
    }
    
    .chat-widget__window {
        width: calc(100vw - 24px);
        height: calc(100vh - 60px);
    }
}

/* Promotion Banner Styles */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #ffffff;
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.promo-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.promo-banner__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px 0 20px;
    z-index: 2;
    gap: 10px;
}

.promo-banner__text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}

.promo-banner__icon {
    font-size: 20px;
    animation: bounce 2s infinite;
}

.promo-banner__message {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.promo-banner__message strong {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.promo-banner__text-desktop {
    display: inline;
}

.promo-banner__label {
    display: none;
}

.promo-banner__text-mobile {
    display: none;
}

.promo-banner__discount {
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 16px;
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.promo-banner__code {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    animation: glow 2s infinite;
}

.promo-banner__close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.promo-banner__close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.promo-banner__close:active {
    transform: translateY(-50%) scale(0.95);
}

.promo-banner__close i {
    font-size: 14px;
}

#confettiCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }
}

/* Ajuster le body pour compenser la hauteur de la bannière + header */
body {
    padding-top: 100px; /* Hauteur du header par défaut */
    transition: padding-top 0.3s ease;
}

body.promo-banner-active {
    padding-top: 150px; /* Bannière (50px) + Header (100px) */
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 80px; /* Hauteur du header sur tablette */
    }
    
    body.promo-banner-active {
        padding-top: 125px; /* Bannière (45px) + Header (80px) */
    }
    
    .promo-banner {
        padding: 10px 0;
    }
    
    .promo-banner__content {
        padding: 0 40px 0 15px;
    }
    
    .promo-banner__text {
        font-size: 12px;
        gap: 8px;
    }
    
    .promo-banner__icon {
        font-size: 18px;
    }
    
    .promo-banner__discount {
        font-size: 14px;
        padding: 3px 8px;
    }
    
    .promo-banner__code {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .promo-banner__close {
        width: 24px;
        height: 24px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px; /* Hauteur du header sur mobile */
    }
    
    body.promo-banner-active {
        padding-top: 110px; /* Bannière (40px) + Header (70px) */
    }
    
    .promo-banner {
        padding: 8px 0;
        min-height: 40px;
        display: flex;
        align-items: center;
    }
    
    .promo-banner__content {
        padding: 0 35px 0 12px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .promo-banner__text {
        font-size: 10px;
        gap: 4px;
        flex: 1;
        min-width: 0;
        overflow: hidden;
        white-space: nowrap;
    }
    
    .promo-banner__icon {
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .promo-banner__message {
        display: inline-flex;
        align-items: center;
        gap: 3px;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow: hidden;
    }
    
    /* Masquer le texte desktop et afficher la version mobile */
    .promo-banner__text-desktop {
        display: none;
    }
    
    .promo-banner__label {
        display: inline;
        font-size: 9px;
        letter-spacing: 0;
        white-space: nowrap;
        font-weight: 700;
    }
    
    .promo-banner__text-mobile {
        display: inline;
        font-size: 9px;
        white-space: nowrap;
    }
    
    .promo-banner__discount {
        font-size: 11px;
        padding: 2px 6px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .promo-banner__code {
        font-size: 9px;
        padding: 2px 6px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .promo-banner__close {
        width: 26px;
        height: 26px;
        right: 8px;
        flex-shrink: 0;
        position: absolute;
    }
    
    .promo-banner__close i {
        font-size: 12px;
    }
}

