/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  max-width: 100%;
  width: 100%;
  min-height: 100vh;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  border: none;
}

input {
  border: none;
  outline: none;
}

img {
  display: block;
  width: 100%;
}

.header {
  width: 100%;
  z-index: 2;
  overflow: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 10;
}
@media (min-width: 576px) {
  nav {
    height: 60px;
    padding: 0 1rem;
  }
}
@media (min-width: 768px) {
  nav {
    height: 84px;
    padding: 0 1.5rem;
  }
}
nav:hover, nav:active, nav:focus {
  background-color: #0B59DE;
}
nav .menu {
  cursor: pointer;
}
nav .icon {
  font-size: 1.3rem;
  color: #fff;
}
@media (min-width: 576px) {
  nav .icon {
    font-size: 1.5rem;
  }
}

.nav.active {
  background-color: #0B59DE;
}

.left_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.left_nav .logo {
  font-family: "Ubuntu", sans-serif;
  position: absolute;
  bottom: -85px;
  left: 0;
  margin-left: 1rem;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
@media (min-width: 576px) {
  .left_nav .logo {
    margin-left: 1rem;
  }
}
@media (min-width: 768px) {
  .left_nav .logo {
    position: static;
    bottom: 0;
    margin-left: 1.5rem;
  }
}
.left_nav .logo .logo_letter {
  min-height: 30px;
  min-width: 40px;
  font-size: 1.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
}
.left_nav .logo .first_letter {
  background-color: #FF0800;
  color: #0B59DE;
}
.left_nav .logo .last_letter {
  border: 2px solid #fff;
  color: #fff;
}

.right_nav .icon {
  padding-left: 1rem;
}
@media (min-width: 576px) {
  .right_nav .icon {
    padding-left: 1.5rem;
  }
}

.menu-slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  overflow-y: auto;
  z-index: 3;
}
@media (min-width: 400px) {
  .menu-slider {
    width: 80%;
  }
}
@media (min-width: 576px) {
  .menu-slider {
    width: 60%;
  }
}
@media (min-width: 768px) {
  .menu-slider {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .menu-slider {
    width: 40%;
  }
}
@media (min-width: 1200px) {
  .menu-slider {
    width: 30%;
  }
}

.menu-slider.translate {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

.menu-slider__header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
  padding-inline: 2rem;
  padding-block: 1.5rem;
}
.menu-slider__header .close-btn .icon {
  color: black;
  cursor: pointer;
}
.menu-slider__header .logo {
  font-family: "Ubuntu", sans-serif;
  left: 0;
  margin-left: 1rem;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
@media (min-width: 576px) {
  .menu-slider__header .logo {
    margin-left: 1rem;
  }
}
@media (min-width: 768px) {
  .menu-slider__header .logo {
    position: static;
    bottom: 0;
    margin-left: 1.5rem;
  }
}
.menu-slider__header .logo .logo_letter {
  min-height: 30px;
  min-width: 40px;
  font-size: 1.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
}
.menu-slider__header .logo .first_letter {
  background-color: #FF0800;
  color: #0B59DE;
}
.menu-slider__header .logo .last_letter {
  border: 2px solid #fff;
  color: #e9ecef;
}

.menu-slider__body li {
  border-top: 1px solid #e9ecef;
  -webkit-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
  font-family: "Oswald", sans-serif;
}
.menu-slider__body li:last-child {
  border-bottom: 1px solid #e9ecef;
}
.menu-slider__body li .link {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  color: #212529;
  font-weight: 500;
  display: block;
  padding-block: 1rem;
  padding-inline: 2rem;
  letter-spacing: 2px;
}

.menu-slider__body.anim {
  -webkit-animation: trans 1s forwards;
          animation: trans 1s forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

@-webkit-keyframes trans {
  from {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    -webkit-transform: opacity(0);
            transform: opacity(0);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transform: opacity(1);
            transform: opacity(1);
  }
}

@keyframes trans {
  from {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    -webkit-transform: opacity(0);
            transform: opacity(0);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transform: opacity(1);
            transform: opacity(1);
  }
}
.menu-slider__footer {
  margin-block: 2rem 2rem;
  -webkit-transform: translateX(-100px);
      -ms-transform: translateX(-100px);
          transform: translateX(-100px);
  font-family: "Oswald", sans-serif;
}
.menu-slider__footer a {
  display: block;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  color: #343a40;
  font-family: "Oswald", sans-serif;
  font-size: 0.875rem;
  padding-block: 0.2rem;
  margin-inline: 2rem;
  font-weight: 300;
  position: relative;
}
.menu-slider__footer a:hover:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.3px;
  background-color: #adb5bd;
}

.menu-slider__footer.anim-two {
  -webkit-animation: trans-two 1s forwards;
          animation: trans-two 1s forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes trans-two {
  from {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    -webkit-transform: opacity(0);
            transform: opacity(0);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transform: opacity(1);
            transform: opacity(1);
  }
}

@keyframes trans-two {
  from {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    -webkit-transform: opacity(0);
            transform: opacity(0);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transform: opacity(1);
            transform: opacity(1);
  }
}
.menu_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  display: none;
}

.menu_overlay.translate-right {
  display: block;
}

.hero {
  width: 100%;
  height: 80vh;
  max-height: 80vh;
  position: relative;
  top: 0;
  left: 0;
}
.hero .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero .slide img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-position: 15% top;
     object-position: 15% top;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero_text {
  height: 30%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-50%, 50%);
      -ms-transform: translateX(-50%, 50%);
          transform: translateX(-50%, 50%);
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.01)), color-stop(rgba(0, 0, 0, 0.08)), color-stop(rgba(0, 0, 0, 0.1)), color-stop(rgba(0, 0, 0, 0.2)), color-stop(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.5)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  padding-inline: 2rem;
  z-index: 1;
}
.hero .hero_text h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: 2px;
  color: white;
}
.hero .hero_text h2 a {
  color: white;
}
.hero .new_arrivals_btn {
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  padding: 0.65rem 2rem;
  border: 2px solid #ced4da;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-transition: border 0.4s;
  -o-transition: border 0.4s;
  transition: border 0.4s;
}
.hero .new_arrivals_btn:hover {
  border: 2px solid white;
}

.main {
  margin-top: 1rem;
}

.new-arrivals {
  padding-inline: 1rem;
}
.new-arrivals .new-arrivals__container {
  position: relative;
}
.new-arrivals .heading {
  padding: 2rem 0;
}
.new-arrivals .heading h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
}
.new-arrivals .controls {
  display: none;
}
.new-arrivals .controls .prev,
.new-arrivals .controls .next {
  position: absolute;
  z-index: 2;
  border: 1.5px solid black;
  cursor: pointer;
}
.new-arrivals .controls .prev i,
.new-arrivals .controls .next i {
  font-size: 1.5rem;
  font-weight: 100;
  display: block;
  padding-block: 0.5rem;
  z-index: 1;
}
.new-arrivals .controls .prev {
  top: 50%;
  left: 0px;
}
.new-arrivals .controls .next {
  top: 50%;
  right: 0px;
}

.wrapper {
  width: 100%;
  position: relative;
}
.wrapper i:active {
  -webkit-transform: translateY(-50%) scale(0.85);
      -ms-transform: translateY(-50%) scale(0.85);
          transform: translateY(-50%) scale(0.85);
}
.wrapper .carousel {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(90.9090909091% - 12px);
  gap: 1rem;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-transition: scroll 1s;
  -o-transition: scroll 1s;
  transition: scroll 1s;
}
@media (min-width: 300px) {
  .wrapper .carousel {
    grid-auto-columns: calc(40% - 9px);
  }
}
@media (min-width: 450px) {
  .wrapper .carousel {
    grid-auto-columns: calc(28.5714285714% - 9px);
    gap: 1.5rem;
  }
}
@media (min-width: 750px) {
  .wrapper .carousel {
    grid-auto-columns: calc(22.2222222222% - 9px);
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .wrapper .carousel {
    grid-auto-columns: calc(18.1818181818% - 9px);
  }
}
.wrapper .carousel.no-transition {
  scroll-behavior: auto;
}
.wrapper .carousel::-webkit-scrollbar {
  display: none;
}
.wrapper .carousel.dragging {
  scroll-behavior: auto;
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}
.wrapper .carousel .product {
  scroll-snap-align: start;
  overflow: hidden;
}
.wrapper .carousel.dragging .product {
  -webkit-user-select: none;
     -moz-user-select: none;
          -ms-user-select: none;
      user-select: none;
  cursor: -webkit-grab;
  cursor: grab;
}

.products {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  font-family: "Open Sans", sans-serif;
}
.products .product .product-img {
  display: block;
  min-height: 250px;
  position: relative;
  border-radius: 0.3rem;
  overflow: hidden;
}
.products .product .product-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.products .product .product-info {
  padding-block: 0.75rem;
}
.products .product .product-info-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 0.3rem;
}
.products .product .product-info-top {
  padding-bottom: 0.3rem;
}
.products .product .product-info-bottom {
  padding-bottom: 0.3rem;
}
.products .product .product-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: black;
}
.products .product .price,
.products .product .add-to-cart {
  font-size: 0.75rem;
  font-weight: 700;
  color: black;
}
.products .product .old-price {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 0, 0, 0.185);
  text-decoration: line-through;
  margin-right: 0.5rem;
}
.products .product .add-to-cart {
  font-weight: 500;
}
.products .product .available-colors {
  font-size: 0.75rem;
  font-weight: 300;
  color: #6c757d;
}

@media (min-width: 300px) {
  .products .price,
  .products .add-to-cart {
    font-size: 0.875rem;
  }
}
@media (min-width: 600px) {
  .products .price,
  .products .add-to-cart {
    font-size: 1rem;
  }
}
.shop-by-categorie {
  padding-inline: 1rem;
}
.shop-by-categorie .shop-by-categorie__container {
  position: relative;
}
.shop-by-categorie .heading {
  padding: 2rem 0;
}
.shop-by-categorie .heading h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.shop-by-categorie .controls {
  display: none;
}
.shop-by-categorie .controls .prev,
.shop-by-categorie .controls .next {
  position: absolute;
  z-index: 2;
  border: 1.5px solid black;
  cursor: pointer;
}
.shop-by-categorie .controls .prev i,
.shop-by-categorie .controls .next i {
  font-size: 1.5rem;
  font-weight: 100;
  display: block;
  padding-block: 0.5rem;
  z-index: 1;
}
.shop-by-categorie .controls .prev {
  top: 50%;
  left: 0px;
}
.shop-by-categorie .controls .next {
  top: 50%;
  right: 0px;
}

.categories {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  padding-bottom: 1rem;
}
.categories .categorie {
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.categories .categorie .categorie-img {
  display: block;
  min-height: 200px;
  position: relative;
  border-radius: 0.3rem;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .categories .categorie .categorie-img {
    min-height: 250px;
  }
}
.categories .categorie .categorie-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.categories .categorie .categorie-img .name {
  z-index: 1;
  height: 20%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  padding-block: 0.75rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), color-stop(rgba(0, 0, 0, 0.3)), color-stop(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.7)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  text-align: center;
  font-size: 1.125rem;
  font-family: "Open Sans", sans-serif;
}
.categories .categorie .categorie-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: black;
}

@media (min-width: 300px) {
  .about-brand .about-text p {
    font-size: 0.875rem;
  }
}
@media (min-width: 600px) {
  .about-brand .about-text p {
    font-size: 1rem;
  }
}
/* ===== ABOUT BRAND SECTION ===== */
.about-brand {
  background: #fff;
  padding: 3rem 1rem;
  font-family: "Open Sans", sans-serif;
}
.about-brand .about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}
.about-brand .about-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.about-brand .about-text h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.about-brand .about-text p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}
.about-brand .about-btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  color: black;
  border-bottom: 2px solid black;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about-brand .about-btn:hover {
  color: #d4af37; /* gold accent */
  border-color: #d4af37;
}
.about-brand .about-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.about-brand .about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 300px) {
  .about-brand .about-text p {
    font-size: 0.875rem;
  }
}
@media (min-width: 600px) {
  .about-brand .about-text p {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .about-brand .about-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }
}
/* ===== PROMO BANNER STYLING ===== */
.promo-banner {
  background: -webkit-gradient(linear, left top, right top, from(#000), color-stop(40%, #222), color-stop(rgba(0, 0, 0, 0.8784313725)), to(#222));
  background: -o-linear-gradient(left, #000, #222 40%, rgba(0, 0, 0, 0.8784313725), #222);
  background: linear-gradient(90deg, #000, #222 40%, rgba(0, 0, 0, 0.8784313725), #222);
  color: white;
  padding: 1.5rem 1rem;
  font-family: "Oswald", sans-serif;
  position: relative;
}
.promo-banner .promo-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  text-align: center;
}
.promo-banner .promo-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.promo-banner .promo-content h2 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin: 0;
}
.promo-banner .promo-content h2 span {
  color: #f4d35e; /* gold highlight */
}
.promo-banner .promo-btn {
  border: 2px solid white;
  padding: 0.4rem 1rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: white;
  margin-top: 0.5rem;
}
.promo-banner .promo-btn:hover {
  background: white;
  color: black;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 480px) {
  .promo-banner .promo-content h2 {
    font-size: 1.1rem;
  }
}
@media (min-width: 768px) {
  .promo-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .promo-content h2 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .promo-content h2 {
    font-size: 1.4rem;
  }
  .promo-btn {
    padding: 0.75rem 1.7rem;
    font-size: 0.9rem;
  }
}
/* ===== LOOKBOOK BASE ===== */
.lookbook {
  background: #fff;
  padding: 3rem 1rem;
  text-align: center;
  font-family: "Oswald", sans-serif;
}

.lookbook-title {
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.lookbook-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 0.75rem;
  color: #555;
  margin-bottom: 2rem;
}

.lookbook-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.lookbook-item {
  position: relative;
  overflow: hidden;
}

.lookbook-item img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.lookbook-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem;
  text-align: center;
}

.lookbook-item:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.lookbook-item:hover .lookbook-overlay {
  opacity: 1;
}

.lookbook-btn {
  display: inline-block;
  margin-top: 2rem;
  text-decoration: none;
  border: 2px solid black;
  padding: 0.5rem 1.2rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: black;
}

.lookbook-btn:hover {
  background: black;
  color: white;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
/* Tablets */
@media (min-width: 300px) {
  .lookbook-subtitle {
    font-size: 0.875rem;
  }
}
@media (min-width: 600px) {
  .lookbook-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .lookbook-subtitle {
    font-size: 1rem;
  }
}
/* Desktops */
@media (min-width: 992px) {
  .lookbook-grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
  .lookbook-title {
    font-size: 2rem;
  }
  .lookbook-subtitle {
    font-size: 1.1rem;
  }
  .lookbook-overlay {
    font-size: 1.1rem;
  }
}
/* ===== TESTIMONIALS BASE ===== */
.testimonials {
  background: #f8f8f8;
  padding: 3rem 1rem;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  position: relative;
  margin-inline: auto;
}
@media (min-width: 300px) {
  .testimonials .carousel {
    grid-auto-columns: calc(100% - 9px);
  }
}
@media (min-width: 450px) {
  .testimonials .carousel {
    grid-auto-columns: calc(100% - 9px);
    gap: 1.5rem;
  }
}
@media (min-width: 750px) {
  .testimonials .carousel {
    grid-auto-columns: calc(100% - 9px);
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .testimonials .carousel {
    grid-auto-columns: calc(100% - 9px);
  }
}

.testimonials-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.testimonials-subtitle {
  color: rgba(102, 102, 102, 0.1843137255);
  font-size: 5rem;
  margin-inline: auto;
  max-height: 10rem;
}

.testimonial-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: calc(100% - 9px);
  gap: 1rem;
}
@media (min-width: 600px) {
  .testimonial-grid {
    grid-auto-columns: calc(50% - 9px);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .testimonial-grid {
    grid-auto-columns: calc(33.3333333333% - 9px);
  }
}
@media (min-width: 1200px) {
  .testimonial-grid {
    grid-auto-columns: calc(25% - 9px);
    max-width: 100%;
  }
}

.carousel.no-transition {
  scroll-behavior: auto;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel.dragging {
  scroll-behavior: auto;
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

.carousel .testimonial-card {
  scroll-snap-align: start;
  padding-bottom: 15px;
  overflow: hidden;
}

.carousel.dragging .testimonial-card {
  -webkit-user-select: none;
     -moz-user-select: none;
          -ms-user-select: none;
      user-select: none;
  cursor: -webkit-grab;
  cursor: grab;
}

.testimonial-card {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* .testimonial-avatar {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  display: none;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
} */
blockquote {
  font-style: italic;
  font-size: 1.25rem;
  color: #333;
  position: relative;
}
@media (min-width: 568px) {
  blockquote {
    font-size: 1.5rem;
  }
}

.testimonial-name {
  margin-top: 1rem;
  font-weight: 600;
  color: #444;
}

/* ===== RESPONSIVE 

BREAKPOINTS ===== */
/* Desktops */
@media (min-width: 992px) {
  .testimonials-title {
    font-size: 2rem;
  }
  .testimonials-subtitle {
    font-size: 5rem;
  }
  blockquote {
    font-size: 2rem;
    padding-inline: 3rem;
  }
}
/* ===== NEWSLETTER BASE ===== */
.newsletter {
  background: -webkit-gradient(linear, left top, right top, from(#1a1818), color-stop(#615e5e), to(#1a1818));
  background: -o-linear-gradient(left, #1a1818, #615e5e, #1a1818);
  background: linear-gradient(90deg, #1a1818, #615e5e, #1a1818);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

.newsletter-content {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.newsletter h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.newsletter p {
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.newsletter-form {
  width: 100%;
  gap: 0.8rem;
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 0.75rem;
  padding-right: 6rem;
  border: 1px solid #f8f9fa;
  outline: none;
  background-color: transparent;
  font-size: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.newsletter-form input:active {
  border: 1px solid white;
}

.newsletter-form input::-moz-placeholder {
  color: white;
}

.newsletter-form input::-webkit-input-placeholder {
  color: white;
}

.newsletter-form input:-ms-input-placeholder {
  color: white;
}

.newsletter-form input::-ms-input-placeholder {
  color: white;
}

.newsletter-form input::placeholder {
  color: white;
}

.newsletter-form button {
  color: #fff;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
/* Tablet & up */
@media (min-width: 600px) {
  .newsletter-info {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 60%;
            flex: 1 1 60%;
  }
  .newsletter-form {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
  }
  .newsletter-form input {
    width: 100%;
    display: block;
    color: white;
  }
  .newsletter-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/* Desktop adjustments */
@media (min-width: 768px) {
  .newsletter {
    padding: 3rem;
  }
}
/* Desktop adjustments */
@media (min-width: 992px) {
  .newsletter {
    padding: 4rem;
  }
  .newsletter h2 {
    font-size: 2.2rem;
  }
  .newsletter p {
    font-size: 1.1rem;
  }
}
/* ===== FOOTER BASE 

===== */
.footer {
  background: #111;
  color: #ccc;
  font-family: "Open Sans", sans-serif;
  padding-top: 2rem;
  text-align: center;
}

.footer-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer .footer-logo {
  font-family: "Ubuntu", sans-serif;
  text-align: justify;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
.footer .footer-logo .logo_letter {
  height: 30px;
  width: 40px;
  font-size: 1.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  margin-inline: auto;
}
.footer .footer-logo .first_letter {
  background-color: #FF0800;
  color: #0B59DE;
}
.footer .footer-logo .last_letter {
  border: 2px solid #fff;
  color: #fff;
}

.footer-about {
  font-size: 0.75rem;
  color: #aaa;
  text-align: left;
  margin-top: 1rem;
}

.footer h4 {
  font-size: 0.8rem;
  color: white;
  margin-bottom: 0.8rem;
}

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

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.75rem;
}

.footer ul li a:hover {
  color: white;
}

.payment-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 300px) {
  .payment-icons {
    display: block;
  }
}

.payment-icons img {
  font-size: 3rem;
  height: 35px;
  margin-right: 0.5rem;
  width: auto;
  padding-block: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  color: #777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    padding-inline: 4rem;
  }
}
@media (min-width: 992px) {
  .footer-bottom {
    padding-inline: 10rem;
  }
}

.social-icons a {
  display: inline-block;
  margin-right: 0.6rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  color: #adb5bd;
  font-size: 1.125rem;
}

.social-icons a:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (min-width: 300px) {
  .footer-about {
    font-size: 0.875rem;
  }
  /*  .footer ul li a {
     font-size: 0.875rem;
   } */
  .footer-content {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
}
@media (min-width: 600px) {
  .footer-about {
    font-size: 1rem;
  }
  .footer-content {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-about {
    font-size: 0.9rem;
  }
  /*  .footer h4 {
     font-size: 1rem;
   }
   .footer ul li a {
     font-size: 0.9rem;
   } */
}