body, html {
  margin: 0;
  padding: 0;
background-color: #EBDCCF !important;
 font-family: "Imperial Script";
  font-weight: 400;
  letter-spacing: 2px;
  font-style: normal;

  -webkit-text-size-adjust: none; /* iOS & Safari */
  -ms-text-size-adjust: none;     /* IE & Edge */
  text-size-adjust: none;         /* modern browsers */
  transform-origin: top left;
}

.mobile-sidebar  , .cart-drawer{
    background-color: #EBDCCF !important;
    color: #6F4E47 !important;
}



.cart-drawer {
   letter-spacing: 1.5px;
  position: fixed;
  top: 0;
  right: -100vw;
  width: 350px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  transition: right 0.3s ease-in-out;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  color: #6F4E47;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;

}

.cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  height: fit-content !important;
}

.cart-item {
  display: flex;
  margin-bottom: 1rem !important;
}

.cart-item-img {
  width: 60px;
  height: 80px;
  object-fit: cover;
  margin-right: 1rem;
}

.cart-item-details h5  {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  line-height: 25px !important;
}

.quantity-controls {
  display: inline-flex;
  border: 1px solid #6F4E47;
  color: #6F4E47;
}

.quantity-controls button,
.quantity-controls .qty {
  background: transparent;
  border: none; /* remove individual borders */
  padding: 0.2rem 0.5rem;
  margin: 0;
  cursor: pointer;
}

.quantity-controls .qty {
  border-left:1px solid #6F4E47 !important ;
    border-right:1px solid #6F4E47 !important ;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem; /* set width if needed */
}

.suivant{
  border-radius: 0px;
  background-color: #6F4E47;
  border: none;
  letter-spacing: 1.5px;
  font-size: 15px;
  color: #FAF6F1;
}
.suivant:hover{
  border-radius: 0px;
  background-color: #6F4E47;
  border: none;
}
.cart-footer {
  padding: 1rem;
  border-top: 1px solid #eee;
}

.cart-footer p {
  margin-bottom: 1rem;
}
.navbar-custom a,
.mobile-navbar a{
    color:  #6F4E47;
    text-decoration: none;
}
.navbar-custom,
.mobile-navbar {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
background-color: #EBDCCF;

color:  #6F4E47 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;

  font-family: 'Poppins', sans-serif;

}
.navbar-custom:not(.home-page-navbar),
.mobile-navbar:not(.home-page-navbar) {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-custom.fixed,
.mobile-navbar.fixed  {
  position: fixed !important;


  animation: slideDown 0.3s ease forwards;
  top: 0;
  left: 0;
  width: 100%;

}




.nav-link {

  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;

  text-decoration: none;
  padding: 5px 0;
}

/* Underline hover effect */
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color:  #6F4E47;;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.btn {
  font-weight: 600;
}

.mobile-navbar {
  display: none;
}

.icons {
  font-weight: lighter !important;
  text-transform: uppercase !important;
  color:  #6F4E47;
  transition: color 0.2s;

}

.icons:hover {
  color: #6F4E47;
}

/* Images flush to top */
.container-fluid.p-0 .row.g-0 img {
  display: block;
  width: 100%;
  height: auto;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 25vh;
  background-color: #EBDCCF;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: translateY(-100%);
  opacity: 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.search-overlay input::placeholder {
  font-weight: lighter !important;
  color: #6F4E47;
  font-size: medium !important;
}

.search-overlay.active {
  transform: translateY(0);
  opacity: 1;
}

.search-container {
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  position: relative;
}

.search-overlay input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #6F4E47;
  padding: 10px 0;
  font-size: 1.2rem;
  outline: none;
  font-family: 'Poppins', sans-serif;
  background: transparent;
}

.search-overlay input::placeholder {
  color: #6F4E47;
  font-weight: 500;
}

.close-search {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
}

.search-link {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  color: #6F4E47;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}

/* Banner overlay & styling */

  .banner {
    position: fixed; /* changed from absolute */
    top: 0;
    width: 100%;
    background-color: #d4a373 !important;
    z-index: 11;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 8px 0;
  }


.banner h3  {
  color: white;
  font-weight: lighter !important;
  font-size: medium;
}


.header_section{
background: linear-gradient(to bottom, #FAF6F1, #EBDCCF) !important;
 height: 91vh !important;
}
.header_section img{
    filter: brightness(60%);
 height: 91vh !important;
}



  /* Shared Styles */
  .playfair-display {
    font-family: "Imperial Script", cursive;
  font-weight: 100 !important;
  font-style:italic;
    font-size: 1.2rem;
 color: white !important;
    letter-spacing: 1.5px;
    line-height: 50px;

  }

.text-content h2 , .text-content p{
    color: #FAF6F1 !important;

}


  .cta-link {
    color: #FAF6F1;
    border: 1px solid #FAF6F1;
    padding: 10px;
    text-decoration: none;
    display: inline-block;
  }

  /* Image Handling */
  .hero-desktop img,
  .hero-mobile .carousel-item img {
    object-fit: cover;
    background-color: #FAF6F1 !important;
  }


  .carousel-indicators [data-bs-target] {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #FAF6F1 !important;
    opacity: 0.5;
    margin: 0 5px !important;
    border: none !important;
    transition: all 0.3s ease;
    padding: 0 !important;
    text-indent: 0 !important;
  }

  .carousel-indicators .active {
    opacity: 1 !important;
    transform: scale(1.2) !important;
    background-color: #6F4E47 !important;
  }

  /* Remove default Bootstrap styles */
  .carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
  }


  /* Text Slide Background */




.title {


  color: #6F4E47 !important;
  letter-spacing:2px;


}
.title span {
  border-bottom: 1px solid #6F4E47;
  padding-bottom: 10px; /* adjust as needed */
}

.title_text{
  font-weight: 100 !important;
  color: #6F4E47;
  letter-spacing: 1.5px;
}
.Explorez{
  text-decoration: none;
  color: #6F4E47;
    transition: transform 0.3s ease;
     font-weight: lighter !important;
  letter-spacing: 1.5px;
  line-height: 20px;
}
.product {
    margin-bottom: 30px;
}

.product img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.product-name {
    color: #6F4E47;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 10px;
}

.product-price {
    color: #6F4E47;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.choose-options-btn {
    background-color: transparent;
    border: 1px solid #6F4E47;
    color: #6F4E47;
    padding: 13px 0;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.choose-options-btn:hover {
    background-color: #6F4E47;
    color: #fff;
}

.product-info {
    text-align: center;
}
.shopify-modal {
  background-color: #EBDCCF;
  border-radius: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  border-radius: 0px;
  max-height: 70vh;
  overflow-y: scroll;
}

.font-shopify {
  font-family: 'CindyFont', 'Cormorant Garamond', serif;
  font-size: 2rem;
}

.size-btn {
  border: 1px solid #6F4E47;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background-color: white;
  font-weight: 500;
  transition: 0.3s;
}

.size-btn.active {
  background-color: black;
  color: white;
  border: none;
}

.qty-btn {
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  background-color: #6F4E47 !important;
  border: none;
  border-radius: 0.5rem;
}

.btn-outline-dark {
  border-radius: 0;
}

.btn-primary {
  background-color: #6F4E47;
  border: none;
  border-radius: 0;
}

.Explore{
 display: none !important;
   transition: transform 0.3s ease;
    font-weight: lighter !important;
  letter-spacing: 1.5px;
  line-height: 20px;
}

.categories .category {
  text-decoration: none !important;
  position: relative;
}

.categories .category .image-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.categories .category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.categories .category .title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(111, 78, 71, 0.8); /* Semi-transparent black background */
  color: white;
  padding: 15px;
  transition: all 0.3s ease;
}

.categories .category h6 {
  color: white; /* Changed from #6F4E47 to white for better visibility */
  text-decoration: none !important;
  margin: 0 !important; /* Remove margin since we're using padding on the overlay */
  font-weight: lighter !important;
  letter-spacing: 1.5px;
  line-height: 20px;
}

/* Optional hover effects */
.categories .category:hover img {
  transform: scale(1.05);
}

.categories .category:hover .title-overlay {
  background: rgba(111, 78, 71, 0.8); /* Use your brown color with transparency on hover */
}
/* Change bullet color */
.swiper-pagination-bullet {
  background: #6c584c !important;
  opacity: 1; /* Make sure they’re fully visible */
}

/* Optional: active bullet color */
.swiper-pagination-bullet-active {
  background: #6F4E47 !important;
}

/* Add margin-top to move the dots down */
.swiper-pagination {
  margin-top: 40px !important; /* Adjust as needed */
}
.background{
  height: 50vh;
  width: 100%;
  background: linear-gradient(
  to bottom,
  white 0%,
  antiquewhite 10%,
  antiquewhite 90%,
  white 100%
);

}


.hero-gallery {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns */
  grid-template-rows: repeat(2, 1fr); /* 2 rows for 10 images */

  z-index: 0;
}





.Découvrir{
  display: block !important;
  background-color:#6F4E47;
  color:white;
  font-weight: 100 !important;
  text-decoration: none;
  letter-spacing: 1.5px;

}


 .button {
border: none;
    position: relative;
    z-index: 5;
   background-color: transparent;
    cursor: pointer;
    border: 2px solid #6F4E47 !important ;
    overflow: hidden;
    border-radius: 30px;

    transition: all 0.5s ease-in-out;
  }

  .btn-txt {
    color: #6F4E47 !important;
    z-index: 1;
border: none;

  }
  .button:hover .btn-txt{
    color: white !important;
  }
   .type1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    transition: all 0.5s ease-in-out;
    background-color: #6F4E47;
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: -1;
  }

  .button:hover {
    box-shadow: 1px 1px 200px antiquewhite;
    color: #fff;
    border: none;
  }

  .type1:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
  }

  #sort {
  border: 2px solid #6F4E47;
  color: #9e7349;
  height: 40px;
  background-color: transparent; /* optional */
}
#sort option:first-child {
    border: 2px solid #6F4E47 !important;
  color: #6F4E47;
  background-color: #fff; /* optional */
}



footer{

     background:#EBDCCF;
     color: #FAF6F1;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position:relative ;


    /* margin-top: -45% !important; */
/* background-image: url(images/Design\ sans\ titre\ \(5\).png); */
}
footer a{


    font-weight: bolder;
    text-decoration: none;
    color: #FAF6F1 !important;

}

.socialmedia{
    background-color: white;
    color: #6F4E47;
    font-size: larger;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
}




footer .button {

    position: relative;
    z-index: 5;
   background-color: transparent;
    cursor: pointer;
    border: 2px solid black !important ;
    overflow: hidden;
    border-radius: 30px;

    transition: all 0.5s ease-in-out;
  }

 footer .btn-txt {
    color: #6F4E47 !important;
    z-index: 1;


  }
 footer .button:hover .btn-txt{
    color: #6F4E47 !important;
  }
 footer .type1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    transition: all 0.5s ease-in-out;
    background-color: white;
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: -1;
  }

 footer .button:hover {
    box-shadow: 1px 1px 200px #6F4E47;
    color: #fff;
    border: none;
  }

 footer .type1:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
  }
  footer .socialmedia {
    transition: transform 0.3s ease; /* Smooth transition */
    color: black !important;
}

footer .socialmedia:hover {
    transform: scale(1.1); /* Zoom effect on hover */
}
.footer_links a , .footer_links p{
    font-weight:lighter !important ;
    color: black !important;

}
.mobile-sidebar {
  display: none !important;
}
.acheter{
    background-color: #6F4E47;
    color: antiquewhite;
    padding: 15px;
    font-size: 20px;
    letter-spacing: 1.5px;
    border: none;
}
.taille {
    border: 2px solid #6F4E47;
    padding: 10px;
    width: fit-content !important;
    color: #6F4E47;
    background-color: transparent; /* Default background */
    cursor: pointer;
    transition: all 0.2s;
}

.taille.selectedT { /* Use .selectedT to match your JS */
    background-color: #6F4E47;
    color: #fff;
}
.quantity {
  display: flex;
  border: 2px solid #6F4E47;

  color: #6F4E47;
  border-radius: 0px; /* optional */
  overflow: hidden;
  width: 100%; /* fill full width like .acheter */
  padding: 0;
}

.qte {
  border: none;
  margin: 0;
  padding: 10px 0;
  font-size: 18px;
  text-align: center;
  user-select: none;
  flex-shrink: 0;
  color: #6F4E47;
}

.decrease-qty, .right {
  flex: 1;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6F4E47;
  /* border-right: 2px solid #9e7349; separator */
  border-radius: 0px;
}

.center {
  flex: 2;

  pointer-events: none;
  line-height: 1.5;
  /* border-right: 2px solid #9e7349; */
}

.right {
  border-right: none; /* last button no right border */
}

button:focus, input:focus {
  outline: none;
}


@media (max-width: 768px) {
    .acheter{
    background-color: #6F4E47;
    color: antiquewhite;
    padding: 15px;
    font-size: 18px;
    letter-spacing: 1.5px;
    border: none;
}
  .cart-drawer{
    width: 75vw;
  }
   .title , .instagram-browser .title{
    font-size: 16px !important;
    font-weight: 400 !important;
  }
  .desktop-navbar {
    display: none !important;
  }
  .mobile-navbar {
    display: flex;
  }
  .main-img{
    width: 100vw;
  }
  .second-img{
    display: none !important;
  }
  .product img{
    width: 100%;
    height: 280px;
    object-fit: cover;
  }
  .product_name , .product_price{
    font-size: 17px !important;
    color: #6F4E47 !important;
    font-weight: 500 !important;
  }
  .hero_img img{
  height: 80vh !important;
  object-fit: cover;
}

.Explorez{
  display:none;
}
.Explore{
  display: block !important;

}
.categories .category img {
  height: 300px;
  width: 100%;
  object-fit: cover;


  transition: transform 0.3s ease; /* Smooth transition for zoom effect */

}
.hero-section {
  position: relative;
  height:60vh;
  overflow: hidden;
  color: white;

}
.hero-section .brand-name{
  font-size: 14px;
}
.hero-section .unives{
  font-size: 20px;
}
.hero-section .subtitle{
  font-size: 15px;
  padding: 10px;
}
.hero-gallery img {
  width: 25vw;
  height: 30vh;
  object-fit: cover;
  filter: brightness(60%); /* darken for readability */
}




.mobile-sidebar {
  display: block !important;
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background-color: white;
  z-index: 1050;
  transition: left 0.3s ease;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  color: #6F4E47 !important;
}

.mobile-sidebar.open {
  left: 0;

}

.sidebar-content {
  padding: 2rem 1.5rem;

}

.sidebar-content .close-btn {
  font-size: 1.5rem;
  display: block;
  text-align: right;
  cursor: pointer;
}

.sidebar-content ul {
  list-style: none;
  padding: 0;
}

.sidebar-content ul li {
  margin: 1rem 0;
}

.sidebar-content ul li a {
  text-decoration: none;

  font-weight: 500;
   color: #6c584c !important;
}

.social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 1.5rem;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1040;
  display: none;
}
 .social  i{
  text-decoration: none !important;
  color: #6c584c ;
  font-size: 30px !important;
  border: 1px solid #6c584c;
  padding: 10px;
  border-radius: 3%;
}
.icons {
  font-weight: lighter !important;
  text-transform: uppercase !important;

  transition: color 0.2s;
  font-size: 13px !important;
}
.search-overlay input::placeholder {
  font-weight: lighter !important;
  color: #666;
  font-size: 13px !important;
}
footer .button .btn-txt {
    color: white !important;
}
.header_section , .header_section img {
    height: 80vh !important;

  }
  .text-content h2 {
    color: white !important;
  }
  .categories .category {
  text-decoration: none !important;
  position: relative;
}

.categories .category .image-container {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.categories .category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.categories .category .title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background:rgba(111, 78, 71, 0.8); /* Semi-transparent black background */
  color: white;
  padding: 15px;
  transition: all 0.3s ease;
}

.categories .category h6 {
  color: white; /* Changed from #6F4E47 to white for better visibility */
  text-decoration: none !important;
  margin: 0 !important; /* Remove margin since we're using padding on the overlay */
  font-weight: lighter !important;
  letter-spacing: 1.5px;
  line-height: 20px;
}

/* Optional hover effects */
.categories .category:hover img {
  transform: scale(1.05);
}

.categories .category:hover .title-overlay {
  background: rgba(111, 78, 71, 0.8); /* Use your brown color with transparency on hover */
}
}


.instagram-browser .icons i {
  font-weight: lighter !important;
  text-transform: uppercase !important;
  color: #6F4E47 !important;
  transition: color 0.2s;
  font-size: 15px !important;
}
.instagram-browser .search-overlay input::placeholder {
  font-weight: lighter !important;
  color: #6F4E47;
  font-size: 10px !important;
}
.instagram-browser .service h5{
font-size: 10px !important;
}
.instagram-browser .product .product_name{
  font-size: 12px;
}
.instagram-browser .product .product_price{
  font-size: 11px !important;
}
.instagram-browser .hero-section .brand-name{
  font-size: 10px;
}
.instagram-browser .hero-section .unives{
  font-size: 15px;
}
.instagram-browser .hero-section .subtitle{
  font-size: 10px;
  padding: 10px;
}
.instagram-browser .category h6{
  font-size: 10px !important;
}
.instagram-browser .sidebar-content ul li a {
  text-decoration: none;
 font-size: 12px !important;
  font-weight: 500;
   color: #6c584c !important;
}
.instagram-browser  .btn-txt {
    color: #d4a373 !important;
    z-index: 1;
    font-size: 11px !important;

}
.instagram-browser .suivant , .instagram-browser .cart-item h5 {

  letter-spacing: 1.5px;
  font-size: 15px;
}
.instagram-browser .acheter{
    background-color: #6F4E47;
    color: antiquewhite;
    padding: 15px;
    font-size: 17px !important;
    letter-spacing: 1.5px;
    border: none;
}

.instagram-browser .choose-options-btn{
    font-size: 13px !important;
}

.product-image-container {
  position: relative;
  overflow: hidden;
}

.product-image-container .product-image {
  display: block;
  width: 100%;
  transition: transform 0.2s ease;
  transform-origin: center center;
}

/* Lens overlay (optional, for debugging) */
.product-image-container::before {
  content: '';
  position: absolute;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  pointer-events: none;
  display: none; /* hide unless debugging */
}

.form-control , .form-select , .delivery-radios{
    border-radius: 0px;
    border: 1px solid #6F4E47;
}

/* Hide default radio */
.delivery input[type="radio"] {
  display: none;
}

/* Style the custom circle container */
.delivery .custom-radio .radio-checkmark {
  display: inline-block;
  width: 24px; /* bigger size */
  height: 24px;
  border: 2px solid #6F4E47; /* brown border */
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
}

/* Inner circle when checked */
.delivery input[type="radio"]:checked + label .radio-checkmark::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background-color: #6F4E47; /* brown inner circle */
  border-radius: 50%;
}

/* Optional: bigger text, spacing, etc. */
.delivery .custom-radio {
  font-size: 16px;
  cursor: pointer;
}
.form-label{
    color: #6F4E47;

}

.scrolling-bar {

  background-color: #6F4E47;
  color: #FAF6F1;


  text-transform: uppercase;
  overflow: hidden;
  padding: 10px 0;

  position: absolute;
  white-space: nowrap;
}

.scrolling-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.scrolling-text , .instagram-browser .scrolling-text {


  display: flex;
  flex-shrink: 0;
  font-size: 1rem !important;
   font-weight: 400;
  letter-spacing: 1.5px;
  padding-right: 4rem;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.about {
background-color: #6F4E47;

}


.about p{
 color: #FAF6F1;
 line-height: 40px;
}
.color-circle {
        width: 20px;
        height: 20px;
        border-radius: 3px;
        border: 1px solid #ddd;
        cursor: pointer;
        transition: transform 0.2s;
    }

    .color-circle:hover {
        transform: scale(1.2);
    }

    .size-badge {
        display: inline-block;
        padding: 2px 6px;
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 3px;
        font-size: 12px;
        color: #6F4E47;
    }

    .colors-container, .sizes-container {
        max-width: 100%;
        overflow: hidden;
    }
.color-shade-circle {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: all 0.2s;
}

.color-shade-circle:hover {
    transform: scale(1.2);
    border-color: #6F4E47;
}

.color-shade-circle.selected {
    border: 2px solid #6F4E47;
    transform: scale(1.1);
}

.size-badge {
    display: inline-block;
    padding: 2px 6px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 3px;
    font-size: 12px;
    color: #6F4E47;
}

.colors-container, .sizes-container {
    max-width: 100%;
    overflow: hidden;
}

/* For white or light colors, add a default border */
.color-shade-circle[style*="#fff"],
.color-shade-circle[style*="#ffffff"],
.color-shade-circle[style*="#FFF"],
.color-shade-circle[style*="#FFFFFF"],
.color-shade-circle[style*="white"] {
    border: 1px solid #ddd;
}
