

html {
    font-family: 'Damas Font', sans-serif;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fff;
}

p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

header {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e5e5e5;
    color: #000000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.logo img {
    filter: brightness(0) !important;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 30px;
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
    color: #000;
}

.menu-category {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 70px;
    margin-right: 40px;
}

.logo img {
    height: 100%;
    width: auto;
    filter: brightness(0);
}

.nav-list {
    display: flex;
    height: 100%;
    align-items: center;
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: static;
}

.link_category {
    padding: 0 25px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    cursor: pointer;
    color: #000;
}

.link_category::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #00b0f0;
    transition: width 0.3s ease;
}

.nav-item:hover .link_category::after {
    width: 100%;
}

.menu-user {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #000;
}

#magasin {
    margin-right: 25px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.icone {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-left: 20px;
}

.menu-user svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.menu-user svg:hover {
    stroke: #00b0f0;
}

.mega-menu-dropdown {
    display: block;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
    color: #333;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-2px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s linear;
}

.nav-item:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.col-roots,
.col-subs-wrapper,
.col-models-wrapper {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.col-roots::-webkit-scrollbar,
.col-subs-wrapper::-webkit-scrollbar,
.col-models-wrapper::-webkit-scrollbar {
    display: none;
}

.mega-menu-wrapper {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    height: 550px;
    background: #fff;
    transition: all 0.5s ease;
}

.col-roots {
    width: 260px;
    background-color: #f7f7f7;
    border-right: 1px solid #eee;
    padding: 30px 0;
}

.col-subs-wrapper {
    width: 260px;
    background-color: #fff;
    border-right: 1px solid #eee;
}

.subs-container {
    padding: 30px 0;
    height: 100%;
}

.col-models-wrapper {
    flex: 1;
    background-color: #fff;
    padding: 40px 50px;
}

.menu-item {
    padding: 12px 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    color: #000;
}

.menu-item span {
    font-size: 18px;
    font-weight: 300;
    color: #ccc;
}

.menu-item:hover,
.menu-item.active {
    color: #00b0f0;
    background-color: #fff;
}

.menu-item.active {
    border-left: 4px solid #00b0f0;
    padding-left: 26px;
}

.col-subs-wrapper .menu-item {
    font-weight: 700;
    font-style: italic;
    color: #444;
}

.col-subs-wrapper .menu-item.active {
    color: #00b0f0;
}

.col-models-wrapper h3 {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00b0f0;
    display: inline-block;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 40px;
}

.model-link {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    padding: 5px 0;
    display: block;
    transition: transform 0.2s, color 0.2s;
}

.model-link:hover {
    color: #00b0f0;
    transform: translateX(5px);
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(5px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.subs-container,
.models-container {
    animation: slideInRight 0.4s ease-out forwards;
}

.page-product-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    gap: 60px;
    align-items: flex-start;
    top: 100px;
    position: relative;
}

.left-column-wrapper {
    top: 130px;
    flex: 1;
    min-width: 0;
}

.product-hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 500px;
    background-color: #fff;
    overflow: hidden;
    margin: 20px 0 60px 0;
}

.carousel-track-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-track {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
}

.carousel-slide {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide::before,
.carousel-slide::after {
    content: none !important;
    display: none !important;
}

.carousel-slide.current-slide {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 10;
    gap: 12px;
}

.carousel-indicator {
    border: 0;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgb(255, 255, 255);
}

.carousel-indicator:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.2);
}

.carousel-indicator.current-slide {
    background: #000;
    transform: scale(1.4);
    border: 1px solid rgba(255, 254, 254, 0.952);
    cursor: default;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

.product-hero-section:hover .carousel-button {
    opacity: 1;
}

.carousel-button:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-50%) scale(1.1);
}

.carousel-button--left {
    left: 20px;
}

.carousel-button--right {
    right: 20px;
}

.specs-column {
    width: 100%;
}

.each-specs-column {
    display: block;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

.specs-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.specs-header-row h2 {
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.5px;
    margin-top: 40px;
    margin: 0;
}

.action-buttons-container {
    font-weight: 500;
}

.toggle-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
}

.toggle-content.is-visible {
    opacity: 1;
}

.toggle-specs-btn {
    cursor: pointer;
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.toggle-specs-btn:hover {
    background: #857e7e;
}

.toggle-specs-btn::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    margin-bottom: 3px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.toggle-specs-btn.is-active {
    background: #000;
    border-color: #000;
}

.toggle-specs-btn.is-active::after {
    border-color: #fff;
    transform: rotate(225deg);
    margin-bottom: -3px;
}

.spec-group-title {
    background-color: #f7f7f7;
    padding: 8px;
    text-align: center;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: 14px;
    color: #000;
    margin: 25px 0 15px 0;
}

.spec-row {
    display: flex;
    align-items: baseline;
    padding: 6px 0;
}

.spec-label {
    width: 30%;
    min-width: 140px;
    font-weight: 700;
    font-size: 13px;
    color: #111;
    padding-right: 15px;
}

.spec-value {
    flex: 1;
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

.table-responsive {
    overflow-x: auto;
    padding-bottom: 10px;
}

.geo-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
}

.geo-table th {
    padding: 12px;
    background-color: #f7f7f7;
    font-weight: 800;
    font-style: italic;
    text-align: center;
    vertical-align: middle;
}

.geo-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.geo-table td:first-child {
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85em;
    padding-left: 5px;
}

.geo-table td:not(:first-child) {
    text-align: center;
    color: #555;
    font-size: 0.9em;
}

.geo-table tr:hover td {
    background-color: #fafafa;
}

#resume_container {
    border: none;
    margin-bottom: 80px;
    border-bottom: none;
}

.sidebar-column {
    width: 30vw;
    position: relative;
    top: 40px;
    background: #efefef;
    padding: 40px;
    border-radius: 2px;
    height: fit-content;
}

.section-grey {
    background-color: #efefef;
    width: 100% !important;
    max-width: none !important;
}

.text-section-grey {
    text-align: center !important;
}

p.text-section-grey {
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #666;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 15px;
}

.newMillesime {
    background-color: #000 !important;
    color: #fff !important;
}

.badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#badge-new {
    background-color: #000;
    color: #fff;
}

.badge-season {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-title {
    font-size: 36px;
    font-weight: 900;
    font-style: italic;
    margin: 0 0 10px 0;
    line-height: 1;
    text-transform: uppercase;
}

.product-ref {
    color: #888;
    font-size: 0.7em;
    margin-bottom: 35px;
    font-weight: 500;
}

.couleur-velo {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin-right: 8px;
    vertical-align: middle;
    cursor: pointer;
    transition: transform 0.2s;
}

.couleur-velo:hover {
    transform: scale(1.1);
}

.couleur-velo.active-color {
    box-shadow: 0 0 0 2px #000;
    pointer-events: none;
}

.size-selector {
    margin-bottom: 35px;
}

.size-label {
    font-weight: 800;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 12px;
    text-transform: uppercase;
    display: block;
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.size-btn {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    color: #181616;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-height: 50px;
}

.size-btn:not(.out-of-stock):hover {
    border-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.size-btn:focus,
.size-btn:active {
    border-color: #000;
    background-color: #fafafa;
    outline: none;
}

.size-btn.out-of-stock {
    background-color: #f3f4f6;
    border-color: #f3f4f6;
    color: #9ca3af;
}

.size-btn.out-of-stock:hover {
    background-color: #e5e7eb;
    border-color: #e5e7eb;
    color: #6b7280;
    transform: translateY(-1px);
    box-shadow: none;
}

.price-section {
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.price {
    font-size: 1.4em;
    font-weight: 700;
    font-style: italic;
    color: #000;
    display: block;
}

.dispo-info-container {
    margin-bottom: 25px;
}

.dispo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #333;
    font-weight: 500;
}

.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d5db;
    transition: background-color 0.3s ease;
}

.status-dot.active-green {
    background-color: #018632;
}

.status-dot.inactive-gray {
    background-color: #d1d5db;
}

.action-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
}

.btn-skew {
    display: block;
    width: 100%;
    height: 55px;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
    transform: skewX(-20deg);
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0;
}

.btn-content-unskew {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transform: skewX(20deg);
    font-family: inherit;
    font-weight: 800;
    font-style: italic;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-content-unskew::before {
    content: '»';
    font-size: 1.4em;
    margin-right: 10px;
    margin-bottom: 4px;
    display: inline-block;
}

#btn-panier {
    background-color: #000;
    color: #fff;
}

#btn-panier:hover {
    background-color: #333;
}

#btn-panier .text-label {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

#btn-contact-magasin {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

#btn-contact-magasin:hover {
    background-color: #000;
    color: #fff;
}

.st-similar-section {
    margin-top: 20px;
    padding: 20px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.st-section-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #000;
    padding-left: 20px;
}

.st-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 50px;
}

.st-carousel-track {
    display: flex;
    gap: 25px;
    padding: 10px 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.st-carousel-track::-webkit-scrollbar {
    display: none;
}

.st-card-item {
    min-width: 300px;
    width: 300px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.st-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.st-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.st-img-box {
    width: 100%;
    height: 220px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.st-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.st-info-box {
    padding: 15px 20px;
    flex-grow: 1;
}

.st-prod-name {
    font-size: 1.1rem;
    font-weight: 800;
    font-style: italic;
    margin: 0 0 5px 0;
    color: #000;
    text-transform: uppercase;
    line-height: 1.2;
}

.st-prod-year {
    display: block;
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.st-prod-price {
    font-size: 1.2rem;
    font-weight: 800;
    font-style: italic;
    color: #000;
    margin-top: 5px;
}

.st-action-row {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.st-view-btn {
    background-color: #000;
    color: #fff;
    font-weight: 800;
    font-style: italic;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 12px 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    transition: background 0.3s ease;
}

.st-card-item:hover .st-view-btn {
    background-color: #333;
}

.st-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #eee;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.st-nav-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.st-btn-left {
    left: 10px;
}

.st-btn-right {
    right: 10px;
}

@media (max-width: 1024px) {
    .page-product-container {
        flex-direction: column;
        gap: 40px;
    }

    .sidebar-column {
        width: 100%;
        position: static;
        padding: 30px;
    }

    .product-hero-section img {
        max-height: 400px;
    }
}

@media (max-width: 600px) {
    header {
        padding: 0 15px;
    }

    .logo {
        margin-right: 15px;
    }

    .spec-row {
        flex-direction: column;
    }

    .spec-label {
        width: 100%;
        margin-bottom: 4px;
    }

    .product-title {
        font-size: 28px;
    }

    .st-card-item {
        min-width: 85%;
    }
}

.dispo-text {
    font-size: 0.75em;
    font-weight: 600 !important;
}

.batterie-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.choix-batterie {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    height: 42px;
    padding: 0 15px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    color: #666;
    font-family: 'Damas Font', sans-serif;
    font-size: 13px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.choix-batterie:hover {
    border-color: #000;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.choix-batterie.active {
    border: 2px solid #000;
    color: #000;
    background-color: #fff;
    pointer-events: none;
    box-shadow: none;
    transform: none;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    width: 900px;
    max-width: 95%;
    padding: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: #f5f5f5;
    padding: 15px 20px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #333;
    font-style: italic;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
}

.modal-body {
    padding: 30px;
    display: flex;
    gap: 30px;
}

.modal-product {
    flex: 1;
    display: flex;
    gap: 20px;
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.modal-img img {
    width: 250px;
    object-fit: contain;
}

.modal-details h3 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.modal-price {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.modal-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.modal-summary {
    flex: 0.8;
    background: #f9f9f9;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
}

.summary-total {
    border-top: 1px solid #ddd;
    margin-top: 10px;
    padding-top: 15px;
    font-weight: 800;
    font-size: 1.2rem;
    color: #000;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.tax-info {
    text-align: right;
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn-continue {
    background: #e32636;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.btn-checkout {
    background: #000;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.btn-checkout span {
    margin-left: 10px;
}

.zoom-trigger-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: #000;
}

.zoom-trigger-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: scale(1.1);
}

.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-overlay.active {
    display: flex;
    opacity: 1;
}

.zoom-container {
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.zoom-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.zoom-container img.zoomed-in {
    transform: scale(2);
    cursor: zoom-out;
}

.zoom-close-btn {
    position: fixed;
    top: 20px;
    right: 40px;
    background: none;
    border: none;
    font-size: 40px;
    color: #000;
    cursor: pointer;
    font-weight: 300;
    z-index: 2001;
}

.zoom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #000;
    border: none;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.zoom-nav:hover {
    background: #000;
    color: #fff;
}

.zoom-prev {
    left: 30px;
}

.zoom-next {
    right: 30px;
}

@media (max-width: 768px) {
    .zoom-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .zoom-prev {
        left: 10px;
    }

    .zoom-next {
        right: 10px;
    }
}

.carousel-track-container {
    position: relative;
}

.btn-3d-view {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 15;
    background-color: #000000;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 24px;
    font-family: 'Damas Font', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.icon-3d {
    width: 20px;
    height: 20px;
    transition: transform 0.5s ease;
}

.btn-3d-view:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-3d-view:hover .icon-3d {
    transform: rotate(180deg);
}

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 90vw !important;
    height: 90vh !important;
    max-width: none !important;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    padding: 0;
    overflow: hidden;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #333;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    z-index: 100;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: #000;
    transform: scale(1.1);
}

#container-3d-viewer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

#bike-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.loader-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px auto;
}

.loading-text {
    font-weight: 700;
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.instruction-3d {
    position: absolute;
    bottom: -40px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.lightbox-3d-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-3d-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-3d-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.close-3d-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: #333;
    z-index: 10001;
    transition: transform 0.2s;
}

.close-3d-btn:hover {
    transform: scale(1.1);
    color: #000;
}

#product-viewer {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
    position: relative;
    z-index: 10;
}

#product-viewer:active {
    cursor: grabbing;
}

#loader-text {
    font-family: 'Damas Font', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

body.zoom-is-open header {
    display: none !important;
}

body.zoom-is-open {
    overflow: hidden;
}

.zoom-close-btn {
    z-index: 2005 !important;
}/* --- AMÉLIORATION FINALE DES BULLES INFO --- */

.info-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00ecff, #00b4d8);
    color: #000 !important;
    border-radius: 50%;
    text-align: center;
    font-size: 11px;
    font-weight: 900;
    margin-left: 10px;
    cursor: help;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 236, 255, 0.3);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    vertical-align: middle;
    
    /* On reset les styles hérités pour l'icône "?" elle-même */
    font-style: normal !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1 !important;
}

/* Le texte du Tooltip (l'info qui apparaît) */
.info-bubble::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 150%; 
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 240px; /* Légèrement plus large pour l'aisance */
    padding: 12px 16px;
    background-color: rgba(15, 15, 15, 0.98); /* Plus profond pour le contraste */
    color: #ffffff !important;
    border-radius: 8px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* --- RESET TOTAL POUR LA LISIBILITÉ --- */
    font-family: 'Arial', sans-serif; /* Police système propre pour le texte d'aide */
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    text-transform: none !important; /* Annule le MAJUSCULE du parent */
    font-style: normal !important;   /* Annule l'italique du parent */
    letter-spacing: normal !important;
    text-align: left; /* Plus facile à lire qu'un texte centré sur plusieurs lignes */
    -webkit-font-smoothing: antialiased;
    white-space: normal; /* Permet le retour à la ligne automatique */
}

/* La flèche sous la bulle */
.info-bubble::before {
    content: "";
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: rgba(15, 15, 15, 0.98) transparent transparent transparent;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.info-bubble:hover::after, 
.info-bubble:hover::before {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Effet de pulsation */
@keyframes bubble-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 236, 255, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(0, 236, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 236, 255, 0); }
}

.info-bubble {
    animation: bubble-pulse 2s infinite;
}