/* ============================================================
   frontend.css — consolidated styles for all frontend pages
   (products, search, product detail, downloads)
   ============================================================ */

/* ══════════════════════════════════════════════════════════════
   SHARED: fg-* layout system  (products & search pages)
   ══════════════════════════════════════════════════════════════ */

/* ── Page shell ──────────────────────────────────────────────── */
.fg-page {
    background: #fff;
}

/* ── Hero banner ─────────────────────────────────────────────── */
.fg-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: #1a1a1a center/cover no-repeat;
}
.fg-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.2) 55%,
        transparent 100%
    );
}
.fg-hero__body {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 40px;
}
.fg-hero__crumb {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 10px;
}
.fg-hero__crumb a {
    color: inherit;
    text-decoration: none;
}
.fg-hero__crumb a:hover {
    color: #fff;
}
.fg-hero__crumb span {
    margin: 0 7px;
    opacity: 0.45;
}
.fg-hero__title {
    font-family: "Brockmann", sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
    margin: 0;
}
.fg-hero__sub {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-style: italic;
}

/* ── Lock notice ─────────────────────────────────────────────── */
.fg-lock-bar {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 11px 20px;
    font-size: 13px;
    color: #78350f;
    display: flex;
    align-items: center;
    gap: 10px;
}
.fg-lock-bar a {
    color: #e8232a;
    font-weight: 700;
    text-decoration: underline;
}

/* ── Two-column layout ───────────────────────────────────────── */
.fg-layout {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    padding: 40px 0 80px;
}

/* ── Sidebar ─────────────────────────────────────────────────── */
.fg-sidebar {
    width: 220px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}
.fg-sidebar__block {
    margin-bottom: 28px;
}
.fg-sidebar__hd {
    font-family: Brockmann-B, "Brockmann", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: normal;
    text-transform: none;
    color: #111;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ebebeb;
}
.fg-sidebar__nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fg-sidebar__nav li {
    border-bottom: 1px solid #f2f2f2;
}
.fg-sidebar__nav li:last-child {
    border-bottom: none;
}
.fg-sidebar__nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    text-decoration: none;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #444;
    transition: color 0.16s;
}
.fg-sidebar__nav a:hover {
    color: #e8232a;
}
.fg-sidebar__nav a.fg-active {
    color: #e8232a;
    font-weight: 700;
}
.fg-sidebar__nav a .fg-cnt {
    font-size: 11px;
    color: #bbb;
    font-weight: 400;
}
.fg-sidebar__sub {
    list-style: none;
    padding: 0 0 6px 14px;
    margin: 0;
    border-left: 2px solid #e8232a;
}
.fg-sidebar__sub li {
    border-bottom: none;
}
.fg-sidebar__sub a {
    font-size: 15px;
    font-weight: 500;
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #666;
    padding: 6px 0;
    display: block;
    text-decoration: none;
}
.fg-sidebar__sub a:hover {
    color: #e8232a;
}
.fg-sidebar__sub a.fg-active {
    color: #e8232a;
    font-weight: 700;
}

/* ── Content column ──────────────────────────────────────────── */
.fg-content {
    flex: 1;
    min-width: 0;
}

/* ── Category header (title + desc) ─────────────────────────── */
.fg-cat-hd {
    margin-bottom: 28px;
}
.fg-cat-hd__title {
    font-family: "Brockmann", sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #111;
    margin: 0 0 10px;
}
.fg-cat-hd__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    max-width: 660px;
}
.fg-cat-hd__desc p {
    margin-bottom: 8px;
}
.fg-cat-hd__desc p:last-child {
    margin-bottom: 0;
}

/* ── Toolbar ─────────────────────────────────────────────────── */
.fg-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 28px;
}
.fg-toolbar__left,
.fg-toolbar__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.fg-toolbar__label {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #999;
}
.fg-toolbar__count {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
}
.fg-toolbar__select {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 5px 28px 5px 10px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #333;
    background: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23aaa'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    cursor: pointer;
}
.fg-toolbar__select:focus {
    outline: none;
    border-color: #e8232a;
}

.fg-grid-btns {
    display: flex;
    gap: 3px;
}
.fg-grid-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background: #fff;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.15s;
}
.fg-grid-btn:hover {
    border-color: #e8232a;
    color: #e8232a;
}
.fg-grid-btn.fg-on {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

/* ── Product grid ────────────────────────────────────────────── */
.fg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
}
.fg-grid.g-2 {
    grid-template-columns: repeat(2, 1fr);
}
.fg-grid.g-4 {
    grid-template-columns: repeat(4, 1fr);
}
.fg-grid.g-list {
    grid-template-columns: 1fr;
    gap: 12px;
}

/* ── Product card hover border ───────────────────────────────── */
.shop-block_one-inner:hover {
    border: 2px solid #111 !important;
}

/* ── Product card (shop-block_one inside grid) ───────────────── */
.fg-grid .shop-block_one {
    margin-bottom: 0;
}
.fg-grid .shop-block_one h4 {
    color: #1a1a1a;
    margin-top: 4px;
}
.fg-grid .shop-block_one h4 a {
    font-family: "Brockmann", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    transition: color 0.18s;
}
.fg-grid .shop-block_one h4 a:hover {
    color: #e8232a;
}

/* List layout override */
.fg-grid.g-list .shop-block_one {
    display: flex;
    gap: 0;
}
.fg-grid.g-list .shop-block_one-inner {
    width: 220px;
    flex-shrink: 0;
}
.fg-grid.g-list .shop-block_one > .mt-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 20px;
    border-left: 1px solid #f0f0ee;
}

/* ── Empty state ─────────────────────────────────────────────── */
.fg-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 80px 20px;
}
.fg-empty p {
    font-size: 15px;
    color: #999;
    margin-bottom: 24px;
}

/* ── Pagination ──────────────────────────────────────────────── */
.fg-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid #eee;
}
.fg-pager__item a,
.fg-pager__item span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 4px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
    text-decoration: none;
    transition: all 0.16s;
    border-radius: 50%;
}
.fg-pager__item a:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}
.fg-pager__item.fg-cur a {
    background: #e8232a;
    border-color: #e8232a;
    color: #fff;
}
.fg-pager__item.fg-dis span {
    background: #f7f7f7;
    color: #ccc;
    border-color: #eee;
}

/* ── fg-* Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .fg-sidebar {
        width: 190px;
    }
    .fg-layout {
        gap: 32px;
    }
}
@media (max-width: 991px) {
    .fg-layout {
        flex-direction: column;
        gap: 0;
    }
    .fg-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 24px;
        padding-bottom: 20px;
        border-bottom: 1px solid #ebebeb;
    }
    .fg-sidebar__nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
    }
    .fg-sidebar__nav li {
        border-bottom: none;
        margin-right: 0;
    }
    .fg-sidebar__nav a {
        padding: 6px 12px 6px 0;
        font-size: 15px;
    }
    .fg-sidebar__sub {
        border-left: none;
        padding-left: 0;
        display: flex;
        flex-wrap: wrap;
    }
    .fg-sidebar__sub a {
        padding: 4px 10px 4px 0;
    }
    .fg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .fg-grid.g-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .fg-hero {
        height: 210px;
    }
    .fg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .fg-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .fg-grid-btns {
        display: none;
    }
    .fg-layout {
        padding-bottom: 48px;
    }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Breadcrumb ──────────────────────────────────────────────── */
.pd-breadcrumb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ebebeb;
}
.pd-breadcrumb nav {
    font-size: 14px;
    color: #999;
}
.pd-breadcrumb a {
    color: #999;
    text-decoration: none;
}
.pd-breadcrumb a:hover {
    color: #e8232a;
}
.pd-breadcrumb strong {
    color: #333;
    font-weight: 600;
}
.pd-nav-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pd-nav-icons a {
    color: #bbb;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s;
}
.pd-nav-icons a:hover {
    color: #e8232a;
}

/* ── Accordion ───────────────────────────────────────────────── */
.pd-short-desc h1,
.pd-short-desc h2,
.pd-short-desc h3 {
    font-size: clamp(1.1rem, 1.2vw + 0.4rem, 1.4rem);
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    margin: 10px 0 6px;
}

.pd-acc-item {
    border-bottom: 1px solid #e5e5e5;
}
.pd-acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-family: "Brockmann", Brockmann-B, sans-serif;
    font-size: clamp(1.1rem, 1.2vw + 0.4rem, 1.4rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: #222;
    cursor: pointer;
    letter-spacing: 0;
    user-select: none;
}
.pd-acc-icon {
    font-size: 13px;
    color: #999;
    transition: transform 0.25s;
}
.pd-acc-item.open .pd-acc-icon {
    transform: rotate(180deg);
}
.pd-acc-body {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}
.pd-acc-item.open .pd-acc-body {
    max-height: 600px;
    padding-bottom: 16px;
}

/* ── Size chart accordion (taller body) ──────────────────────── */
.pd-acc-item.sc-acc.open .pd-acc-body {
    max-height: 1800px;
    padding-bottom: 20px;
}
.sc-table-wrap {
    overflow-x: auto;
}
.sc-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.sc-table-wrap table th,
.sc-table-wrap table td {
    border: 1px solid #ddd;
    padding: 8px 12px;
    text-align: center;
}
.sc-table-wrap table th {
    background: #f0f0f0;
    font-weight: 700;
    color: #222;
}
.sc-table-wrap table tr:nth-child(even) td {
    background: #fafafa;
}

/* ── Size buttons ────────────────────────────────────────────── */
.sz-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.btn-black-outline {
    border-color: #111 !important;
    color: #111 !important;
}
.btn-black-outline:before {
    background-color: #e8232a !important;
}
.btn-black-outline:hover {
    color: #fff !important;
}
.btn-black-outline .btn-wrap .text-one,
.btn-black-outline .btn-wrap .text-two {
    color: #111 !important;
}
.btn-black-outline:hover .btn-wrap .text-one,
.btn-black-outline:hover .btn-wrap .text-two {
    color: #fff !important;
}

.sz-btn {
    width: 46px;
    height: 46px;
    border: 1.5px solid #222;
    background: #fff;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50%;
    padding: 0;
    transition: all 0.2s;
    letter-spacing: 0.5px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sz-btn:hover {
    border-color: #e8232a;
    color: #e8232a;
    background: #fff8f8;
}
.sz-btn.active {
    background: #e8232a;
    border-color: #e8232a;
    color: #fff;
}

/* ── CTA outline button ──────────────────────────────────────── */
.btn-outline-dark-custom {
    display: inline-flex;
    align-items: center;
    padding: 11px 28px;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    border-radius: 3px;
    line-height: 1;
}
.btn-outline-dark-custom:hover {
    background: #1a1a1a;
    color: #fff !important;
}

/* ── Qty controls ────────────────────────────────────────────── */
.qty-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}
.qty-btn {
    width: 42px;
    height: 48px;
    border: none;
    background: #f5f5f5;
    font-size: 20px;
    cursor: pointer;
    color: #555;
    line-height: 1;
}
.qty-input {
    width: 90px;
    height: 48px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    outline: none;
}

/* ── Share icons ─────────────────────────────────────────────── */
.pd-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e5e5e5;
}
.pd-share__label {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111;
    white-space: nowrap;
}
.pd-share__icons {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pd-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #111;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}
.pd-share__btn:hover {
    background: #e8232a;
    color: #fff;
}

/* ── Size chart image zoom modal ─────────────────────────────── */
#sc-img-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 99998;
    align-items: center;
    justify-content: center;
}
#sc-img-modal img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 6px;
}
#sc-img-modal .sc-modal-close {
    position: absolute;
    top: 14px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.75;
}
#sc-img-modal .sc-modal-close:hover {
    opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   DOWNLOADS PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Catalogue cards ─────────────────────────────────────────── */
.catalogue-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
    background: #fff;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.catalogue-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.catalogue-thumb {
    position: relative;
    background: #f0f0f0;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.catalogue-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.catalogue-card:hover .catalogue-thumb img {
    transform: scale(1.04);
}

.catalogue-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: #ccc;
}
.catalogue-lock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
.catalogue-info {
    padding: 14px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.catalogue-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 0;
    line-height: 1.35;
}
.catalogue-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.catalogue-download-btn,
.catalogue-request-btn {
    flex: 1;
    min-width: 80px;
    padding: 8px 10px;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.catalogue-download-btn {
    background: #e8232a;
    color: #fff;
}
.catalogue-download-btn:hover {
    background: #c51a20;
}
.catalogue-request-btn {
    background: #f0f0f0;
    color: #333;
}
.catalogue-request-btn:hover {
    background: #ddd;
}

/* ── Download / password modals ──────────────────────────────── */
.dl-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.dl-modal {
    background: #fff;
    border-radius: 10px;
    padding: 32px 28px 28px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}
.dl-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}
.dl-modal-close:hover {
    color: #333;
}
.dl-modal-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}
.dl-modal-sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.dl-field {
    margin-bottom: 14px;
}
.dl-field input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.dl-field input:focus {
    border-color: #e8232a;
}
.dl-submit-btn {
    width: 100%;
    padding: 13px;
    background: #e8232a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.dl-submit-btn:hover {
    background: #c51a20;
}

.tax-prod-category {
    color: #f8f7f7;
    font-family: Barlow-Cond, sans-serif;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
    .tax-prod-category {
        font-size: 2.8rem;
        width: 70%;
    }
}

@media (min-width: 992px) {
    .tax-prod-category {
        font-size: 3rem;
        width: 70%;
    }
}

@media (min-width: 1200px) {
    .tax-prod-category {
        font-size: 3.6rem;
        width: 50%;
    }
}

/* Container — centred inside the fg-hero */
.fg-hero .titre-accroche-video {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 2;
    left: 0;
    width: 100%;
    padding: 0 20px;
}

/* Category heading (h1.tax-prod-category) */
.titre-accroche-video h1.tax-prod-category,
.titre-accroche-video .h1-like.tax-prod-category {
    color: #f8f7f7;
    font-family: Barlow-Cond, "Barlow Condensed", sans-serif;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
    .titre-accroche-video h1.tax-prod-category,
    .titre-accroche-video .h1-like.tax-prod-category {
        font-size: 0.8rem;
        width: 70%;
    }
}
@media (min-width: 992px) {
    .titre-accroche-video h1.tax-prod-category,
    .titre-accroche-video .h1-like.tax-prod-category {
        font-size: 1.25rem;
        width: 70%;
    }
}
@media (min-width: 1200px) {
    .titre-accroche-video h1.tax-prod-category,
    .titre-accroche-video .h1-like.tax-prod-category {
        font-size: 1.6rem;
        width: 50%;
    }
}

/* Tagline / accroche (.accroche.h1-like) */
.titre-accroche-video .accroche,
.titre-accroche-video .h1-like.accroche {
    color: #f8f7f7;
    font-family: Brockmann-B, "Brockmann", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .titre-accroche-video .accroche,
    .titre-accroche-video .h1-like.accroche {
        font-size: 2rem;
        line-height: 2rem;
        width: 70%;
    }
}
@media (min-width: 992px) {
    .titre-accroche-video .accroche,
    .titre-accroche-video .h1-like.accroche {
        font-size: 3rem;
        line-height: 3rem;
        width: 70%;
    }
}
@media (min-width: 1200px) {
    .titre-accroche-video .accroche,
    .titre-accroche-video .h1-like.accroche {
        font-size: 3.6rem;
        line-height: 3.6rem;
        width: 50%;
    }
}

.u-m-top-min {
    overflow: visible;
    padding-bottom: 10px;
}
.u-m-txt-min {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    margin-top: -4.8rem;
    background-color: #fff;
    position: relative;
    z-index: 1;
    margin-bottom: 1.7rem;
    border-bottom: 1px solid #e5e5e5;
}
.tax-presentation_intro p {
    color: #000;
    font-family: Brockmann-B, "Brockmann", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.025rem;
    font-style: normal;
    line-height: normal;
}

.lire-plus-cat {
    height: 56px;
    width: 56px;
    background-image: url(../images/icons/download.svg);
    background-color: transparent;
    background-size: cover;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
    margin: 0px auto;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    display: block;
}
.lire-plus-cat.collapsed {
    transform: rotate(0deg);
}
@media (min-width: 1200px) {
    .lire-plus-cat {
        margin: 0;
    }
}
.u-m-bottom-min p {
    color: #000;
    font-family: barlow, "Barlow", sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.025rem;
    font-style: normal;
    line-height: normal;
}

.ss-cat__title {
    font-family: Brockmann-B, "Brockmann", sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

.light {
    font-weight: 400;
}

.slider-two_heading , .slider-two_heading p{
    width: 90%;
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: 700px;
    color: #fff;
}

@media (max-width: 768px) {
    .slider-two_heading , .slider-two_heading p{
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.9rem;
}
}

.sec-heading .sub-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--main-color);
    margin-bottom: 15px;
}

 .desc
 {
        margin: 10px 0px 0px 0px;
    }