@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    padding:0;
    margin: 0;
    text-decoration: none;
    border: none;
    outline: none;
    box-sizing: border-box;
    list-style: none;
}
h1 {
    font-family: 'Great Vibes', cursive !important;
}

h2,h3,h4,h5,h6{
    text-transform: uppercase;
}

body{
    background-color: var(--w);
    font-family: 'Libre Baskerville', serif !important;
        overflow-x:hidden;
      /*overflow-x: hidden;*/
}

:root {

    --b: #31251b;
    --w: #f9f5f0;
    --g: #c7b693;
}






.custom-navbar {
    background-color: var(--w);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.custom-navbar-top {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--w);
    z-index: 1000;
    position: relative; 
}

.custom-logo {
    width: 30px;
    height: 30px;
    position: absolute;
    left: -15px; 
}

.custom-brand {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--b);
    letter-spacing: 5px;
}

.custom-phone-icon {
    font-size: 20px;
    color: var(--b);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.custom-phone-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    border: 2px solid var(--b);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, border 0.3s ease;
}

.custom-phone-icon:hover {
    color: var(--g);
}

.custom-phone-icon:hover::after {
    width: 35px;
    height: 35px;
    border: 2px solid var(--g);
}

.custom-navbar-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-nav-links {
    text-transform: uppercase;
    display: flex;
    list-style: none;
    gap: 150px;
    padding: 0;
    margin: 0;
}

.custom-nav-links li {
    position: relative; /* Keep the position relative for all the list items */
}

.custom-nav-links a {
    text-decoration: none;
    color: var(--b); /* Base text color */
    font-size: 16px;
    font-weight: 500;
    position: relative; /* Needed for the pseudo-element positioning */
    transition: color 0.3s ease; /* Smooth color transition */
}

.custom-nav-links a::after {
    content: ""; /* Empty content for the line */
    position: absolute;
    left: 0;
    bottom: -2px; /* Position the line just below the text */
    width: 0; /* Initially, the line has no width */
    height: 2px; /* Thickness of the line */
    background-color: var(--g); /* Color of the line */
    transition: width 0.3s ease; /* Smooth transition for the line */
}

.custom-nav-links a:hover {
    color: var(--g); /* Change text color on hover */
}

.custom-nav-links a:hover::after {
    width: 100%; /* Expand the line to full width on hover */
}

.custom-cart-icon {
    font-size: 20px;
    color: var(--b);
    text-decoration: none;
    margin-left: 170px;
    position: relative; /* Needed for the pseudo-element positioning */
    transition: color 0.3s ease; /* Smooth color transition */
  
}

/* Create the circle animation */
.custom-cart-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px; /* Initially, a small dot */
    height: 4px; /* Initially, a small dot */
    border-radius: 50%; /* Make it a circle */
    border: 2px solid var(--b); /* Border color for the circle */
    transform: translate(-50%, -50%); /* Center the circle */
    transition: width 0.6s ease, height 0.6s ease; /* Smooth transition for the circle growth */
}

/* Change color on hover */
.custom-cart-icon:hover {
    color: var(--g); /* Change text color on hover */
    text-decoration: none;  /* Remove underline from the link */
}

/* Circle grows on hover */
.custom-cart-icon:hover::after {
    width: 35px; /* Expand the width */
    height: 35px; /* Expand the height */
    border: 2px solid var(--g); /* Border color for the circle */
    text-decoration: none;  /* Remove underline from the link */
}


.custom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 500vh;
    background-color: var(--w);
    display: none;
    z-index: 999;
}


.custom-overlay.active {
    display: block;
}

.custom-navbar.active {
    transform: translateY(0);
}

[data-header].header-hide {
    transform: translateY(-100%);
}

[data-header].active {
    background-color: var(--w);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.custom-phone-icon {
margin-right: 20px;
}

.custom-logo {
    margin-left: 20px;
    }





    .custom-logos-marquee {
        z-index: 1000;
        background-color: var(--g);
        /* margin-top: 20px; */
      
        /* height: 15vh; */
        display: flex;
        overflow-x: hidden;
        user-select: none;
        mask-image: linear-gradient(
            to right,
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0)
        );
    }
    
    .custom-marquee-logos {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 0.5rem;
        min-width: 100%;
        animation: custom-marquee-left 20s linear infinite;
    }
    
    .custom-marquee-logos img {
        display: block;
        margin-inline: 2rem;
    }
    
    @keyframes custom-marquee-left {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-100%);
        }
    }
    
    .custom-logo-marquee {
        z-index: 1000;
        /* height: vh; */
        display: flex;
        overflow-x: hidden;
        user-select: none;
        mask-image: linear-gradient(
            to right,
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0)
        );
    }
    
    .custom-marquee-logo {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 1rem;
        min-width: 100%;
        animation: custom-marquee-right 20s linear infinite;
    }
    
    @keyframes custom-marquee-right {
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0);
        }
    }
    
    .custom-text {
        font-size: 15px; /* Base font size */
        transform: scaleX(1); /* Stretch horizontally */
        white-space: nowrap; /* Prevent wrapping */
    }
    
    
    
    
.sidebar{
  position: fixed;
  top: 0; 
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  z-index: 1111;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li{
  width: 100%;
}
.sidebar a{
  width: 100%;
}
.menu-button{
  display: none;
  z-index: 1111;
}


nav{
  background-color: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

@media(max-width: 990px){
    .hideOnMobile{
      display: none;
    }
    .menu-button{
      display: block;
      z-index: 1000;
    }
  }
  @media(max-width: 400px){
    .sidebar{
      width: 100%;
    }
  }



  @media(max-width: 1100px){
    .custom-nav-links {
      gap: 100px;
    }
  }
  



  /* Hide the menu button and cart icon when the sidebar is open */
body.sidebar-open .menu-button,
body.sidebar-open .custom-cart-icon {
    display: none;
}


/* List items in the sidebar */
.sidebar li {
    padding: 10px 20px; /* Padding for each item */
    /* border-bottom: 1px solid #444; Optional: Add a light border between items */
    margin-bottom: 10px; /* Gap between list items */
}

/* Sidebar links */
.sidebar li a {
    text-decoration: none; /* Remove underline */
    color: var(--b); /* White text color for links */
    font-size: 18px; /* Font size for the links */
    display: block; /* Make the link fill the full width of the list item */
}

/* Hover effect on the list items */
.sidebar li:hover {
    background-color: var(--g); /* Light background color on hover */
}

/* Optional: Hover effect for the links */
.sidebar li a:hover {
    color: var(--w); /* Lighter text color on hover */
}



















































/* Styles for the container */
.container {
    padding: 20px;
}

/* Navigation bar */
.navbar {
    margin-bottom: 20px;
}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
}

.navbar-nav > li > a {
    color: var(--b);
}

.navbar-nav > li > a:hover {
    color: var(--b);
}

/* Products Section */
h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--b);
}
h1 {
    font-size: 6em;
  color: var(--b);
  text-align: center;
}
/* Container and product layout */
#product-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Creates 4 equal columns */
    gap: 30px; /* Adds space between items */
    justify-items: center; /* Centers the products horizontally */
    width: 100%;
    box-sizing: border-box;
}

/* Product item style */
.product {
    text-align: center;
    padding: 15px;
    width: 100%; /* Ensure the product fills the grid item */
    max-width: 250px; /* Set a maximum width for the products */
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds shadow */
    border-radius: 1px; /* Optional: Adds rounded corners */
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column; /* Ensures the content is stacked vertically */
    align-items: center; /* Centers content horizontally */
    margin: 15px; /* Adds margin all around each product */
}

.product:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Image container and hover effect */
.product-image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px; /* Adjustable height */
    border-radius: 1px; /* Matches box corners */
}

.product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Button styles */
.add-to-cart, .details-btn {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: var(--b);
    color: var(--w);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    /* text-transform: uppercase; */
}

.add-to-cart:hover, .details-btn:hover {
    transform: scale(1.1);
    background-color: var(--g);
}

/* Add spacing between buttons */
.product .add-to-cart {
    margin-right: 10px;
}

.details-btn {
    background-color: var(--g);
}

.details-btn:hover {
    background-color: var(--b);
}

p {
    margin: 5px 0;
    /*color: var(--b);*/
}

.price {
    font-weight: bold;
}









/* Navbar background and text colors */
.navbar {
    background-color: var(--w); /* Change the background color of the navbar */
    /* opacity: 0.3; */
}

.navbar-brand {
    color: var(--b) !important; /* Change the color of the navbar brand */
}


/* Navbar menu items */
.navbar-nav > li > a {
    color: var(--b) !important; /* Default color for the navbar links */
}

.navbar-nav > li > a:hover {
    color: var(--b) !important; /* Hover effect for the navbar links (Tomato color) */
}

/* Dropdown hover effects */
.navbar-nav .dropdown-menu {
    background-color: var(--g); /* Change background color of the dropdown */
}

.navbar-nav .dropdown-menu > li > a {
    color: var(--w); /* Default color for dropdown items */
}

.navbar-nav .dropdown-menu > li > a:hover {
    background-color: var(--b); /* Hover effect for dropdown items */
    color: var(--w); /* Keep text color white on hover */
}

/* Dropdown caret color */
.navbar-nav .dropdown-toggle .caret {
    border-top-color: var(--b); /* Change the color of the dropdown caret */
}



/* Sorting Dropdown Style */
#priceSort {
    background-color: var(--g); /* Background color */
    color: var(--w); /* Text color */
    /* border: 1px solid #ddd; Border color */
}

#priceSort option {
    background-color: var(--g); /* Background color for the options */
    color: var(--w); /* Text color for the options */
}

#priceSort:hover {
    background-color: var(--b); /* Change background on hover */
    color: var(--w); /* Ensure text stays white */
}

#priceSort option:hover {
    background-color: var(--b); /* Option hover effect */
    color: var(--w);
}



/* .product {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product.show {
    opacity: 1;
} */

















/* Media query for smaller screens */
@media (max-width: 993px) {
    #product-container {
        grid-template-columns: repeat(2, 1fr); /* Create 2 equal columns */
    }

    .product {
        max-width: 300px; /* Increase the max width of each product */
    }
}



/* Media query for smaller screens */
@media (max-width: 550px) {
    #product-container {
        grid-template-columns: repeat(2, 1fr); /* Create 2 equal columns */
    }

    .product {
        max-width: 250px; /* Increase the max width of each product */
    }

    .product-image-container {
        height: 230px; /* Adjustable height */
    }


   .container h1 {
        font-size: 4em;
      color: var(--b);
      text-align: center;
    }
}


/* Media query for smaller screens */
@media (max-width: 470px) {
    #product-container {
        grid-template-columns: repeat(1, 1fr); /* Create 2 equal columns */
    }

    .product {
        max-width: 350px; /* Increase the max width of each product */
    }

    .product-image-container {
        height: 400px; /* Adjustable height */
    }

    .container h1 {
        font-size: 3em;
      color: var(--b);
      text-align: center;
    }

}


@media (max-width: 3850px) {
    h1 {
        font-size: 5em;
    }
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
    outline: none;
    box-sizing: border-box;
    list-style: none;
  }

  *,
*::before,
*::after {
  box-sizing: border-box;
}


  /* * {
    outline: 1px solid red; 
  } */
  

 body {
    margin: 0;
    font-family: 'Libre Baskerville', serif !important;
    background-color: var(--w);
    /* height: 500vh; */
    /* font-family: "Big Shoulders Display", sans-serif; Added fallback font */
        scroll-behavior: smooth;
        /* height: 700vh; */
    overflow-x: hidden;
    background-color: var(--w);
  font-family: 'Libre Baskerville', serif !important;
  width: 100vw;
  }
/* 
  html{
    overflow-x: hidden;
  } */
  

h1 {
  font-family: 'Great Vibes', cursive !important;
}

h2,h3,h4,h5,h6{
  text-transform: uppercase;
}


:root {

    --b: #31251b;
    --w: #f9f5f0;
    --g: #c7b693;
}



  
  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



.footer {
    margin-top: 100px;
      position: relative;
      width: 100%;
      background: var(--b);
      min-height: 50px;
      padding: 20px 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
   
    
    .wave {
      position: absolute;
      top: -100px;
      left: 0;
      width: 100%;
      height: 100px;
      background: url("../elmnts/blackwave.png");
      background-size: 1000px 100px;
    }
    
    .wave#wave1 {
      z-index: 10;
      opacity: 1;
      bottom: 0;
      animation: animateWaves 6s linear infinite;
    }
    
    .wave#wave2 {
      z-index: 9;
      opacity: 0.5;
      bottom: 10px;
      animation: animate 6s linear infinite !important;
    }
    
    .wave#wave3 {
      z-index: 10;
      opacity: 0.2;
      bottom: 15px;
      animation: animateWaves 5s linear infinite;
    }
    
    .wave#wave4 {
      z-index: 9;
      opacity: 0.7;
      bottom: 20px;
      animation: animate 5s linear infinite;
    }
    
    @keyframes animateWaves {
      0% {
        background-position-x: 1000px;
      }
      100% {
        background-positon-x: 0px;
      }
    }
    
    @keyframes animate {
      0% {
        background-position-x: -1000px;
      }
      100% {
        background-positon-x: 0px;
      }
    }
  
  
  
  
  
  
  
  

    
  
    
  footer {
  
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .footer-custom {
    padding: 20px 0;
    background-color: var(--b);
    
  }
  
  .footer-container {
    max-width: 1300px;
    margin: 0 auto;
  
    padding: 0 15px;
  }
  
  .footer-section {
    display: grid;
    grid-template-columns: 1fr;
    
  }
  
  .footer-content {
    padding: 0 10px;
    
  }
  
  .footer-about {
    margin-bottom: 1rem;
  }
  
  .footer-logo img {
    margin-bottom: 10px;
    height: 75px;
  }
  
  .social-item {
    display: inline-block;
  }
  
  .social-item:not(:last-child) {
    margin-right: .5rem;
  }
  
  .social-item a {
    width: 50px;
    height: 50px;
    color: var(--w);
    border-radius: 100%;
    font-size: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: var(--g); */
    color: var(--w);
    text-decoration: none;
    position: relative; /* Needed for the pseudo-element positioning */
    transition: color 0.3s ease; /* Smooth color transition */
  }
  
  .social-item a:hover {
    color: var(--g); /* Change text color on hover */
    text-decoration: none;  /* Remove underline from the link */
  }
  
  /* Create the circle animation */
  .social-item a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px; /* Initially, a small dot */
    height: 30px; /* Initially, a small dot */
    border-radius: 50%; /* Make it a circle */
    border: 2px solid var(--w); /* Border color for the circle */
    transform: translate(-50%, -50%); /* Center the circle */
    transition: width 0.6s ease, height 0.6s ease; /* Smooth transition for the circle growth */
  }
  
  
  .social-item a:hover::after {
    width: 60px; /* Expand the width */
    height: 60px; /* Expand the height */
    border: 2px solid var(--g); /* Border color for the circle */
    text-decoration: none;  /* Remove underline from the link */
  }
  
  
  
  
  
  .footer-contact li i {
    color: var(--g); /* Icon color */
  }
  
  .footer-contact li span {
    color: var(--w); /* Text color */
  }
  
  .footer-about p { color: var(--w); /* Text color for the paragraph */ }
  
  
  
  
  
  footer h4 {
    position: relative;
    line-height: 1;
    padding-bottom: 20px;
    font-size: 24px;
    margin: 1rem 0 1.615rem 0;
    color: var(--g);
  }
  
  .footer-content h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background-color: var(--g);
  }
  
  /* Styles pour les liens */
  .footer-nav li a {
    color: var(--w);
    line-height: 2rem;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    position: relative; /* Nécessaire pour l'animation */
    transition: color 0.3s ease; /* Transition de couleur douce */
  }
  
  /* L'animation du survol */
  .footer-nav li a::after {
    content: ""; /* Contenu vide pour la ligne */
    position: absolute;
    left: 0;
    bottom: -2px; /* Placer la ligne juste sous le texte */
    width: 0; /* La ligne commence avec une largeur de 0 */
    height: 2px; /* Épaisseur de la ligne */
    background-color: var(--g); /* Couleur de la ligne */
    transition: width 0.3s ease; /* Transition douce pour l'extension de la ligne */
  }
  
  /* L'animation au survol */
  .footer-nav li a:hover {
    color: var(--g); /* Change la couleur du texte au survol */
  }
  
  .footer-nav li a:hover::after {
    width: 100%; /* Étend la ligne à toute la largeur au survol */
  }
  
  
  .footer-contact li {
    display: flex;
    align-items: start;
    line-height: 2rem;
    font-weight: 400;
  }
  
  .footer-contact li i {
    margin-top: 5px;
    font-size: 24px;
    color: var(--w);
    margin-right: 10px;
  }
  
  .footer-contact li span {
    font-size: 18px;
  }
  
  .footer-copyright {
    background-color: var(--g);
  }
  
  .copyright {
    padding: 0.3rem 0;
    text-align: center;
  }
  
  /* Responsive Layout */
  
  @media (min-width:992px) {
  
    .footer-section {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
  }
