
[data-theme-spark] .col{
    min-width: 0;
}

[data-theme-spark] img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
[data-theme-spark] .accordion-title {
    margin-top: 25px;
    font-weight: 500 !important;
    font-size: 1em;
}
[data-theme-spark] iframe{
    width: 100%;
    height: 100%;
}
[data-theme-spark] video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[data-theme-spark] .product-group-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    /*width: 100%;*/
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

[data-theme-spark] .product-group {
    font-family: Lexend, sans-serif;
    overflow-x: auto;
    gap: 25px;
    box-sizing: border-box;
    padding: 15px;
}
[data-theme-spark] .product-item {
    position: relative;
    box-shadow: none;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid #f1f1f1;
    padding-bottom: 20px;
    max-width: 200px;
    min-width: 200px;
}
[data-theme-spark] .product-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}

[data-theme-spark] .product-content {
    padding: 10px;
}
[data-theme-spark] .product-title {
    font-size: 0.95em;
    font-weight: 500;
}
[data-theme-spark] .product-description {
    font-size: 0.8em;
    color: #666;
}
[data-theme-spark] .product-price {
    color: #E94B5F;
    font-weight: 600;
}
[data-theme-spark] .product-image {
    position: relative;
    max-width: 200px;
}
[data-theme-spark] .product-bottom {
    position: absolute;
    bottom: 0;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 20px 0 10px;
    box-sizing: border-box;

    background: linear-gradient(
            to bottom,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,0.6) 30%,
            rgba(255,255,255,1) 100%
    );

}



/** grid **/
[data-theme-spark] .product-group.layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}
[data-theme-spark] .product-group.layout-grid .product-item {
    display: flex;
    flex-direction: column;
}

/** carousel **/
[data-theme-spark] .product-group.layout-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    min-width: 0;
}
[data-theme-spark] .product-group.layout-carousel::-webkit-scrollbar {
    height: 6px;
}
[data-theme-spark] .product-group.layout-carousel::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}
[data-theme-spark] .product-group.layout-carousel .product-item {
    min-width: 180px;
    max-width: 180px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}
/** stack **/
[data-theme-spark] .product-group.layout-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
[data-theme-spark] .product-group.layout-stack .product-item {
    display: flex;
    gap: 15px;
    align-items: center;
}
[data-theme-spark] .product-group.layout-stack .product-item {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}
[data-theme-spark] .product-group.layout-stack .product-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}
[data-theme-spark] .product-group.layout-stack .product-content {
    padding: 0;
}
[data-theme-spark] .product-group.layout-stack .product-bottom {
    right: 20px;
    bottom: 5px;
    width: fit-content;
}






[data-theme-spark] a{
    color: #E94B5F;
    font-weight: 400;
    text-decoration: none;
}
[data-theme-spark] a:hover{
    text-decoration: underline;
}
[data-theme-spark] .link-arrow{
    color: #E94B5F;
    font-weight: 400;
    font-size: .8em;
    cursor: pointer;
    text-decoration: none !important;
    position: relative;
    border-bottom: 1px solid #E94B5F;
    padding-bottom: 5px;
    padding-right: 32px;

}
[data-theme-spark] .link-arrow:hover{
    text-decoration: none;
    color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}
[data-theme-spark] .link-arrow i{
    color: #E94B5F;
}
[data-theme-spark] .link-arrow:hover i{
    color: var(--secondary);
}
[data-theme-spark] .link-arrow:hover::after{
    color: var(--secondary);
}
[data-theme-spark] .link-arrow::after {
    content: "arrow_forward";
    font-family: "Material Symbols Outlined", sans-serif;
    font-size: 20px;
    color: #E94B5F;
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    transition: transform 0.3s ease, right 0.3s ease;
}
[data-theme-spark] .link-arrow:hover::after {
    right: -10px;
}



[data-theme-spark] ul{}
[data-theme-spark] ul li{
    font-size: .9em;
    font-weight: 300 !important;
    font-family: Lexend, sans-serif !important;
}
[data-theme-spark] p{
    font-size: 0.9em;
    font-weight: 300 !important;
    font-family: Lexend, sans-serif;
}
/*[data-theme-spark] div{*/
/*    font-size: 1em;*/
/*    font-weight: 300 !important;*/
/*    font-family: Lexend, sans-serif;*/
/*}*/




[data-theme-spark] table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-family: Lexend, sans-serif;
    font-size: 0.9em;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(255, 84, 99, 0.1);
}
[data-theme-spark] table thead {
    background: #f7f7f7;
}
[data-theme-spark] table th {
    text-align: left;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 0.85em;
    color: #333;
    border-bottom: 1px solid #eaeaea;
}
[data-theme-spark] table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f1f1;
    color: #444;
}
[data-theme-spark] table td:first-child {
    font-weight: 300;
    color: #cc2233;
    border-left: 3px solid #FF5463;
}
[data-theme-spark] table td strong {
    color: #FF5463;
}
[data-theme-spark] table tbody tr:nth-child(even) {
    background: #fafafa;
}
[data-theme-spark] table tbody tr:hover {
    background: #f5f5f5;
}
/*
[data-theme-spark] .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}*/



/* TABLETTE */
@media (max-width: 1024px) {
    [data-theme-spark] .row {
    }
}

/* MOBILE */
@media (max-width: 768px) {

    [data-theme-spark] .row {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    [data-theme-spark] .col {
        display: flex !important;
        flex-direction: column !important;
        padding: 20px 0 !important;
        margin: 0 !important;
    }

    [data-theme-spark] table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    [data-theme-spark] table thead,
    [data-theme-spark] table tbody,
    [data-theme-spark] table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    [data-theme-spark] table td,
    [data-theme-spark] table th {
        max-width: 300px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}