@font-face {
    font-family: 'RobotoCondensed';
    src: url(/fonts/RobotoCondensed-VariableFont_wght.ttf) format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'ROGLyons';
    src: url(/fonts/ROGLyonsTypeRegular3.ttf) format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'trade-gothic-lt';
    src: url(/fonts/trade-gothic-lt-1361519976.ttf) format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'TradeGothicLTPro';
    src: url(/fonts/TradeGothicLTPro.ttf) format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'tradegothicltprobold';
    src: url(/fonts/Trade-Gothic-Bold-Font.otf) format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: black;
}

/*HEADER*/
.navbar {
    position: relative;
    padding: 18px 0 14px 0;
    border-bottom: 1px solid #696969;
}

.container {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1150px;
}

.brand a {
    text-decoration: none;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
}

.brand .divider {
    position: relative;
    padding-left: 15px;
    margin-left: 15px;
}

.brand .divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    height: 50%;
    width: 1px;
    background-color: #696969;
}

.nav-links {
    list-style: none;
    display: flex;
    padding-top: 15px;
    gap: 50px;
    color: white;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    text-align: center;
    font-family: 'RobotoCondensed';
}

.nav-links a:hover {
    color: #ef4848;
}

.icolog {
    display: flex;
    gap: 20px;
    padding-top: 15px;
}

.icons a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.icons {
    display: flex;
    align-items: center;
    gap: 1px;
}

.icons .diviler {
    position: relative;
    padding-left: 15px;
    margin-left: 15px;
}

.icons .diviler::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    height: 45%;
    width: 1px;
    background-color: #696969;
}

.icons a:hover {
    color: #ef4848;
}

/*search-bar*/
.search-bar {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 14px 20px;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    z-index: 1002;
}

.search-bar.active {
    display: flex;
}

.search-bar .input-wrapper {
    position: relative;
    width: 100%;
    max-width: 1150px;
    display: flex;
    align-items: center;
}

.search-bar input {
    width: 100%;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 0.95rem;
    padding: 12px 16px 12px 46px;
    padding-right: 70px;
    min-width: 0;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-bar .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
}

.search-bar .close-btn {
    position: absolute;
    right: 8px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.search-bar .close-btn:hover {
    background: rgba(239, 72, 72, 0.28);
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1003;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger:hover .hamburger-line {
    background: #ef4848;
}

/*sidebar*/
.sidebar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 999;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.sidebar.active {
    left: 0;
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.sidebar-icons {
    position: fixed;
    display: flex;
    right: 50px;
    gap: 15px;
    margin-bottom: 30px;
     margin: 0; 
  z-index: 1000; 
}

.sidebar-links li {
    padding: 10px 0;
}

.sidebar-links li a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    font-family: 'RobotoCondensed';
}

.sidebar-links li a:hover {
    color: #ff0000;
}



/* Mobile navbar handled in responsive.css */





/*slide*/
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide picture,
.slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.slide-img-1 {
    transform: translateY(-30px);
}

.slide-content {
    position: absolute;
    top: 78%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3.3rem;
    font-family: 'ROGLyons', sans-serif;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1.8rem;
    font-family: 'TradeGothicLTPro', sans-serif;
    margin-top: -2px;
}

.slide-content button {
    padding: 15px 50px;
    background: transparent;
    border: 1px solid white;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.slide-content button:hover {
    background: white;
    color: black;
}

.slider-navigation-container {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.navigation-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0 60px;
}

button.prev,
button.next {
    background: transparent;
    border: none;
    padding: 10px 25px;
    font-size: 2.2rem;
    cursor: pointer;
    color: rgb(255, 255, 255);
    transition: 0.3s;
    background: rgba(70, 70, 70, 0.7);
    border-radius: 100px;
}

button.prev:hover,
button.next:hover {
    background: rgba(255, 255, 255, 0.7);
    color: black;
    border-radius: 100px;
}




/* Tab panels */
.offers-produit .tab-content {
    display: none;
    width: 100%;
}

.offers-produit .tab-content.active {
    display: block;
}

/*parcourir nos produits*/
.offers-produit {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    border-radius: 10px;
    max-width: 1100px;
    width: 100%;
    margin: auto;
}

.offers-produit h2 {
    font-size: 40px;
    font-family: 'RobotoCondensed';
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
}

/* TABS RESPONSIVENESS */
.tabs {
    display: flex;
    justify-content: center;
    width: 100%;
}

.tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
    background: #1b1b1b;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

.tab.active {
    background: #252525;
    border-bottom: 2px solid #ef4848;
}

.tab img {
    width: 40px;
    margin-bottom: 10px;
}

.tab span {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.series-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 0px;
}

.series-card {
    position: relative;
    border: 1px solid #333;
    padding: 10px;
    width: 325px;
    text-align: center;
    transition: transform 0.3s;
}

.series-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(to right, #fff, #fff) top left no-repeat,
        linear-gradient(to right, #fff, #fff) top right no-repeat,
        linear-gradient(to bottom, #fff, #fff) top right no-repeat,
        linear-gradient(to bottom, #fff, #fff) bottom right no-repeat,
        linear-gradient(to right, #fff, #fff) bottom left no-repeat,
        linear-gradient(to right, #fff, #fff) bottom right no-repeat,
        linear-gradient(to bottom, #fff, #fff) top left no-repeat,
        linear-gradient(to bottom, #fff, #fff) bottom left no-repeat;
    background-size:
        30px 1px,
        30px 1px,
        1px 30px,
        1px 30px,
        30px 1px,
        30px 1px,
        1px 30px,
        1px 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease-in-out;
}

.series-card:hover::before {
    opacity: 1;
}

.series-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.series-card h3 {
    position: relative;
    padding-bottom: 20px;
    margin-top: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    font-family: 'tradegothicltprobold';
    cursor: pointer;
}

.series-card h3:hover {
    color: #fff;
}

.series-card h3::after {
    content: '';
    position: absolute;
    width: 0px;
    height: 3px;
    top: 28px;
    left: 85px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.series-card h3:hover::after {
    width: 50%;
}

.products-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-image: url('../assets/image/BG.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    padding-bottom: 4rem;
}

.product-card {
    position: relative;
    border: 1px solid #333;
    padding: 20px;
    width: 305px;
    color: #fff;
    font-family: 'RobotoCondensed', sans-serif;
    position: relative;
    transition: transform 0.3s;
    text-align: center;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(to right, #fff, #fff) top left no-repeat,
        linear-gradient(to right, #fff, #fff) top right no-repeat,
        linear-gradient(to bottom, #fff, #fff) top right no-repeat,
        linear-gradient(to bottom, #fff, #fff) bottom right no-repeat,
        linear-gradient(to right, #fff, #fff) bottom left no-repeat,
        linear-gradient(to right, #fff, #fff) bottom right no-repeat,
        linear-gradient(to bottom, #fff, #fff) top left no-repeat,
        linear-gradient(to bottom, #fff, #fff) bottom left no-repeat;
    background-size:
        30px 1px,
        30px 1px,
        1px 30px,
        1px 30px,
        30px 1px,
        30px 1px,
        1px 30px,
        1px 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease-in-out;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card img {
    width: 100%;
    object-fit: scale-down;
}

.product-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 5px 0 0 0;
}

.product-card p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.desc {
    text-align: left;
    margin-left: 55px;
}

.product-card ul {
    padding-left: 0;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.product-card ul li {
    margin-bottom: 5px;
}

.badge {
    position: absolute;
    top: 15px;
    left: 13px;
    background: #fff;
    color: #000;
    padding: 2px 8px;
    font-size: 0.73rem;
    font-weight: bold;
    padding: 5px 10px;
}

.badge::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    border: 5px solid black;
    border-top-color: transparent;
    border-left-color: transparent;
}

.btn {
    position: relative;
    display: inline-block;
    padding: 18px 60px;
    border: none;
    color: white;
    background-color: #000;
    border: 1px solid white;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 2px;
    border: 10px solid;
    border-top-color: red;
    border-right-color: red;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.btn:hover {
    background-color: #ff0000;
    border: none;
}

.btn1 {
    position: relative;
    display: inline-block;
    padding: 18px 60px;
    border: none;
    color: white;
    background-color: #000;
    border: 1px solid white;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn1::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 2px;
    border: 10px solid;
    border-top-color: #ff9500;
    border-right-color: #ff9500;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.btn1:hover {
    background-color: #ff9500;
    border: none;
}

.carousel-dots {
    position: absolute;
    display: inline-flex;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    border: 1px solid #ddd;
    background-color: transparent;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border: none;
}

.dot {
    width: 15px;
    height: 15px;
    margin: 0 4px;
    background-color: gray;
    cursor: pointer;
    transition: background-color 0.3s;
    transform: skew(-20deg);
}

.dot.active {
    background-color: #ff0000;
}

.carousel-dots1 {
    position: absolute;
    display: inline-flex;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    border: 1px solid #ddd;
    background-color: transparent;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border: none;
}

.dot1 {
    width: 15px;
    height: 15px;
    margin: 0 4px;
    background-color: gray;
    cursor: pointer;
    transition: background-color 0.3s;
    transform: skew(-20deg);
}

.dot1.active {
    background-color: #ff9500;
}

/*contenu rog*/
.promo-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    border-radius: 10px;
    max-width: 1100px;
    width: 100%;
    margin: auto;
    background: #000;
}

.promo-1 h2 {
    font-size: 40px;
    font-family: 'RobotoCondensed';
    font-weight: bold;
    margin: 50px 0 30px 0;
    text-align: center;
    color: #fff;
    width: 100%;
}

.desim {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.desim p {
    color: #fff;
    font-family: 'TradeGothicLTPro';
    font-size: 20px;
    line-height: 1.2;
    padding: 0 20px;
}

.promo-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    border-radius: 10px;
    max-width: 1100px;
    width: 100%;
    margin: auto;
    background: #000;
}

.promo-2 h2 {
    font-size: 40px;
    font-family: 'RobotoCondensed';
    font-weight: bold;
    margin: 50px 0 30px 0;
    text-align: center;
    color: #fff;
    width: 100%;
}

.desam {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.desam p {
    color: #fff;
    font-family: 'TradeGothicLTPro';
    font-size: 20px;
    line-height: 1.2;
    padding: 0 20px;
}

.desam img {
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
}

/*contenu tuf*/
.promo-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    border-radius: 10px;
    max-width: 1100px;
    width: 100%;
    margin: auto;
    background: #000;
}

.promo-1 h2 {
    font-size: 40px;
    font-family: 'RobotoCondensed';
    font-weight: bold;
    margin: 50px 0 30px 0;
    text-align: center;
    color: #fff;
    width: 100%;
}

.desim {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.desim p {
    color: #fff;
    font-family: 'TradeGothicLTPro';
    font-size: 20px;
    line-height: 1.2;
    padding: 0 20px;
}

.desim img {
    max-height: 1200px;
    width: 100%;
    max-width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.promo-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    border-radius: 10px;
    max-width: 1100px;
    width: 100%;
    margin: auto;
    background: #000;
}

.promo-2 h2 {
    font-size: 40px;
    font-family: 'RobotoCondensed';
    font-weight: bold;
    margin: 50px 0 30px 0;
    text-align: center;
    color: #fff;
    width: 100%;
}

.desam {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.desam p {
    color: #fff;
    font-family: 'TradeGothicLTPro';
    font-size: 20px;
    line-height: 1.2;
    padding: 0 20px;
}

.desam img {
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
}





/*newsletter*/
.newsletter {
    color: white;
    padding: 40px 0 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #696969;
    border-top: 1px solid #696969;
    width: 100%;
}

.newsletter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.newsletter .content h2 {
    margin: 0;
    font-family: 'RobotoCondensed';
    font-size: 30px;
}

.newsletter .content p {
    font-size: 16px;
    font-family: 'TradeGothicLTPro';
    margin-top: 5px;
}

.input-group {
    display: flex;
    align-items: center;
}

.form {
    display: flex;
    /* border: 1px solid #696969; */
    margin-right: 0;
}

.form input {
    padding: 18px 50px;
    border: none;
    width: 250px;
    max-width: 100%;
    outline: none;
    background: #000;
    color: white;
}

.bot {
    padding: 18px 60px;
    border: none;
    background-color: white;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'TradeGothicLTPro';
    margin-left: 8px;
}

.bot:hover {
    background-color: #000000;
    color: #fff;
    border: 1px solid #696969;
}

#emailInput {
    border: 2px solid #696969;
    padding: 18px 60px;
    transition: border-color 0.3s;
    padding-left: 20px;
}



/*footer*/
.footer {
    background-color: #000;
    padding: 0 0 10px 0;
    margin-top: 70px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1045px;
    margin: auto;
    padding: 0 20px;
}

.footer-column {
    width: 20%;
    min-width: 200px;
}

.footer-logo .logo {
    width: 220px;
    height: auto;
    padding-bottom: 20px;
}

.footer-column h3 {
    font-family: 'RobotoCondensed';
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    color: #ffffff;
    padding-bottom: 15px;
}

.footer-column strong {
    font-family: 'RobotoCondensed';
    color: white;
}

.footer-column p {
    font-family: 'TradeGothicLTPro';
    font-size: 14px;
    color: white;
    margin-left: 30px;
    margin-top: 1px;
}

.footer-column h6 {
    color: white;
    padding-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: block;
    transition: max-height 0.3s ease;
    max-height: 500px;
}

.footer-column.active ul {
    display: block;
    max-height: 0;
    overflow: hidden;
}

.footer-column li a {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.footer-column li a:hover {
    color: #858585;
}

.footer-column ul li {
    font-family: 'TradeGothicLTPro';
    font-size: 15px;
    margin-bottom: 5px;
    color: #ffffff;
}

.contact-list li {
    font-size: 14px;
}

.contact-list img.icon {
    width: 28px;
    height: 28px;
    vertical-align: middle;
}

.footer-column img.icon {
    width: 28px;
    height: 28px;
    vertical-align: middle;
}

.footer-column .cont {
    display: block;
    transition: max-height 0.3s ease, padding 0.3s ease;
    max-height: 500px;
    padding-bottom: 20px;
}

.footer-column.active .cont {
    max-height: 0;
    padding-bottom: 0;
    overflow: hidden;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-top: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #444;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
}

.copyright {
    font-family: 'RobotoCondensed';
    font-size: 14px;
    color: #ffffff;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, sans-serif;
    margin: 20px;
}

.social-text {
    color: #fff;
    font-family: 'RobotoCondensed';
    font-size: 16px;
}

.icon-link {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-link svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}