/** Shopify CDN: Minification failed

Line 2535:28 Unexpected ")"

**/
/* ==================== Import Fonts ==================== */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* ================================ Theseasons Font Family ================================ */
@font-face {
    font-family: The Seasons;
    font-weight: 500;
    src: url("TheSeasons-Regular.otf") format("opentype");
}
@font-face {
    font-family: The Seasons italic;
    font-weight: 500;
    src: url("TheSeasons-Regular_Italic.otf") format("opentype");
}

/* Regular */
/*@font-face {
  font-family: "Theseasons";
  src: url("Fontspring-DEMO-theseasons-reg.otf") format("opentype"),
  url("Fontspring-DEMO-theseasons-reg.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
} */

/* Bold */
/*@font-face {
  font-family: "Theseasons";
  src: url("Fontspring-DEMO-theseasons-bd.otf") format("opentype"),
  url("Fontspring-DEMO-theseasons-bd.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}*/

/* Light Italic */
/*@font-face {
  font-family: "Theseasons";
  src: url("Fontspring-DEMO-theseasons-ltit.otf") format("opentype"),
  url("Fontspring-DEMO-theseasons-ltit.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
}*/

/* ==================== Common Reset ==================== */
/* CSS Root Variables for Colors */
:root {
  /* Brand Colors */
  --primary-pink: #ef5f96;
  --primary-pink-dark: #d14d7a;
  --secondary-pink: #ee386e;
  --accent-coral: #f0575c;
  --accent-orange: #f36d45;

  /* Background Colors */
  --background-white: #ffffff;
  --background-light-pink: #ffeef3;
  --background-gray-light: #f1f1f1;
  --background-gray: #dbdbdb;
  --background-gray-medium: #d2d2d2;
  --background-gray-dark: #d1d1d1;

  /* Text Colors */
  --text-primary: #1a1a18;
  --text-secondary: #666;
  --text-muted: #555555;
  --text-white: #ffffff;
  --text-gold: #f5d244;

  /* Status Colors */
  --success-green: #22c55e;
  --error-red: #dc2626;
  --warning-yellow: #f59e0b;
  --info-blue: #3b82f6;

  /* Additional Brand Colors */
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --overlay-gradient: rgba(0, 0, 0, 0.7);
  --border-divider: rgba(245, 210, 68, 0.3);

  --transition: all 0.3s ease-in-out;
}

* {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth !important;
}

body {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.33;
  position: relative;
  top: 0 !important;
  background-color: var(--white);
}

.overflow-hidden {
  overflow: hidden;
  height: 100vh;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

*:focus {
  outline: none;
}

button[type="button"]:focus {
  outline: none;
}

input:focus,
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: inherit;
  resize: none;
}

/* ==================== Common style ==================== */
.wrapper {
  display: block;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
}

.container {
  max-width: 1820px;
  margin: 0 auto;
  padding: 0;
}

.common-sec {
  position: relative;
  padding: 50px 0px 60px;
}

.icon {
  display: inline-block;
  height: 1em;
  width: 1em;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: all 0.4s ease;
}

p {
  color: var(--text-secondary);
  font-size: 1em;
  line-height: 1.33;
}

p:last-child {
  margin-bottom: 0;
}

a {
  display: inline-block;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
} 

.shadow-overlay,
.shadow-overlay-q {
  position: fixed;
  display: block !important;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99;
}

body.nav-open .shadow-overlay,
.quick-add-modal[open] .shadow-overlay-q {
  opacity: 1;
  visibility: visible;
}

/* ==================== Common Classes ==================== */
.sec-head {
  margin-bottom: 40px;
  text-align: center;
}

.style-sec .sec-head,
.bestSeller-sec .sec-head {
  margin-bottom: 35px;
}

.sec-title {
  font-family: 'The Seasons';
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 16px;
}

.sec-title span {
  font-weight: 300;
  font-style: italic;
}

/* slick-dot */

.slick-dots {
  text-align: center;
  margin-top: 20px;
  line-height: 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 7px;
  line-height: 0;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: var(--primary-pink);
  opacity: 0.2;
  padding: 0;
  font-size: 0;
}

.slick-dots li.slick-active button {
  opacity: 1;
}

/* slick-arrow */
.slick-prev,
.slick-next {
  font-size: 0;
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--text-white);
  border: 1px solid var(--primary-pink);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border-radius: 50%;
  transition: var(--transition);
  cursor: pointer;
  z-index: 9;
  opacity:0;
}
/* hide arrows outside initially */
.slick-prev { 
  left: -80px; 
  opacity: 0;
  pointer-events: none;
}

.slick-next { 
  right: -80px; 
  opacity: 0;
  pointer-events: none;
}
/* show arrows when slider is hovered */
.slick-slider:hover .slick-prev {
  left: 30px;
  opacity: 1;
  pointer-events: auto;
}

.slick-slider:hover .slick-next {
  right: 0px;
  opacity: 1;
  pointer-events: auto;
}


.slick-prev {
  right: inherit !important;
  
}

.slick-prev::before,
.slick-next::before {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--primary-pink);
  mask-image: url("right_arrow.svg");
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}

.slick-prev::before {
  transform: translate(-50%, -50%) scale(-1);
  /* flip for left arrow */
}

.slick-prev:hover,
.slick-next:hover {
  background-color: var(--primary-pink);
  border-color: var(--primary-pink-dark);
  transform: scale(1.1) translateY(-50%);
  /* subtle zoom */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  /* glow shadow */
}

.slick-prev:hover::before,
.slick-next:hover::before {
  background-color: var(--text-white);
}
.slick-slider:hover .slick-prev,
.slick-slider:hover .slick-next{
  opacity:1;
}

/* slick slider height 100% */
.slider-wrapper,
.slick-slider,
.slick-list,
.slick-track,
.slick-slide>div {
  height: 100%;
}

.slick-slide>div>div {
  height: 100%;
}

.slick-list.draggable {
  margin: 0 -12px;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: auto !important;
  display: flex;
}

.slick-slide>div {
  flex: 1;
}

/* ======================= cms-con ============================== */
.cms-con h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.27;
  margin-bottom: 12px;
}

.cms-con p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.cms-con p:last-child {
  margin-bottom: 0;
}

.cms-con span {
  display: inline-block;
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 12px;
}

.cms-con span:last-child {
  margin-bottom: 0;
}

/* ==================== btn style ==================== */
/* ==================== svg mask image style ==================== */
.icon-search {
  mask-image: url(search.svg);
}

.icon-menu {
  mask-image: url(menu.svg);
}

.icon-cart {
  mask-image: url(cart.svg);
}

.icon-user {
  mask-image: url(profile.svg);
}

.facebook-icon {
  mask-image: url(facebook.svg);
}

.instagram-icon {
  mask-image: url(insta.svg);
}

.linkedin-icon {
  mask-image: url(linkedin.svg);
}

.youtube-icon {
  mask-image: url(youtube.svg);
}

/* ================================= HEADER STYLING ======================== */
.header {
  position: relative;
}

.header .top-header-promos {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .top-header-promos .promo-item {
  flex: auto;
  text-align: center;
  padding: 10px 0;
}

.header .top-header-promos .promo-item a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-white);
}

.header .top-header-promos .promo-item:nth-child(1) {
  background-color: var(--secondary-pink);
}

.header .top-header-promos .promo-item:nth-child(2) {
  background-color: var(--accent-coral);
}

.header .top-header-promos .promo-item:nth-child(3) {
  background-color: var(--accent-orange);
}

/* Keep your original styles */
.header .btm-header {
  background: #fcfbf9;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: all 0.3s ease;
}

body.index .header .btm-header {
  background: transparent;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Sticky state */
.index.sticky-header .header .btm-header,
.sticky-header .header .btm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  transform: translateY(-100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  animation: slideUp 0.3s forwards;
}

.sticky-header {
  padding-top: 100px;
}

@keyframes slideUp {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sticky-header .header-logo {
  height: 60px;
}

.header-logo img,
.header-logo a {
  height: 100%;
  display: flex;
  align-items: center;
}

.header-logo * {
  color: var(--text-white);
}

.index.sticky-header .header-actions .button,
.sticky-header .header-actions .button {
  color: var(--text-primary);
  font-size: 26px;
  position: relative;
 }/*
.header-actions .search-btn .icon-search{
  display: inline;
  width:20px;
  height:20px;
   margin-top: 2px;
} */
.index .header-actions .swym-header-launcher svg path {
  stroke: #fff;
}

.index.sticky-header .header-actions .swym-header-launcher svg path {
  stroke: var(--text-primary);
}

body.index .header-actions .button {
  color: #000;
}

.sticky-header .header .btm-header .container::before {
  display: none;
  border-color: var(--text-primary);
  height: calc(100% + 20px);
  top: -10px;
}

/* .header .btm-header .container::before {
  content: "";
  position: absolute;
  width: calc(100% - 112px);
  height: calc(100% + 40px);
  top: -20px;
  left: 50%;
  transform: translate(-50%);
  border-left: 1px solid var(--background-white);
  border-right: 1px solid var(--background-white);
} */
.header .btm-header .container {
  
  position: relative;
}

.header .btm-header .nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-actions {
  /* height: 100%;
  position: relative; */
  display: flex;
  align-items: center;
  gap: 38px;
  /* min-width: 200px */
}

.nav-header .header-actions::last-child {
  justify-content: flex-end;
}

.header-actions .icon:hover {
  color: var(--accent-coral);
}

.header-actions .button {
  color: #000;
  line-height: normal;
  font-size: 26px;
  background-color: transparent;
  padding: 0;
  line-height:0;
  position: relative;

  cursor: pointer;
  border-radius: 0;
}

.index .header-actions .button {
  color: #000;
}
.header .header-actions {
      width: 33.33%;
    
}
.header-logo {
  position: relative;
  height: 70px;
}

/* ================================= HERO STYLING ======================== */
.hero-sec {
  background-image: url(hero-img1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* min-height: 918px; */
  display: flex;
  align-items: center;
}

/* .hero-sec::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(270deg, #2c2a24 -7.06%, rgba(44, 42, 36, 0) 29.09%);
  top: 0;
  left: 0;
} */
.hero-sec .container {
  position: relative;
  max-width: 1340px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex: 1;
  padding: 0 !important;
}


/* 
.hero-sec .hero-con .hero-title {
  font-family: "Theseasons";
  font-weight: 700;
  font-size: 107px;
  line-height: 0.97;
  text-align: center;
  margin-bottom: 32px;
}

.hero-sec .hero-con p {
  font-weight: 400;
  font-size: 36px;
  line-height: 0.7;
  color: var(--text-white);
  
}

.hero-sec .hero-con .btn {
  font-weight: 600;
  font-size: 32px;
  line-height: 0.75;
  text-transform: uppercase;
  color: var(--text-white);
  margin-top:64px;
}

.hero-sec .hero-con .btn:hover {
  color: var(--accent-coral);
} */

.discount-banner {
  text-align: center;
  background-color: var(--primary-pink);
  padding: 16px;
}

.discount-banner p {
  color: var(--text-white);
}

/*=============================================== features-sec ================================== */
.features-sec.common-sec {
  padding-bottom: 10px;
}
.features-sec .custom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.features-sec .custom-row .container {
  max-width: 1550px;
}

.features-sec .custom-row .feature-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap:8px;
}

.features-sec .custom-row .feature-wrap p {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.5;
}

.features-sec .custom-row .feature-wrap img {
  max-height: 40px;
}

/* =========================== explore-sec ======================================= */

.explore-sec .explore-slide {
  padding: 0 15px;
}

.explore-sec .explore-slide .box {
  max-width: 513px;
  position: relative;
  color: var(--text-white);
  text-align: center;
  overflow: hidden;
  border-radius: 16px;
  height:100%;
}

.explore-sec .explore-slide .box .btn {
  display: inline-block;
  color: var(--text-white);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 40px;
  text-transform: uppercase;
  opacity: 0.8;
}

.explore-sec .explore-slide .box .img {
  width: 100%;
}

.explore-sec .explore-slide .box .img img {
  width: 100%;
  aspect-ratio: 5/7;
  border-radius: 16px;
}

.md-title {
  font-family: 'The Seasons';
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 24px;
}

.explore-sec .explore-slide .box .con {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.explore-sec .explore-slide .box::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(26, 26, 24, 0) 49.93%, #1a1a18 103.42%);
  z-index: 1;
}

.explore-sec .slick-list.draggable {
  overflow: visible;
  margin: 0 -15px;
}

/* =============================>Spotlight<=============================== */
.sl-slide .box .con p a {
  font-size: 22px;
  line-height: 1.09;
  /* single-line ellipsis */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
  color: var(--text-primary);
  /* make sure it has a width to cut off */
  display: block;
  /* ensures text-overflow works */
  max-width: 90%;
}

.sl-slide .box .img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}

.sl-slide .box .img img {
  width: 100%;
  aspect-ratio: 9/16;
}

.sl-slide {
  padding: 0 12px;
}

.spotlight-slider .slick-list.draggable {
  overflow: visible;
}

/* ========================>Shop by color<============================== */
.shop-by-color-sec .custom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 44px;
}

.spotlight-sec .price-wrap .discounted-price,
.spotlight-sec .price-wrap .original-price {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.09;
}

.price-wrap .discounted-price,
.price-wrap .original-price {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.33;
  color: var(--text-primary);
}

.bestSeller-sec .price-wrap .discounted-price,
.bestSeller-sec .price-wrap .original-price {
  font-weight: 500;
}

.bestSeller-sec.common-sec {
  padding-top: 20px;
}

.original-price {
  text-decoration: line-through;
  color: var(--text-muted);
}

.off {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.71;
  color: var(--error-red);
}

.shop-by-color-sec .custom-row .img {
  border-radius: 15px;
  overflow: hidden;
}

.shop-by-color-sec .custom-row .img img {
  width: 100%;
  aspect-ratio: 1/1;
}

/* =====================custom tabs ==============================*/

.custom-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  
}
.custom-tabs li{
  cursor:pointer;
}
.custom-tabs li button {
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 4px;
  font-weight: 500;
  border: 1px solid var(--primary-pink);
  background-color: transparent;
  color: var(--text-primary);
  transition: all 0.3s ease;
  letter-spacing: 0.08em;
  cursor:pointer;
}

.custom-tabs li button.active {
  background-color: var(--primary-pink);
  color: var(--text-white);
}

.custom-tabs li button:hover {
  background-color: var(--primary-pink);
  color: var(--text-white);
}

/* Tab content */
.tab-content .tab-panel {
  display: none;
}

.tab-content .tab-panel.active {
  display: block;
}

.tab-content .tab-panel .custom-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 30px;
  row-gap: 42px;
}

.style-wrap .img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.style-wrap .img-wrap .img img {
  transition: var(--transition);
  border-radius: 16px;
}

.style-wrap .img-wrap .tag {
  position: absolute;
  background-color: var(--primary-pink);
  padding: 5px 14px;
  top: 0;
  left: 0;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-white);
  border-top-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 2;
}

.style-wrap .img-wrap .add-to-cart {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 2;
  border: 2.7px solid rgb(255, 255, 255, 0.8);
  height: 50px;
  width: 50px;
  padding:8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 255, 255, 0.65);
  cursor: pointer;
}


.style-wrap .con {
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.style-wrap .con .left ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.style-wrap .con .left {
  max-width: 100%;
  width:100%;
}
.style-wrap .con .left p {
  font-size: 16px;
}
.style-wrap .con .right .price{font-weight: bold;}

.style-wrap .con .left p a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2em;
  max-height: calc(1.2em * 2);
  color: var(--text-primary);
}

.bestseller-slider .style-wrap .con .left p a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-primary);
}
.bestseller-slider .slick-arrow{
  top: 45%;
}

.style-wrap .con .left ul li {
  font-size: 12px;
  line-height: 1;
  color: var(--text-primary);
}

.style-wrap .con .left ul li a {
  color: var(--text-primary) !important;
}

.style-wrap .con .left ul li a.disabled {
  text-decoration: line-through;
}

.style-wrap .con .left ul li a:hover {
  opacity: 0.8;
}

.bestseller-slider .style-wrap {
  padding: 0 15px;
}

.style-wrap .con .right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 16px;
}

.style-wrap .con .left span {
  display: inline-block;
  color: var(--error-red);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.style-wrap .con .right .discount-percentage {
  font-size: 12px;
  color:var(--error-red)
}

/* ========================Trending ========================= */
.trending-slider .box {
  padding: 0 15px;
}

.trending-slider .box .img {
  border-radius: 16px;
  height:100%;
}

.trending-slider .slick-list.draggable {
  overflow: visible;
  margin: 0 -15px;
}

.trending-slider .slick-prev,
.trending-slider .slick-next {
  /* display: none !important; */
}

/* ========================SDK =========================== */
.sdk-sec .container:last-child {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.sdk-sec .container .image,
.sdk-sec .container .img {
  position: relative;
}

.sdk-sec .container .img::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(270.49deg, rgba(18, 7, 1, 0.94) 0.42%, rgba(18, 7, 1, 0.85) 19.1%, rgba(18, 7, 1, 0.5) 42.42%, rgba(18, 7, 1, 0) 63.66%);
}

.sdk-sec .container .title {
  font-family: 'The Seasons';
  font-weight: 700;
  font-size: 96px;
  line-height: 1.08;
  letter-spacing: 0px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -35%);
  right: -140px;
  color: var(--text-white);
}

.btn-border {
  padding: 14px 20px;
  border: 1px solid var(--primary-pink);
  font-family: Montserrat;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--text-primary);
  background: transparent;
}

.btn-border:hover {
  background-color: var(--primary-pink);
  color: var(--text-white);
}

.sdk-sec .btn-wrap {
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

/* searches */
.search-section {
  padding-top: 10px;
}

.search-title {
  font-family: 'The Seasons';
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 18px;
}

.search-category {
  display: flex;
  align-items: center;
}

.search-category .title {
  font-size: 1em;
  display: inline-block;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
  margin-right: 5px;
}

.search-category .links {
  margin-bottom: 3px;
}

.search-category .links a {
  position: relative;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 14%;
  text-decoration-thickness: 4%;
  color: var(--text-primary);
  margin-right: 12px;
  margin-bottom: 9px;
}

.search-category .links a:hover {
  color: var(--accent-coral);
}

.search-category .links a::before {
  content: "";
  position: absolute;
  right: -9px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: var(--text-primary);
}

/* footer */
.footer {
  background-image: url(footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  padding: 60px 0 0;
}

.footer a {
  color: inherit;
}

.footer a:hover {
  color: var(--accent-coral);
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  max-width:1365px;
  margin:0 auto;
}

.footer-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 18px;
  color: var(--text-white);
}

.foot-col ul li a,
.foot-col p {
  font-size: 16px;
  line-height: 1.3;
  color: var(--text-white);
}

.foot-col ul li a:hover {
  color: var(--accent-coral);
}

.foot-col p {
  margin-top: 20px;
}

.foot-col ul li,
.foot-col p {
  margin-bottom: 17px;
}

.foot-col ul li:last-child {
  margin-bottom: 0;
}

.copyright {
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  margin-top: 0;
  padding-bottom: 170px;
}

.social-icons ul li {
  display: inline-block;
  margin: 0;
  margin-right: 25px;
}

.social-icons ul li:last-child {
  margin: 0;
}

.social-icons ul li a {
  font-size: 24px;
  color: var(--text-white);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover:has(.instagram-icon) {
  color: #e1306c;
}

.social-icons a:hover {
  background: #fff;

  background-color: var(--text-white);
}

.social-icons a:hover:has(.facebook-icon) {
  color: #1877f2;
}

.social-icons a:hover:has(.youtube-icon) {
  color: #ff0000;
}

.social-icons a:hover:has(.linkedin-icon) {
  color: #0a66c2;
}

/* aside */
.header aside {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  background-color: var(--background-white);
  height: 100vh;
  transform: translate(-100%);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: var(--transition);
}

.header aside ul li a {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 400;
  width: 100%;
  /* position:relative; */

}

/* 
.header aside ul li a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  mask-image: url(right_arrow.svg);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  background-color: var(--text-primary);
  height: 25px;
  width: 25px;
  transition: var(--transition);
}

.header aside ul li a:hover::before {
  transform: translate(5px, -50%);
  background-color: var(--accent-coral);
} */

.header aside ul li a:hover {
  color: var(--accent-coral);
}


.header aside ul {
  padding: 60px 20px 20px;
}

.header aside .header-inner-logo .close-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.drawer__close svg {
  transition: var(--transition);
}

.header aside .header-inner-logo .close-icon:hover,
.drawer__close svg:hover {
  transform: rotate(90deg);
  color: var(--error-red);
}

.close-icon {
  mask-image: url(close-icon.svg);
}

.nav-open .header aside {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

/*  */

.back-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background-color: var(--accent-coral);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
  transform: rotate(-90deg);
  z-index: 999;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn .icon {
  color: var(--text-white);
  font-size: 34px;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* animation on hover */
.back-to-top-btn:hover .icon {
  animation: arrowUpDown 0.5s ease forwards;
}

.header aside ul li {
  transform: translateX(-100%);
  opacity: 0;
  margin: 12px 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

/* When .nav-open is added */
.nav-open .header aside ul li {
  transform: translateX(0);
  opacity: 1;
}

/* Stagger animations */
.header aside ul li:nth-child(1) {
  transition-delay: 0s;
}

.header aside ul li:nth-child(2) {
  transition-delay: 0.1s;
}

.header aside ul li:nth-child(3) {
  transition-delay: 0.2s;
}

.header aside ul li:nth-child(4) {
  transition-delay: 0.3s;
}

.header aside ul li:nth-child(5) {
  transition-delay: 0.4s;
}

.header aside ul li:nth-child(6) {
  transition-delay: 0.5s;
}

@keyframes arrowUpDown {
  0% {
    transform: translateX(0);
  }

  49% {
    transform: translateX(100%);

    opacity: 0;
  }

  50% {
    transform: translateX(-100%);

    opacity: 0;
  }

  100% {
    transform: translateX(0);

    opacity: 1;
  }
}

.arrowTop-icon {
  mask-image: url(right_arrow.svg);
}

/* hover effect */

.style-wrap .img-wrap::before,
.custom-row .img::before,
.sl-slide .box .img::before,
.explore-sec .explore-slide .box::after,
.trending-slider .box .img::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
}

.style-wrap:hover .img-wrap::before,
.custom-col:hover .img::before,
.sl-slide .box:hover .img::before,
.explore-sec .explore-slide:hover .box::after,
.trending-slider .box:hover .img::before {
  animation: shine 1.8s;
}

.shop-by-color-sec .custom-row .img,
.sl-slide .box .img,
.trending-slider .box .img {
  position: relative;
  overflow: hidden;
}

.shop-by-color-sec .custom-row .img img,
.sl-slide .box .img img,
.explore-sec .explore-slide .box img,
.trending-slider .box .img img {
  transition: var(--transition);
  height:100%;
}

.style-wrap:hover .img-wrap img,
.custom-col:hover .img img,
.sl-slide .box:hover .img img,
.explore-sec .explore-slide .box:hover img,
.trending-slider .box:hover .img img {
  transform: scale(1.04);
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

/*  */

.explore-sec .explore-slide .con>* {
  transition: var(--transition);
}

.style-wrap .box:hover .con a,
.sl-slide .box:hover .con p a {
  color: var(--accent-coral);
}

.acc-icon.open {
  mask-image: url("minus.svg");
  /* change this */
}

.acc-icon {
  font-size: 20px;
  mask-image: url(plus.svg);
}

.hero-sec {
  padding: 0 !important;
  background: none;
  height: auto;
  max-height: 918px;
  overflow: hidden;
  
}

.hero-sec .container {
  max-width: 100%;
  display: block;
}

.hero-sec img {
  width: 100%;
  object-fit: cover;
}

.hero-sec .container .slick-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%);
}

.style-wrap .img-wrap .off {
  position: absolute;
  background-color: var(--primary-pink);
  padding: 8px 16px;
  top: 0;
  left: 0;
  text-transform: uppercase;
  color: var(--text-white);
  border-top-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 2;
}

.header-inner-logo {
  position: relative;
}

.hero-slide a {
  width: 100%;
}
.hero-sec .hero-con {
  color: var(--text-white);
  max-width: 540px;
  text-align: center;
  
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  left:12%;
}
.hero-sec .hero-con .hero-title {
  font-family: 'The Seasons';
  font-weight: 700;
  font-size: 60px;
  line-height: 0.97;
  text-align: center;
  margin-bottom: 10px;
  color: #000;
}
.hero-sec .hero-con p {
  font-weight: 400;
  font-size: 30px;
  line-height: 0.9;
  color: #000;
  
}
.hero-sec .hero-con .btn {
  font-weight: 600;
  font-size: 32px;
  line-height: 0.75;
  text-transform: uppercase;
  color: #000;
  margin-top: 64px;
}
.hero-sec .hero-con  .btn:hover {
  color: var(--accent-coral);
}
/* about us page */
.tpt {
  padding-top: 150px;
}

.cm-sec .cms-con p {
  font-weight: 500;
}

.contact-us-sec {
  background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light-pink) 100%);
  color: var(--text-primary);
  line-height: 1.6;
}

.contact-us-sec .container {
  max-width: 1200px;
}

.contact-us-sec .sec-head {
  max-width: 600px;
  margin: 0 auto 60px;
}

.contact-us-sec .sec-head p {
  font-weight: 600;
}

.contact-us-sec .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info Card */
.contact-us-sec .contact-info-card {
  background: var(--background-white);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-us-sec .contact-info-card p {
  margin-bottom: 20px;
}

.contact-us-sec .contact-info-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1;
}

.contact-us-sec .contact-info-card>p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.5;
}

.contact-us-sec .info-items {
  margin-bottom: 32px;
}

.contact-us-sec .info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  margin-bottom: 24px;
  background: var(--background-light-pink);
  border-radius: 16px;
  transition: var(--transition);
}

.contact-us-sec .info-item:last-child {
  margin-bottom: 0;
}

.contact-us-sec .info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(239, 95, 150, 0.15);
}

.contact-us-sec .icon-wrap {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-us-sec .icon-wrap img {
  height: 22px;
  width: 22px;
  object-fit: cover;
  filter: brightness(0) invert(1);
}

.contact-us-sec .info-content {
  flex: 1;
}

.contact-us-sec .info-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-us-sec .info-value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-us-sec .info-value a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.contact-us-sec .info-value a:hover {
  color: var(--primary-pink);
}

.contact-us-sec .business-hours {
  padding: 20px;
  background: var(--background-gray-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary-pink);
}

.contact-us-sec .business-hours strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.contact-us-sec .business-hours p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* Contact Form Card */
.contact-us-sec .contact-form-card {
  background: var(--background-white);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-us-sec .form-header {
  margin-bottom: 32px;
}

.contact-us-sec .form-title {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.contact-us-sec .form-header p {
  color: var(--text-secondary);
  font-size: 0.95em;
}

.contact-us-sec .form-group {
  margin-bottom: 24px;
}

.contact-us-sec .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-us-sec label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-us-sec label .required {
  color: var(--accent-coral);
}

.contact-us-sec input,
.contact-us-sec textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  border: 2px solid var(--background-gray-medium);
  border-radius: 12px !important;
  background: var(--background-white);
  color: var(--text-primary);
  transition: var(--transition);
  font-family: inherit;
}

.contact-us-sec input:focus,
.contact-us-sec textarea:focus {
  outline: none;
  border-color: var(--primary-pink);
  background: var(--background-light-pink);
}

.contact-us-sec input::placeholder,
.contact-us-sec textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.contact-us-sec textarea {
  resize: none;
  height: 140px;
}

.contact-us-sec .submit-btn {
  width: 100%;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.contact-us-sec .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239, 95, 150, 0.3);
}

.contact-us-sec .submit-btn:active {
  transform: translateY(0);
}

.contact-us-sec .success-message {
  display: none;
  padding: 16px;
  background: var(--success-green);
  color: white;
  border-radius: 12px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}

/* journal / article */
.article-sec .grid-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.jour-box .img {
  border-radius: 16px;
  overflow: hidden;
}

.jour-box:hover .img img {
  transform: scale(1.02);
}

.jour-box img {
  transition: var(--transition);
}

.jour-box .content {
  padding: 20px 0;
}

.jour-box .content .article-title a {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jour-box:hover .content .article-title a {
  color: var(--accent-coral);
}

.jour-box .content p {
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*  correction */

.header-actions .swym-header-launcher svg:hover path {
  color: var(--primary-pink);
}

.header-actions .swym-header-launcher svg {
  height: 32px;
  width: 32px;
}

.hero-slider .slick-next,
.hero-slider .slick-prev {
  z-index: 10;
  top: 50%;
  right: -200%;
}

.hero-slider .slick-prev {
  right: inherit;
  left: -200%;
}

.hero-slider:hover .slick-prev {
  left: 15px;
}

.hero-slider:hover .slick-next {
  right: 15px;
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
  filter: brightness(0) invert(1);
}

.breadcrumb-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--text-primary);
  opacity: 0.4;
}

.collection .facets__disclosure-vertical .facets__summary .icon-caret {
  background: transparent;
}

.collection .facets__disclosure-vertical .facets__summary {
  border-bottom: 1px solid var(--text-primary);
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 10px;
  color: var(--text-primary);
  font-weight: 500;
}

.collection .facets__summary:hover .facets__summary-label,
.collection .facets__label:hover .facet-checkbox__text-label {
  text-decoration: none !important;
}

.collection .facets__summary .facets__summary-label {
  font-weight: 500;
  color: var(--text-primary);
}

.collection .facet-checkbox>svg {
  height: 14px;
  width: 14px;
  margin-right: 8px;
}

.collection .facet-checkbox__text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
}

.collection .facet-checkbox {
  padding-top: 8px;
  padding-bottom: 8px;
}

.collection .facet-checkbox .svg-wrapper {
  top: 1.2rem;
}

.collection .active-facets__button .svg-wrapper svg,
.collection .facet-checkbox .svg-wrapper svg {
  background: transparent;
}

.collection .facets-vertical .active-facets-vertical-filter facet-remove:last-of-type {
  margin-bottom: 0;
}

.collection .facets__disclosure-vertical .list-unstyled {
  padding-top: 10px;
}

.collection .facets__disclosure-vertical[open] {
  border-color: var(--text-primary);
}

.active-facets__button--light:hover .active-facets__button-inner {
  box-shadow: 0 0 0 0.2rem rgba(239, 95, 150, 1) !important;
  background: #ef5f96;
  color: #fff;
}

.collection .pagination-wrapper {
  display: flex;
  justify-content: center;
}

.collection .pagination-wrapper .pagination {
  width: 100%;
  max-width: 600px;
}

.collection .pagination-wrapper .pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.collection .pagination-wrapper .pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0.5rem 0.75rem;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  background-color: var(--background-white);
  border: 2px solid var(--background-gray-medium);
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.collection .pagination-wrapper .pagination__item:hover {
  background-color: var(--background-light-pink);
  border-color: var(--primary-pink);
  color: var(--primary-pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 95, 150, 0.2);
}

.collection .pagination-wrapper .pagination__item--current {
  background-color: var(--primary-pink);
  border-color: var(--primary-pink);
  color: var(--text-white);
  cursor: default;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(239, 95, 150, 0.3);
}

.collection .pagination-wrapper .pagination__item-arrow {
  padding: 1.2rem;
  min-width: 44px;
}

.collection .pagination-wrapper .pagination__item-arrow .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.collection .pagination-wrapper .pagination__item-arrow .icon-caret {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  transition: var(--transition);
  background: transparent;
}

.collection .pagination-wrapper .pagination__item[aria-disabled="true"] {
  cursor: not-allowed;
  pointer-events: none;
}

.collection .pagination-wrapper .pagination__item:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(239, 95, 150, 1);
}

.collection .pagination-wrapper .pagination__item:focus-visible {
  outline: 2px solid var(--primary-pink);
  outline-offset: 2px;
}

.collection .pagination-wrapper a[aria-label="Previous page"] .svg-wrapper {
  transform: scaleX(-1);
}

/* sort by */
.collection .facets .facets-vertical-form {
  margin-bottom: 2rem;
  align-items: center;
}

.collection .facets .facet-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0;
}

.collection .facets .facet-filters__field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.collection .facets .facet-filters__label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.collection .facets .facet-filters__label label {
  font-size: 12px;
  cursor: pointer;
}

.collection .facets .select {
  position: relative;
  display: inline-block;
  min-width: 220px;
}

.collection .facets .select__select {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  background-color: var(--background-white);
  border: 2px solid var(--background-gray-medium);
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  transition: var(--transition);
}

.collection .facets .select__select:hover {
  border-color: var(--primary-pink);
  background-color: var(--background-light-pink);
}

.collection .facets .select__select:focus {
  outline: none;
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 3px rgba(239, 95, 150, 0.1);
}

.collection .facets .select .svg-wrapper {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

.collection .facets .select .svg-wrapper svg {
  background: transparent;
}

.collection .facets .select:hover .svg-wrapper {
  color: var(--primary-pink);
}

.collection .facets .select .icon-caret {
  width: 100%;
  height: 100%;
  color: var(--text-primary);
  transition: var(--transition);
}

.collection .facets .product-count__text {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* .collection #product-grid .style-wrap .price__sale .price-item--regular, .collection #product-grid .style-wrap .discount-percentage{
  display:none;
} */
.cart-drawer .totals>* {
  color: var(--text-primary);
}

.header-actions .cart-count-bubble {
  height: 14px;
  width: 14px;
  background-color: var(--primary-pink);
  font-size: 10px;
  bottom:-2px;
  right: -2px;
  left: inherit;
  line-height: 1.5;
}

.svg-wrapper>svg,
.mobile-facets__arrow>svg {
  background: transparent;
}

/* ---- Product Page ------ */

.pincode-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  border: 1px solid grey;
  border-radius: 4px;
}

button#checkButton {
  font-size: 14px;
}

#checkButton {
  /* background: #842040; */
  color: black;
  padding: 0.5rem 1rem;
}

#pincodeVal {
  width: 80%;
  border: none;
  margin: 0;
  padding: 9px 16px;
  background: transparent;
}

.loading_icon {
  display: none;
  margin-top: 1rem;
}

.pincode_header {
  font-size: 14px;
  margin-bottom: 5px;
  color: #606060;
  font-weight: 500;
}

.pincode-container input,
.pincode-container input::placeholder {
  font-size: 14px;
}

.facets-vertical .facets-wrapper .facets-container {
  /* padding-right:30px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(26, 26,24, .75);
  border-right:1px solid rgba(26, 26,24, .75); */
}

/* detail page */
.product .page-width .product.product--medium, product-info .breadcrumb-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

product-info .breadcrumb-wrapper {
  margin-bottom: 12px;
  padding-left:5px;
}

.product .product__info-container .product__title h1 {
  font-size: 22px;
  color: var(--text-primary);
  font-family:'The Seasons';
  font-weight:500;

}
.product .product__info-container .product__text {
  display:none;
}

.product .product__info-container{
  font-size: 16px;
  /* font-weight: 700; */
  color: var(--text-primary);
}

.product .product__info-container .price__sale .price-item.price-item--regular {
  font-size: 14px;
  opacity: 0.5;
}

.product .product__info-container .price .price__container {
  display: inline-block;
}
.product .product__info-container .inclusive-tax{
  font-size:12px;
  font-weight:400;
  vertical-align:middle;
}
.product .product__info-container span.ks-chart-modal-link{
  font-size:10px;
  text-transform:uppercase !important;
  margin:0;

}
.product .product__info-container .product__tax{
  display:none;
}

.product .product__info-container .price .discount-percentage {
  font-size: 12px;
  color: var(--error-red);
}

.product .product__info-container .jdgm-preview-badge .jdgm-star.jdgm-star {
  color: var(--warning-yellow);
}

.product .product__info-container .jdgm-prev-badge__stars {
  margin-right: 6px;
}

.product .product__info-container .jdgm-prev-badge .jdgm-prev-badge__text {
  font-size: 14px;
}

.product .product__info-container .product__sku {
  font-size: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--text-primary);
}

.product .product__info-container .product-form__input--pill label {
  
  padding:12px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-right:7px;
font-weight:500;
}
.product-form__input--swatch) .form__label{
  font-size:12px;
}
.product .product__info-container .accordion__title{
  font-size:12px;
  font-weight:500;
}
.product .product__info-container .product-form__input--pill input[type="radio"]:checked+label {
  background-color: var(--primary-pink);
  border-color: var(--primary-pink);
}

.product .product__info-container :is(.product-form__input--pill, .product-form__input--swatch) .form__label,
.product .product__info-container .product-form__quantity .form__label {
  color: var(--text-primary);
  font-weight: 500;
}

.product .product__info-container .button,
.cart__checkout-button {
  position: relative;
  background: var(--primary-pink);
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  padding: 12px 20px;
  text-align: center;
  vertical-align: middle;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  margin-bottom: 0;
}

.product .product__info-container .button::before,
.cart__checkout-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.product .product__info-container .button:hover,
.product .product__info-container .shopify-payment-button__button:hover,
.cart__checkout-button:hover {
  background: var(--accent-coral);
  transform: translateY(-2px);
}

.product .product__info-container .button:active,
.product .product__info-container .shopify-payment-button__button:active,
.cart__checkout-button:active {
  transform: translateY(0);
}

.product .product__info-container .button:hover::before,
.cart__checkout-button:hover::before {
  left: 100%;
}

.product .product__info-container .pincode-container {
  width: 100%;
  max-width: 270px;
  gap: 0;
}

.product .product__info-container .pincode-container button#checkButton {
  border-radius: 2px;
  background-color: var(--text-primary);
  color: var(--text-white);
  transform: translate(0) !important;
}

.product .product__info-container .pincode-container button#checkButton:hover {
  background-color: var(--primary-pink);
}

.product .product__info-container variant-selects {
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 5px;
}

.quantity {
  min-height: 40px !important;
}

.product .product__info-container .add_to_cart_button_right-position button.atw-button {
  border-radius: 50%;
  background: var(--primary-pink);
}

.product .product__info-container .swym-atw-btn-wrapper.add_to_cart_button_right-position {
  margin-bottom: 5px;
}

.product .product__info-container .shopify-payment-button__button::after {
  display: none;
}

.product .product__info-container .shopify-payment-button__button {
  border-radius: 10px;
  font-size: 18px;
  padding: 12px;
  transition: var(--transition);
}

.accordion .summary__title+.icon-caret {
  background: transparent;
}

.product .product__info-container .product__accordion .icon {
  height: 12px;
  width: 12px;
  position: static;
}

.product .product__info-container .product__accordion p {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.product .product__info-container .product__accordion p::nth-last-child(1) {
  margin-bottom: 0;
}

.product .product__info-container .product__accordion ul li {
  font-size: 14px;
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
  color: var(--text-primary);
}

.product .product__info-container .product__accordion ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  background-image: url("icon-check-mark.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.product .product__info-container .product__accordion ul {
  margin-top: 20px;
}

.product .product__info-container .product__accordion .accordion__content {
  padding: 0;
}

/* === CART ITEM === */
.cart-items .cart-item {
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
}

.cart-items .cart-item__media img {
  display: block;
  width: 100%;
  max-width: 80px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.cart-drawer .cart-item__media {
  grid-row: auto;
}

.cart-drawer .cart-items td {
  width: auto;
  padding-left: 0 !important;
  padding-top: 0 !important;
}

.cart-items td::first-child {
  max-width: 80px;
}

.drawer__inner .cart-drawer .cart-item>td+td {
  padding-left: 0;
}

.cart-drawer .cart-item__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  line-height: 1.2em;
  max-height: calc(1.2em * 2);
}

.cart-drawer .cart-item__name:hover {
  color: var(--accent-coral);
  text-decoration: none;
}

.cart-item__details .product-option {
  font-size: 1.3rem;
  word-break: break-word;
  color: var(--text-primary);
  line-height: 1;
}

.cart-items .quantity {
  min-width: auto;
  max-width: 100px;
  min-height: auto !important;
  height: 35px;
}

.cart-items .quantity button {
  width: 33%;
}

cart-remove-button .button {
  background-color: var(--error-red);
  color: var(--text-white);
  width: 35px;
  min-width: auto !important;
  min-height: auto !important;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart-item__quantity-wrapper {
  gap: 10px;
}

cart-remove-button .button:not([disabled]):hover {
  color: #fff !important;
}

.cart-item__price-wrapper .price {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.cart-drawer .cart-item__media {
  grid-row: auto !important;
}

.cart-drawer .cart-item {
  align-items: start !important;
}

.cart-item__quantity-wrapper {
  align-items: center;
}

.cart-drawer .cart-items thead th {
  color: var(--text-primary) !important;
  font-size: 14px;
  font-weight: 600;
}

.mobile-facets__open {
  cursor: pointer;
}

.totals .totals__total-value {
  font-weight: 600;
}

.drawer__heading {
  color: var(--text-primary);
}

.related-products quick-add-modal {
  display: none;
}

.badge {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-coral) 100%);
  color: var(--text-white);
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.product .product__info-container .add_to_cart_button_right-position button.atw-button {
  height: 45px;
  width: 45px;
  font-size: 24px !important;
  padding: 0;
}

.product .product__info-container .add_to_cart_button_right-position .atw-button-icon {
  width: 1em;
  height: 1em;
}

.form .product-form__buttons {
  max-width: 100%;
}

.product .product__info-container .shopify-payment-button__button {
  min-height: auto;
  height: auto;
}

.drawer__inner {
  transition: var(--transition) !important;
  overflow-x: hidden;
}

/* review */

.jdgm-star {
  color: var(--warning-yellow) !important;
}

.jdgm-rev__icon:empty {
  border-radius: 50%;
}

.jdgm-row-profile .jdgm-rev__author-wrapper {
  padding-top: 5px;
  display: inline-block;
}

.jdgm-rev__pic-link {
  border-radius: 50%;
  overflow: hidden;
}

.jdgm-sort-dropdown {
  outline: none;
}

.jdgm-rev__title,
.jdgm-rev__body>p,
.jdgm-rev__reply-content>p {
  color: var(--text-primary) !important;
}

.jdgm-rev-widg {
  padding: 0 !important;
}

/* .product .related-products{
  padding-block: 0 0 !important; 
} */
.jdgm-rev__body>p {
  font-size: 16px;
}

.collection-hero__image-wrapper img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  min-height: 100px;
}

.breadcrumb-item {
  color: var(--text-primary);
  font-size: 14px;
}

.breadcrumb-item a {
  color: var(--text-primary);
}

.breadcrumb-item a:hover {
  color: var(--accent-coral);
}

.collection_seo {
  -webkit-line-clamp: 10 !important;
}

/* quick show */
.quick-add-modal {
  transform: translate(100%);
  max-width: 100%;
  --modal-padding: 1.5rem;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5) !important;

  transform: translate(100%) !important;
  left: inherit !important;
  right: 0;
  z-index: 999 !important;
  transition: all 0.5s ease !important;
  cursor: pointer;
}

.quick-add-modal[open] {
  transform: translate(0) !important;
}

.quick-add-modal .product {
  display: block;
}

.quick-add-modal .quick-add-modal__content {
  width: 100%;
  margin: 0;
  max-height: 100%;
  height: 100%;
  max-width: 300px;
  left: inherit;
  transform: none;
  right: 0;
  cursor: default;
  transition: var(--transition);
}

.quick-add-modal__content-info {
  --modal-padding: 0rem !important;
  scrollbar-width: thin;
  scrollbar-color: #bfbfbf #f2f2f2;
}

.quick-add-modal .product__media-wrapper,
quick-add-modal .product:not(.product--no-media) .product__info-wrapper {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

quick-add-modal .product:not(.product--no-media) .product__info-wrapper {
  padding-left: 15px !important;
  padding-right: 15px !important;
  padding-top: 20px !important;
}

quick-add-modal .product__info-wrapper .h1 {
  font-size: 18px !important;
  font-weight:600;
}

quick-add-modal .product__info-wrapper .product-form__buttons .shopify-payment-button__button {
  margin-top: 10px;
}

quick-add-modal .quick-add-modal__toggle svg,
quick-add-modal .product__view-details .icon {
  background: transparent;
}

quick-add-modal .quick-add-modal__toggle:hover {
  background-color: var(--accent-coral) !important;
  transform: rotate(180deg);
}

/*  */
quick-add-modal .product:not(.featured-product) .product__view-details {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
  color: var(--text-white);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  margin-top: 0 !important;
}

quick-add-modal .product:not(.featured-product) .product__view-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-pink-dark), var(--accent-coral));
  transition: left 0.4s ease;
  z-index: -1;
}

quick-add-modal .product:not(.featured-product) .product__view-details:hover {
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(239, 95, 150, 0.4);
}

quick-add-modal .product:not(.featured-product) .product__view-details:hover::before {
  left: 0;
}

quick-add-modal .product:not(.featured-product) .product__view-details:active {
  transform: translateY(0);
}

.icon-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

quick-add-modal .product:not(.featured-product) .product__view-details:hover .icon-arrow {
  transform: translateX(4px);
}

.grid--peek.slider .grid__item:first-of-type {
  width: 100%;
  margin: 0 !important;
  padding: 5px;
}

.quick-add-modal__content .product .product-media-container {
  border: 0;
}

.quick-add-modal__content .grid--peek.slider .grid__item:first-of-type {
  padding: 0;
}

.drawer.active .drawer__inner {
  overflow: hidden !important;
}

cart-drawer-items {
  scrollbar-width: thin;
  scrollbar-color: #bfbfbf transparent;
  overflow: auto !important;
}

cart-drawer-items::-webkit-scrollbar-button {
  display: none !important;
}

quick-add-modal .quick-add-modal__toggle:hover .icon {
  color: var(--text-white);
  /* transform:rotate(180deg); */
}

quick-add-modal .quick-add-modal__toggle {
  transition: var(--transition);
}

.cart__footer .totals {
  justify-content: space-between;
}

.cart__footer .totals>* {
  font-size: 20px;
  color: var(--text-primary);
}

.cart__footer .tax-note {
  text-align: left;
  align-items: start;
}

#main-cart-items .cart-items th {
  font-size: 14px;
  padding-bottom: 1rem !important;
  opacity: 1;
  font-weight: 500;
  color: var(--text-primary);
}

#main-cart-items .cart-items td {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#main-cart-items .cart-item__details dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

#main-cart-items .product-option+.product-option {
  margin: 0;
}

.title-wrapper-with-link .title {
  opacity: 1 !important;
  color: var(--text-primary) !important;
}

.page-width {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

quick-add-modal .page-width {
  padding: 0 !important;
}

/* accont */
/* .field__input, .customer .field input::placeholder,
.field__input, .customer .field input,
.field__input, .customer .field input:focus */

/* =========================
   Customer Form Override
   (Login / Register / Reset)
========================= */
.customer .field::before,
.customer .field::after {
  display: none;
}

.customer form label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.customer form label .required {
  color: var(--accent-coral);
}

.customer form input {
  border: 2px solid var(--background-gray-medium) !important;
  border-radius: 12px !important;

  background: var(--background-white);
  color: var(--text-primary);
  transition: var(--transition);
  font-family: inherit;
  box-shadow: none !important;
}

.customer form input:focus,
.customer form textarea:focus {
  outline: none !important;
  border-color: var(--primary-pink) !important;
  background: var(--background-light-pink) !important;
}

.customer form input::placeholder,
.customer form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

/* Optional: refine button to match your design */
.customer form button {
  background: var(--primary-pink) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  width: 100%;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
}

.customer form button::before,
.customer form button::after {
  display: none;
}

.customer form button:hover {
  background: var(--accent-coral) !important;
}

.customer a {
  color: var(--text-primary);
  transition: all 0.3s ease-in-out;
}

.customer a:hover {
  color: var(--accent-coral);
}

body.register main,
body.login main {
  background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light-pink) 100%);
}

.header aside ul ul {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0;
}

.header aside .menu-drawer-back-button {
  /* position: relative; */
  text-align: center;
  display: block;
  width: 100%;
  padding: 15px;
  cursor: pointer;
  font-size: 17px;
}

.header aside ul .menu-drawer-submenu summary {
  padding: 20px 0 10px 5px;
  font-size: 16px;
}

/* .header aside .menu-drawer-back-button::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;

  mask-image: url(right_arrow.svg);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  background-color: var(--text-primary);
  height: 25px;
  width: 25px;
  transform: scaleX(-1) translateY(-50%);
  transition: var(--transition);
} */
.header aside ul ul li {
  font-size: 16px;
  transition: var(--transition);
}

.header aside ul ul li:hover {
  color: var(--accent-coral);
}

.header aside ul .menu-drawer-submenu {
  padding-top: 15px;
}

.header aside ul .menu-drawer-submenu .menu-drawer-submenu {
  padding-top: 5px;
}

.header aside .menu-drawer-back-button:hover::before {
  background-color: var(--accent-coral);
}

.article-template__content>* {
  margin-bottom: 15px;
}

.article-template__content p+ :is(h1, h2, h3, h4, h5, h6) {
  margin-top: 30px;
}

details[hidden] {
  display: none;
}

.page.contact .main-page-title {
  text-align: center;
}


.swym-ui-component .swym-sfl-popup-dialog.swym-control-centre-mode .swym-cc-sfl-popup-action-container>div figure {
  height: 140px !important;
}

.cart__warnings a.button {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart__warnings a.button:hover {
  color: var(--accent-coral)
}

.swatch-input__label-wrapper .swatch {
    border-radius: 0;
    height: 100px;
    width: 95%;
    margin: 2px auto 0;
    cursor: pointer;
    padding: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.product-form__input--swatch .form__label {
  margin-bottom: 10px !important;
}
.swatch-input__label-wrapper .swatch-label-text {
    font-size: 12px;
    padding: 3px;
    color: var(--text-primary);
    font-weight: 500;
    width: 100%;
    display: block;
}

.swatch-input__label-wrapper {
  text-align: center;
  border-radius: 5px;
  border: 1px solid #e2e2e2;
  overflow: hidden;
  margin-right: 5px;
  margin-bottom: 5px;
  max-width:78px;
  width:100%;
  cursor: pointer;
}

.whatmore-root .whatmore-widget-container p {
  max-width: 600px;
  font-family: 'The Seasons' !important;
}

.product__info-wrapper .price__container .inclusive-tax {
  display: inline-block;
}

.product__info-wrapper .product-form__input .form__label {
  font-size: 1.6rem;
}

.product__info-wrapper .product-form__input .form__label.size-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
}

body .swym-button.swym-add-to-wishlist-view-product {
  position: absolute;
  top: 20px;
  right: 20px;
}

body .swym-button.swym-add-to-wishlist-view-product.swym-added {
  opacity: 1;
}

.st-trending-search-header {
  margin-top: 20px;
  margin-bottom: 15px;
  display: flex;
}

.st-heading-text {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.st-trending-search-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  gap: 10px;
  list-style: none;
}

.st-trending-search-label {
  display: flex;
  align-items: center;
  padding: 7px 12px;
  margin-bottom: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  border: 2px solid var(--primary-pink);
  background-color: #fff;
  color: var(--text-primary);
}

.st-trending-search-text {
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 400;
  font-size: 14px;
  word-break: break-word;
}

.search-modal .product-grid {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 35px;
}

predictive-search[open] .st-recommended-searches,
predictive-search[loading] .st-recommended-searches {
  display: none;
}

.search-modal .modal__close-button.link {
  position: absolute;
  right: 35px;
}

.search-modal .reset__button, .search-modal .search__button {
  visibility: hidden;
}

.style-wrap .inclusive-tax {
  display: none;
}
.style-sec .price--on-sale .price__sale{
  display:flex !important;
  align-items:center;
  
}
.product__media img{
  width:100%;
  border-radius:5px;
}

.product__tax {
  font-weight: 600;
  font-size: 16px;
}

.sizing-chart-container {
    position: absolute;
    right: 0;
    width: auto !important;
    transform: translateY(-5px);
}
.facets-wrapper .facets__summary .icon{
background:transparent;
}
body predictive-search[open] .predictive-search--search-template {
    display: none;
}

.quick-add-modal__content-info .breadcrumb-wrapper {
  display: none;
}

.view-all-btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.index .header__icon--menu .icon{
  color:#000;
}
.header__icon--menu .icon{
  
  color:#000;
  font-size:26px;
  position:static;

}

#menu-drawer {
  height: 100vh;
  top: 0;
  position: fixed;
  left: 0;
  transform: translateX(-100%);
  transition: var(--transition);
  z-index:999;
  visibility:visible !important;
  padding-top:20px;
}

.menu-drawer__navigation-container .menu-close{
    padding-left:30px;
    background: transparent;
}
.menu-drawer__navigation-container .menu-close .icon{
  background:transparent;
  font-size:22px;
  color:var(--text-primary);
  cursor:pointer;
}
.menu-drawer__navigation-container .menu-close .icon:hover{
  color:var(--accent-coral);
  transform:rotate(-90deg);
}

/* .js details[open] .header__icon--menu::before {
  height:100vh;
  width:100vw;
  top:0;
  left:0;
  z-index:1;
  position:fixed;
  transition: var(--transition);
} */
.menu-drawer summary.menu-drawer__menu-item,
.list-menu__item{
  background:var(--text-white) !important;
}
.menu-drawer summary.menu-drawer__menu-item:hover,
.list-menu__item:hover{
  background:rgba(var(--color-foreground),.04) !important;
}
.menu-drawer__close-button{
font-size:18px !important;
margin-bottom:10px;
justify-content :center !important;
}
.menu-drawer__close-button .svg-wrapper{
  width:20px !important;
  position:absolute;
  left:30px;
}
.sticky-header .header .btm-header .header-actions .header__icon--menu .icon{
  color:#000;
}
.menu-drawer__navigation{
  padding-top:1rem !important;
}
.menu-drawer__navigation{
  height:87vh;
}
.menu-drawer__navigation-container{
  display:block !important;
}
#menu-drawer .menu-drawer__account{
  padding:1rem 1.5rem;
}

.swatch-input__label-wrapper[disabled] {
  cursor: not-allowed;
  opacity: 0.4;
}
.swatch-input__label-wrapper[disabled] .swatch {
  cursor: not-allowed;
}
.thumbnail-slider .slick-list {
  width: 100%;
}
.thumbnail-slider .slick-list.draggable, .product__media-list .slick-list.draggable {
  margin: 0;
}
.thumbnail-slider .slick-slide {
  margin: 0 6px;
}
.thumbnail-list .slick-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
}
.thumbnail-list.slick-slider:hover .slick-prev {
  left: -15px;
}
.thumbnail-list.slick-slider:hover .slick-next {
  right: -15px;
}
.product__media-list.slick-slider:hover .slick-prev {
  left: -20px;
}
.product__media-list.slick-slider:hover .slick-next {
  right: -20px;
}


.nav-header .header-actions:last-of-type {
    justify-content: flex-end;
}

body .has-mobile-image .mobile-image {
  display: none;
}
.rich-text__heading {
  font-family: 'The Seasons';
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
}
.menu-drawer-container .cart-drawer__overlay {
  background-color: rgba(var(--color-foreground), .5);
  z-index: 9;
}

.no-products-in-collection #main-collection-filters {
  display: none;
}
strong{
  font-weight:700 !important;
}
.rte a{
  padding-right:10px;
}
.search-btn {
  display: flex;
}
.swym-header-launcher {
  display: none;
}
/* .js .menu-drawer__submenu{
  transition: all .4s ease-in-out;
} */
.menu-drawer__menu-item--active, .menu-drawer__menu-item:focus, .menu-drawer__close-button:focus, .menu-drawer__menu-item:hover, .menu-drawer__close-button:hover{
  color:var(--accent-coral) !important
}
.whatsapp-icon{
  mask-image:url(whatsapp.svg)
}
.social-icons a:hover:has(.whatsapp-icon){
  color:#25D366;
}
.banner-title{
  position: absolute;
    color:rgb(0, 0, 0);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align:center;
    font-family: 'The Seasons';
   
    
    
    font-size: 60px;
}
.collection-hero__image-wrapper{
  position:relative;
}

.more-wrp .btn,
.more-wrp,
.more-wrp .icon-wrap {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align:center;
}
.more-wrp .btn {
  gap: 8px;
  font-size: 28px;
  flex-direction: column;
  color: var(--primary-pink);
  text-transform:uppercase;
}
.more-wrp .icon-wrap {
    border: 2px solid currentColor;
    height: 54px;
    width: 54px;
    padding: 2px;
    font-size: 33px;
    border-radius: 50%;
    transition: var(--transition);
}

.more-wrp .btn:hover .icon-wrap {
  background-color: var(--primary-pink);
  color: var(--text-white);
  border: 2px solid var(--primary-pink);
}
.hero-sec  .slick-list.draggable {
        margin: 0 !important;
    }
    .sec-title em{
      color:var(--text-primary)
    }
.explore-sec .explore-slide .box .con{
  padding-left:10px;
  padding-right:10px
}

.hero-con.Hero-banner-right{
  left:inherit !important;
  right:12%;
}




.slick-arrow.slick-disabled{
  visibility:hidden;
  opacity:0;
  z-index:-1;
}

.menu-drawer-container.is-active #menu-drawer {
  transform: translateX(0%);
}

.cart-drawer__overlay {
  visibility: hidden;
  opacity: 0;
}
.menu-drawer-container.is-active .cart-drawer__overlay {
  visibility: visible;
  opacity: 1;
  height: 100vh;
}

.js .has-sub-menu.is-active .menu-drawer__submenu {
  transform: translateX(0%);
  visibility: visible;
}
/* flickity button */
.flickity-enabled .flickity-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-pink);
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%);
  transition: 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:none;
}

.flickity-enabled .flickity-prev-next-button .flickity-button-icon {
  display: none;
}

.flickity-enabled .flickity-prev-next-button:before {
  content: "";
  width: 28px;
  height: 28px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: block;
}

.flickity-enabled .flickity-prev-next-button.previous:before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' color='%23ffffff'><path d='M6 12h12.5m0 0l-6-6m6 6l-6 6' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  transform: rotate(180deg);
}

.flickity-enabled .flickity-prev-next-button.next:before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' color='%23ffffff'><path d='M6 12h12.5m0 0l-6-6m6 6l-6 6' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}


/* ---------- SLIDE-IN POSITIONS ---------- */

.flickity-enabled .flickity-prev-next-button.previous {
  left: -50px;   
}
.flickity-enabled .flickity-prev-next-button.next {
  right: -50px;  
}

.flickity-enabled:hover .flickity-prev-next-button.previous {
  opacity: 1;
  visibility: visible;
  left: 10px;
}

.flickity-enabled:hover .flickity-prev-next-button.next {
  opacity: 1;
 visibility: visible;
  right: 10px; 
}


.flickity-enabled .flickity-button:hover {
  background: var(--accent-coral);
}

.flickity-enabled .flickity-button:disabled {
  opacity: 0 !important;
  visibility: hidden !important;
}


#bottom-nav {
  
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 98;
}

#bottom-nav .nav-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
  color: var(--text-primary);
}

#bottom-nav  .nav-item svg {
  width: 24px;
  height: 24px;
  color:currentColor;
  transition: 0.2s;
}


#bottom-nav .nav-item span {
  font-size: 12px;
  margin-top: 4px;
}

#bottom-nav .nav-item.active,
#bottom-nav .nav-item:hover {
  opacity: 1;
}

.index #bottom-nav .nav-item[data-id="home"] {
  color:var(--primary-pink);
}

.index #bottom-nav .nav-item[data-id="home"]  {
  color:var(--primary-pink);
}

.collection #bottom-nav .nav-item[data-id="new"]{
  opacity: 1;
  color:var(--primary-pink);
}

.collection #bottom-nav .nav-item[data-id="new"] svg{
  stroke:currentColor;
  fill:currentColor;
}

#bottom-nav .nav-item.actives{
  color:var(--primary-pink);
}
#bottom-nav .nav-item.actives svg path{
  stroke: currentColor;
}

/* policy */
#MainContent .shopify-policy__container {
    max-width: 560px;
    max-width: 1820px;
    margin: 0px auto ;
    padding-left: 0;
    padding-right: 0;
    padding-top: 120px;
    padding-bottom: 120px;
}
#MainContent .shopify-policy__title h1{
  
  font-family: 'The Seasons';
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 34px;
}
#MainContent .shopify-policy__body strong ,
#MainContent .shopify-policy__body a{
  color: var(--text-primary);
}
#MainContent .shopify-policy__body strong{
  margin-bottom: 10px;
  display: inline-block;
}
#MainContent .shopify-policy__body p{
  margin-bottom: 12px;
  
}
#MainContent .shopify-policy__body h2{
  margin: 20px 0 12px;
}
#MainContent .shopify-policy__body h3{
  margin: 16px 0 10px;
}
#MainContent .shopify-policy__body  ul{
  padding-left: 0;
  margin: 20px 0;
}
#MainContent .shopify-policy__body  ul ul{
  margin-top:5px;
  margin-bottom:10px;
}
#MainContent .shopify-policy__body ul li{
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}
#MainContent .shopify-policy__body ul li:last-child{
  margin-bottom: 0;
}
#MainContent .shopify-policy__body ul li::before{
  content: "";
  position: absolute;
  left: 0;
}
#MainContent .shopify-policy__body ul > li::before{
  background-image: url(right_arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 20px ;
  width: 20px;
  top:1px;
  
}
#MainContent .shopify-policy__body ul li ul li::before{
  height:6px;
  width:6px;
  border-radius:50%;
  background:#000;
  top: 7px;
}
#MainContent .shopify-policy__body ul li ul li{
  padding-left:14px
}
#MainContent .shopify-policy__body table{
  margin:20px 0;
}

#MainContent .shopify-policy__body .rte>*:first-child{
  color:var(--text-primary)
}

.sdk-sec .sec-title p br{
  display:none;
}

.swatch-input__input:checked + .swatch-input__label-wrapper {
  border: 1px solid var(--primary-pink);
  background-color:var(--primary-pink)
  
}
.swatch-input__input:checked + .swatch-input__label-wrapper .swatch-label-text {
  color:var(--text-white);
}
.swatch-input__label-wrapper,
.swatch-input__label-wrapper .swatch-label-text{
  transition:var(--transition)
}

.more-wrp {
 height:80%;
}


/*  */
.size-label-size-chart {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.size-chart-label {
  font-size: 13px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 1.5px;
  cursor: pointer;
}
.size-chart-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
  display: none !important;
}

.size-chart-modal.active {
  display: flex !important;
}

/* ===== Modal Box ===== */
.size-chart-box {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== Header ===== */
.sc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 25px;
  border-bottom: 1px solid #eee;
}

.sc-logo img {
  width: 40px;
}

.sc-title-wrap {
  text-align: center;
  flex: 1;
}

.sc-title-wrap .sc-title {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
}

.sc-title-wrap p {
  margin: 0;
  font-size: 14px;
  opacity: 0.7;
}

.sc-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===== Tabs ===== */
.sc-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 12px 0;
}

.sc-tabs button {
  position: relative;
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  padding-bottom: 4px;
  font-weight: 600;
  opacity: 0.5;
  transition: 0.3s;
  transition: var(--transition);
}

.sc-tabs button.active {
  color: #ef5f96;
  opacity: 1;
}
.sc-tabs button.active::before {
  opacity: 1;
  visibility: visible;
}
.sc-tabs button::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
  left: 50%;
  transform: translate(-50%);
  background-color: #ef5f96;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
/* ===== Table Styles ===== */
.sc-table-wrap {
  padding: 20px;
  overflow-x: auto;
}

.sc-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  display: none;
}

.sc-table.active {
  display: table;
}

.sc-table th,
.sc-table td {
  padding: 12px 8px;
  border: 1px solid #eee;
  font-size: 14px;
}

.sc-table th {
  font-weight: 700;
}

.sc-table .bold {
  font-weight: 700;
}