@import url("https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Beau+Rivage&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: Edwardian Script ITC;
  src: url(../assets/Font/ITCEDSCR.TTF);
}
:root {
  --primary-color: #ffffff;
  --quad-color: #fbf6f3;
  --secondary-color: #c0a483;
  --secondary-color-15: #c0a48326;
  --border-color: #ffffff4d;
  --tertiary-color: #991421;
  --animation-duration: 12s;
  --services-totalItems: 5;
  --services-totalItems2: 4;
  --animation-duration2: 10s;
}
body,
html {
  overflow-x: hidden;

  font-family: "El Messiri", sans-serif;
}
a {
  display: inline-block;
  text-decoration: none;
}
.container {
  max-width: 1870px !important;
}
.container2 {
  max-width: 1543px !important;
}
.col53 {
  width: 53%;
  padding: 0 10px;
}
.col47 {
  width: 47%;
  padding: 0 10px;
}
.col39 {
  width: 39%;
  padding: 0 10px;
}

.col35 {
  width: 35%;
  padding: 0 10px;
}
.col26 {
  width: 26%;
  padding: 0 10px;
}
.col20 {
  width: 20%;
  padding: 0 10px;
}
.active {
  color: var(--primary-color) !important;
}
.active::before {
  width: 100% !important;
}

.btn-primary {
  background: none !important;
  color: var(--primary-color);
  font-size: 20px;
  padding: 14px 25px;
  font-weight: 500;
  border: none !important;
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;

  transform: translateX(100%);
}

.btn-primary:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;

  transform: translateX(-100%);
}

.btn-primary:hover:before {
  border-color: var(--primary-color);
  height: 100%;
  transform: translateX(0);
  transition: 0.3s transform linear, 0.3s height linear 0.3s;
}

.btn-primary:hover:after {
  border-color: var(--primary-color);
  height: 100%;
  transform: translateX(0);
  transition: 0.3s transform linear, 0.3s height linear 0.5s;
}
.btn-secondary {
  padding-block: 25.5px;
  font-size: 30px;
  outline: 2px solid var(--tertiary-color);
  color: #000;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s linear;
}
.btn-secondary::before,
.btn-secondary::after {
  content: "";
  position: absolute;
  width: 0;
  top: 0;
  height: 100%;
  background: var(--tertiary-color);
  transform: skew(20deg);
  transition: all 0.3s linear;
  overflow: hidden;
  z-index: -1;
}
.btn-secondary::before {
  left: -18px;
}
.btn-secondary::after {
  right: -18px;
}
.btn-secondary:hover::before,
.btn-secondary:hover::after {
  width: 68%;
}
.btn-secondary:hover {
  color: var(--primary-color);
  font-weight: 600;
}
.btn-secondary i {
  transition: all 0.4s ease;
}
.btn-secondary:hover > i {
  animation: spinArrow 0.6s ease forwards;
}

@keyframes spinArrow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.title1 {
  color: var(--primary-color);
  font-size: 70px;
  font-weight: 500;
  margin-bottom: 0 !important;
}
.title2 {
  font-size: 32px;
  font-weight: 500;
  color: #000;
  letter-spacing: 1.28px;
}
.sec-hdr > .title1 {
  letter-spacing: 0.7px;
  color: #000;
  margin: 9px 0 55px !important;
}
.sec-hdr > p {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.6px;
}
.title3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-color);
}
.cursor {
  mix-blend-mode: difference;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: var(--quad-color);
  transform: rotate(325deg);
  position: fixed;
  z-index: 9999;
}
/* Fade-out animation */
.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Spinner */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
  z-index: 9999;
}
.spinner {
  --gap: 8px;
  --clr: var(--secondary-color);
  --height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
}

.spinner span {
  background: var(--clr);
  width: 10px;
  height: var(--height);
  animation: grow 1s ease-in-out infinite;
}

.spinner span:nth-child(2) {
  animation-delay: 0.15s;
}
.spinner span:nth-child(3) {
  animation-delay: 0.3s;
}
.spinner span:nth-child(4) {
  animation-delay: 0.475s;
}

@keyframes grow {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.8);
  }
}

/* Main content transitions */
.hidden {
  display: none;
}

.show {
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease;
}
/* Back TO Top */
.back-to-top-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 52px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  font-size: 30px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 15px #f4d7b7;
  transition: all 0.3s ease;
}

.back-to-top-fixed.show {
  display: flex;
}
/* Navbar Section */
.hdr-sec {
  padding: 15px 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  border-bottom: 1px solid var(--border-color);
}
.navbar-brand {
  width: 168px;
  padding: 0 !important;
  margin: 0 !important;
}
.navbar-brand > a {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.offcanvas {
  flex-direction: row;
}
.nav-item {
  margin-right: 50px;
}
.nav-link {
  font-size: 20px !important;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 !important;
  color: var(--primary-color) !important;
  position: relative;
  transition: all 0.3s linear;
}
.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
  top: 100%;
  width: 0%;
  transition: all 0.5s linear;
}
.down-arrow:hover::before {
  width: 0% !important;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}
.nav-link:hover::before {
  width: 100%;
}

.navbar-nav > li:last-child {
  margin-right: 0;
}
.navbar-nav > li:nth-child(4) {
  margin-right: 91px !important;
}
.dropdown-toggle::after {
  display: none;
}
.dropdown-menu {
  padding-block: 20px 10px;
}
.dropdown-item {
  margin-bottom: 10px;
}
.nav-btn {
  margin-right: 22px !important;
}
.search-btn {
  background: none !important;
  border: none !important;
}
.love-icon {
  margin-inline: 29px 28px;
}
.cart-icon {
  position: relative;
}
.cart-icon::before {
  content: "0";
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 24px;
  height: 26px;
  border-radius: 50%;
  bottom: 14px;
  left: 19.83px;
  background-color: var(--secondary-color);
}
/* Banner Section */
.banner-sec {
  background: url(../assets/product/Banner-bg.png) no-repeat center/cover;
  min-height: 80vh;
  background-attachment: fixed;
}
.brdcrumb {
  max-width: 233px;
}
.brd-link {
  color: var(--primary-color);
  font-size: 25px;
  font-weight: 500;
}
/* Discount Section */
.disc-sec {
  padding: 23px 0;
}
.auto-scroll {
  padding-block: 27px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #ffffff 0%, #d7aa76 100%);
  border: 1px solid var(--tertiary-color);
}
.auto-scroll-itms {
  font-size: 30px;
  white-space: nowrap;
  letter-spacing: 1.2px;
  font-weight: 600;
  background: linear-gradient(to right, #991421 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  animation: rightTOLeft linear infinite;
  animation-duration: var(--animation-duration);
  animation-delay: calc(
    var(--animation-duration) / var(--services-totalItems) *
      ((var(--services-totalItems) - var(--i)) * -1)
  );
}
.auto-scroll-itms > img {
  max-width: 23px;
}
.scroll-item1 > img {
  margin-right: 24px;
}
.scroll-item2 > img,
.scroll-item5 > .img1 {
  margin-right: 31px;
}
.scroll-item3 > img {
  margin-right: 28px;
}
.scroll-item4 > img {
  margin-right: 48px;
}

@keyframes rightTOLeft {
  0% {
    right: -20%;
  }
  100% {
    right: 97%;
  }
}
/* Option Section */
.option-sec {
  padding: 93px 0 114px;
}
.option-btn {
  width: 100%;
}
.option-btn > .btn-secondary {
  width: 100%;
}
.option-btn {
  margin-bottom: 40px !important;
}
.bottom-row {
  margin-bottom: 0 !important;
}
/* Spotlight Section */
.spot-sec {
  padding-bottom: 94px;
}
.spot-hdr {
  margin-bottom: 20px;
}
.swiper {
  width: 100%;
  height: 100%;
}
.spot-img {
  max-width: 343px;
  height: 338px;
  margin: 0 auto;
}
.spot-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.spot-container > p {
  font-size: 24px;
  margin-top: 33px;
  font-weight: 500;
  letter-spacing: 0.96px;
}
/* Gifting Section */
.gift-sec {
  padding-bottom: 80px;
}
.gift-hdr {
  margin-bottom: 20px;
}
.gift-img {
  max-width: 357px;
  margin: 0 auto;
}
.gift-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gift-container > p {
  font-size: 24px;
  margin-top: 12px;
  font-weight: 500;
  letter-spacing: 0.96px;
}
.gift-btn {
  margin-top: 20px;
}
.gift-btn > .btn-secondary {
  padding: 5px 26px;
  border-radius: 38px;
  background: var(--tertiary-color);
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.gift-btn > .btn-secondary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 0%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  transition: width 0.4s ease;
  border-radius: 38px;
}

.gift-btn > .btn-secondary:hover::after {
  width: 120%;
}

.gift-btn > .btn-secondary:hover {
  color: var(--tertiary-color);
}
/* Best Seller Section */
.best-sec {
  padding-bottom: 112px;
}
.best-hdr {
  margin-bottom: 20px;
}

.best-img {
  width: 100%;
  margin-bottom: 11px;
}
.best-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.best-cntn {
  max-width: 321px;
  margin: 0 auto;
  height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.best-cntn > p {
  font-size: 24px;
  margin: 0 !important;
  font-weight: 500;
  letter-spacing: 0.96px;
}
.best-btn > .btn-secondary {
  padding: 13px 24.5px !important;
  border: none;
}
.best-btn > .btn-secondary:hover {
  border: 2px solid var(--tertiary-color);
}
/* Modal */
#cartModal {
  position: fixed;
  top: 20px;
  left: 20px;
}
#cartModal .modal-content {
  background: var(--quad-color);
  color: var(--tertiary-color);
  border-radius: 12px;
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
#cartModal .modal-title {
  font-size: 24px !important;
  font-weight: 500;
}
.modal-backdrop.show {
  opacity: 0.6;
}
/* Discovery Section */
.disco-sec {
  padding-bottom: 117px;
}
.disco-hdr {
  margin-bottom: 10px;
}
.disco-img {
  max-width: 343px;
  height: 338px;
  margin: 0 auto 11px;
}
.disco-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.disco-container > p {
  font-size: 24px;
  margin: 0 !important;
  font-weight: 500;
  letter-spacing: 0.96px;
}
.swiper-button-next,
.swiper-button-prev {
  color: #000;
}
/* New Arrival Section */
.new-sec {
  padding-bottom: 117px;
}
.new-hdr {
  margin-bottom: 20px;
}
.trend-img {
  max-width: 435px;
  height: 439px;
  border: 1px solid #80808080;
  position: relative;
}
.trend-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trend-swiper .bttl-desc > span {
  color: #000;
}
.price {
  font-size: 20px;
  color: var(--tertiary-color);
}
.price > span {
  color: #57565b;
}
.trend-img::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: var(--secondary-color-15);
  transition: height 0.8s ease;
  z-index: 1;
}
.trend-img:hover::before {
  height: 100%;
}
.discount {
  position: absolute;
  left: 13px;
  top: 13px;
  width: 66px;
  padding: 4px 14px 2px;
  font-size: 20px;
  color: var(--primary-color);
  background-color: var(--tertiary-color);
  animation: flickerHot 0.15s infinite alternate;
}
@keyframes flickerHot {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.hover-icon {
  position: absolute;
  right: 13px;
  top: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s ease;
  z-index: 10;
}
.hover-icon > button {
  background: var(--secondary-color);
  padding: 5px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.hover-icon > button:hover {
  transform: scale(1.1);
}
.trend-img:hover .hover-icon {
  opacity: 1;
  transform: translateY(0);
}

.rating {
  margin-block: 11px;
}
.review {
  font-size: 18px;
  color: #6b697d;
  margin-left: 10px;
}
.bttl-desc span:first-child {
  max-width: 356px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -1.1px;
}
.bttl-desc span:last-child {
  display: block;
  font-size: 20px;
  color: #000;
}
/* Brand Section */
.brand-sec {
  padding: 58px 0 118px;
}
.brand-hdr {
  margin-bottom: 40px;
}
.brand-wrpr {
  border-block: 1px solid #00000080;
  /* height: 240px; */
  /* padding: 49px 0 70px; */
}
.brand-item {
  border-right: 1px solid #00000080;
  height: 240px;
}
.sec-brand {
  padding-top: 20px;
}
.last-brand {
  border: none;
  padding-top: 30px;
}
.brand-img-wrpr {
  margin: 0 auto;
}
.brand-img-wrpr1 {
  max-width: 207px;
}
.brand-img-wrpr2 {
  max-width: 177px;
}
.brand-img-wrpr3 {
  max-width: 202px;
}
.brand-img-wrpr4 {
  max-width: 196px;
}
.brand-img-wrpr > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Sign Up Section */
.sign-sec-wrpr {
  background: var(--secondary-color);
  padding: 68px 0;
}
.signup-hdr {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1.28px;
  color: var(--primary-color);
}
.signup-left > p {
  font-size: 20px;
  margin-top: 15px;
  letter-spacing: 0.8px;
  color: var(--primary-color);
}
.signup-form {
  max-width: 897px;
}
#mail-input {
  width: 75%;
  background: none;
  background-color: var(--primary-color);
  padding: 37px 0 37px 42px;
  border: none;
}
#mail-input::placeholder {
  font-size: 20px;
  font-weight: 600;
  color: #57565b;
}
#submit-btn {
  width: 24.4%;
  font-size: 32px;
  padding: 27.5px 44.5px;
  color: var(--primary-color);
  background-color: #000;
  border: none;
  letter-spacing: 1.28px;
}
/* Popup Section */
.popup-noti {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--quad-color);
  color: var(--tertiary-color);
  border-radius: 12px;
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  padding: 12px 20px;
  font-size: 15px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.popup-noti.show {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Section */
.ftr-sec {
  background-color: #000;
}
.footer-top {
  padding: 114px 0 70px;
  border-bottom: 1px solid var(--primary-color);
}
.ftr-list1-wrpr {
  max-width: 263px;
}
.list-hdr {
  font-size: 22px;
  letter-spacing: 0.66px;
  color: var(--primary-color);
  margin-bottom: 35px;
}
.ftr-list > li,
.ftr-list > li > a {
  font-size: 20px;
  letter-spacing: 0.2px;
  color: var(--primary-color) !important;
}
.ftr-list > li {
  margin-bottom: 11px;
}
.ftr-links {
  position: relative;
  transition: all 0.2s linear;
}
.ftr-links::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
  top: 100%;
  width: 0%;
  transition: all 0.5s linear;
}
.ftr-links:hover {
  transform: translateY(-5px);
}
.ftr-links:hover::before {
  width: 100%;
}
.scl-list {
  margin-top: 41px;
}
.scl-links {
  margin-right: 35px;
}
.scl-links > a {
  width: 24px;
  transition: transform 0.3s ease;
}
.scl-links > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scl-links > a:hover {
  transform: translateY(-3px) scale(1.2);
}

.down-sec > a {
  max-width: 227px;
}
.down-sec > a > img {
  width: 100%;
  height: 100%;
}
.play-wrpr {
  margin-top: 44px;
}
.footer-btm {
  padding: 31px 20px;
}
.ftr-img > a {
  max-width: 170px;
}
.ftr-img > a > img {
  width: 100%;
  height: 100%;
}
.land-sec {
  padding: 14.5px 53px 17px 34px;
  border: 2px solid var(--primary-color);
  border-radius: 19px;
}
.land-sec > span {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: -0.48px;
  margin-left: 8px;
}
.pay-list {
  max-width: 267px;
  margin-left: 41px;
}
.pay-list > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Responsive Section */
@media screen and (max-width: 1750px) {
  .btn-primary {
    font-size: 18px;
  }
  .title3 {
    font-size: 33px;
  }
  /* Navbar Section */

  .navbar-nav > li:nth-child(4) {
    margin-right: 70px !important;
  }
  .nav-item {
    margin-right: 40px;
  }
  .nav-link {
    font-size: 18px !important;
  }
  .nav-btn {
    margin-right: 14px !important;
  }
  .love-icon {
    margin-inline: 20px;
  }
  .cart-icon {
    margin-right: 20px;
  }
  /* Discount Section */
  .auto-scroll-itms {
    font-size: 24px;
  }
  .scroll-item1 > img {
    margin-right: 18px;
  }
  .scroll-item2 > img,
  .scroll-item5 > .img1 {
    margin-right: 25px;
  }
  .scroll-item3 > img {
    margin-right: 22px;
  }
  .scroll-item4 > img {
    margin-right: 35px;
  }
  /* Sign Up Section */
  #submit-btn {
    width: 27.4%;
    font-size: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .title3 {
    font-size: 25px;
  }
  /* Navbar Section */

  .navbar-nav > li:nth-child(4) {
    margin-right: 50px !important;
  }
  .nav-item {
    margin-right: 30px;
  }
  /* Discount Section */
  .auto-scroll-itms {
    font-size: 20px;
  }
  .scroll-item1 > img {
    margin-right: 14px;
  }
  .scroll-item2 > img,
  .scroll-item5 > .img1 {
    margin-right: 20px;
  }
  .scroll-item3 > img {
    margin-right: 18px;
  }
  .scroll-item4 > img {
    margin-right: 28px;
  }
  /* New Arrival Section */
  .trend-img {
    height: 400px;
  }
  /* Sign Up Section */
  #submit-btn {
    width: 29.4%;
    font-size: 28px;
    padding: 27.5px 32.5px;
  }
}
@media screen and (max-width: 1200px) {
  .btn-secondary {
    padding-block: 22.5px;
    font-size: 24px;
  }
  .title3 {
    font-size: 20px;
  }
  .sec-hdr > .title1 {
    font-size: 60px;
    margin: 9px 0 24px !important;
  }
  /* Navbar Section */
  .navbar-toggler {
    border: none !important;
    padding: 0 !important;
  }
  .navbar-toggler-icon {
    font-size: 1.8rem;
    background-image: none;
  }
  .offcanvas {
    flex-direction: column;
    overflow-y: hidden;
    min-height: 100vh;
  }
  .offcanvas-header {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
  }
  .nav-item {
    margin: 20px 0 0;
  }
  .navbar-nav > li:nth-child(4) {
    margin-right: 0 !important;
  }
  .nav-link:hover::before {
    width: 0% !important;
  }
  .dropdown-menu {
    position: absolute !important;
    left: -35% !important;
    top: 130% !important;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .active::before {
    width: 0% !important;
  }
  .nav-btn {
    margin: 20px 0 !important;
  }
  .nav-icons {
    flex-direction: column;
  }
  .love-icon {
    margin-inline: 30px !important;
  }
  .cart-icon {
    margin-right: 0;
  }
  /* Discount Section */
  .auto-scroll-itms {
    font-size: 18px;
  }
  @keyframes rightTOLeft {
    0% {
      right: -25%;
    }
    100% {
      right: 115%;
    }
  }
  /* Option Section */
  .option-btn {
    margin-bottom: 30px !important;
  }
  /* Sign Up Section */
  #mail-input {
    width: 75%;
    padding: 37px 0 37px 25px;
  }
  #submit-btn {
    width: 30.4%;
    font-size: 25px;
    padding: 27.5px 25.5px;
  }
  /* Footer Section */
  .ftr-list3-wrpr,
  .ftr-list4-wrpr,
  .ftr-list5-wrpr {
    margin-top: 30px;
  }
}
@media screen and (max-width: 992px) {
  .btn-secondary {
    padding-block: 20.5px;
    font-size: 20px;
  }
  .title3 {
    font-size: 32px;
  }
  .sec-hdr > .title1 {
    font-size: 50px;
    margin: 9px 0 14px !important;
  }
  .cursor {
    display: none;
  }
  /* Discount Section */
  @keyframes rightTOLeft {
    0% {
      right: -30%;
    }
    100% {
      right: 153%;
    }
  }
  /* Option Text */
  .option-sec {
    padding: 65px 0 70px;
  }
  .option-btn {
    margin-bottom: 25px !important;
  }
  /* Best Section */
  .best-cntn > p {
    font-size: 20px;
  }
  /* Discover Section */
  .disco-container > p {
    font-size: 20px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  /* Brand Section */
  .brand-wrpr {
    position: relative;
  }
  .brand-wrpr::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    top: 50%;
    right: 0;
    left: 0;
    background-color: #00000080;
  }
  .brand-item {
    /* border-bottom: 1px solid #00000080; */
    margin: 0 auto;
  }
  .sec-brand {
    border-right: none;
  }
  /* Sign Up Section */
  .sign-sec {
    padding-top: 100px;
  }
  .signup-left {
    margin-bottom: 30px;
  }
  /* Footer Section */
  .land-sec {
    padding: 14.5px 20px 17px 24px;

    border-radius: 16px;
  }
  .land-sec > span {
    font-size: 18px;
    margin-left: 8px;
  }
  .pay-list {
    margin-left: 24px;
  }
}
@media screen and (max-width: 768px) {
  .col20 {
    width: 33.33%;
  }
  .ftr-col {
    width: 50%;
  }
  .btn-secondary {
    padding-block: 13.5px;
    font-size: 14px;
  }
  .title2 {
    font-size: 22px;
  }
  .sec-hdr > .title1 {
    font-size: 40px;
    margin: 9px 0 10px !important;
  }
  .cursor {
    display: none;
  }
  /* Discount Section */
  @keyframes rightTOLeft {
    0% {
      right: -45%;
    }
    100% {
      right: 180%;
    }
  }
  /* Option Section */
  .option-sec {
    padding: 50px 0;
  }
  .option-btn {
    margin-bottom: 20px !important;
  }
  /* Spotlite Section */
  .spot-sec {
    padding-bottom: 60px;
  }
  .spot-container > p {
    font-size: 18px;
    margin-top: 22px;
  }
  /* Gift Section */

  .gift-sec {
    padding-bottom: 60px;
  }
  .gift-container > p {
    font-size: 18px;
    margin-top: 12px;
  }
  /* Best Section */
  .best-cntn {
    height: 90px;
  }
  .best-cntn > p {
    font-size: 18px;
  }
  /* Discovery Section */
  .disco-sec {
    padding-bottom: 70px;
  }
  .disco-container > p {
    font-size: 18px;
  }
  /* New Arrival Section */
  .new-sec {
    padding-bottom: 70px;
  }
  .bttl-desc span:last-child {
    font-size: 18px;
    line-height: 25px;
  }
  .price {
    font-size: 18px;
    color: var(--tertiary-color);
  }
  .discount {
    width: 55px;
    padding: 4px 7px 2px;
    font-size: 18px;
  }
  /* Brand Section */
  .brand-sec {
    padding: 40px 0 85px;
  }
  /* Sign Up Section */
  .signup-hdr {
    font-size: 26px;
  }
  .signup-left > p {
    font-size: 18px;
    margin-top: 11px;
  }
  #mail-input {
    width: 75%;
    padding: 15px 30px;
  }
  #submit-btn {
    width: 26.4%;
    font-size: 20px;
    padding: 18.5px 17.5px;
  }
  /* Footer Section */
  .footer-top {
    padding: 70px 0 47px;
    border-bottom: 1px solid var(--primary-color);
  }
  .ftr-list > li,
  .ftr-list > li > a {
    font-size: 16px;
  }
  .list-hdr {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .ftr-img {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 576px) {
  .ftr-col {
    width: 100%;
  }
  .btn-secondary {
    padding-block: 9.5px;
    font-size: 11px;
  }
  .title1 {
    font-size: 50px;
  }
  .title2 {
    font-size: 18px;
  }
  .title3 {
    font-size: 22px;
  }
  .sec-hdr > .title1 {
    font-size: 26px;
    margin: 9px 0 10px !important;
  }
  /* Banner Section */
  .brdcrumb {
    margin-top: 28px;
    max-width: 187px;
  }
  .brd-link {
    font-size: 20px;
    font-weight: 500;
  }
  /* Discount Section */
  .auto-scroll {
    padding-block: 22px;
  }
  .auto-scroll-itms {
    font-size: 16px;
  }
  .auto-scroll-itms > img {
    max-width: 14px;
  }
  .auto-scroll {
    padding-block: 16px;
  }

  @keyframes rightTOLeft {
    0% {
      right: -70%;
    }
    100% {
      right: 294%;
    }
  }
  /* Option Section */
  .option-sec {
    padding: 20px 0;
  }
  .option-btn {
    margin-bottom: 8px !important;
  }
  /* Spotlite Section */
  .spot-sec {
    padding-bottom: 34px;
  }
  .spot-img {
    height: 280px;
  }
  .spot-container > p {
    font-size: 16px;
    margin-top: 10px;
  }
  /* Gift Section */
  .gift-sec {
    padding-bottom: 40px;
  }
  .gift-container > p {
    font-size: 14px;
    margin-top: 8px;
  }
  .gift-btn {
    margin-top: -7px;
  }
  .gift-btn > .btn-secondary {
    padding: 4px 18px;
    border-radius: 30px;
    font-size: 12px !important;
  }
  /* Best Sectioin */
  .best-sec {
    padding-bottom: 70px;
  }
  .best-cntn {
    height: 50px;
  }
  .best-cntn > p {
    font-size: 14px;
  }
  .best-btn {
    margin-top: 10px;
  }
  /* Discovery Section */
  .disco-sec {
    padding-bottom: 50px;
  }
  .disco-img {
    height: 280px;
  }
  /* New Arrival Section */
  .new-sec {
    padding-bottom: 50px;
  }
  .bttl-desc span:last-child {
    font-size: 14px;
    line-height: 25px;
  }
  .price {
    font-size: 14px;
    color: var(--tertiary-color);
  }
  .discount {
    width: 50px;
    padding: 4px 7px 2px;
    font-size: 14px;
  }
  /* Brand Section */
  .brand-sec {
    padding: 25px 0;
  }
  .brand-item {
    height: 205px;
  }
  .sec-brand {
    padding-top: 0px;
  }
  /* Sign Up Section */
  .sign-sec {
    padding-top: 60px;
  }
  .sign-sec-wrpr {
    background: var(--secondary-color);
    padding: 40px 0;
  }
  .signup-hdr {
    font-size: 17px;
  }
  .signup-left {
    margin-bottom: 20px;
  }
  .signup-left > p {
    font-size: 12px;
    margin-top: 8px;
  }
  #mail-input {
    width: 75%;
    padding: 10px 18px;
  }
  #mail-input::placeholder {
    font-size: 12px;
  }
  #submit-btn {
    width: 28.4%;
    font-size: 14px;
    padding: 14.5px 12.5px;
  }
  /* Footer List */
  .footer-top {
    padding: 57px 0 26px;
    border-bottom: 1px solid var(--primary-color);
  }
  .list-hdr {
    font-size: 18px;
    margin-bottom: 11px;
  }
  .scl-list {
    margin-top: 20px;
  }
  .ftr-list > li,
  .ftr-list > li > a {
    font-size: 14px;
  }
  .ftr-list1-wrpr,
  .ftr-list2-wrpr,
  .ftr-list3-wrpr,
  .ftr-list4-wrpr,
  .ftr-list5-wrpr {
    text-align: center;
    max-width: 187px;
    margin: 0 auto 40px;
  }
  .ftr-list2-wrpr {
    max-width: 233px;
  }
  .ftr-img {
    margin-bottom: 35px;
  }
  .land-sec {
    padding: 11.5px 16px 13px 19px;
    border-radius: 12px;
  }
  .land-sec > span {
    font-size: 14px;
    margin-left: 8px;
  }
  .pay-list {
    margin-left: 13px;
  }
}
@media screen and (max-width: 420px) {
  /* Brand Item */
  .brand-item {
    height: 155px;
  }
}
