/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}
:root {
  --font-one: "Fanwood Text", serif;
  --font-two: "Farro", sans-serif;
  --brand-color: #fff;
  --main-color: #000000;
  --bg-color: #FFFAED;
  --border-black: 1px solid #0000001f;
  --grey: #A4A4A4;
}
body {
  font-size: 100%;
  color: var(--brand-color);
  background: var(--bg-color);
  font-family: var(--font-two);
  margin: 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-text-size-adjust: none;
  font-weight: 300;
  transition: background 0.2s linear;
}
.clear {
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

:focus {
  outline: 0;
}

a,
a:link,
a:visited {
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  font-family: var(--font-two);
}

a:before {
  transition: all 0.3s ease-in-out;
}

a:after {
  transition: all 0.3s ease-in-out;
}

img {
  border: none;
  max-width: 100%;
}

ul,
li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.2;
  font-family: var(--font-one);
}

p {
  margin: 0;
  line-height: 1.3;
  font-size: 1em;
  color: var(--main-color);
  font-weight: 300;
  font-family: var(--font-two);
}

h1 {
  margin: 0;
  padding: 0;
  color: var(--brand-color);
  line-height: 1.1;
  font-size: 6em;
  font-weight: 400;
  overflow: hidden;
  font-family: var(--font-one);
  font-style: italic;
}

h2 {
  margin: 0;
  padding: 0;
  color: var(--main-color);
  line-height: 1;
  font-size: 3em;
  font-weight: 200;
  line-height: 1;
  font-family: var(--font-one);
}
h3 {
  margin: 0;
  padding: 0;
  color: var(--bg-color);
  font-size: 2em;
  line-height: 1;
  font-weight: 200;
  font-family: var(--font-two);

}

h4 {
  margin: 0;
  padding: 0;
  color: var(--color-white);
  line-height: 1.3;
  font-size: 1.1em;
  font-weight: 600;
  font-family: var(--font-one);
  text-transform: uppercase;
}

.outer:before,
.outer:after,
.container:after,
.container:before,
.container-full:after,
.container-full:before,
.slider-area:after,
.slider-area:before {
  content: " ";
  display: table;
}

.outer:after,
.container:after,
.container-full:after,
.slider-area:after {
  clear: both;
}

.container {
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
}


.home-banner {
  position:relative;
  height:100vh;

}

/* BG */
.home-banner-bg {
  position:absolute;
  inset:0;
  will-change: transform;
}

.home-banner-bg img{
  width:100%;
  height: 100%;
  object-fit:cover;
}

/* Content */
.home-banner-content {
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:white;
  text-align:center;
}

h1.home-banner-title {
  display: flex;
    align-items: flex-start;
    gap: 40px;
}

.home-banner-title span{
  font-style: italic;
}
.submit-btn {
	position: relative;
    padding: 12px 59px !important;
    background: transparent;
    color: #000;
    border: 1px solid #000 !important;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 1;
    width: fit-content !important;
    font-size: 1.5em;
    text-transform: uppercase;

}

.btn-slide {
  position: relative;
  display: inline-block;
  padding: 12px 35px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  letter-spacing: 1px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
  width: fit-content;
  text-transform: uppercase;
}
/* .woocommerce-filter-bar.is-sticky {
      position: fixed;
    bottom: 20px;
    left: 0;
    width: 70%;
    z-index: 999;
    background: #000;
    height: 84px;
    padding: 20px 0;
    right: 0;
    margin: 0 auto; 
    border: 0;
	backdrop-filter: blur(10px) saturate(180%);
}
.woocommerce-filter-bar.is-sticky .container {
	    width: 95%;
} */
.btn-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 0;              /* no negative */
}

.btn-slide span {
  position: relative;
  z-index: 2;              /* text always above */
}

.btn-slide:hover::before {
  transform: scaleX(1);
}

.btn-slide:hover {
  color: var(--main-color);
}
a.btn-slide.black-slider {
    border: 1px solid var(--main-color);
    color: var(--main-color);
}
a.btn-slide.black-slider:before {
 background: var(--main-color);
}
a.btn-slide.black-slider:hover {
  color: var(--brand-color);
}
.bottom-banner-content {
    border-top: 1px solid #ffffff26;
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 50px 0;

}
.bottom-banner-content p {
  color: var(--brand-color);
  font-weight: lighter;
  font-size: 1.1em;
}
.bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 10px 0 20px 0;
}
.w-100 {
  width: 100%;
}
.product-slider {
  padding: 100px 0;
}
.head-text {
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
}
.head-text h2 span {
  font-style: italic;
}
.fashion-slider {
  padding: 50px 0;
  border-bottom: var(--border-black);
}
.fashion-slider {
  padding: 60px 0 60px;
  position: relative;
}

.custom-arrows {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
}

.custom-arrows button {
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #000;
  transition: 0.3s ease;
}

.custom-arrows button:hover {
  transform: translateX(5px);
}

.prev-btn:hover {
  transform: translateX(-5px);
}
.embla {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.embla__container {
  display: flex;
  gap: 0;
}

.embla__slide {
  position: relative;
  flex: 0 0 calc(100% / 3); /* 3 slides visible */
  min-width: 0;
  overflow: hidden;
  height: 800px;
	margin: 0 20px 0 0;
}

.embla__slide img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.embla__slide:hover img {
  transform: scale(1.04);
}
.embla__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
button.prev {
    transform: rotate(180deg);
    opacity: 0.3;
}
/* Caption */
.caption {
 position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 30px;
    width: 100%;
}

.caption span {
  font-size: 14px;
    letter-spacing: 2px;
    display: block;
    width: 100%;
    text-align: right;
    text-transform: uppercase;
    text-shadow: 0 0 20px black
}

.caption button {
  padding: 6px 16px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.caption button:hover {
  background: #fff;
  color: #000;
}

/* Arrows */
.slider-arrows {
  display: flex;
    justify-content: space-between;
    max-width: 1800px;
    width: 90%;
    margin: 0 auto;
    padding: 50px 0 0 0;
}

.slider-arrows button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.parallax-section.modern-parallax {
  display: flex;
  gap: 40px;
  padding: 50px 0 0 0;
}

/* Each Image Block */
.modern-parallax .parallax-item {
	position: relative;
    flex: 1;
    overflow: hidden;
    flex: 0 0 50%;
    max-width: 50%;
}
@media (max-width: 1024px) {
    .modern-parallax .parallax-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* Image Wrapper */
.modern-parallax .parallax-img {
  position: relative;
  width: 100%;
}

/* 🔥 IMAGE FULLY VISIBLE */
.modern-parallax .parallax-img img {
  width: 100%;
  height: auto;          /* Important */
  display: block;
  object-fit: contain;   /* No crop */
}

/* Title Text */
.modern-parallax .parallax-title {
  position: absolute;
  bottom: 0;
  left: 0;
  color: var(--brand-color);
  height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.bottom-section .flex {
    display: flex;
    gap: 20px;
}

.modern-parallax .parallax-title {
  z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
  .parallax-section.modern-parallax {
    flex-direction: column;
  }

  .modern-parallax .parallax-title {
    font-size: 28px;
    bottom: 20px;
    left: 20px;
  }
}

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 120px;
  margin-bottom: 30px;
  animation: fadeIn 1s ease forwards;
}

/* Bottom Loading Line */
.loader-line {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.loader-line::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: loading 1.8s ease-in-out infinite;
}

/* Animations */
@keyframes loading {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.product-section {
padding: 0 0 50px 0;
    border-bottom: var(--border-black);
}
/* Full Section */
.full-parallax.luxury-parallax {
  position: relative;
    width: 100%;
    overflow: hidden;
    padding: 100px 0 0 0;
    margin: 0 0 50px 0;
}

/* Wrapper */
.luxury-parallax .parallax-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Fully Visible Image */
.luxury-parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* No crop */
  object-position: center;
  display: block;
}

/* Center Text */
.luxury-parallax .parallax-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.luxury-parallax h2 {
  color: var(--brand-color);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.luxury-parallax h2 span {
  font-style: italic;
}
p.stock-warning {
   background-color: #000000;
    padding: 5px 10px !important;
    font-size: 10px !important;
    margin: 10px auto;
    max-width: fit-content;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 12px;
    font-weight: 700;
}
.instagram {
  padding: 50px 0 50px 0;
    border-top: var(--border-black);
}
.bottom-section h2 span {
  font-style: italic;
}
.instagram-api {
  margin: 50px 0 0 0;
}
.instagram-api img {
  display: block;
}
.fx-hero {
  padding: 0 0 50px 0;
}
.fx-hero img {
  mix-blend-mode: darken;
}
.fx-hero p {
  max-width: 480px;
    line-height: 1.5;
    font-family: var(--font-one);
    font-size: 1.5em;
}
.bottom-section-fx {
  display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-img {
  background-color: var(--bg-color);
}

/* ===== FOOTER BASE ===== */
.modern-footer {
padding: 50px 0;
 max-width: 1800px;
 width: 90%;
 margin: 0 auto;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid var(--main-color);
    padding: 50px 0 0 0;
}

/* ===== LINKS ===== */
.footer-links {
  display: flex;
  gap: 100px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col a {
  text-decoration: none;
    color: #000;
    font-size: 1em;
    position: relative;
    transition: 0.3s ease;
    font-weight: 300;
}

/* Smooth underline hover */
.footer-col a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #000;
  transition: 0.3s ease;
}

.footer-col a:hover::after {
  width: 100%;
}

.footer-col a:hover {
  opacity: 0.7;
}

/* ===== RIGHT SIDE ===== */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
  color: #000;
  background-color: var(--main-color);
  transition: 0.3s ease;
}

.social-icon:hover {
  background: #000;
  color: #fff;
}

/* ===== PAYMENT SELECT ===== */
.footer-payment {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 220px;
}

.footer-payment label {
  font-size: 12px;
  letter-spacing: 1px;
}

.footer-payment select {
  padding: 10px 12px;
  border: 1px solid #000;
  background: transparent;
  font-size: 13px;
  letter-spacing: 0.5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Hover & Focus */
.footer-payment select:hover,
.footer-payment select:focus {
  background: #000;
  color: #fff;
}
.ya-breadcrumb {
 padding: 80px 0 0 0;
    font-family: var(--font-one);
    max-width: 1800px;
    width: 90%;
    margin: 0 auto;

}

.ya-breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0;
  margin: 0;
}

.ya-breadcrumb li {
  position: relative;
    font-size: 1.1em;
    color: var(--main-color);
    font-family: var(--font-two);
    text-transform: uppercase;
    list-style: none !important;
    margin: 0 0 0 0 !important;

}

.ya-breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 10px;
  color: #7B7B7B;
}

.ya-breadcrumb a {
  text-decoration: none;
  color: #555;
  position: relative;
  transition: 0.3s ease;
}

.ya-breadcrumb a:hover {
  color: #000;
}

.ya-breadcrumb a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: #000;
  left: 0;
  bottom: -2px;
  transition: 0.3s;
}

.ya-breadcrumb a:hover::after {
  width: 100%;
}

.ya-breadcrumb .active {
 
  color: var(--main-color);
}
.inner-outer {
  margin: 100px 0 0 0;
}
.second-heading h1 {
  color: var(--main-color);
  font-style: normal;
  font-size: 8.5em;
  margin: 50px 0;
}
.second-heading h1 span {
  font-style: italic;
}


.category-container {
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
}

/* Desktop Menu */
.category-list {
  list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.category-list li {
    font-size: 1.1em;
    cursor: pointer;
    position: relative;
    font-weight: 300;
    transition: 0.3s;
    color: var(--main-color);
}

.category-list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #111;
  transition: 0.3s;
}

.category-list li:hover::after,
.category-list li.active::after {
  width: 100%;
}

.category-list li.active {
  font-weight: 600;
}
.home .full-parallax.luxury-parallax {
  padding: 120px 0 0 0;
} 


.category-container select {
  display: none;
}

/* =========================
   GRID LAYOUT
========================= */

.fashion-section {
  padding: 50px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
}

.card {
  position: relative;
  overflow: hidden;
}
.head_wooco {
	display: flex;
    gap: 20px;
}

/* Tall variation */
.tall {
  grid-row: span 2;
}

/* =========================
   IMAGE
========================= */

.media {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.detailed-page .fashion-section .card.tall.parallax-item .media img {
    height: 100%;
}
.detailed-page .fashion-section .grid {
   display: flex;
    column-gap: 2rem;
    align-items: stretch;
}
.detailed-page .fashion-section .grid .card {
	flex: 1;
}
.detailed-page .fashion-section .card.parallax-item.product-grid .media img {
    height: auto;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(.19,1,.22,1);
}

.card:hover img {
  transform: scale(1.1);
}

/* =========================
   OVERLAY
========================= */

.overlay {
  position: absolute;
    bottom: 15%;
    left: 0;
    color: white;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.6s ease;
    width: 100%;
    text-align: center;
}
.overlay b {
  display: block;
  color: var(--brand-color);
  margin: 5px 0 20px 0;
  font-size: 1.2em;
}
.overlay h2 {
  color: var(--brand-color);
}
.overlay h2 span {
  font-style: italic;
}
.card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.btn-outline {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  transition: 0.4s ease;
}

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

/* =========================
   TEXT CARD
========================= */

.text-card {
  padding: 20rem 5rem;
  display: flex;
  align-items: flex-start;
  font-size: 1.2rem;
  line-height: 1.8;

}
.card.text-card p {
    display: flex;
    gap: 20px;
    font-size: 1.7em;
    font-family: var(--font-one);
    align-items: flex-start;
    max-width: 700px;
	line-height: 1.2;
}

.star {
  font-size: 1.5rem;
  margin-right: 10px;
}

/* =========================
   RESPONSIVE
========================= */




 .card.no-tall.text-card {
  padding: 10rem 5rem;
} 
 .card.no-tall.text-card p {
max-width: 400px;
    font-size: 1.2em;
 }


/* Pagination Wrapper */
.pagination {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 0 0 0;
}

/* Base Page Button */
/*.page {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  color: #B0B0B0;
  font-size: 1em;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(.19,1,.22,1);
  background-color: transparent;
  font-family: var(--font-two);
}

/* Hover Effect 
.page:hover {
  color: #000;
  transform: translateY(-2px);
}

/* Active State 
.page.active {
  background: #000;
  color: #fff;
}

/* Smooth Press Effect 
.page:active {
  transform: scale(0.9);
}
*/

.luxury-parallax p {
    color: #fff;
    font-size: 1.4em;
    padding: 0 0 30px 0;
}
.woocommerce-filter-bar .luxury-parallax p {
	 padding: 0 0 0 0;
} 
.luxury-parallax strong {
display: block;
    font-weight: 300;
    font-size: 2.3em;
    
}
.luxury-parallax strong.strike {
text-decoration: line-through;
font-size: 1.3em;
padding: 0 0 10px 0;
}
p.out-of-stock-message {
    position: relative;
    display: inline-block;
    padding: 12px 35px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    letter-spacing: 1px;
    /* cursor: pointer; */
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 1;
    width: fit-content;
    text-transform: uppercase;
    font-size: 1em;
}
p.cart-error-message {
	color: #fff!important;
    margin-top: 10px!important;
    font-size: 10px;
    background-color: red;
    padding: 5px;
    text-align: center;
}
/* Filter Bar */
.woocommerce-filter-bar {
   padding: 40px 0;
    border-top: 1px solid rgb(238 238 238 / 32%);
    position: absolute;
    bottom: 0;
    width: 100%;

}

.woocommerce-filter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
    
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Label */
.filter-label {
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-color);
}

/* Size List */
.filter-list {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

.filter-list li a {
  text-decoration: none;
  color: var(--brand-color);
  font-size: 1em;
  letter-spacing: 1px;
  position: relative;
  transition: 0.3s ease;
  text-transform: uppercase;
}

.filter-list li.active a
 {
  color: var(--brand-color);
  font-weight: 500;
   transition: 0.3s ease;
}

/* Color Swatches */
.color-swatches {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.color-swatches .color {
width: 22px;
    height: 22px;
    border-radius: 50%!important;
    background: var(--color);
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.3s ease;
    position: relative;
}

/* Active + Hover Effect */
.color-swatches .color.active {
 transform: scale(1.1);
    border: 2px solid #4CAF50;
}

/* White color fix */
.color[data-color="white"] {
  border: 1px solid #ccc;
}


.text-card h4 {
  color: var(--main-color);
  font-size: 1.1em;
  display: flex;
  gap: 20px;
  font-family: var(--font-two);
  text-transform: none;
  font-weight: 300;
  flex-wrap: wrap;
}
.product-grid h4 span {
  display: block;
}
.wrap-block {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}
.pd {
  padding: 0 0 50px 0;
}
.pt {
  padding: 50px 0 0 0;
}
.border-top {
  border-top: var(--border-black);
}
.border-bottom {
  border-bottom: var(--border-black);
}
.text-white p {
color: var(--main-color);
font-size: 1em;
}
.bottom-section.align-item-end {
    justify-content: flex-end;
}
.product-detail-image-block .modern-parallax .parallax-img img {
  height: 800px;
  object-fit: cover;
  object-position: top;
}
.product-detail-image-block  .parallax-title h2 {
  color: var(--brand-color);
  display: flex;
    justify-content: flex-end;
    width: 100%;
    font-size: 2em;
    text-transform: uppercase;
}
.product-detail-image-block a.btn-slide {
  margin: 350px 0 0 0;
}
.product-detail-image-block .modern-parallax .parallax-title {
  flex-direction: column;
  align-items: flex-start;
    width: 100%;
    justify-content: flex-start;
    padding: 50px;
}
.detailed-page .full-parallax.luxury-parallax {
  padding: 50px 0 0 0;
} 
.br-0 {
  border: 0;
}
.detailed-page .product-slider {
  padding: 50px 0;
} 

/* ===============================
   SECTION
================================= */
.about-section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 5%;
}

/* Container */
.about-container {
  position: relative;
  width: 100%;
}
.about-bg-title {
  text-align: center;
}
.about-bg-title img {
  max-width: 1000px;
}
.poster-signature img {
    max-width: 150px;
}
/* ===============================
   BIG BACKGROUND TITLE
================================= */


/* ===============================
   CONTENT
================================= */
.about-content {
  position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.about-label {
    font-size: 1.2em;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--main-color);
}

.about-text {
  font-size: 2.1em;
  font-weight: 400;
  font-family: var(--font-one);
}








/* ===============================
   SECTION
================================= */
.philosophy-section {

  display: flex;
  align-items: center;
  padding: 100px 0;
  background: radial-gradient(circle at left, #1a1a1d 0%, #0e0e10 60%);
}

/* Container */
.philosophy-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  width: 100%;
}

/* ===============================
   LEFT CONTENT
================================= */
.section-label {
  font-size: 1.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 30px;
}

.philosophy-text {
  font-family: var(--font-one);
  font-size: 2.1em;
  margin-bottom: 28px;
  font-weight: 400;
  color: var(--grey);
  max-width: 500px;
}

/* ===============================
   RIGHT IMAGE
================================= */
.philosophy-image img {
  width: 100%;
  height: 900px;
  display: block;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.6s ease;
}

.philosophy-image img:hover {
  transform: scale(1.03);
}




.mindful-section {
 
  padding: 100px 0;
 
}



/* Label */
.mindful-label {
  font-size: 1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--main-color);
}

/* Grid */
.mindful-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

/* Columns */
.mindful-col p {
  font-family: var(--font-one);
  font-size: 2.1em;
  margin-bottom: 20px;
}





.mindful-col {
  max-width: 650px;
}





.small-container {
  max-width: 900px;
  margin: 0 auto;
  width: 90%;
}
.medium-container {
 max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}
/* Text Styling */
.sustain-text {
  font-size: 2.1em;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: var(--font-one);
}

/* Remove last paragraph spacing */
.sustain-text:last-child {
  margin-bottom: 0;
}




.sustain-section {
  padding: 250px 0 50px 0;
}
.founder-section {

padding: 100px 0;
}

.founder-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

/* ==============================
   LEFT SIDE
================================ */
.founder-image img {
  width: 100%;
  display: block;
  margin-bottom: 40px;
}

.founder-label {
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  color: var(--main-color);
}

.founder-content p {
  font-size: 2.1em;
  margin-bottom: 20px;
  font-family: var(--font-one);
}

/* ==============================
   RIGHT POSTER (CODED DESIGN)
================================ */
.founder-poster {

  color: var(--brand-color);
  padding: 100px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--main-color);
}

/* Big Title */
.poster-title {
  font-size: clamp(90px, 10vw, 160px);
  line-height: 0.85;
  font-weight: 700;
  text-transform: lowercase;
}

/* Poster Content */
.poster-content {
 max-width: 400px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.poster-label {
  font-size: 1.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;

}

.poster-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.7;
  line-height: 1.9;
  color: var(--brand-color);
  text-transform: uppercase;
}

/* Signature */
.poster-signature {
  font-family: cursive;
  font-size: 20px;
  opacity: 0.9;
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .founder-container {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .founder-poster {
    padding: 60px 40px;
  }
}



.founder-poster img {
  width: 100%;
}

.common-layout {
  border-top: var(--border-black);
}
.common-layout .ya-breadcrumb {
  max-width: 100%;
  width: 100%;
}
.common-page-content {
    border-left: var(--border-black);
    border-right: var(--border-black);
   padding: 0 100px 50px 100px;
}
.common-layout h2 {
    padding: 50px 0 20px 0;
}
.common-layout h2 span {
  font-style: italic;
}
.common-page-content p a {
  color: var(--main-color);
   text-decoration: underline;
}
.common-page-content strong {
  color: var(--main-color);
  display: block;
  padding: 30px 0 10px 0;
  font-weight: 600;
 
}

.common-page-content ul li {
  color: var(--main-color);
  list-style: disc;
    margin: 0 0 0 20px;
}






/* ==============================
   ROW LAYOUT
================================ */
.insight-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.insight-row.reverse {
  grid-template-columns: 1fr 1.3fr;
}

/* Image */
.insight-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 350px;
}

/* Content */
.insight-date {
  font-size: 1.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--main-color)
}

.insight-heading {
  font-size: 1.2em;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--main-color);
}

.insight-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 420px;
}

/* Read More Link */
a.read-more {
  font-size: 1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--main-color);
    position: relative;
    display: inline-block;
    font-weight: 400;
    font-family: var(--font-two);
}

a.read-more::after {
  content: "";
    position: absolute;
    left: 105px;
    top: 10px;
    width: 50px;
    height: 1px;
    background: var(--main-color);
    transition: width 0.3s ease;
}

a.read-more:hover::after {
  width: 70px;
}

/* Divider */
.insight-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 80px;
}





.insight-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.copyright {
    margin: 50px 0 0 0;
}
.copyright a {
	color: #000;
	text-decoration: underline;
}

.blog-section {
  padding: 50px 0;
}



/* Date */
.blog-date {
  font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--main-color);
}

/* Title */
.blog-title {
  font-weight: 300;
  margin-bottom: 40px;
  font-family: var(--font-two);
  padding: 0!important;
}

/* Hero */
.blog-hero img {
  width: 100%;
    display: block;
    margin-bottom: 50px;
    height: 550px;
    object-fit: cover;
}

/* Quote */
.blog-quote {
  display: flex;
  gap: 15px;
  margin: 0 auto;
  max-width: 1100px;
  width: 90%;
}

.quote-mark {
  font-size: 5em;
  line-height: 1;
  color: var(--main-color);
}

.blog-quote p {
  font-family: var(--font-two);
  font-size: 1.7em;
}

/* Content */
.blog-content {
   margin: 0 auto;
  max-width: 1100px;
  width: 90%;
}

.blog-content h3 {
  font-size: 1.2em;
margin: 30px 0 10px 0;
  font-weight: 500;
  color: var(--main-color);
}

.blog-content p {
  font-size: 1.3em;
  margin-bottom: 15px;
   color: var(--main-color);
}

/* Image Grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
  width: 90%;
}
.home .modern-parallax .parallax-item {
	max-width: inherit;
}
button#ajax-add-to-cart {
    background-color: #000;
    border: 1px solid #000;
}
.wo-commerce-content {
margin: 200px auto 100px auto;
    max-width: 1400px;
}
.blog-grid img {
  width: 100%;
  display: block;
  height: 400px;
  object-fit: cover;
}
.blog-section ul li {
  list-style: disc;
  color: var(--main-color);
  font-size: 1.7em;
}
.blog-section ul {
  margin: 0 0 0 20px;
}
.blog-section p a {
  color: var(--main-color);
  text-decoration: underline;
}

.blog-section p {
  max-width: 900px;
}

.fashion-section .grid {
  row-gap: 2rem;
}



























































/************************************** Menu-section-start *************************************/
/* HEADER */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 20px 0;
  background: transparent; /* TEMP so you can see */
  z-index: 9999;
  -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;    
    transition: all 0.3s ease-in-out;
}
.header.bgcolor {
   background: var(--bg-color);
background: linear-gradient(188deg, rgb(0 0 0) 0%, rgb(0 0 0 / 77%) 43%, rgb(0 0 0 / 70%) 100%);
    padding: 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;    
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 50px #00000015;
    padding: 25px 0;
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
}

.svg-icon{
  width: 20px;
  height: 20px;
  background-color: var(--brand-color);
  mask-size: contain;
}
.inner a.svg-icon.search path  {
  fill: var(--main-color);
}
.inner .header.bgcolor {
background: linear-gradient(188deg, rgb(255 255 255) 0%, rgb(255 255 255 / 77%) 43%, rgb(255 255 255 / 70%) 100%);
}
a.svg-icon.search {
    background-color: transparent!important;
}
a.svg-icon.account {
  mask: url("../images/account.svg") no-repeat center;
}
a.svg-icon.cart {
    mask: url("../images/cart.svg") no-repeat center;
}
a.svg-icon.search svg {
    width: 20px;
    height: 20px;
}
.svg-icon:hover{
  background-color: var(--main-color);
}

/* NAV */
.nav {
 display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1800px;
    width: 90%;
    margin: 0 auto;
}

/* LOGO */
.logo {
  font-size: 22px;
  color: white;
  
}

/* MENU DESKTOP */
.menu {
 display: flex;
    gap: 30px;
    align-items: inherit;
}

.menu a {
 color: var(--main-color);
    text-decoration: none;
    font-family: var(--font-two);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: lighter;
}
.home .menu a {
  color: var(--brand-color);
}
.home a.svg-icon {
  background-color: var(--brand-color);
} 
.home .home-page {
  display: block;
}
.home .inner-logo {
  display: none;
}
.inner .inner-logo {
  display: block;
}
.inner a.svg-icon {
  background-color: var(--main-color);
} 
.inner .home-page {
  display: none;
}
.hamburger {
  width: 30px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: center;
  z-index: 10000;
}

.hamburger span {
  height: 3px;
  background: white;
  margin: 4px 0;
  display: block;
  transition: all 0.4s ease;
}

/* ACTIVE STATE */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/************************************** Menu-section-end *************************************/


/* ===============================
   MEGA DROPDOWN
================================= */



/* Dropdown hidden default */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 50px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.4s ease;
  z-index: 999;
  background-color: #fff;
}



.mega-left img {
  opacity: 0.1;
}
/* Show on hover desktop */
@media (min-width: 769px) {
  .has-dropdown:hover .mega-dropdown {
     opacity: 1;
  visibility: visible;
  transform: translateY(0);
  }
}

.mega-content {
  width: 90%;
  max-width: 1600px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}

/* LEFT */
.mega-left h2 {
  
    font-weight: 300;
    font-family: var(--font-one);
    margin: 100px 0 0 0;
}

.mega-left p {
  max-width: 500px;
  line-height: 1.6;
  font-size: 16px;
}

/* RIGHT GRID */
.mega-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.collection-item img {
 width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
    object-position: top;
}

.collection-item span {
  display: block;
  margin-top: 10px;
  font-size: 1.1em;
  letter-spacing: 1px;
  color: var(--main-color);
  font-weight: 400;
  text-transform: uppercase;
}


/* ===============================
   TABLET
================================= */

@media (max-width: 1024px) {
  .mega-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mega-right {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ===============================
   MOBILE (Accordion Style)
================================= */

@media (max-width: 768px) {

  .mega-dropdown {
    position: static;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    display: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .mega-content {
    grid-template-columns: 1fr;
  }

  .mega-right {
    grid-template-columns: 1fr;
  }

  .collection-item img {
    height: 220px;
  }

  .menu-item.active .mega-dropdown {
    display: block;
  }
	
}








/************************************* Mobile-responsive *******************************************************/



    @media screen and (min-width:200px) and (max-width:683px){
		.bottom-section {
   align-items: flex-start;
        width: 100%;
        justify-content: flex-start;
			gap:0;
}
				.luxury-parallax .parallax-content h2 {
    font-size: 2.5em;
}

		.fashion-section {
			    padding:10px 0 50px 0;
		}
/* .woocommerce-filter-bar.is-sticky {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    height: inherit;
    padding: 40px 0;
    right: 0;
    margin: 0 auto;
    border: 0;
    backdrop-filter: blur(0px) saturate(0%);
} */
  .parallax-section.modern-parallax {
    flex-direction: column;
    gap: 0;
  }
  .hamburger {
    display: flex;
  }
  .modern-parallax .parallax-title {
    font-size: 28px;
    bottom: 20px;
    left: 20px;
  }
		.detailed-page .fashion-section .grid {
			flex-direction: column;
		}
.category-list {
    display: none;
  }
 
  .category-container select {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }
 .grid {
    grid-template-columns: 1fr;
  }

  .tall {
    grid-row: span 1;
  }
  .pagination {
    gap: 18px;
  }

 /* .page {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }*/
  .woocommerce-filter-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-section {
    padding: 60px 20px;
  }

  .about-bg-title {
    font-size: clamp(60px, 18vw, 120px);
  }


  .home .full-parallax.luxury-parallax {
    padding: 100px 0 0 0;
  }
  .philosophy-section {
    padding: 60px 20px;
  }
.filter-group.size-group {
    flex-wrap: wrap;
    gap: 21px;
}
.filter-group.color-group {
    flex-wrap: wrap;
    gap: 10px;
	        flex-direction: row-reverse;
}
.filter-label {
    font-size: 12px; 
}
 .philosophy-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
.philosophy-image img {
  height: 350px;
}
.mindful-grid {
  grid-template-columns: 1fr;
  gap: 0;
}
  .mindful-section {
    padding: 70px 20px;
  }
		.woocommerce-account .woocommerce {
			flex-wrap: wrap;
		}
		.woocommerce-account .woocommerce-MyAccount-navigation {
			width: 100%;
		}
		.woocommerce-account .woocommerce-MyAccount-content {
			flex: 100%;
		}

  .sustain-section {
    padding: 80px 20px;
  }

.sustain-text {
        
        margin: 50px 0 0 0;
    }
.insight-row {
  grid-template-columns: 1fr;
    gap: 20px;
}
.insight-row.reverse {
    grid-template-columns: 1fr;
}
  .poster-title {
    font-size: 70px;
  }
  .blog-hero img {
    height: 300px;
  }
 .insights-section {
    padding: 0
  }

  .insights-title {
    font-size: 22px;
  }
		.write-us {
			padding: 25px;
		}

  .insight-heading {
    font-size: 18px;
  }
.blog-section {
    padding: 80px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }



  .quote-mark {
    font-size: 40px;
  }
.hamburger {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: black;
    flex-direction: column;
    padding: 120px 30px;
    transition: 0.4s;
    z-index: 9998;
  }

  .menu.active {
    right: 0;
  }

  .close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
  }
    .embla__slide {
    flex: 0 0 100%;
    height: 475px;
  }
  .caption {
    top: -6px;
  }
.slider-arrows {
  padding: 0 0 0 0;
}
  .embla__slide img {
    height: 450px;
  }
.footer-container {
  flex-wrap: wrap;
}
.footer-links {
  flex-wrap: wrap;
  gap:50px;
}
.footer-right {
  gap: 20px;
    align-items: flex-start;
    margin: 20px 0 0 0;
}
h1.home-banner-title {
 display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}
.fx-hero {
  padding: 0 0 0 0;
}
h1 {
  font-size: 3.5em;
}
h2 {
  font-size: 2em;
}
.fashion-slider {
  padding: 60px 0 50px;
}
.bottom-section {
  flex-wrap: wrap;
  gap: 20px;
}
.luxury-parallax .parallax-content {
  top: inherit;
	bottom: 130px;
}
.bottom-section-fx {
  flex-wrap: wrap;
  gap: 30px;
}
.second-heading h1 {
 font-size: 2.5em;
 margin: 30px 0 0 0;
}
.inner .menu.active a {
  color: var(--brand-color);
}
.inner .menu.active a.svg-icon {
    background-color: #ffffff;
}
.inner .hamburger span {
  background-color: var(--main-color);
}
.inner .header.bgcolor .hamburger span {
  background-color: var(--main-color);
} 
.inner .header.bgcolor .hamburger.active span {
  background-color: var(--brand-color);
} 
.ya-breadcrumb {
  padding: 70px 0 0 0;
}
.text-card {
  padding: 0;
}
.card.text-card p {
  flex-wrap: wrap;
  font-size: 1.3em;
}
.card.no-tall.text-card {
  padding: 0;
}
.inner .hamburger.active span {
        background-color: #ffffff;
    }
    .full-parallax.luxury-parallax img {
height: 50vh;
    }
 .filter-list {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0 0 0;
    align-items: center;
}
.filter-group button.open-popup-btn {
    font-size: 12px; 
}
		
		.filter-list li a { 
    font-size: 10px; 
}
    .wrap-block {
      margin: 50px 0;
    }
    .product-detail-image-block .parallax-title h2 {
      font-size: 1em;
    }
    .about-bg-title img {
    max-width: 300px;
}
.common-page-content {
  padding: 0 40px 40px 30px;
}
	.head_wooco {
    display: flex;
    gap: 20px;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    width: 100%;
    background-color: #000;
    padding: 10px 0;
    margin: 0 0 24px 0;
}	
		.header {
			padding: 70px 0 0 0;
		}
		.header.bgcolor {
			padding: 60px 0 20px 0;
		}
		.menu a {
			font-size: 1.5em;
		}
			.head_wooco a {
		font-size: 14px;
	}
		.hamburger.active {
		display: flex;
        position: absolute;
        right: 30px;
        top: 50px;
		}
		.mega-dropdown {
			display: block;
		}
		.mega-left {
    display: none;
}
		.collection-item img {
    display: none;
}
		.collection-item a span {
color: #fff;
        font-size: 14px;
        margin: 0;
			
}
		.menu-item.has-dropdown {
			width: 100%;
    text-align: center;
		}
		.home-banner {
    position: relative;
    height: 70vh;
}
		h1.home-banner-title span img {
    max-width: 150px;
}
		.bottom-banner-content p {
			font-size: 1em;
		}
		.product-slider {
    padding: 50px 0;
}
		.fx-hero img {
    mix-blend-mode: darken;
    max-width: 200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
		.copyright {
    margin: 10px 0 0 0;
}
		.inner .head_wooco a.svg-icon {
    background-color: #fff;
}
				.inner .head_wooco a svg {
 stroke: #fff;
}
		.inner a.svg-icon.search.search-toggle path {
    fill: #fff;
}
		.inner .hamburger span {
  background-color: var(--main-color);
}
.inner .header.bgcolor .hamburger span {
  background-color: #000;
} 
	.inner .hamburger.active span {
  background-color: #fff;
}
.inner .header.bgcolor .hamburger.active span {
  background-color: #fff;
} 
		   .woocommerce-page .full-parallax.luxury-parallax img {
        height: 80vh;
    }
		.detailed-page .full-parallax.luxury-parallax {
    padding: 50px 0 0 0 !important;
			margin:0;
}
		.text-white p {
			padding: 0 0 0 0;
		}
		.caption span {
			padding: 30px 0 0 0 ;
		}
		a.btn-slide span {
    padding: 0 0 0 0;
}
		.header.bgcolor .logo img {
			max-width: 95px;
		}
		.header .logo img {
			max-width: 95px;
		}
		.instagram .woocommerce h2 {
			font-size: 1.5em;
		}
		.instagram .bottom-section {
			flex-wrap: nowrap;
		} 
		.bottom-section.align-item-end {
    justify-content: flex-end;
    margin: 30px 0 0 0;
}
		.modern-parallax .parallax-item {
    position: relative;
    flex: 1;
    overflow: hidden;
    margin: 0 0 20px 0;
}
		.common-layout {
			margin: 200px 0 0 0;
		}
		.woocommerce-account .woocommerce-MyAccount-navigation ul {
    flex-direction: column;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    flex: 1 1 100%;
}

.woocommerce-account .woocommerce-MyAccount-content {
    padding: 20px;
}
		detailed-page .fashion-section .grid {
    display: flex;
    column-gap: 2rem;
    align-items: stretch;
    flex-wrap: wrap;
    flex-direction: column;
}
}


@media screen and (min-width:684px) and (max-width:1024px) {
  .parallax-section.modern-parallax {
    flex-direction: row-reverse;
  }
.caption span { 
    padding: 25px 25px 0 0;
}
  .modern-parallax .parallax-title {
    font-size: 28px;
    bottom: 20px;
    left: 20px;
  }
.category-list {
    display: none;
  }
	.head_wooco a {
		font-size: 14px;
	}
  .category-container select {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }
 .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .woocommerce-filter-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-content {
    margin-left: 0;
    margin-top: 20px;
  }

  .about-bg-title {
    line-height: 0.9;
  }
  .philosophy-section {
    padding: 80px 6%;
  }

  .philosophy-text {
    max-width: 100%;
  }
  .mindful-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
	.second-heading h1 {
		font-size: 4.5em;
	}
  .mindful-section {
    padding: 90px 6%;
  }
	.common-page-content {
  padding: 0 40px 40px 30px;
}
			.home-banner {
    position: relative;
    height: 70vh;
}
  .sustain-section {
    padding: 100px 0 0 0;
  }
 .founder-container {
    grid-template-columns: 1fr;
    gap: 70px;
  }
.woocommerce-account .woocommerce {
    flex-direction: column;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    flex: 1 1 50%;
    text-align: center;
}
  .founder-poster {
    padding: 60px 40px;
  }
  .insight-row,
  .insight-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
    .common-layout {
        margin: 200px 0 0 0;
    }
  .insight-content p {
    max-width: 100%;
  }
.hamburger {
    display: flex;
  }
.fashion-section .grid {
    row-gap: 0;
    grid-template-columns: 1fr;
}
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: black;
    flex-direction: column;
    padding: 80px 30px;
    transition: 0.4s;
    z-index: 9998;
  }
.inner .hamburger.active span {
        background-color: #ffffff;
    }
  .menu.active {
    right: 0;
	  width: 100%;
  }

  .close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
  }
	.menu a {
			font-size: 2em;
		}
			.head_wooco a {
		font-size: 14px;
	}
		.hamburger.active {
		display: flex;
        position: absolute;
        right: 30px;
        top: 50px;
		}
    .embla__slide {
    flex: 0 0 100%;
  }
.woocommerce-account .woocommerce {
			flex-wrap: wrap;
		}
		.woocommerce-account .woocommerce-MyAccount-navigation {
			width: 100%;
		}
		.woocommerce-account .woocommerce-MyAccount-content {
			flex: 100%;
		}
  .embla__slide img {
    height: 450px;
  }
   .embla__slide {
    flex: 0 0 50%;
    height: 475px;
  }
  .caption {
    top: -6px;
  }
.slider-arrows {
  padding: 0 0 0 0;
}
  .embla__slide img {
    height: 450px;
  }
.footer-container {
  flex-wrap: wrap;
}
.footer-links {
  flex-wrap: wrap;
  gap:50px;
}
.footer-right {
  gap: 20px;
    align-items: flex-start;
    margin: 20px 0 0 0;
}
h1.home-banner-title {
 display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}
	h1.home-banner-title span img {
    max-width: 150px;
}
.fx-hero {
  padding: 0 0 0 0;
}
h1 {
  font-size: 4.5em;
}
h2 {
  font-size: 2em;
}
.fashion-slider {
  padding: 60px 0 50px;
}
.bottom-section {
  flex-wrap: wrap;
  gap: 20px;
}
.luxury-parallax .parallax-content {
  top: 35%;
}
.bottom-section-fx {
  flex-wrap: wrap;
  gap: 30px;
}
.inner .hamburger span {
  background-color: var(--main-color);
}
.inner .menu.active a {
  color: var(--brand-color);
}
.inner .menu.active a.svg-icon {
    background-color: #ffffff;
}
.inner .hamburger span {
  background-color: var(--main-color);
}
.inner .header.bgcolor .hamburger span {
  background-color: #000;
} 
	.inner .hamburger.active span {
  background-color: #fff;
}
.inner .header.bgcolor .hamburger.active span {
  background-color: #fff;
} 
.text-card {
  padding: 0;
}
.card.no-tall.text-card {
    padding: 0;
}
    .full-parallax.luxury-parallax img {
height: 75vh;
    }
    .filter-group {
      flex-wrap: wrap;
    }
    .wrap-block {
      margin: 50px 0;
    }
    .product-detail-image-block .parallax-title h2 {
      font-size: 1.2em;
    }
    .about-bg-title img {
    max-width: 600px;
}
.philosophy-container {
  grid-template-columns: 1fr;
}
.philosophy-image img {
  height: 600px;
}
	.head_wooco {
    display: flex;
    gap: 20px;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    width: 100%;
    background-color: #000;
    padding: 10px 0;
    margin: 0 0 24px 0;
}	
		.header {
			padding: 70px 0 0 0;
		}
		.header.bgcolor {
			padding: 60px 0 20px 0;
		}
		.menu a {
			font-size: 1.5em;
		}
			.head_wooco a {
		font-size: 14px;
	}
		.hamburger.active {
		display: flex;
        position: absolute;
        right: 30px;
        top: 50px;
		}
		.mega-dropdown {
			display: block;
			        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px 0 50px 0;
        opacity: 1;
        visibility: visible;
        background: transparent;
		}
		.mega-left {
    display: none;
}
		.collection-item img {
    display: none;
}
		.collection-item a span {
color: #fff;
        font-size: 14px;
        margin: 0;
			
}
		.menu-item.has-dropdown {
			width: 100%;
    text-align: center;
		}
	.bottom-banner-content {
		max-width: 500px;
	}
			.inner .head_wooco a.svg-icon {
    background-color: #fff;
}
				.inner .head_wooco a svg {
 stroke: #fff;
}
		.inner a.svg-icon.search.search-toggle path {
    fill: #fff;
}
	.fashion-section {
		padding: 0 0 0 0;
	}
}

/* my style*/

.category-list li a {
    color: #000;
	width: 100%;
	white-space: nowrap;
}
/*search style*/
.header-search{
display:none;
position:absolute;
top:100%;
right:0;
background:#fff;
padding:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.header-search.active{
display:block;
}
/*whishlist style*/
 .product-wishlist .yith-wcwl-add-to-wishlist-button__label,
.product-wishlist .yith-wcwl-wishlistaddedbrowse .yith-wcwl-add-to-wishlist-button__label {
    display: none !important;
}
.product-wishlist .yith-wcwl-add-to-wishlist a:before {
    content: "♡";  /* outline heart */
    font-size: 24px;
    color: #000;
}

.product-wishlist .yith-wcwl-wishlistaddedbrowse a:before {
    content: "♥";  /* filled heart when added */
    color: red;
}
/*cart button*/
#ajax-add-to-cart.loading span{
opacity:0.5;
pointer-events:none;
}

#ajax-add-to-cart.loading::after{
content:"...";
margin-left:8px;
}
/*whishlist */
.yith-wcwl-add-button a{
transition:all .2s ease;
}

.yith-wcwl-wishlistexistsbrowse,
.yith-wcwl-wishlistaddedbrowse{
opacity:1 !important;
}



a.social-icon img {
    width: 25px;
    height: 25px;
    display: block;
}
a.social-icon:last-child img {
	padding: 2px;
}


p.product-tags {
	position: absolute;
    top: 37px;
    z-index: 1;
    display: inline-block;
    color: #fff;
    padding: 5px 10px;
  font-size: 14px;
    letter-spacing: 2px;
    width: 100%;
	text-transform: uppercase;
	left: 30px;
}

/* Remove all border radius */
.woocommerce * {
    border-radius: 0 !important;
}

/* Cart table border */
.woocommerce table.shop_table {
    border-collapse: collapse !important;
    border: 1px solid #000 !important;
}
.wo-commerce-content h1 {
	color: var(--main-color);
    line-height: 1;
    font-size: 3em;
	margin-bottom: 30px;
	font-style: normal;
}
.cart_totals h2 {
	margin-bottom: 30px;
}
#add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text {
	float: left;
    box-sizing: border-box;
    border: 1px solid #cfc8d8;
    padding: 10px 20px;
    margin: 0 4px 0 0;
    outline: 0;
    width: auto;
    max-width: fit-content;
}
/* Table cells */
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border: 1px solid #000 !important;
    color: #000 !important;
}
.woocommerce table.shop_table {
	border-spacing: 0;
}
/* Cart text color */
.woocommerce-cart .cart,
.woocommerce-cart .cart th,
.woocommerce-cart .cart td {
    color: #000 !important;
}
td.product-name a {
    color: #000;
    font-weight: 500;
}
td.product-add-to-cart a {
    color: #4CAF50;
    font-weight: 500;
}
/* Buttons style */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #000 !important;
}

/* Button hover */
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: #222 !important;
    color: #fff !important;
}

/* Coupon input */
.woocommerce-cart .coupon input {
    border: 1px solid #000 !important;
    color: #000 !important;
}

/* Quantity input */
.woocommerce .quantity input {
    border: 1px solid #000 !important;
    color: #000 !important;
}


/* Remove border radius everywhere */
.woocommerce * {
    border-radius: 0 !important;
}

/* Checkout form inputs */
.woocommerce-checkout input,
.woocommerce-checkout textarea,
.woocommerce-checkout select {
   border: 1px solid #000 !important;
    color: #000 !important;
    padding: 12px !important;
    background-color: #fffaee !important;
}

/* Checkout labels */
.woocommerce-checkout label {
    color: #000 !important;
}

/* Order review table */
.woocommerce-checkout-review-order-table {
    border-collapse: collapse !important;
    border: 1px solid #000 !important;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    border: 1px solid #000 !important;
    color: #000 !important;
}

/* Payment section */
#payment {
    border: 1px solid #000 !important;
}

#payment ul.payment_methods {
    border-bottom: 1px solid #000 !important;
}

/* Place order button */
.woocommerce-checkout #place_order {
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #000 !important;
}

/* Button hover */
.woocommerce-checkout #place_order:hover {
    background: #222 !important;
}

/* Coupon field */
.woocommerce form.checkout_coupon input {
    border: 1px solid #000 !important;
}
/* Select box style */
.woocommerce select,
.woocommerce-checkout select,
.select2-container--default .select2-selection--single {
    border: 1px solid #000 !important;
    background-color: #fffaee !important;
    color: #000 !important;
}
.woocommerce ul.order_details {
    margin: 20px 0 50px 0;
    list-style: none;
}
section.woocommerce-order-details h2 {
    margin: 30px 0;
}
section.woocommerce-customer-details address {
    color: #000;
    margin: 20px 0;
}
section.woocommerce-customer-details {
    line-height: 2;
}
section.woocommerce-customer-details  p {
    line-height: 2;
}
.woocommerce select, .woocommerce input, .woocommerce text-area, .woocommerce ::placeholder {
	font-size: 12px!important;
}
.woocommerce-info a {
    color: #000;
}

.footer-payment select {
    display: none;
}

ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
    color: #000;
}

.wishlist_table thead tr th, .wishlist_table tfoot td td, .widget_yith-wcwl-lists ul.dropdown li.current a, .widget_yith-wcwl-lists ul.dropdown li a:hover, .selectBox-dropdown-menu.selectBox-options li.selectBox-selected a, .selectBox-dropdown-menu.selectBox-options li.selectBox-hover a {
	background-color: transparent;
}
.woocommerce table.shop_table.wishlist_table tr td {
	background: transparent;
}

.search-results .card {
	margin: 0 0 20px 0;
}
.woocommerce-account .woocommerce {
    display: flex;
    gap: 30px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 260px;
    background: #000;
    padding: 20px 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 14px 20px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
    background: #fff;
    color: #000;
}

.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1;
    padding: 30px;
    border: 1px solid #000;
}
.woocommerce-MyAccount-navigation a {
	color: #000;
	text-decoration: underline;
}
.woocommerce-MyAccount-content a {
		color: #000;
	text-decoration: underline;
}
.woocommerce-Address address {
    color: #000;
}
header.woocommerce-Address-title.title h2 {
    font-size: 2em;
    margin: 20px 0;
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
	background-color: transparent;
}


.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
    width: 50%;
}
.woocommerce-LostPassword.lost_password a {
	color: #000;
}
form.woocommerce-form.woocommerce-form-register.register p {
    font-size: 12px;
    padding: 5px 0;
}
form.woocommerce-form.woocommerce-form-register.register p a {
	color: #000;
	text-decoration: underline;
}
dt {
	color: #000;
}
/*checkout*/
.checkout-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.checkout-left {
    width: 50%;
}

.checkout-right {
    width: 50%;
    position: sticky;
    top: 120px;
    background: #f5f5f5;
    padding: 0;
    border-radius: 6px;
}

/* Mobile */
@media (max-width: 768px) {
    .checkout-wrapper {
        flex-direction: column;
    }

    .checkout-left,
    .checkout-right {
        width: 100%!important;
    }

    .checkout-right {
        position: static;
    }
}
	/* Fix right column */
.checkout-right {
    width: 50%;
}

/* Make everything inside behave properly */
.order-summary-box {
background: #fffaed;
    padding: 20px 0 0 0;
    border: 0;
}
.woocommerce-billing-fields h3 {
    margin: 20px 0;
}
/* IMPORTANT: stop full width issue */
.woocommerce-checkout-review-order {
    width: 100%;
}

/* Fix payment box */
#payment {
    width: 100%;
    margin-top: 20px;
}

/* Fix place order button */
#place_order {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 12px;
    border: none;
}

/* Remove unwanted spacing */
.woocommerce-checkout-payment {
    width: 100%;
}
/* Popup background */
.bottom-popup {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;

  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 9999;
}

/* Active */
.bottom-popup.active {
  opacity: 1;
  visibility: visible;
}

/* Popup box */
.popup-content {
  background: #f5efe6;
  width: 100%;
  max-width: 100%;
  border-radius: 0 0 0 0;
  padding: 50px;
  transform: translateY(100%);
  transition: 0.3s ease;
}

/* Slide up */
.bottom-popup.active .popup-content {
  transform: translateY(0);
}

/* Header */
.popup-header {
  display: flex;
  justify-content: space-between;
}

/* Close button */
.close-popup-btn {
  border: none;
  background: none;
  cursor: pointer;
}

/* Layout */
.popup-body {
  display: flex;
  gap: 30px;
  margin-top: 0;
}

.left-content {
  flex: 1;
}

.right-content {
  flex: 1;
}
.right-content h3 {
    color: #000;
    text-transform: capitalize;
    margin: 0 0 20px 0;
    font-size: 2.5em;
}
.popup-header h2 {
	color: #000;
    text-transform: capitalize;
    margin: 0 0 20px 0;
    font-size: 2.5em;
}
/* Table */
.size-table {
  width: 100%;
  border-collapse: collapse;
}

.size-table th,
.size-table td {
  border: 1px solid #000;
  padding: 10px;
	color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .popup-body {
    flex-direction: column;
  }
}
button.open-popup-btn {
    background-color: transparent;
   border: 0;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.1em;
    font-weight: 300;
    display: block;
    font-family: var(--font-two);
    letter-spacing: 1px;
	cursor: pointer;
}
.single-product .luxury-parallax .parallax-wrapper {
   
    margin: 0 0 40px 0;
}
.single-product .product-detail-image-block a.btn-slide {
    margin: 600px 0 0 0;
}
.woocommerce-page .card.text-card p {
	max-width: 500px;
}
.detailed-page .fashion-section .grid {
	row-gap: 0;
}
.footer-social a {
    border-radius: 100% !important;
}
.fcpfw_cart_basket {
	border-radius: 100% !important;
}
.woocommerce h2 {
	font-size: 2em;
}
form.woocommerce-ResetPassword.lost_reset_password p {
    max-width: 600px;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: rgb(255 250 237);
    border-radius: 5px;
}
.woocommerce-privacy-policy-text p {
    font-size: 13px;
    padding: 10px 0 20px 0;
}
.woocommerce-privacy-policy-text p a {
	color: #000;
}
.woocommerce h3 {
    color: #000;
    font-size: 2em;
    font-family: var(--font-one);
	background-color: #fffaed;
}
/* Wrapper */
.header-search {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
	padding: 0;
}

/* Search Box */
.header-search {
 
  border: 1px solid #000;
  border-radius: 50px!important;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

/* Focus effect */
.header-search:focus-within {
  box-shadow: 0 0 0 2px #000;
}

/* Input */
.header-search input {
  flex: 1;
  padding: 10px 35px;
  border: none;
  outline: none;
  font-size: 14px;
  color: #000;
}

/* Placeholder */
.header-search input::placeholder {
  color: #888;
}

/* Button */
.header-search button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 28px;
  cursor: pointer;
  transition: 0.3s;
	 border-radius: 50px!important;
}
.header-search {
	top: 70%;
    right: 4%;
}
/* Hover */
.header-search button:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 600px) {
  .header-search {
    border-radius: 30px;
  }

  .header-search input {
    padding: 10px;
    font-size: 13px;
  }

  .header-search button {
    padding: 10px 14px;
  }
}
/* Header */
.contact-header {
    text-align: left;
    padding: 0 0 0 0;
}

.contact-header h1 {
    color: #000;
  
}

/* Map */
.map-container {
    filter: grayscale(100%) contrast(0.8); /* Mimics the desaturated look in your image */
    margin-bottom: 50px;
}

/* Layout Container */
.contact-content .container {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* Form Card */



.card input, .card textarea {
   width: 100%;
    padding: 12px 0;
    margin: 10px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    font-family: var(--font-two);
}




.info-grid, .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
	margin: 30px 0 0 0;
}

.info-item h3, .faq-column h3 {
    font-size: 1.2em;
    color: #000;
    margin-bottom: 10px;
}

.info-item p, .faq-column li {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-grid { margin-top: 40px; }






/* Responsive */
@media (max-width: 850px) {
  
	main.contact-content {
		flex-wrap: wrap;
	}
	main.contact-content {
		flex-wrap: wrap;
	}
}

main.contact-content {
	display: flex;
    gap: 50px;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}
.write-us {
    background-color: #fff;
    padding: 50px;
}
.write-us {
    background-color: #fff;
    padding: 50px;
}

.quick-assists h2 {
   color: #000;
    font-size: 2.5em;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

.info-item h3 {
    color: #000;
}

.info-item p {
    color: #000;
}

a.pink-link {
    color: #000;
}
.write-us h2 {
    font-size: 2.5em;
    margin: 0 0 20px 0;
	padding: 0 0 0 0;
}
.fcpfw_price_single {
	color: #000;
}
.faq-container {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
	width: 90%;
}

.section-title {
    color: #d64a7b; /* Pink accent from your design */
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #fff;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border-left: 4px solid #000; /* Purple accent for a premium feel */
    transition: transform 0.2s ease;
}
.left-content p {
    margin: 20px 0;
    max-width: 700px;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: #333;
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 12px;
}

.faq-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustment */
@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
.faq-container {
	    padding: 0 0 50px 0;
    max-width: 1200px;
    margin: 0 auto;

}
.close-popup-btn {
    border: none;
    background: none;
    cursor: pointer;
    width: 40px;
    background: transparent;
}
.fcpfw_item_count {
  
    top: -7px;
    left: -5px;
    border-radius: 100% !important;
}
.top_fcpfw_herder {
	padding: 20px 0;
}

.fcpfw_cart_prods_inner {
	gap: 20px;
	margin: 20px 0;
}
/* Initial state */
[class^="reveal-"] {
  opacity: 0;
  transform: translateY(40px) translateZ(0);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  will-change: transform, opacity;
}

/* Visible state */
.reveal-show {
  opacity: 1;
  transform: translateY(0);
}
.fcpfw_total_tr_inner {
    color: #000;
}
.luxury-parallax .parallax-content h2 {
	font-size: 3em;

}
.fashion-section .embla__container {
	display: block;
} 
.fashion-section .embla {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.fashion-section .embla__viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.fashion-section .embla__container {
  display: flex;
  height: 100%;
}

.fashion-section .embla__slide {
  min-width: 100%;
  flex: 0 0 100%;
  display: flex;
  height: 100%;
}



/* Image fit */
.fashion-section .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.pd-color {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #000000;
    position: relative;
    text-decoration: none;
}

.pd-color span {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 5px 8px;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

/* Hover effect */
.pd-color:hover span {
    opacity: 1;
    visibility: visible;
}

.yith-wcwl-add-to-wishlist-button:not(.yith-wcwl-add-to-wishlist-button--themed-button) svg.yith-wcwl-add-to-wishlist-button-icon {
    color: #ffffff;
}
ul.filter-list li {
    position: relative;
}
.parallax-title a {
    color: #fff;
}
a.overly-link {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    left: 0;
    top: 0;
}
.overly-link:hover ~ .caption .btn-slide::before {
 transform: scaleX(1);
    background: #000;
}

.overly-link:hover ~ .caption .btn-slide:hover {
    color: var(--main-color)!important;
}
.overly-link:hover ~ .caption .btn-slide {
    border: 1px solid #000000;
}

.overly-link:hover ~ .parallax-title .caption .btn-slide::before {
    transform: scaleX(1);
    background: #000;
}


.overly-link:hover ~ .parallax-title .caption .btn-slide {
    border: 1px solid #000000;
}
.home .modern-parallax .parallax-item {
    max-width: inherit;
}
@media screen and (min-width:200px) and (max-width:683px) {
	.luxury-parallax .parallax-content h2 {
    font-size: 2.5em;
}
}