@font-face {
    font-family: "Poppins";
    src: url("webfonts/Poppins-Light.ttf") format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: "Poppins";
    src: url("webfonts/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Poppins";
    src: url("webfonts/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Poppins";
    src: url("webfonts/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: "Poppins";
    src: url("webfonts/Poppins-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

/* input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  height: 16px;
  min-width: 16px;
  outline: none;
  cursor: pointer;
  position: relative;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin-right: 5px;
  border-radius: 2px;
  vertical-align: middle;
}
input[type="checkbox"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
}
input[type="checkbox"]:checked {
  background-color: #ffffff;
}
input[type="checkbox"]:checked::before {
  content: '\2713';
}
input[type=number] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
} */
/* ::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background-color: #ffffff;
}
::-webkit-scrollbar-thumb {
  background-color: #000;
} */
/* body {
  margin: 0;
  padding: 0;
} */

/* * {
  box-sizing: border-box;
  font-family: 'Poppins';
} */
body {
    min-height: 100vh;
}

.header p,
.footer p {
    width: 100%;
}

.header ul,
.header li,
.header p,
.footer ul,
.footer li,
.footer p,
.gallery ul,
.gallery li,
.gallery p {
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
    font-size: 14px;
}

.header ul,
.header li,
.footer ul,
.footer li,
.gallery ul,
.gallery li {
    padding: 0;
    list-style: none;
}

/* .header p strong,
.header p b {
  font-weight: 700;
}
.header a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.header h1,
.header h2,
h3,
h4 {
  margin: 0;
}
h2 {
  font-weight: 600;
  font-style: normal;
} */
/* button {
  border: 0;
  cursor: pointer;
}  */
/* .container {
  width: 100%;
} */
/* section {
  display: flex;
  padding: 3rem 1.5rem;
} */
body.no-scroll {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
}

/* Start Header */
.header {
    display: flex;
}
.header .search-form {
    display: flex;
    position: relative;
}
.header .search-icon {
    width: 20px;
    height: 20px;
}

.header .search-form .input-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 35px;
    min-width: 35px;
    height: 35px;
    transition: width 0.4s ease;
    overflow: hidden;
    border: 1px solid #ccc;
    border: 1px solid transparent;
    border-radius: 100px;
    background: #fff;
    transition: 0.5s all;
}

.header .search-form.active .input-container {
    width: 200px;
    border: 1px solid #ece0d2;
    padding: 15px;
}
.header .search-form.active .search-input {
    width: calc(100% - 30px);
}
.header .search-form.active .search-input:focus {
    border: none;
}

.header .search-form .search-input {
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    background: transparent;
    width: 0;
}
.header .search-input::placeholder {
    font-size: 13px;
}

.header .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 20px;
}

.header .main-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: 999;
    background-color: #fff;
}

.header.fixed .main-head {
    height: 0;
}

.header.fixed .top-container {
    height: 0;
    overflow: hidden;
}

.header #fixheader {
    transition: all 0.3s ease;
    /* Smooth transition for the fixed header */
}

.header .header-container {
    display: flex;
    flex-direction: column;
    height: 30px;
    transition: width 0.3s linear;
}

.header .top-container {
    display: flex;
    background-color: #000;
    z-index: 99;
}

.header .top-stores {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    overflow-x: scroll;
    scrollbar-width: none;
    height: 37px;
    transition: height 0.3s linear;
}

.header .top-stores li {
    color: #ffffff;
    font-size: 12px;
    white-space: nowrap;
    margin-right: 20px;
}

.header .preheader-container {
    display: none;
}

.header .head-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    width: 100%;
    height: 48px;
    background-color: #ffffff;
}

.header .head-container .head-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    width: 100%;
}

.header .sticky,
.header .sticky-down {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header .sticky .menu-links {
    top: 48px;
}

.header .sticky .head-container {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    width: 100%;
    padding: 10px 20px;
    transition: 1s;
    z-index: 4;
    /* box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25); */
}

/* .header .sticky .head-container .logo {
  opacity: 1;
  max-width: 148px;
  margin: 0px 15px;
  display: flex;
} */

.header .sticky-down {
    top: 100px;
}

.header .menu {
    display: flex;
    width: 14px;
}

.header .menu img {
    width: 14px;
    height: 14px;
    transition: 1s all;
}

.header .menu img:last-child {
    width: 0;
    height: 0;
}

.header .menu.active img {
    width: 0;
    height: 0;
}

.header .menu.active img:last-child {
    width: 14px;
    height: 14px;
}

.header .logo {
    opacity: 1;
    max-width: 120px;
    margin: 0px 15px;
    display: flex;
}

.header .logo img {
    width: 100%;
    height: 100%;
}

.header .menu-items {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header .menu-items a {
    margin-right: 20px;
}

.header .menu-items a i {
    font-size: 18px;
}

.header .menu-items a:last-child {
    margin-right: 0;
}

.header .menu-links {
    position: fixed;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: 1000;
    overflow: hidden;
    margin-top: 54rem;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.07);
}

.header .menu-links.open {
    transform: translateX(0);
}

.header .menu-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: transform 0.5s ease;
    padding: 40px 20px;
    box-sizing: border-box;
}

.header .main-head {
    display: flex;
    justify-content: space-between;
    height: 48px;
    transition: height 0.3s linear;
    z-index: 999;
}

.header .menu-links .content1 {
    width: 100%;
    z-index: 5;
    transition: left 0.5s ease-in-out;
    left: 0;
    background-color: #ffffff;
}

.header .menu-links .content1 .links-li {
    margin-bottom: 20px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
}
/* login dropdown */
.login-dropdown {
  position: absolute;
  top: 120%; /* push below navbar */
   left: 0;
  width: max-content;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 15px;
  display: none;
  z-index: 9999;
}

.login-dropdown .dropdown-buttons{
    margin-left: 1rem;
}
.login-dropdown .dropdown-buttons li{
list-style: disc;
margin-top: .5rem;
 opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.4s forwards;
}
.login-dropdown .dropdown-buttons li:first-child{
    margin-top: 0;
}

.login-dropdown .dropdown-btn {
  display: block;
  color: #000;
  text-decoration: none;
}
.login-dropdown.show {
  display: block;
}
/* Stagger effect */
.login-dropdown .dropdown-buttons li:nth-child(1) { animation-delay: 0.05s; }
.login-dropdown .dropdown-buttons li:nth-child(2) { animation-delay: 0.1s; }
.login-dropdown .dropdown-buttons li:nth-child(3) { animation-delay: 0.15s; }
.login-dropdown .dropdown-buttons li:nth-child(4) { animation-delay: 0.2s; }
.login-dropdown .dropdown-buttons li:nth-child(5) { animation-delay: 0.25s; }
.login-dropdown .dropdown-buttons li:nth-child(6) { animation-delay: 0.3s; }
.login-dropdown .dropdown-buttons li:nth-child(7) { animation-delay: 0.35s; }
@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* login dropdown */


.header .menu-links .content1 .links-li:last-child {
    margin-bottom: 0;
}

.header .menu-links .content1 .links-li a {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    font-weight: 500;
}

.header .menu-links .content1 .links-li a img {
    width: 11px;
    height: 11px;
    filter: brightness(0);
    margin-top: 0.5rem;
}

.header .content2,
.header .content3,.header .content4 {
    left: 100%;
}

.header .content2 h3,
.header .content3 h3, .header .content4 h3 {
    font-weight: 600;
}

.header .content2 h3 a,
.header .content3 h3 a,.header .content4 h3 a {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.header .content2 h3 a .right-arrow,
.header .content3 h3 a .right-arrow,.header .content4 h3 a .right-arrow {
    transform: rotate(180deg);
    margin-right: 0.5rem;
}

.header .content2 .sub-li,
.header .content3 .sub-li,.header .content4 .sub-li {
    margin-top: 0.5rem;
    cursor: pointer;
    text-transform: initial;
}

.header .content2 .sub-li a {
    display: flex;
    justify-content: space-between;
}

.header .content2 .sub-li a img {
    transition: 1s all;
}

.header .content2 .sub-li.active a img {
    transform: rotate(180deg);
}

.header .content2 .nav-list {
    display: none;
}

.header .content2 .nav-list .nav-item,
.header .content2 .nav-list .nav-subitem {
    font-size: 12px;
    margin-top: 0.5rem;
}

.header .content2 .nav-list .nav-sublist {
    padding-left: 1rem;
}

.header .content2 .nav-list .nav-subitem {
    list-style: disc;
}

.header .menu-links.show-content2 .content1 {
    transform: translateX(-100%);
}
.header .menu-links.show-content1 .content1 {
    transform: translateX(0%);
}

.header .menu-links.show-content2 .content2 {
    transform: translateX(-100%);
}
.header .menu-links.show-content3 .content1 {
    transform: translateX(-100%);
}
.header .menu-links.show-content3 .content3 {
    transform: translateX(-100%);
}
.header .menu-links.show-content4 .content1 {
    transform: translateX(-100%);
}
.header .menu-links.show-content4 .content4 {
    transform: translateX(-100%);
}


.header .menu-items ul {
    display: flex;
}
.header .menu-items li {
    margin-bottom: 0;
    white-space: nowrap;
    margin-right: 1rem;
    position: relative;
    overflow: hidden;
    float: left;
}

.header .menu-items li::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: 1s all;
    bottom: 0;
}

.header .menu-items li:hover::before {
    width: 100%;
}
.header .top-stores a {
    color: #fff;
}
/* End Header */

.home-container {
    padding: 32px 20px;
    margin: auto;
    width: 100%;
}

/* Start Gallery */
.gallery {
    padding: 0;
    display: flex;
}

.gallery .gallery-container,
.gallery .gallery-images,
.gallery .image-list,
.gallery .gallery-content,
.gallery .content-description,
.gallery .content-detail {
    display: flex;
    flex-direction: column;
}

.gallery .image-item {
    display: flex;
}

.gallery .image-item img {
    display: block;
    vertical-align: middle;
}

.gallery .image-item img {
    color: #0000;
    max-width: 100%;
    height: auto;
    aspect-ratio: 0.75;
    object-fit: cover;
    width: 100%;
}

.gallery .video-media {
    display: flex;
}

.gallery .video-media video {
    max-width: 100%;
    width: 100%;
    height: 100%;
    transition: opacity 0.2s ease-in-out;
    display: block;
    vertical-align: middle;
    aspect-ratio: 0.75;
    object-fit: cover;
}

.gallery .video-media video[controls] {
    pointer-events: auto;
}

.gallery .gallery-content {
    padding: 49px 20px;
}

.gallery .gallery-content h1 {
    display: none;
}

.gallery .content-list {
    display: flex;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery .content-list li {
    font-size: 16px;
    font-weight: 300;
    margin-right: 1rem;
    position: relative;
    min-width: fit-content;
    padding-bottom: 5px;
    cursor: pointer;
}

.gallery .content-list li::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    background-color: #000;
    bottom: 0;
    transition: 1s all;
}
.gallery .content-list li.active::before {
    width: 100%;
}

.gallery .content-list li:hover {
    font-weight: 500;
}

.gallery .content-list li:hover::before {
    width: 100%;
}

.gallery .content-list li:last-child {
    margin-right: 0;
}

.gallery .content-description {
    margin-top: 1.2rem;
}

.gallery .content-description .content {
    display: none;
}

.gallery .content-description .content p {
    font-size: 16px;
}

.gallery .content-description .content.show {
    display: flex;
    flex-direction: column;
}

.gallery .content-detail {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    background: #fff;
    padding: 12px 24px 16px;
    border-top: 1px solid #000;
}

.gallery .content-detail strong {
    font-size: 14px;
    font-weight: 300;
}

.gallery .content-detail .size-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    order: 2;
    margin: 16px 0;
}

.gallery .content-detail .size-list h3 {
    font-size: 14px;
    font-weight: 300;
}

.gallery .content-detail .size-list span {
    font-size: 16px;
    margin-right: 0.8rem;
    font-weight: 300;
    cursor: pointer;
}

.gallery .content-detail .size-list span:last-child {
    margin-right: 0;
}

.gallery .content-detail .size-list span.selected {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.gallery .content-detail .color-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    order: 3;
}

.gallery .content-detail .color-list p {
    font-weight: 300;
    flex: 4;
}

.gallery .content-detail .color-list p span {
    display: none;
}

.gallery .content-detail .color-code {
    display: flex;
    align-items: center;
    flex: 6;
}

.gallery .content-detail .color-code .color {
    display: flex;
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    border: 2px solid #fff;
    overflow: hidden;
}

.gallery .content-detail .color-code .color.active {
    border: 2px solid #000;
    padding: 0;
}

.gallery .content-detail .color-code .color img {
    /* object-fit: none; */
    width: 100%;
    height: 100%;
    transform: scale(2);
}
.gallery .content-detail .color-code .color:last-child {
    margin-right: 0;
}

.gallery .content-detail .color-code .graycolor {
    background: #c0c0c0;
}

.gallery .content-detail .color-code .pinkcolor {
    background: #fdebfa;
}

.gallery .content-detail .color-code .blackcolor {
    background: #000000;
}

.gallery .content-detail .cart {
    color: #ffffff;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 11.25px;
    letter-spacing: normal;
    padding: 13px;
    background-color: #000;
    order: 4;
    margin-top: 0.8rem;
    min-width: 278px;
}
/* End Gallery */

/* Start Carousel */
.slider-carousel {
    display: flex;
    padding: 32px 0;
}

.slider-carousel .main-container {
    display: flex;
    width: 100%;
}

.slider-carousel .product-card {
    display: flex;
    flex-direction: column;
}

.slider-carousel .carousel-container {
    display: flex;
    flex-direction: column;
    /* max-width: 100vw; */
    overflow: hidden;
    width: 100%;
}

.slider-carousel .carousel-container h2 {
    padding: 0 20px;
    font-size: 18px;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}

.slider-carousel .owl-carousel {
    max-width: 100%;
}

.slider-carousel .recently-viewed-list {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.slider-carousel .recent-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 111px;
}
.slider-carousel .recent-item .item-carousel .item {
    display: none;
}

.slider-carousel .recent-item .item-carousel .item:first-child {
    display: flex;
}
.slider-carousel .recent-item,
.slider-carousel .item,
.slider-carousel .category {
    display: flex;
    flex-direction: column;
}

.item-carousel {
    position: static;
}

.slider-carousel .item {
    display: flex;
    background-color: #f6f6f8;
    padding: 0.5rem;
    width: 100%;
    height: 100%;
    max-width: 112px;
    aspect-ratio: 0.66666667;
    /* or 3/4 depending on your design */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.slider-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-carousel .item .sizebtn {
    display: none;
}

.slider-carousel .item .heart-btn {
    display: flex;
    position: absolute;
    background-color: transparent;
    right: 6px;
    top: 15px;
    transition: 1s all;
}

.slider-carousel .item .heart-icon {
    transition: color 0.3s ease;
    font-size: 15px;
    color: #000 !important;
}

.slider-carousel .item .heart-btn.active .heart-icon {
    color: red !important;
}

.slider-carousel .category {
    padding-left: 20px;
    margin-top: 0.8rem;
}

.slider-carousel .category .dress-type,
.slider-carousel .category .price {
    font-size: 16px;
}

.slider-carousel .category .dress-type {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slider-carousel .category .price {
    color: #6c717a;
}

.slider-carousel .owl-nav,
.slider-carousel .owl-dots {
    display: none;
}
/* End Carousel */

/* Start Footer */
/* Hide by default */
.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

/* Show on active */
.popup.active {
    display: flex;
}

.popup-content {
    background: #fff;
    padding: 30px;
    position: relative;
    max-width: 800px;
    width: 100%;
    border-radius: 6px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* Hide all inner popups by default */
.popup-inner {
    display: none;
}

.footer {
    display: flex;
    padding: 64px 20px !important;
    border-top: 1px solid #dadde1;
    background-color: #101820;
    color: #ffffff;
}

.footer .footer-container,
.footer .form,
.footer .footer-list {
    display: flex;
    flex-direction: column;
}

.footer .footer-container .headimg {
    display: flex;
    margin-bottom: 32px;
}
.footer .footer-container .heading h2 {
    font-size: 34px;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    margin-bottom: 2rem;
}

.footer .footer-container .headimg .logo {
    filter: invert(1);
    width: 100%;
    height: 100%;
}

.footer .footer-container h3 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.footer .checkcontainer {
    display: flex;
}

.footer .checkcontent {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}

.footer .checkcontent:last-child {
    margin-right: 0;
}

.footer .checkcontent label {
    font-size: 14px;
    margin-bottom: 0px;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.5;
}

.footer .input-container {
    position: relative;
    margin: 8px 0;
    width: 100%;
    display: flex;
    font-weight: 400;
}

.footer .input-container input {
    margin-bottom: 16px;
    height: 47px;
    border: initial;
    border-bottom: 1px solid #fff;
    color: #fff;
    background-color: initial;
    width: 100%;
    outline: none;
    padding: 36px 0px 15px 0px;
    vertical-align: baseline;
}
.footer .input-container label {
    text-transform: initial;
}

.footer .input-container input:focus {
    border-bottom: 2px solid #fff;
}

.footer .input-container input:focus ~ label,
.footer .input-container input:not(:placeholder-shown) ~ label {
    top: 4px;
    bottom: unset;
}

.footer .input-container label {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    width: auto;
    position: absolute;
    top: 21px;
    left: 0px;
    font-size: 13px;
    -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
    color: #fff;
    letter-spacing: normal;
}

.footer .field-consent span {
    font-size: 14px;
    line-height: 1.5;
}

.footer .field-consent span a {
    color: #ffffff;
    text-decoration: underline;
}

.footer .submit {
    background-color: #ffffff;
    padding: 10px 24px;
    border-radius: 4px;
    color: #dadde1;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 30px;
}

.footer .footer-social {
    display: flex;
    flex-direction: column;
    margin: 30px 0 20px;
}

.footer .footer-social > span {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
}

.footer .footer-social .social-icons {
    display: flex;
    margin-top: 10px;
    position: relative;
}

.footer .social-item {
    position: relative;
    display: flex;
}

.footer .social-item:last-child .popup-inner{
left: -120%;
}

.footer .popup-inner {
    position: absolute;
    top: 28px;
    left: 0;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    min-width: 200px;
    z-index: 999;
    border-radius: 6px;
}

/* Main popup style */
.footer .popup-inner {
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    margin: auto;
    background: white;
    padding: 15px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    width: max-content;
    z-index: 999;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

/* Animate items only */
.footer .popup-inner li {
    opacity: 0;
    transform: translateY(10px);
    animation: none;
    margin-top: 0.5rem;
    font-size: 12px;
    line-height: 1.4;
}
.footer .popup-inner li:first-child {
    margin-top: 0;
}

/* Show popup on hover */
.footer .social-item:hover .popup-inner {
    opacity: 1;
    pointer-events: auto;
}

/* Animate items */
.footer .social-item:hover .popup-inner li {
    animation: popupItem 0.4s ease forwards;
}
.footer .social-item:hover .popup-inner li:nth-child(1) {
    animation-delay: 0.1s;
}
.footer .social-item:hover .popup-inner li:nth-child(2) {
    animation-delay: 0.2s;
}
.footer .social-item:hover .popup-inner li:nth-child(3) {
    animation-delay: 0.3s;
}

/* Keyframe for li animation */
@keyframes popupItem {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-social,
.social-icons {
    position: relative; /* ensures .popup-inner aligns correctly */
    overflow-x: visible; /* make sure it's not clipped */
}

.footer .footer-social .social-icons .social-item a {
    margin-right: 1.5rem;
}

.footer .footer-social .social-icons .social-item a i {
    font-size: 22px;
    color: #ffffff;
}

.footer .footer-social .social-icons a i.bi-tiktok {
    font-size: 18px;
}

.footer .footer-social .social-icons .social-item a span {
    display: none;
}

.footer .footer-social .social-icons .social-item a:last-child {
    margin-right: 0;
}

.footer .ques-list,
.footer .ques-item {
    display: flex;
    flex-direction: column;
}

.footer .ques-item img {
    width: 11px;
    height: 11px;
    transition: 1s all;
}

.footer .ques-item.active img {
    transform: rotate(180deg);
}

.footer .ques {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.footer .ques img {
    filter: invert(1);
}

.footer .ans {
    margin-top: 8px;
    display: none;
}

.footer .ans ul {
    padding-left: 0;
}

.footer .ans ul li {
    font-size: 14px;
    border-top: 1px solid #ffffff;
    padding-top: 20px;
    margin-bottom: 15px;
}

.footer .ans ul li:last-child {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 20px;
}

.footer .ans ul li a {
    color: #ffffff;
    text-decoration: none;
}

.footer .field-consent {
    display: flex;
}
.footer input[type="checkbox"] {
    width: 15px;
    min-width: 15px;
    height: 15px;
    margin-top: 3px;
    webkit-appearance: none !important;
    appearance: none !important;
    border: 1px solid white;
    position: relative;
}
.footer input[type="checkbox"]:before,
.footer input[type="checkbox"]:checked:before {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
}
.footer input[type="checkbox"]:checked:before {
    content: "\2713";
}

.footer .countrySelectorFire a {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
}

.footer .countrySelectorFire a img {
    filter: invert(1);
    margin-left: 10px;
}

.footer .copyright__text {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-size: 12px;
    margin-top: 1.5rem;
}

.footer .bottom-logo {
    display: flex;
    margin-top: 30px;
}

.footer .bottom-logo img {
    filter: invert(1);
    width: 100%;
    height: 100%;
}

.footer .main-container {
    margin: auto;
}
/* End Footer */

/* Start Event */
#content .content-container {
    margin-top: 2rem;
}
#content .cont-detail {
    border: 1px solid #ededed;
    border-top: none;
    padding: 1rem;
    border-radius: 5px;
}
#content .detail-head {
    border-bottom: 1px solid #ededed;
    padding-bottom: 1rem;
}
/* End Event */

/* Start Faq */
.faq {
    display: flex;
    flex-direction: column;
}
.faq .faq-container {
    width: 100%;
    padding: 40px 20px;
}
.faq .faq-container,
.faq .heading,
.faq .faq-content,
.faq .heading,
.faq .faq-list,
.faq .faq-item {
    display: flex;
    flex-direction: column;
}
.faq .heading {
    background-color: black;
    padding: 15px 20px;
}
.faq .heading h2,
.faq .heading li,
.faq .heading li a {
    color: white;
}
.faq .heading h2 {
    font-size: 32px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 6px;
}
.faq .breadcrumbs {
    margin: 0;
    display: flex;
    justify-content: center;
}
.faq .breadcrumbs li {
    display: flex;
    list-style: none;
    position: relative;
    color: white;
    opacity: 0.7;
    margin-bottom: 0;
}
.faq .breadcrumbs li:hover {
    opacity: 1;
    font-weight: 600;
}
.faq .breadcrumbs li::after {
    content: "/";
    font-size: 15px;
    margin: 0 7px;
}
.faq .breadcrumbs li:last-child::after {
    content: none;
}

.faq .ques {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border: 1px solid #ebecf0;
    border-radius: 16px;
    background-color: white;
    cursor: pointer;
    margin-bottom: 10px;
    transition: 1s all;
}
.faq .ques h3 {
    font-size: 15px;
}

.faq .ques span {
    display: flex;
    width: 24px;
    height: 24px;
    background-color: #f4f5f7;
    border-radius: 6px;
    padding: 0.4rem;
}
.faq .ques span img {
    width: 100%;
    height: 100%;
    filter: opacity(0.4);
}

.faq .ques h3 {
    margin-bottom: 0;
    width: calc(100% - 40px);
}
.faq .ans {
    display: none;
    padding: 7px 15px 16px 15px;
}
.faq .ans p {
    font-size: 14px;
    margin-bottom: 0;
}

.faq .faq-item.active .ques span {
    transform: rotate(180deg);
    background-color: black;
}
.faq .faq-item.active .ques span img {
    filter: opacity(1) invert(1);
}
.faq .recent-content {
    display: none;
}
.faq .faq-item.active .ques {
    background-color: #f7f7f7;
    border: 1px solid transparent;
}

/* End Faq */

@media screen and (min-width: 540px) {
    /* .home-container {
        padding: 0px 10px;
    } */
    /* Start Carousel */
    .slider-carousel .category .dress-type,
    .slider-carousel .category .price {
        font-size: 14px;
    }
    /* End Carousel */
}

@media screen and (min-width: 768px) {
    /* section {
    padding: 3rem 2rem;
  } */
    /* Start Header */
    .header .menu-links {
        width: 376px;
    }
    .header .search-form.active .input-container {
        width: 270px;
        min-width: 270px;
    }
    /* End Header */

    /* .home-container {
        max-width: 1440px;
        margin: auto;
        padding: 10px 20px;
    } */
    /* Start Gallery */
    .gallery .content-list {
        justify-content: center;
        overflow: visible;
    }
    /* End Gallery */

    /* Start Carousel */
    .slider-carousel .recent-item {
        width: 255px;
    }

    .slider-carousel .item {
        max-width: 250px;
    }

    .slider-carousel .item .heart-btn {
        right: 20px;
        top: 20px;
    }

    .slider-carousel .item .heart-btn .heart-icon {
        font-size: 20px;
    }
    /* End Carousel */

    .footer .footer-container .headimg {
        max-width: 335px;
    }

    .footer .form {
        flex-flow: wrap;
        align-items: end;
    }

    .footer .checkcontainer {
        width: 100%;
    }

    .footer .submit {
        order: 3;
    }

    .footer .field-consent {
        order: 5;
        margin-top: 20px;
        align-self: center;
    }

    .footer .field-consent span {
        display: flex;
        align-self: center;
    }

    .footer .input-container {
        width: calc(100% - 345px);
    }

    .footer .input-container input {
        margin-bottom: 0;
    }

    .footer .submit {
        min-width: 168px;
        margin-top: 0;
        margin-left: 20px;
    }

    .footer .footer-social {
        margin: 55px 0 20px;
    }

    /* End Footer */
}

@media screen and (min-width: 1024px) {
    p,
    li {
        line-height: 1.8;
    }

    /* Start Header */
    .header .sticky .head-container {
        padding: 10px 48px;
    }

    .home-container {
        width: 100%;
        padding: 10px 48px;
    }
    .custom-width-30 {
        width: 30% !important;
    }
    .header .head-container .head-content {
        height: auto;
    }

    /* .header .sticky .head-container .logo {
    margin: 0 30px 0 0;
  } */

    .header .top-stores {
        padding: 10px 48px;
    }

    .header .head-container {
        padding: 10px 48px;
    }

    .header .menu {
        display: none;
    }
    .header .logo {
        margin-left: 0;
    }

    .header .menu-items {
        order: 2;
    }

    .header .menu-items a {
        display: flex;
        align-self: center;
    }

    .header .menu-items a i {
        font-size: 15px;
    }

    .header .menu-links {
        position: relative;
        height: auto;
        overflow: visible;
        margin-top: 0;
        transform: none;
        box-shadow: none;
        width: calc(100% - 200px);
    }
    .header .menu-content {
        padding: 0;
    }

    .header .sticky .menu-links {
        top: 0px;
    }

    .header .menu-links .content1 {
        display: flex;
        background-color: transparent;
        /* position: static; */
        position: relative;
    }

    .header .menu-links .content1 li {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .header .menu-links .content1 .links-li {
        margin-bottom: 0;
        white-space: nowrap;
        margin-right: 1rem;
        position: relative;
        /* overflow: hidden; */
    }

    .header .menu-links .content1 .links-li::before {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background-color: #000;
        transition: 1s all;
        bottom: 0;
    }

    .header .menu-links .content1 .links-li:hover::before {
        width: 100%;
    }

    /* .header .menu-links .content1 .links-li a {
    font-size: 10px;
  } */
    .header .menu-links .content1 .links-li img {
        display: none;
    }
    .site-nav__dropdown {
        margin-top: 0.5rem;
        z-index: 999 !important;
    }
    .links-li.site-nav--has-dropdown {
        position: relative;
    }
    .links-li:hover .site-nav__dropdown {
        visibility: visible;
        opacity: 1;
    }

    /* login modal */
    #loginModal .modal-dialog {
        max-width: 300px !important;
    }

    #loginModalLabel {
        font-size: 22px;
    }

    .login-links {
        list-style: none;
        margin: auto;
        padding: 2px;
    }

    .login-links li {
        padding: 10px;
        background: #ece0d2;
        color: #000;
        text-align: center;
        font-weight: bold;
        font-family: "Karla", "sans-serif";
    }

    /* end login modal */

    /* End Header */

    /* Start Gallery */
    .gallery {
        padding: 0 48px 32px;
    }
    .gallery .gallery-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .gallery .gallery-images {
        width: 50%;
    }

    .gallery .gallery-content {
        width: 45%;
        position: sticky;
        top: 60px;
        text-align: center;
        padding: 60px 48px 60px 0;
    }

    .gallery .gallery-content h1 {
        display: flex;
        justify-content: center;
        margin-bottom: 42px;
    }

    .gallery .content-detail {
        position: relative;
        border-top: 1px solid transparent;
        background-color: transparent;
        align-items: center;
        padding: 1.5rem 0 0;
    }

    .gallery .content-detail strong {
        display: none;
    }

    .gallery .content-detail .color-list {
        order: 1;
        flex-direction: column;
    }

    .gallery .content-detail .color-list p {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .gallery .content-detail .color-list p span {
        display: flex;
    }

    .gallery .content-detail .color-code .color {
        width: 34px;
        height: 34px;
    }

    .gallery .content-detail .color-code .color.active {
        border-color: black;
        width: 40px;
        height: 40px;
    }

    .gallery .content-detail .size-list {
        flex-direction: column;
    }

    .gallery .content-detail .size-list h3 {
        margin-bottom: 1rem;
    }

    .gallery .content-list {
        align-items: center;
    }

    .gallery .content-list li {
        text-align: center;
        min-width: auto;
        line-height: 1.3;
    }

    .gallery .content-list li::before {
        left: 0;
        right: 0;
        margin: auto;
    }
    /* End Gallery */

    /* Start Carousel */
    .slider-carousel {
        padding: 32px 48px;
    }

    .slider-carousel .main-container {
        position: relative;
    }

    .slider-carousel .recently-viewed-list {
        overflow-x: none !important;
    }
    .slider-carousel .recent-item {
        scroll-snap-align: none;
        flex: none;
        width: auto;
    }

    .slider-carousel .item {
        max-width: 186px;
    }

    .slider-carousel .item .sizebtn {
        display: flex;
        opacity: 0;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: hsla(0, 0%, 100%, 0.9);
        color: #191919;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0.75px;
        transition: background 0.1s ease-in-out;
        padding: 14px;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 26px;
        width: 80%;
        /* width: 130px; */
        min-width: 130px;
        transition: 1s all;
    }

    .slider-carousel .item .sizebtn:hover {
        background: #ffffff;
    }

    .slider-carousel .item .heart-btn {
        opacity: 0;
    }

    .slider-carousel .item-carousel .owl-nav {
        top: 44%;
        width: 86%;
        justify-content: space-between;
        transform: translateY(-50%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
        left: 0;
        right: 0;
        margin: auto;
    }

    .slider-carousel .item-carousel .sizebtn,
    .slider-carousel .item-carousel .heart-btn,
    .slider-carousel .item-carousel .owl-nav {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .slider-carousel .item-carousel:hover .sizebtn,
    .slider-carousel .item-carousel:hover .heart-btn,
    .slider-carousel .item-carousel:hover .owl-nav,
    .slider-carousel .owl-nav:hover {
        opacity: 1 !important;
        visibility: visible;
        pointer-events: auto;
    }

    .slider-carousel .recently-viewed-list > .owl-stage-outer {
        z-index: 10;
    }

    .slider-carousel .owl-nav .owl-prev,
    .slider-carousel .owl-nav .owl-next {
        background-image: url(../images/head-footimg/right-arrow.svg) !important;
        background-size: 100% 100% !important;
        display: flex;
        width: 20px !important;
        height: 20px !important;
    }

    .slider-carousel .item-carousel .owl-prev,
    .slider-carousel .item-carousel .owl-next {
        background-image: none !important;
        background: rgba(0, 0, 0, 0.4) !important;
        color: #fff !important;
        font-size: 18px !important;
        width: 30px !important;
        height: 30px !important;
        border-radius: 50% !important;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .slider-carousel .item-carousel .owl-prev {
        transform: rotate(0) !important;
    }

    .slider-carousel .recently-viewed-list {
        position: static;
    }

    .slider-carousel .owl-nav {
        display: flex;
        position: absolute;
        justify-content: space-between;
        top: 46%;
        width: calc(100% + 70px);
        left: -37px;
        z-index: 2;
    }

    .slider-carousel .owl-nav .owl-prev.disabled,
    .slider-carousel .owl-nav .owl-next.disabled {
        opacity: 0;
        pointer-events: none;
    }

    .slider-carousel .owl-nav .owl-prev.active,
    .slider-carousel .owl-nav .owl-next.active {
        opacity: 1;
    }

    .slider-carousel .owl-nav .owl-prev {
        transform: rotate(-180deg);
    }
    /* End Carousel Section */

    /* Start Faq Section */
    .faq .faq-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 40px 48px;
    }
    .faq .faq-list {
        width: 65%;
    }
    .faq .ques {
        padding: 15px 24px;
    }
    .faq .ques h3 {
        font-size: 16px;
    }

    .faq .ans {
        padding: 7px 24px 16px 24px;
    }
    .faq .ans p {
        font-size: 15px;
    }
    .faq .recent-content {
        width: 30%;
        display: flex;
        flex-direction: column;
    }
    .faq .heading {
        padding: 20px 48px;
    }
    .faq .category-list {
        display: flex;
        flex-direction: column;
        margin: 0;
        border-bottom: 1px solid #dddbdb;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .faq .category-list h3,
    .faq .recent-post h3 {
        margin-bottom: 18px;
        font-size: 17px;
        font-weight: 600;
        text-transform: uppercase;
    }
    .faq .category-list li {
        list-style: none;
        margin-bottom: 0;
    }
    .faq .category-list li a {
        color: #767676;
    }
    .faq .category-list li a:hover {
        color: black;
    }
    .faq .recent-post {
        display: flex;
        flex-direction: column;
    }
    .faq .recent-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .faq .recent-item span {
        display: flex;
        width: 75px;
        min-width: 75px;
        height: 65px;
    }
    .faq .recent-item span img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    .faq .recent-post .content {
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        text-align: left;
        width: calc(100% - 92px);
    }
    .faq .recent-post .content .bookmark {
        width: 100%;
        margin-bottom: 8px;
        font-size: 15px;
    }
    .faq .recent-post .content .time,
    .faq .recent-post .content .comment {
        font-size: 14px;
        color: #bbb;
    }
    .faq .recent-post .content .time {
        margin-right: 8px;
    }
    .faq .recent-item {
        border-bottom: 1px solid #dddbdb;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .faq .recent-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }
    /* End Faq Section */

    /* Start Privacy */
    .faq .privacy-content{
        width: 62%;
        display: flex;
        flex-direction: column;
    }
    .faq .content{
        text-align: left;
    }
    .faq .privacy-content h1{
        text-align: left !important;
    }
   
    /* End Privacy */

    /* Start Footer */
    .footer {
        padding: 64px 48px !important;
    }
    .footer .footer-container .heading h2 {
        font-size: 48px;
        width: 37%;
        line-height: 1;
    }

    .footer .footer-list {
        flex-flow: wrap;
    }

    .footer .popup-inner li a {
        color: black !important;
    }

    .footer .form {
        width: 70%;
    }

    .footer .footer-social {
        margin: 0;
        width: 22%;
    }

    .footer .footer-social .social-icons {
        flex-flow: wrap;
    }

    .footer .footer-social .social-icons .social-item a {
        text-decoration: none;
        color: white;
        font-size: 14px;
        margin: 0 16px 4px 0;
        line-height: 1.5;
    }

    .footer .footer-social .social-icons .social-item a i {
        display: none;
    }

    .footer .footer-social .social-icons .social-item a span {
        display: flex;
    }

    .footer .bottom-logo {
        width: 100%;
    }

    .footer .submit {
        min-width: 217px;
    }

    .footer .ques-list {
        flex-direction: row;
        justify-content: space-between;
        width: 77%;
        margin-top: 2rem;
    }

    .footer .ques-item {
        width: 30%;
    }

    .footer .ques img {
        display: none;
    }

    .footer .ques h3 {
        margin-bottom: 8px;
    }

    .footer .ans {
        display: flex;
        margin-top: 0;
    }

    .footer .ans ul li {
        border-top: 1px solid transparent;
        padding-top: 0;
        margin-bottom: 0;
    }

    .footer .ans ul li:last-child {
        border-bottom: 1px solid transparent;
        padding-bottom: 0;
    }

    .footer .country-switcher {
        margin-left: auto;
        width: 20%;
    }
    /* End Footer */
}

@media screen and (min-width: 1366px) {
    /* .main-container {
    width: 1200px;
    margin: 0 auto;
  } */
    /* section {
    padding: 4rem 0rem;
  } */
    /* Start Header */
    .header .menu-items a i {
        font-size: 20px;
    }

    .header .menu-items a .search i {
        font-size: 18px;
    }

    .header .menu-links .links-li {
        margin-right: 1.5rem;
    }

    .header .menu-links .links-li a {
        font-size: 14px;
        line-height: 1.5;
    }
    /* End Header */

    /* Start Gallery */
    .gallery .content-description .content p {
        width: 70%;
        margin: auto;
    }

    .gallery .content-detail .cart {
        min-width: 346px;
    }
    /* End Gallery */

    /* Start Carousel */
    .slider-carousel {
        padding: 32px 48px;
    }

    .slider-carousel .item {
        max-width: 253px;
    }
    /* End Carousel */

    /* Start Footer */
    .footer .submit {
        min-width: 300px;
    }

    .footer .form {
        width: 60%;
    }

    .footer .footer-social {
        width: 16%;
        margin-left: 6rem;
    }
    .footer .popup-inner {
        min-width: max-content;
        padding: 15px;
    }
    .footer .popup-inner li {
        font-size: 14px;
    }
    .footer .social-item:last-child .popup-inner{
      left: 0;
      }
    /* End Footer */
}

@media screen and (min-width: 1500px) {
    /* Start Header */
    .header .top-stores,
    .header .head-container {
        max-width: 1440px;
        margin: auto;
    }

    .header .top-stores,
    .header .head-container {
        padding: 0 20px;
    }

    /* End Header */

    /* .header .head-container .container {
    max-width: 1440px;
    margin: 0 auto;
  } */
    /* End Header */

    /* Start Carousel */
    .slider-carousel {
        padding: 32px 48px;
    }

    .slider-carousel .main-container {
        max-width: 1440px;
        margin: 0 auto;
    }

    .slider-carousel .item {
        max-width: 280px;
    }
    /* End Carousel */

    /* Start Footer  */
    .footer .footer-container .heading h2 {
        width: 33%;
    }
    .footer .submit {
        min-width: 204px;
    }

    .footer .form {
        width: 54%;
    }

    .footer .footer-social {
        margin-left: 0;
    }
    /* End Footer */
}

@media screen and (min-width: 1600px) {
    /* Start Header */
    .header .head-container .head-content {
        max-width: 1440px;
        margin: 0 auto;
    }

    .header .top-stores,
    .header .head-container,
    .header {
        padding: 0;
    }
    /* End Header */

    .home-container {
        max-width: 1440px;
        margin: auto;
        padding: 0;
    }
    /* Start Gallery Section */
    .gallery .main-container {
        max-width: 1440px;
        margin: 0 auto;
    }

    /* End Gallery Section */

    /* Start Carousel  */
    .slider-carousel .item {
        max-width: 287px;
    }
    /* End Carousel  */

    /* Start Faq */
    .faq .faq-container {
        max-width: 1440px;
        margin: auto;
        padding: 40px 0;
    }
    .faq .heading h2,
    .faq .breadcrumbs {
        width: 84%;
        margin: 0 auto 6px;
    }
    /* End Faq */

    /* Start Footer */
    .footer .main-container {
        max-width: 1440px;
        margin: auto;
    }
    /* End Footer */
}

@media screen and (min-width: 1900px) {
    /* Start Header */
    .header .top-stores,
    .header .head-container {
        padding: 0;
    }
    /* End Header */
}
/* inst-pad container */
.insta-pad .home-container{
    max-width: 900px;
}
#carouselExampleControlsHome img{
    width: 100% !important;
    height: 550px;
    object-fit: cover;
}