/** Shopify CDN: Minification failed

Line 1759:9 Expected ":"
Line 1771:9 Expected ":"
Line 1782:9 Expected ":"
Line 2474:19 Expected identifier but found whitespace
Line 2474:26 Unexpected ";"
Line 2495:3 Unexpected "/"

**/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --white: #fff;
    --cream: #FCF7F4;
    --heading: #000;
    --para: #656565;
}

body {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    position: relative;
    color: #000;
    width: 100%;
    height: 100%;
    /* overflow-x: hidden; */
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
}

* {
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    margin: 0;
    outline: none;
    text-decoration: none;
}

button {
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
}

input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible {
    outline: none;
    box-shadow: none;
    border: none;
}

h1,h2,h3,h4,h5,h6 {
    margin: 0;
    padding: 0;
}

/* flex */
.flex-area {
    display: flex;
    flex-wrap: wrap;
}

.align-item-start {
    align-items: start;
}

.align-item-end {
    align-items: end;
}

.align-item-center {
    align-items: center;
}

.justify-content-sb {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-start {
    justify-content: start;
}

.justify-content-end {
    justify-content: end;
}

.flex-no-wrap {
    flex-wrap: nowrap;
}

/* flex-end */
/* columns */
.coll-80 {
    width: 80%;
    flex: 0 0 80%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
}

.coll-75 {
    width: 75%;
    flex: 0 0 75%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
}

.coll-70 {
    width: 70%;
    flex: 0 0 70%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
}

.coll-65 {
    width: 65%;
    flex: 0 0 65%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 65%;
}

.coll-60 {
    width: 60%;
    flex: 0 0 60%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
}

.coll-55 {
    width: 55%;
    flex: 0 0 55%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 55%;
}

.coll-50 {
    width: 50%;
    flex: 0 0 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
}

.coll-45 {
    width: 45%;
    flex: 0 0 45%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
}

.coll-40 {
    width: 40%;
    flex: 0 0 40%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
}

.coll-33 {
    width: 33.33%;
    flex: 0 0 33.33%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
}

.coll-30 {
    width: 30%;
    flex: 0 0 30%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
}

.coll-25 {
    width: 25%;
    flex: 0 0 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
}

.coll-20 {
    width: 20%;
    flex: 0 0 20%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
}

/* columns-end */
/* container start */
.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
}

.bg-property {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* container end */
/* common btn style start */
.common-btn {
    position: relative;
    padding: 16px 40px;
    display: inline-flex;
    justify-content: left;
    gap: 4px;
    font-size: clamp(14px, 1.111vw, 16px);
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    border-radius: 60px;
    overflow: hidden;
    /* keeps background inside rounded corners */
    border: none;
    z-index: 1;
    /* so text stays above background */
}

.common-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #fff;
    /* button background color */
    z-index: -1;
    /* put behind text */
    border-radius: 60px;
}

.common-btn span {
    background: linear-gradient(to right, #D93D66, #E87552);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.common-btn img {
    width: 13px;
}

.primary-btn {
    position: relative;
    padding: 16px 40px;
    display: inline-flex;
    justify-content: center;
    gap: 4px;
    font-size: clamp(14px, 1.111vw, 16px);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-align: center;
    border-radius: 60px;
    background: linear-gradient(to right, #D93D66, #E87552);
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.primary-btn img {
    width: 13px;
}

.primary-btn:hover {
    background: linear-gradient(to right, #E87552, #D93D66);
}

main#main {
    padding-top: 100px;
}

/* common btn style end */
/* font sizes */
.play400 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    line-height: 100%;
}

.dm400 {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
}

p {
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 1.6;
    font-weight: 400;
}

h1 {
    font-size: clamp(42px, 5.139vw, 74px);
    color: #fff;
}

h2 {
    font-size: clamp(36px, 3.194vw, 46px);
}

h3 {
    font-size: clamp(24px, 2.5vw, 36px);
}

h4 {
    font-size: clamp(18px, 1.667vw, 24px);
}

h5 {
    font-size: clamp(16px, 1.25vw, 18px);
}

h6 {
    font-size: 14px;
}

.h-48 {
    font-size: clamp(36px, 3.333vw, 48px);
    line-height: 140%;
}

/* Top bar */
.st-top-bar-block {
    background: linear-gradient(109.46deg, rgba(217, 61, 102, 0.91) 0%, rgba(232, 117, 82, 0.91) 100%);
}

.st-top-bar-block .announcement-bar {
    color: #FFFFFF;
}

.st-top-bar-block .announcement-bar p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: normal;
    color: #fff;
    padding: 7px 0;
    min-height: max-content;
}

.st-top-bar-block .announcement-bar p span {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: normal;
    color: #fff;
    font-style: italic;
}

/* header */
.st-header-block .container {
    padding: 0 30px !important;
}

.st-header-block {
    padding: 8px 0;
}

.st-header-block .header__heading-link {
    padding: 0;
}

.st-header-block .header__inline-menu .list-menu--inline li a {
    transition: all 0.3s ease-in-out;
}

.st-header-block .header__inline-menu .list-menu--inline li a span {
    text-decoration: none !important;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: normal;
    color: #000;
}

.st-header-block .header__inline-menu .list-menu--inline li a:hover {
    background: linear-gradient(270deg, #D93D66 0%, #E87552 100%);
    -webkit-background-clip: text; /* Safari/Chrome */
    -webkit-text-fill-color: transparent; /* Safari/Chrome */
    background-clip: text; /* Standard */
    color: transparent; /* Fallback */
}

.st-header-block .header__inline-menu .list-menu--inline li a span.header__active-menu-item {
    background: linear-gradient(270deg, #D93D66 0%, #E87552 100%);
    -webkit-background-clip: text; /* Safari/Chrome */
    -webkit-text-fill-color: transparent; /* Safari/Chrome */
    background-clip: text; /* Standard */
    color: transparent; /* Fallback */
}

.st-header-block .header--middle-left {
    column-gap: clamp(26px, 3.75vw, 54px);
}

.st-header-block .header__menu-item {
    padding: 0 clamp(20px, 2.778vw, 40px) 0 0;
}

.st-header-block .list-menu--inline li:last-child .header__menu-item {
    padding: 0;   
}

.st-header-block .menu-drawer__navigation ul li a {
    text-decoration: none !important;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: normal;
    color: #000;
}

.st-header-block .menu-drawer__navigation ul li a.menu-drawer__menu-item--active {
    background: linear-gradient(270deg, #D93D66 0%, #E87552 100%);
    color: #fff;
}

.st-header-block .header__icons .svg-wrapper svg {
    width: 20px;
    height: 20px;
}

.st-header-block .cart-count-bubble {
    bottom: auto;
    top: 6px;
    left: auto;
    right: 0;
    background: linear-gradient(270deg, #D93D66 0%, #E87552 100%);   
}



/* Foter */
.footer-top .coll-75 .coll-25,
.footer-top .coll-45 {
    position: relative;
    /* padding-left: 60px; */
    padding-left: 68px;
}

.footer-top .coll-75 .coll-25::before,
.footer-top .coll-45::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
}

.email-temp {
    position: relative;
    margin-top: 26px;
}

.email-temp input[type="email"] {
    font-size: 14px;
    color: #ADB5BD;
    background: #ffffff21;
    /* padding: 18px 160px 18px 24px; */
    padding: 18px 160px 15px 24px;
    border-radius: 50px;
    border: none;
    width: 100%;
}

.email-temp button {
    position: absolute;
    right: 0;
    font-size: 14px;
}

.ft-logo {
    margin-bottom: 35px;
}

.ft-logo img {
    width: 78px;
    height: 84px;
    object-fit: contain;
}

.footer-links li {
    margin-top: 20px;
}

.footer-links a {
    font-size: 14px;
    color: #fff;
    display: flex;
    transition: all 0.3s ease-in-out;
    font-family: "DM Sans", sans-serif;
}

.footer-links a:hover {
    background: linear-gradient(90deg, #E87552 0%, #D93D66 100%);
  -webkit-background-clip: text;  /* clip background to text */
  -webkit-text-fill-color: transparent; /* hide the solid text color */
  background-clip: text; /* standard property (not supported everywhere) */
  color: transparent; /* fallback */
}

.footer-links a.active {
    background: linear-gradient(90deg, #E87552 0%, #D93D66 100%);
  -webkit-background-clip: text;  /* clip background to text */
  -webkit-text-fill-color: transparent; /* hide the solid text color */
  background-clip: text; /* standard property (not supported everywhere) */
  color: transparent; /* fallback */
}

.footer-links a img {
    margin-right: 5px;
}

.footer-top {
    padding: 70px 0 30px;
}

.footer-top h4 {
    color: rgb(255 255 255 / 79%);
}

.footer-top p {
    color: rgb(255 255 255 / 79%);
    /* margin-top: 20px; */
    margin-top: 14px;
    font-size: 14px;
    /* width: 70%; */
    width: 75%;
}

.footer-middle {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-middle h6 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 100%;
    margin-bottom: 20px;
}

.footer-middle a {
    font-size: 14px;
    color: var(--para);
    line-height: 171%;
}

a:not([href]) {
    cursor: default;
}

.footer-middle img {
    max-width: 338px;
    width: 100%;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #ffffff21;
}

.footer-bottom p {
    color: var(--white);
}

.fpt-link {
    width: 30%;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.fpt-link a {
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.fpt-link a:hover {
    background: linear-gradient(90deg, #E87552 0%, #D93D66 100%);
  -webkit-background-clip: text;  /* clip background to text */
  -webkit-text-fill-color: transparent; /* hide the solid text color */
  background-clip: text; /* standard property (not supported everywhere) */
  color: transparent; /* fallback */
}

.fpt-link a:active {
    background: linear-gradient(90deg, #E87552 0%, #D93D66 100%);
  -webkit-background-clip: text;  /* clip background to text */
  -webkit-text-fill-color: transparent; /* hide the solid text color */
  background-clip: text; /* standard property (not supported everywhere) */
  color: transparent; /* fallback */
}

/* ***************HOME BANNER**************** */

.home-banner {
    background: linear-gradient(254.89deg, #E87552 3.01%, #C11D52 97.24%);
    padding: 60px 0;
    position: relative;
    height: 776px;
}

.home-banner::before {
    background-image: url(/cdn/shop/files/Pattern.png?v=1755612868);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.home-banner .container,
.home-banner-block {
    height: 100%;
}

.small-text {
    backdrop-filter: blur(168.60000610351562px);
    background: #FFFFFF26;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 14px;
    color: #fff;
    display: inline-block;
}

.home-banner-block h1 {
    padding: 26px 0 28px 0;
}

.home-banner-block p {
    padding-bottom: 56px;
    color: #fff;
}

.baner-im {
    position: relative;
    height: 100%;
}

.baner-im::before {
    content: "";
    position: absolute;
    left: -90px;
    bottom: 25px;
    background-image: url(/cdn/shop/files/Arrow_01.svg?v=1755612787);
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    width: 300px;
}

.baner-im img:nth-child(1) {
    max-width: 414px;
    width: 100%;
    height: 520px;
    object-fit: contain;
    border-radius: 10px;
    position: absolute;
    top: 130px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

.baner-im img:nth-child(2) {
    width: 242px;
    height: 270px;
    object-fit: contain;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
}

.baner-im img:nth-child(3) {
    width: 287px;
    height: 320px;
    object-fit: contain;
    border-radius: 10px;
    position: absolute;
    top: -50px;
    right: 0;
}


/* ***************PHOTO MAGNET SIZE**************** */

.photo-magnet-size {
    /* padding: 100px 0; */
    padding: 80px 0;
}

.photo-magnet-size-block {
    flex-direction: column;
}

.photo-magnet-size-block h2 {
    padding-top: 26px;
    width: 50%;
    text-align: center;
}

.photo-magnet-size-second-block {
    margin-top: 40px;
}

.photo-magnet-incard {
    border: 1px solid #0000001A;
    padding: 18px 14px;
    background: #fff;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.photo-magnet-incard:hover {
    box-shadow: 0px 4px 82.7px 0px #00000021;
}

.photo-shop-img {
    position: relative;
    border-radius: 20px !important;
    overflow: hidden !important;
}

.photo-shop-img a {
    cursor: pointer;
}

.cust-product-card .gradient {
    background: #fff !important;
}

.photo-shop-img img {
    height: 470px;
    max-width: 383px;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.photo-shop-img::after {
    content: "";
    position: absolute;
    background: #0000006b;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
}

.photo-shop-img:hover::after,
.photo-shop-img:hover .quick-review button {
    opacity: 1;
    visibility: visible;
}

.photo-magnet-incard a.product-title {
    padding: 12px 0 9px;
    color: var(--para);
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 1.6;
    font-weight: 400;
    display: flex;
}



/* .photo-magnet-incard button {
    padding: 12px 40px;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #0000001A;
    color: #000;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    margin-top: 10px;
} */
.view-btn a {
    padding: 12px 40px;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #0000001A;
    color: #000;
    background: transparent;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    margin-top: 10px;
    font-family: "DM Sans", sans-serif;
    transition: all 0.3s ease-in-out;
}

.view-btn a:hover {
    background: linear-gradient(180deg, #E87552 0%, #D93D66 100%);
    color: #fff;
    border: none;
}

.photo-magnet-card.coll-33 {
    padding-inline: 12px;
}

.quick-review {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 5;
    transform: translateY(-50%);
}

.quick-review button {
    background: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 14px;
    color: #656565;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    gap: 10px;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

.quick-review button img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.photo-magnet-slider {
    display: none !important;
}




/* ***************HOW IT WORK**************** */

.how-it-works {
    padding: 100px 0;
}

.small-text2 {
    backdrop-filter: blur(168.60000610351562px);
    background: #00000014;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 14px;
    color: #D93D66;
    display: inline-block;
}

.how-it-works-block {
    flex-direction: column;
}

.how-it-works-block span {
    padding: 12px 20px;
}

.how-it-work-second-block .coll-70 {
    position: relative;
    z-index: 2;
}

.how-it-work-second-block .coll-70::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 124px;
    margin: auto;
    left: 0;
    right: 0;
    background-image: url(/cdn/shop/files/curve-line.png?v=1755615990);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.how-it-works-block h2 {
    padding-top: 26px;
}

.card-ico {
    padding: 20px;
    border-radius: 50px;
    background: linear-gradient(109.46deg, rgba(217, 61, 102, 1) 0%, rgba(232, 117, 82, 1) 100%);
    width: 84px;
    height: 84px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.card-ico-2::before {
    content: '';
    position: absolute;
    top: 4px;
    right: -25px;
    width: 19px;
    height: 19px;
    background: url(/cdn/shop/files/Misc_01.svg?v=1757003868) no-repeat center/contain;
}

.work-card {
    flex-direction: column;
}

.work-card h5 {
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
}

.work-card h6 {
    margin: 40px 0 20px;
    color: #D93D66;
}

.work-card p {
    margin-top: 17px;
    color: var(--para);
    text-align: center;
    width: 95%;
    font-size: 14px;
    line-height: 171%;
}

.how-it-work-second-block .coll-30 img {
    height: 338px;
    width: 308px;
    object-fit: contain;
    margin-top: -165px;
}

.how-it-work-second-block {
    margin-top: 80px;
}

.about-us-ar .how-it-work-second-block {
    margin-top: clamp(40px, 8.333vw, 120px);
}


/* ***************EXCLUSIVE OFFERS**************** */

.exclusive-ico {
    background: #FCF7F4;
    padding: 21px;
    border: 1px solid #0000000D;
    border-radius: 100px;
    width: 122px;
    height: 122px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.exclusive-offer-block .coll-33 {
    border: 1px solid #0000001A;
    background: #fff;
    border-radius: 10px;
    padding: 50px 30px;
    text-align: center;
}

.exclusive-ico img {
    width: 83px;
    height: 68px;
    object-fit: contain;
}

.exclusive-offer {
    padding: 50px 0;
}

.exclusive-offer-block {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.exclusive-offer-block .coll-33 h2 {
    padding: 15px 0 10px;
}

.exclusive-offer-block .coll-33 p {
    color: var(--para);
}

h2.subs-title {
    font-size: clamp(36px, 2.917vw, 42px);
    line-height: 140%;
    letter-spacing: 0.42px;
}

h2.get-exclu-title {
    font-size: clamp(36px, 3.333vw, 48px);
    line-height: 140%;
    letter-spacing: 0.48px;
}

.exclusive-offer-block .coll-65 {
    background: #fff;
    padding: 78px 50px;
    border: 1px solid #0000001A;
    border-radius: 20px;
}

.exclusive-offer-block .coll-65 p {
    padding: 10px 0 30px;
    color: var(--para);
}

.newsletter-form input[type="email"] {
    padding: 25px 50px;
    border-radius: 50px;
    border: none;
    background: #FCF7F4;
    border: 1px solid #0000000D;
    width: 100%;
    color: #000;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form input[type="email"]::placeholder {
    color: #ADB5BD;
}

.newsletter-form button.primary-btn {
    width: 100%;
    padding: 24px 40px;
}

.newsletter-form .newsletter-success {
    margin-top: 5px;
}

.newsletter-form .newsletter-success p {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 183%;
    letter-spacing: normal;
    color: #000000;
}

.newsletter-form .newsletter-errors {
    margin-top: 5px;
}

.newsletter-form .newsletter-errors p {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 183%;
    letter-spacing: normal;
    color: #D93D66;
}



/* ***************FAQ**************** */

.faq {
    padding: 100px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 38px;
}

#accordion1 .apps_panel,
#accordion2 .apps_panel {
    padding: 25px;
    background: #FCF7F4;
    transition: all 0.4s ease-in-out;
    border: 1.06px solid #0000000D;
    border-radius: 10px;
    margin-top: 15px;
}

#accordion1 .apps_panel:first-child,
#accordion2 .apps_panel:first-child {
    margin-top: 0;
}

#accordion1 .apps_panel .apps_panel_header,
#accordion2 .apps_panel .apps_panel_header {
    background-image: url(/cdn/shop/files/plus.svg?v=1755616154);
    background-repeat: no-repeat;
    background-position: right;
    font-size: clamp(16px, 1.667vw, 22px);
    padding-right: 20px;
    line-height: 145%;
}

#accordion1 .active .apps_panel_header,
#accordion2 .active .apps_panel_header {
    background-image: url(/cdn/shop/files/minus.svg?v=1755616129);
    background-repeat: no-repeat;
    background-position: right;
}

#accordion1 .apps_panel_content,
#accordion2 .apps_panel_content {
    opacity: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -khtml-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#accordion1 .active .apps_panel_content,
#accordion2 .active .apps_panel_content {
    opacity: 1;
    overflow: visible;
    height: auto;
    padding: 28px 0 0 !important;
    padding-right: 10% !important;
}

#accordion1 .apps_panel .apps_panel_content,
#accordion2 .apps_panel .apps_panel_content {
    font-size: clamp(14px, 1.111vw, 16px);
    color: var(--para);
    line-height: 26px;
    padding-right: 10% !important;
}

.faq-block {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.faq-block .coll-33 {
    background: #FCF7F4;
    border: 1.06px solid #0000000D;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 15px;
    border-radius: 10px;
}

.faq-block .coll-33 h4 {
    padding: 46px 0 24px;
    font-weight: 500;
}

.faq-block .coll-33 p {
    margin-bottom: 50px;
    color: #2D2D2D;
}





/* ***************MAIN BANNER**************** */

.main-banner {
    background: linear-gradient(254.89deg, #E87552 3.01%, #C11D52 97.24%);
    position: relative;

}

.main-banner::before {
    background-image: url(/cdn/shop/files/Pattern.png?v=1755612868);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.main-banner-block {
    position: relative;
    padding-top: 90px;
    height: 350px;
}

.main-banner-block h2 {
    text-align: center;
    color: #fff;
}

.main-banner-image1,
.main-banner-image2 {
    position: absolute;
}

.main-banner-image1 {
    left: 0;
    bottom: 0;
}

.main-banner-image2 {
    right: 0;
    top: 0;
}

.main-banner-image1 img {
    width: 160px;
    height: 180px;
    object-fit: contain;
}

.main-banner-image2 img {
    width: 270px;
    height: 295px;
    object-fit: contain;
}

.main-banner-block::before {
    content: "";
    position: absolute;
    height: 123px;
    width: 81%;
    background-image: url(/cdn/shop/files/long-line.png?v=1755616206);
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 35px;
    left: 0;
    right: 0;
    margin: auto;
}


/* ***************MAGAN DAMANI ABBOUT**************** */

.magan-damani {
    padding: 50px 0 100px;
}

.dmaani-img {
    position: relative;
}

.dmaani-img::before {
    content: "";
    position: absolute;
    right: -182px;
    bottom: -20px;
    background-image: url(/cdn/shop/files/Arrow_02.svg?v=1755616261);
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    width: 300px;
    z-index: 0;
}

.dmaani-img::after {
    content: "";
    position: absolute;
    left: 50px;
    top: 50px;
    background-image: url(/cdn/shop/files/Highlight_12.svg?v=1757009088);
    background-repeat: no-repeat;
    background-size: contain;
    width: 125px;
    height: 156px;
    z-index: 0;
}

.damani-img2 img {
    max-width: 480px;
    width: 100%;
    height: 599px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    right: 0;
}

.damani-img1 img {
    max-width: 329px;
    height: 372px;
    object-fit: contain;
    position: absolute;
    bottom: -25px;
    z-index: 2;
}

.daamani-text p {
    text-align: center;
    margin-top: 20px;
    color: var(--para);
}

.daamani-text h2 {
    text-align: center;
    padding-bottom: 10px;
}

.damani-img2 {
    text-align: end;
}



/* ***************TURNING MOMENT ABBOUT**************** */

.turning-moment {
    padding-top: 90px;
}

.turning-moment-block h2 {
    margin-bottom: 40px;
    max-width: 460px;
    width: 100%;
    line-height: 122%;
    position: relative;
}

.turning-moment-block h2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 20px;
    background: url(/cdn/shop/files/Group.svg?v=1757010720) no-repeat center / contain;
    width: 25px;
    height: 25px;
}

.turning-moment-block p {
    margin-bottom: 30px;
    color: var(--para);
}

.moment-img img {
    max-width: 522px;
    width: 100%;
    height: 650px;
    object-fit: contain;
}

.moment-img {
    text-align: end;
}

.moment-text {
    padding-right: 50px;
}



/* ***************TERMS CONDITION AND PRIVACY POLICY**************** */

.term-condition-block {
    padding: 55px 85px;
    border-radius: 10px;
}

.term-conditoin,
.privacy-policy {
    padding-bottom: 100px;
    padding-top: 50px;
}

.term-condition-block h2 {
    margin-bottom: clamp(30px, 5.556vw, 80px);
    text-align: center;
    font-size: clamp(24px, 3.194vw, 46px);
    line-height: 121%;
}

.content-block h4 {
    padding-bottom: 30px;
    font-weight: 600;
}

.content-block {
    padding-bottom: 40px;
}

.content-block p:not(:last-of-type) {
    padding-bottom: 20px;
    color: var(--para);
}

.content-block li {
    font-size: clamp(14px, 1.111vw, 16px);
    color: var(--para);
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.content-block li:before {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, #E87552 0%, #D93D66 100%);
    width: 10px;
    height: 10px;
    border-radius: 50px;
    left: 20px;
    top: 10px;
}

.privacy-policy-block {
    padding: 120px 85px 50px;
    border-radius: 10px;
}

.content-block-1 h2 {
  padding-top: clamp(20px, 2.778vw, 40px);
}

.content-block h2 {
    padding-bottom: 20px;
    font-size: clamp(24px, 3.194vw, 46px);
    line-height: 121%;
}

.content-block ul:not(:empty) {
  padding: 30px 0 0;
}

.term-condition-block .content-block ul:empty {
  display: none !important;
}

.content-block ul li:last-child {
    margin-bottom: 0;
}

.content-block a {
  background: linear-gradient(90deg, #E87552 0%, #D93D66 100%);
  -webkit-background-clip: text;  /* clip background to text */
  -webkit-text-fill-color: transparent; /* hide the solid text color */
  background-clip: text; /* standard property (not supported everywhere) */
  color: transparent; /* fallback */
}

.term-condition {
    margin-bottom: clamp(50px, 6.944vw, 100px);
    margin-top: 50px;
}


/* .privacy-policy-block h2 {
    padding-bottom: 50px;
} */

.privacy-policy-title-with-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: clamp(20px, 3.472vw, 50px);
}

.privacy-policy-date-block p {
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 14px 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 157%;
    letter-spacing: normal;
    color: #656565;
}

.privacy-policy-block > p {
    padding-bottom: 20px;
    line-height: 206%;
    color: #656565;
}

.content-block p {
    line-height: 206%;
    color: #656565;   
}



/* ***************CONTACT US**************** */

.contact-information {
    padding: 100px 0;
}

.contact-information-block {
    box-shadow: 0px 0px 60px 30px #00000008;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
}

.contact-information-block .coll-40 {
    background: linear-gradient(180deg, #D93D66 0%, #E87552 100%);
    padding: 40px;
    border-radius: 10px;
    position: relative;
}

.bottom-img-block {
    position: absolute;
    bottom: 0;
    right: 0;
}

.bottom-img-block img {
    width: clamp(110px, 13.194vw, 190px);
    height: clamp(110px, 13.194vw, 190px);
    object-fit: cover;
    display: block;
}

.contact-information-block .coll-40 p::first-child {
    padding-bottom: 0;
}

.contact-information-block .coll-40 p {
    padding-bottom: 15px;
    color: var(--white);
    font-size: clamp(14px, 1.25vw, 18px);
    line-height: 155%;
}

.contact-information-block .coll-40 h4 {
    padding-bottom: 15px;
    color: var(--white);
}

.contact-information-block .coll-40 h3 {
    padding-bottom: 15px;
    color: var(--white);
}

.contact-information-block .coll-40 ul {
    margin-bottom: 40px;
}

.contact-information-block .coll-40 li {
    padding-top: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-information-block .coll-40 li a {
    font-size: clamp(14px, 1.111vw, 16px);
    color: var(--white);
}

.contact-information-block .coll-40 li img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.contact-social-ico a {
    padding: 10px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}

.contact-social-ico {
    gap: 24px;
    margin-top: 15px;
}

.input-grp2 {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2%;
}

.input-container {
    /* padding: 16px; */
    margin-bottom: 50px;
    position: relative;
}

.input-grp2 .input-container {
    flex: 1 0 200px;
}

.input-container label {
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 4px;
    display: block;
    color: #000;
}

.input-container input,
.input-container textarea {
    font-size: 12px;
    color: #333;
    outline: none;
    width: 100%;
    border: 0;
    background: #FFF;
    padding: 13px;
    border-bottom: 1px solid #8D8D8D;
    color: #8D8D8D;
    font-family: "DM Sans", sans-serif;
}

.contact-info-form {
    padding: 140px 50px;
}

.contact-info-form button.primary-btn {
    width: 100%;
}

.form-success {
    margin-top: 5px;
}

.form-success p {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 183%;
    letter-spacing: normal;
    color: #000000;
}

.cust-product-card {
    padding: 18px 14px;
    background: #fff;
    border: 1px solid #0000001A;
    border-radius: 20px;
}

.cust-product-card:hover .quick-review button {
    opacity: 1;
    visibility: visible;
}


/* Product */
.st-product-sc .product__title h1 {
    font-size: clamp(24px, 2.917vw, 42px);
    color: #000000;
    letter-spacing: normal;
    line-height: 124%;
    margin-bottom: 30px;
    font-family: "Playfair Display", serif;
}

/* .st-product-sc .st-product-price {
    width: max-content;
    margin: 0;
    padding: 24px 58px;
    background-color: #00000008;
    border: 1px solid #0000000D;
    border-radius: 5px;
    margin-bottom: 25px;
} */

.st-product-sc .st-product-price .price .price__container {
    width: max-content;
    margin: 0;
    padding: 24px 58px;
    background-color: #00000008;
    border: 1px solid #0000000D;
    border-radius: 5px;
    margin-bottom: 25px;
}

.st-product-sc .st-product-price .price .price__container span {
    color: #656565;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 138%;
    letter-spacing: normal;
    font-weight: 400;
}

.st-product-sc .st-product-price .price .badge {
    background: linear-gradient(90deg, #E87552 0%, #D93D66 100%);
    box-shadow: 0px 0px 14px 0px #0000001F;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 100%;
}

.st-product-sc .product__description {
    width: 100%;
    border: 1px solid #0000001A;
    border-radius: 10px;
    padding: 22px 35px;
    text-align: center;
    margin-bottom: 0 !important;
}

.st-product-sc .product__description h2,
.st-product-sc .product__description h3 {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 138%;
    letter-spacing: normal;
    font-weight: 400;
    text-align: center;
    margin-bottom: 6px;
    color #000000;
}

.st-product-sc .product__description h4,
.st-product-sc .product__description h5 {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 138%;
    letter-spacing: normal;
    font-weight: 400;
    text-align: center;
    margin-bottom: 6px;
    color #656565;
}

.st-product-sc .product__description p {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 138%;
    letter-spacing: normal;
    font-weight: 400;
    text-align: center;
    margin-bottom: 6px;
    color #656565;
}


.st-product-sc .font-system {
    font-family: "DM Sans", sans-serif;
}

.st-image-slider ul li .product-media-container {
    border-radius: 20px;
}

.st-image-slider ul li .product__media.media img {
    border-radius: 20px;
}

.st-thumbnail-list li {
    max-width: clamp(80px, 13.542vw, 195px);
    width: 100% !important;
    height: clamp(100px, 17.778vw, 256px);
}

.st-thumbnail-list li button {
    border-radius: 20px;
}

.st-thumbnail-list li button.thumbnail[aria-current] {
    /* border-color: #E66E54; */
    border: 3.85px solid #E66E54
}

.st-product-sc .slider-button .svg-wrapper {
    width: 30px;
    height: 30px;
    background: linear-gradient(180deg, #D93D66 0%, #E87552 100%);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.st-product-sc .slider-button .svg-wrapper {
    background: linear-gradient(180deg, #E87552 0%, #D93D66 100%);
}

.st-product-sc .slider-button .svg-wrapper svg {
    color: #fff;
    height: 10px;
}

.st-quantity-block {
    margin: 30px 0 !important;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.st-quantity-block label.quantity__label.form__label {
    display: none;
}

.st-quantity-block .quantity {
    background-color: #00000008;
    border: 1px solid #0000000D;
    padding: 10px 13px;
    border-radius: 82px;
    width: 200px;
}

.st-quantity-block .quantity::before,
.st-quantity-block .quantity::after {
    border: none;
    box-shadow: none;
    background: transparent;
}

.st-quantity-block .quantity__button,
.st-quantity-block .quantity__input {
    background: transparent !important;
}

.st-quantity-block .quantity__button .svg-wrapper {
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    width: 45px;
    height: 45px;
}

.st-quantity-block .quantity__button .svg-wrapper svg {
    color: #999999;
    width: 24px;
    height: 24px;
}

.st-quantity-block .quantity__input {
    color: #A2A2A2;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: normal;
    box-shadow: none !important;
}

.st-quantity-block .quantity__input:focus,
.st-quantity-block .quantity__input:focus-visible {
    border: none !important;
    box-shadow: none !important;
    outline: none;
}

.st-shipping-cal-text {
    padding-bottom: 30px;
    border-bottom: 1px solid #0000000D;
}

.st-shipping-cal-text p {
    color: #656565;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 175%;
    letter-spacing: normal;
}

.st-upload-pics p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 175%;
    letter-spacing: normal;
    color: #656565;
}

.cl-upload--label {
    display: none !important;
}

.product-form .product-form__buttons {
    width: 100%;
    max-width: 100%;
}

.product-form button.product-form__submit {
    background: linear-gradient(90deg, #E87552 0%, #D93D66 100%);
    box-shadow: 0px 0px 14px 0px #0000001F;
    border-radius: 33px;
    padding-top: 18.5px;
    padding-bottom: 18.5px;
    transition: all 0.3s ease-in-out;
}

.product-form button.product-form__submit:hover {
    background: linear-gradient(90deg, #D93D66 0%, #E87552 100%);
    
}

.product-form button.product-form__submit::before,
.product-form button.product-form__submit::after,
.product-form button.product-form__submit:hover::before,
.product-form button.product-form__submit:hover::after {
    outline: none;
    border: none;
    box-shadow: none;
}

.product-form button.product-form__submit span {
    color: #FFFFFF;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: normal;
}

a.shopify-payment-button__more-options {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: normal;
    color: #656565;
    text-decoration: underline;
    margin: 8px 0 20px;
    text-transform: capitalize;
}

/* .product-form__buttons .cl-upload--area {
    width: 100%;
    height: 292px;
    border: 1px solid #0000001A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 44px 0;
    border-radius: 10px;
    background-color: #fff;
    background: #fff;
} */

/* .product-form__buttons .filepond--drop-label,
.product-form__buttons .cl-upload--counter {
    position: relative !important;
}

.filepond--panel.filepond--panel-root {
    background-color: #fff !important;
    background: #fff !important;
} */

/* #clznvahjnf8j .filepond--panel-root {
    background-color: #fff !important;
} */

/* .filepond--panel.filepond--panel-root {
    background: transparent !important;
    background-color: transparent !important;
} */




/* Recommended sc */
.product .st-related-product-block {
    background-color: #FCF7F4;
    padding-top: 50px;
    padding-bottom: 50px;
    margin: clamp(50px, 6.667vw, 96px) 0 clamp(50px, 6.944vw, 100px);
}

product-recommendations.st-related-product {
    padding-top: 0;
    padding-bottom: 0;
}

product-recommendations.st-related-product .related-products__heading {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: clamp(24px, 3.194vw, 46px);
    line-height: 100%;
    letter-spacing: normal;
    color: #000;
    text-align: center;
    margin-bottom: clamp(30px, 4.167vw, 60px);
}


/* Cart */

.st-cart-items-block {
    margin-top: clamp(50px, 6.944vw, 100px) !important;
    padding: 0 !important;
    margin-bottom: 50px;
}

.cart .title-wrapper-with-link {
    margin-bottom: clamp(50px, 6.944vw, 100px);
}

.cart .title.title--primary,
.cart .cart__empty-text {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: clamp(24px, 3.194vw, 46px);
    line-height: 100%;
    letter-spacing: normal;
    color: #000;
}

.cart .title-wrapper-with-link a {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.25vw, 18px);
    line-height: 100%;
    letter-spacing: normal;
    color: #656565;
    text-decoration: underline;
}

.cart table.cart-items th {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 175%;
    letter-spacing: normal;
    color: #656565;
}

.cart .cart-item__image-container {
    border-radius: 10px !important;
}

.cart .cart-item__image-container img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.cart .cart-item__details a.cart-item__name {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: clamp(14px, 1.25vw, 18px);
    line-height: 155%;
    letter-spacing: normal;
    color: #000000;
}

.cart .cart-item__details a.cart-item__name:hover {
    text-decoration: none !important;
}


.cart .cart-item__price-wrapper {
    background-color: #00000008;
    border: 1px solid #0000000D;
    border-radius: 5px;
    padding: clamp(15px, 1.458vw, 21px) clamp(30px, 4.028vw, 58px);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
}

.cart .cart-item__price-wrapper span.price.price--end {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 100%;
    letter-spacing: normal;
    color: #656565;
    width: max-content;
}

.cart table .svg-wrapper {
    width: 24px;
    height: 24px;
}

.cart table .svg-wrapper svg {
    color: #A2A2A2;
    width: 16px;
    height: 20px;
}

.cart .quantity.cart-quantity {
    background-color: #00000008;
    border: 1px solid #0000000D;
    padding: 10px 13px;
    border-radius: 82px;
    width: 200px;
}

.cart .quantity.cart-quantity::before,
.cart .quantity.cart-quantity::after {
    border: none;
    box-shadow: none;
    background: transparent;
}

.cart .quantity.cart-quantity .quantity__button,
.cart .quantity.cart-quantity .quantity__input {
    background: transparent !important;
}

.cart .quantity.cart-quantity .quantity__button .svg-wrapper {
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    width: 45px;
    height: 45px;
}

.cart .quantity.cart-quantity .quantity__button .svg-wrapper svg {
    color: #999999;
    width: 24px;
    height: 24px;
}

.cart .quantity.cart-quantity .quantity__input {
    color: #A2A2A2;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: normal;
    box-shadow: none !important;
}

.cart .quantity.cart-quantity .quantity__input:focus,
.cart .quantity.cart-quantity .quantity__input:focus-visible {
    border: none !important;
    box-shadow: none !important;
    outline: none;
}

.cart .cart-item__quantity {
    padding-left: 0 !important;
}

.cart .cart-item__totals {
    display: flex;
    justify-content: flex-end;
}

.cart .st-cart-bottom .totals {
    justify-content: flex-start !important;
}

.cart .st-cart-bottom .totals .totals__total,
.cart .st-cart-bottom .totals .totals__total-value {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 100%;
    letter-spacing: normal;
    color: #656565;
}

.cart .st-cart-bottom .totals .totals__total-value {
    margin-left: 15px;
}

.cart .st-cart-bottom .tax-note {
    margin-top: 8px;
    margin-bottom: 23px;
    text-align: left;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 100%;
    letter-spacing: normal;
    color: #656565;
}


.cart .st-cart-bottom .cart__ctas button {
    background: linear-gradient(90deg, #E87552 0%, #D93D66 100%);
    box-shadow: 0px 0px 14px 0px #0000001F;
    border-radius: 33px;
    padding-top: 18.5px;
    padding-bottom: 18.5px;
    transition: all 0.3s ease-in-out;
}

.cart .st-cart-bottom .cart__ctas button:hover {
    background: linear-gradient(90deg, #D93D66 0%,  #E87552 100%);
}

.cart .st-cart-bottom .cart__ctas button::before,
.cart .st-cart-bottom .cart__ctas button::after {
    outline: none;
    border: none;
    box-shadow: none;
}

.cart .st-cart-bottom .cart__ctas button span {
    color: #FFFFFF;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: normal;
}

.section-template--18367845892258__cart-footer-padding {
    padding: 0 !important;
}

@media screen and (min-width: 750px) {
    .cart-item>td+td {
        padding-left: 20px !important;
    }
    .cart-items td {
        padding-top: 50px !important;
    }
    .cart__items {
        padding-bottom: 50px !important;
    }
}

/* product Popup */
.st-product-popup-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000B2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.st-product-popup-block.active {
    z-index: 10;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.st-product-popup-innerblock {
    background-color: #fff;
    width: 630px;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
}

.st-product-popup-main-area {
    display: flex;
    align-items: center;
    /* align-items: start; */
    /* column-gap: 22px; */
    height: 100%;
}

.st-product-popup-image-block {
    width: 30%;
    height: 100%;
}

.st-product-popup-content-block {
    width: 70%;
    /* height: 100%; */
}

.st-product-popup-image-innerblock {
    display: flex;
    flex-direction: column;
    row-gap: 2px;
    height: 100%;
}

.st-product-popup-image-innerblock img {
    flex: 1;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    height: 204px;
    /* aspect-ratio: 1 / 1; */
}
.st-product-popup-image-innerblock img:first-child {
    border-top-left-radius: 10px;
}
.st-product-popup-image-innerblock img:last-child {
    border-bottom-left-radius: 10px;
}

.st-product-popup-content-innerblock {
    padding: 25px 22px;
    height: 100%;
}

.st-product-popup-title {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: clamp(18px, 1.667vw, 24px);
    line-height: 142%;
    letter-spacing: normal;
    color: #000000;
    padding-bottom: 15px;
    display: block;
}

.st-product-popup-price-block {
    background-color: #00000008;
    border: 1px solid #0000000D;
    padding: 9px 25px;
    border-radius: 5px;
    width: max-content;
    margin-bottom: 20px;
}

.st-product-popup-price-block span {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(14px, 1.111vw, 16px);
    letter-spacing: normal;
    font-weight: 400;
    line-height: 138%;
    color: #656565;
}

.st-product-popup-extra-text {
    padding-bottom: 20px;
    border-bottom: 1px solid #0000000D;
}

.st-product-popup-extra-text p {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    letter-spacing: normal;
    font-weight: 400;
    line-height: 200%;
    color: #656565;
}

.st-product-popup-quantity-text-block {
    padding: 20px 0;
    display: flex;
    align-items: center;
    column-gap: 13px;
}

.st-product-popup-q-text-block p {
    font-family: "DM Sans", sans-serif;
    font-size: 10.37px;
    letter-spacing: normal;
    font-weight: 400;
    line-height: 175%;
    color: #656565;
}

.st-product-popup-quantity-block {
    background-color: #00000008;
    border: 0.65px solid #0000000D;
    border-radius: 53.17px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.st-product-popup-quantity-block button,
.st-product-popup-quantity-block input {
    background: transparent;
    display: flex;
}

.st-product-popup-quantity-block button {
    background-color: #fff;
    border-radius: 50%;
    padding: 7px;
    width: 30px;
    height: 30px;
}

.st-product-popup-quantity-block button svg {
    color: #999999;
    width: 16px;
    height: 16px;
}

.st-product-popup-quantity-input-block {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-product-popup-quantity-block input {
    color: #A2A2A2;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 10.37px;
    letter-spacing: normal;
    box-shadow: none;
    border: none;
    line-height: 14.26px;
    width: 20px;
    flex: 1;
    text-align: center;
    -moz-appearance: textfield;
}

.st-product-popup-quantity-input::-webkit-outer-spin-button,
.st-product-popup-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.st-product-popup-quantity-block button input:focus,
.st-product-popup-quantity-block button input:focus-visible {
    border: none;
    box-shadow: none;
    outline: none;
}

/* .st-product-popup-btns {
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    gap: 5px;
}

.st-product-popup-add-to-cart-btn {
    background: linear-gradient(90deg, #E87552 0%, #D93D66 100%);
    box-shadow: 0px 0px 7.72px 0px #0000001F;
    border-radius: 18.21px;
    padding: 14px 0;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    letter-spacing: normal;
    font-weight: 500;
    line-height: 100%;
    color: #FFFFFF;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.st-product-popup-add-to-cart-btn:hover {
    background: linear-gradient(90deg, #D93D66 0%, #E87552 100%);
} */
.st-product-popup-view-btns {
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    gap: 5px;
}

.st-product-popup-view-btns a {
    background: linear-gradient(90deg, #E87552 0%, #D93D66 100%);
    box-shadow: 0px 0px 7.72px 0px #0000001F;
    border-radius: 18.21px;
    padding: 14px 0;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    letter-spacing: normal;
    font-weight: 500;
    line-height: 100%;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.st-product-popup-view-btns a:hover {
    background: linear-gradient(90deg, #D93D66 0%, #E87552 100%);
}

.st-product-popup-disc-block {
    margin: 20px 0;
    max-height: 300px;
    overflow-y: auto;
}

.st-product-popup-disc-block h2,
.st-product-popup-disc-block h3 {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 138%;
    letter-spacing: normal;
    font-weight: 400;
    /* text-align: center; */
    margin-bottom: 6px;
}

.st-product-popup-disc-block p,
.st-product-popup-disc-block span {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 138%;
    letter-spacing: normal;
    font-weight: 400;
    /* text-align: center; */
    margin-bottom: 6px;
}


/* Judgme */
.jdgm-rev-widg__title {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: clamp(24px, 3.194vw, 46px) !important;
    line-height: 100% !important;
    letter-spacing: normal;
    color: #000000;
    margin-bottom: clamp(30px, 3.472vw, 50px) !important;
}

.jdgm-rev-widg .jdgm-star, .jdgm-revs-tab .jdgm-star, .jdgm-all-reviews .jdgm-star, .jdgm-gallery-popup .jdgm-star {
    color: #FBBC04 !important;
}

div.page-width:has(#judgeme_product_reviews) {
    max-width: 1340px !important;
    margin: 0 auto !important;
    padding: 0 30px !important;
}

.jdgm-widget.jdgm-review-widget {
    max-width: 100% !important;
}

.jdgm-rev-widg__summary-average {
    color: #656565;
    font-family: "DM Sans", sans-serif;;
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 175% !important;
    letter-spacing: normal;
    padding-left: 10px;
}

.jdgm-rev-widg__summary-text.jdgm-all-reviews__summary-text--verified {
    margin-top: 12px;
    color: #656565;
    font-family: "DM Sans", sans-serif;;
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 175% !important;
    letter-spacing: normal;
    gap: 10px !important;
}

.jdgm-widget .jdgm-verified-checkmark {
    width: 22px !important;
    height: 22px !important;
}

.jdgm-histogram__bar-content {
    background: linear-gradient(90deg, #E87552 0%, #D93D66 100%);
    border-radius: 40px !important;
}

.jdgm-histogram__bar {
    border-radius: 40px !important;
    background-color: #F3F3F3;
}

.jdgm-histogram__frequency {
    color: #656565 !important;
    font-family: "DM Sans", sans-serif;;
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 175% !important;
    letter-spacing: normal;
    text-align: center !important;
} 

.jdgm-widget-actions-wrapper a.jdgm-write-rev-link {
    background: linear-gradient(90deg, #E87552 0%, #D93D66 100%);
    box-shadow: 0px 0px 14px 0px #0000001F;
    border-radius: 33px;
    padding: 18px;
    color: #FFFFFF !important;
    font-family: "DM Sans", sans-serif;;
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 100% !important;
    letter-spacing: normal;
    border: none;
    text-transform: capitalize;
}

.jdgm-row-actions,
.jdgm-rev.jdgm-divider-top.jdgm--done-setup {
    border: none !important;
}

.jdgm-sort-dropdown-wrapper .jdgm-sort-dropdown, .jdgm-sort-dropdown-wrapper .jdgm-sort-dropdown-arrow {
    color: #656565 !important;
}

.jdgm-sort-dropdown:focus-visible {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

.jdgm-rev__timestamp {
    color: #656565 !important;
    font-family: "DM Sans", sans-serif;;
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px) !important;
    line-height: 175% !important;
    letter-spacing: normal;
}

.jdgm-row-rating {
    margin-bottom: 20px !important;
}

.jdgm-rev__icon {
    /* width: 74px !important;
    height: 74px !important; */
    border: 1px solid #0000001A;
    border-radius: 100% !important;
    background-color: none;
}

.jdgm-rev__author {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: clamp(16px, 1.667vw, 24px);
    line-height: 100% !important;
    letter-spacing: normal;
    color: #000000 !important;
}

.jdgm-rev__body p {
    color: #656565 !important;
    font-family: "DM Sans", sans-serif;;
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px) !important;
    line-height: 175% !important;
    letter-spacing: normal;
}


/* Product Card */
.st-product-card-block {
    padding: clamp(50px, 4.306vw, 62px) 0 clamp(50px, 6.944vw, 100px);
    background-color: #FCF7F4;
}

.st-product-card-grid-block {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.st-product-card-grid {
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #0000001A;
    transition: all 0.3s ease-in-out;
    padding: 18px 14px;
}

.st-product-card-grid:hover {
    box-shadow: 0px 4px 82.7px 0px #00000021;
}

.st-product-card-img-block {
    width: 100%;
    height: 470px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.st-product-card-img-block:hover::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    content: '';
    background-color: #00000066;
    border-radius: 20px;
    height: 100%;
}

.st-product-card-img-block a.st-product-card-img-mobile {
    display: none;
}

.st-product-card-img-desktop {
    display: block;
}

.st-product-card-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.st-product-card-img-block:hover .quick-review button {
    visibility: visible;
    opacity: 1;
}

.st-product-card-content-block {
    margin-top: 12px;
}

.st-product-card-content-block a {
    color: #656565;
    font-family: "DM Sans", sans-serif;;
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 162%;
    letter-spacing: normal;
    display: block;
}

.st-product-card-price {
    color: #000000;
    font-family: "DM Sans", sans-serif;;
    font-weight: 500;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 162%;
    letter-spacing: normal;
    margin-top: 9px;
}

.st-product-card-content-btn {
    margin-top: 11px;
}

.st-product-card-content-btn a {
    backdrop-filter: blur(168.60000610351562px);
    border: 1px solid #0000001A;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    color: #000000;
    background: transparent;
    font-family: "DM Sans", sans-serif;;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: normal;
    transition: all 0.3s ease-in-out;
}

.st-product-card-content-btn a:hover {
    color: #fff;
    border: none;
    background: linear-gradient(90deg, #E87552 0%, #D93D66 100%);
}

/* related product */
.st-product-card-title-block {
    margin-bottom: clamp(30px, 4.167vw, 60px);
}

.st-product-card-title-block h2 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: clamp(24px, 3.194vw, 46px);
    line-height: 100%;
    letter-spacing: normal;
    color: #000;
    text-align: center;
}

/* .st-related-product-card-block .st-product-card-content-btn .upload-container {
    display: none;
} */

.st-related-product-card {
    margin: clamp(50px, 6.944vw, 96px) 0 clamp(50px, 6.667vw, 100px);
}

.st-related-product-card-block {
    padding: 50px 0;
}

.st-cart-related-product-card-block {
    padding: 0 0 50px;
    background-color: transparent;
}


.section-template--18367846121634__main-padding {
    padding-top: 50px !important;
}

.st-continue-shopping-btn::before,
.st-continue-shopping-btn::after {
    content: none !important;
}

.cart__login-title {
    font-family: "Playfair Display", serif;
    line-height: 121%;
}

.cart__login-paragraph a {
    font-family: "DM Sans", sans-serif;
}


/* Insta feed */

.page-width:has(#insta-feed) {
    max-width: 100% !important;
    margin: 0 0 !important;
    padding: 0 0 !important;
}

/* VO App */

.bcpo-file {
    width: 100%;
    border: 1px solid #0000001A !important;
    border-radius: 10px !important;
    padding: 44px clamp(40px, 6.944vw, 100px) !important;
    margin-bottom: 15px !important;
}

#bcpo .selector-wrapper.bcpo-file > :last-child {
    margin-bottom: 0 !important;
    display: flex;
    justify-content: center;
    width: 100%;
}

.bcpo-file .bcpo-label {
    text-align: center;
}

.bcpo-file .bcpo-label .bcpo-title {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    letter-spacing: normal;
    color: #656565;
    text-align: center;
    margin-right: 0 !important;
}

.st-upload-img-block {
    max-width: 157px;
    width: 100%;
    max-height: 157px;
    height: 100%;
    margin: 0 auto 20px;
}

.st-upload-img-block img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.bcpo-file div input {
    width: max-content !important; 
}

.bcpo-checkboxes .bcpo-label label {
    display: none !important;
}

.bcpo-checkboxes label:has(input) {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 !important;
    text-indent: 0 !important;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 171%;
    color: #656565;
}

.bcpo-checkboxes label input {
    margin-right: 0 !important;
    height: 24px !important;
    width: 24px !important;
}


/* Responsive */
@media only screen and (max-width:1280px) {
    .baner-im img:nth-child(1) {
        height: 430px;
    }

    .baner-im img:nth-child(3) {
        width: 287px;
        height: 290px;
    }

    .baner-im img:nth-child(2) {
        width: 242px;
        height: 225px;
    }

    .home-banner {
        height: 710px;
    }

    .baner-im::before {
        bottom: 90px;
        height: 180px;
        width: 230px;
    }

    .photo-shop-img img {
        height: 390px;
    }
    /* .st-product-card-grid-block {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    } */
    .st-product-card-img-block {
        height: 370px;
    }
}

@media only screen and (max-width:1024px) {
    .baner-im img:nth-child(1) {
        height: 375px;
    }

    .baner-im img:nth-child(2) {
        width: 180px;
        height: 190px;
    }

    .baner-im img:nth-child(3) {
        width: 230px;
        height: 265px;
    }

    .home-banner {
        height: 650px;
    }

    .photo-magnet-size {
        padding: 60px 0;
    }

    .photo-magnet-card.coll-33 {
        padding-inline: 6px;
    }

    .photo-shop-img img {
        height: 330px;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .how-it-work-second-block {
        margin-top: 50px;
        flex-direction: column-reverse;
    }

    .how-it-work-second-block .coll-70 {
        width: 100%;
        flex: 0 0 100%;
    }

    .how-it-work-second-block .coll-30 {
        width: 100%;
        flex: 0 0 100%;
        text-align: end;
    }

    .how-it-work-second-block .coll-30 img {
        height: 270px;
        width: 250px;
        object-fit: contain;
        margin-top: -100px;
    }

    .faq {
        padding: 60px 0;
    }

    .footer-top .coll-75 .coll-25,
    .footer-top .coll-45 {
        padding-left: 35px;
    }

    .damani-img2 img {
        height: 510px;
    }

    .damani-img1 img {
        height: 280px;
    }

    .dmaani-img::before {
        right: -150px;
        height: 260px;
        width: 260px;
    }

    .turning-moment {
        padding-top: 50px;
    }

    .contact-information {
        padding: 60px 0;
    }
    .st-thumbnail-list li {
    max-width: clamp(80px, 10.156vw, 195px);
    width: 100% !important;
    height: clamp(100px, 13.333vw, 256px);
}
}

@media only screen and (max-width:960px) {
    .footer-top>.coll-25 {
        width: 100%;
        flex: 0 0 100%;
    }

    .footer-top .coll-75 {
        width: 100%;
        flex: 0 0 100%;
        margin-top: 20px;
    }

    .footer-middle .coll-25 {
        width: 50%;
        flex: 0 0 50%;
    }

    .fpt-link {
        width: 50%;
        gap: 20px;
    }

    .magan-damani {
        padding: 50px 0 60px;
    }
    .st-product-card-grid-block {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
        .st-product-card-img-block {
        height: 420px;
    }
}

@media only screen and (max-width:850px) {
    .home-banner {
        height: 600px;
    }

    .baner-im img:nth-child(1) {
        height: 325px;
        top: 100px;
    }

    .baner-im img:nth-child(2) {
        width: 150px;
        height: 170px;
    }

    .baner-im img:nth-child(3) {
        width: 200px;
        height: 240px;
    }

    .photo-shop-img img {
        height: 280px;
    }

    .exclusive-offer-block .coll-65 {
        padding: 50px 25px;
    }

    .exclusive-ico {
        width: 100px;
        height: 100px;
    }

    .exclusive-ico img {
        width: 56px;
    }

    .exclusive-offer-block .coll-33 {
        padding: 30px 15px;
    }

    .faq-block {
        gap: 25px;
    }

    .faq-block .coll-33 {
        padding: 15px;
    }

    .main-banner-block {
        height: 300px;
    }

    .main-banner-image2 img {
        width: 230px;
    }

    .main-banner-image1 img {
        width: 140px;
    }

    .damani-img2 img {
        height: 425px;
    }

    .damani-img1 img {
        height: 230px;
    }

    .dmaani-img::before {
        right: -85px;
        height: 200px;
        width: 200px;
    }

    .contact-information-block .coll-40 {
        padding: 20px;
    }

    .contact-info-form {
        padding: 40px 20px;
    }
    .st-quantity-block {
        flex-direction: column;
        align-items: start;
    }
}


@media only screen and (max-width:768px) {
    .home-banner {
        height: 100vh;
        padding: 50px 0;
    }

    .home-banner-block .coll-50 {
        width: 100%;
        flex: 0 0 100%;
        text-align: center;
    }

    .baner-im::before {
        display: none;
    }

    .photo-magnet-size-second-block .coll-33 {
        width: 50%;
        flex: 0 0 50%;
    }

    .photo-magnet-size-block h2 {
        width: 80%;
    }

    .photo-magnet-size-second-block {
        row-gap: 12px;
    }

    .photo-magnet-size {
        padding: 50px 0;
    }

    .card-ico {
        width: 70px;
        height: 70px;
    }

    .work-card h6 {
        margin: 30px 0 14px;
    }

    .how-it-works {
        padding: 50px 0;
    }

    .work-card p {
        margin-top: 10px;
    }

    .home-banner-block p {
        padding-bottom: 35px;
    }

    .baner-im {
        top: 20px;
    }

    .exclusive-offer-block .coll-33,
    .exclusive-offer-block .coll-65 {
        width: 100%;
        flex: 0 0 100%;
        flex-direction: column;
        align-items: center;
    }

    .exclusive-offer-block {
        flex-direction: column;
    }

    .faq-block {
        flex-direction: column-reverse;
    }

    .faq-block .coll-33 {
        padding: 50px 30px;
        width: 100%;
        flex: 0 0 100%;
    }

    .faq-block .coll-65 {
        width: 100%;
        flex: 0 0 100%;
    }

    .faq-block .coll-33 h4 {
        padding: 40px 0 20px;
    }

    .faq-block .coll-33 p {
        margin-bottom: 18px;
    }

    .footer-top .coll-75 .coll-25 {
        width: 50%;
        flex: 0 0 50%;
    }

    .footer-top .coll-75 {
        margin-top: 50px;
    }

    .footer-top .coll-75 .coll-45 {
        width: 100%;
        flex: 0 0 100%;
        margin-top: 30px;
    }

    .footer-middle .coll-40 {
        width: 50%;
        flex: 0 0 50%;
    }

    .footer-middle .coll-33 {
        width: 100%;
        flex: 0 0 100%;
        justify-content: space-around;
        margin-top: 20px;
    }

    .footer-bottom {
        justify-content: center;
    }

    .faq {
        padding: 50px 0;
    }

    .common-btn,
    .primary-btn {
        padding: 13px 34px;
    }

    .main-banner-image2 img {
        width: 165px;
        height: 200px;
    }

    .main-banner-image1 img {
        width: 110px;
        height: 120px;
    }

    .main-banner-image2 {
        top: 70px;
    }

    .main-banner-block::before {
        height: 65px;
    }

    .magan-damani-block {
        flex-direction: column;
    }

    .dmaani-img::before {
        display: none;
    }

    .coll-55.dmaani-img {
        width: 75%;
        flex: 0 0 75%;
    }

    .coll-40.daamani-text {
        width: 70%;
        flex: 0 0 70%;
        margin-top: 30px;
    }

    .turning-moment-block.flex-area {
        flex-direction: column-reverse;
    }

    .moment-text {
        padding-right: 0;
    }

    .turning-moment-block .coll-50 {
        width: 100%;
        flex: 0 0 100%;
    }

    .moment-img img {
        height: auto;
        object-fit: contain;
    }

    .contact-information {
        padding: 50px 0;
    }

    .contact-information-block {
        flex-direction: column;
    }

    .contact-information-block .coll-40 {
        width: 100%;
        flex: 0 0 100%;
    }

    .contact-information-block .coll-60 {
        width: 100%;
        flex: 0 0 100%;
    }

    .contact-information-block .coll-40 li {
        padding-top: 20px;
    }

    .contact-information-block .coll-40 ul {
        margin-bottom: 20px;
    }

    .term-condition-block {
        padding: 50px 20px;
    }

    /* .term-condition-block h2 {
        margin-bottom: 40px;
    } */

    .content-block {
        padding-bottom: 25px;
    }

    .content-block h4 {
        padding-bottom: 20px;
    }

    .privacy-policy-block {
        padding: 50px 20px 30px;
    }

    /* .privacy-policy-block h2 {
        padding-bottom: 30px;
    } */
    .home-banner-block h1 {
        padding: 10px 0;
    }
    .how-it-works-block h2 {
        padding-top: 20px;
    }
    .faq h2 {
        margin-bottom: 30px;
    }
    .input-container {
        margin-bottom: 30px;
    }
    .content-block ul:not(:empty) {
        padding: 10px 0 0;
    }
}

@media only screen and (max-width:550px) {
    .photo-magnet-size-second-block .coll-33 {
        width: 100%;
        flex: 0 0 100%;
    }

    .photo-magnet-size-second-block {
        display: none;
    }

    .photo-magnet-slider {
        display: block !important;
    }

    .photo-magnet-size-block {
        flex-direction: row;
        justify-content: center;
    }

    .photo-magnet-card.coll-33 {
        width: 100%;
        flex: 0 0 100%;
        padding-inline: 0px;
    }

    .photo-shop-img img {
        max-width: 100%;
        height: 330px;
    }

    .swiper-product-content-innerblock {
        padding: 10px 0 0;
    }

    .swiper-product-title {
        color: #656565;
        line-height: 171%;
        padding: 0 0 6px;
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        display: inline-flex;
    }

.swiper-product-price {
    color: #656565;
    line-height: 100%;
}

    .swiper.photo-magnet-slider {
        margin-top: 30px;
        padding-bottom: 40px;
    }

    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
        bottom: -5px !important;
    }

    span.swiper-pagination-bullet {
        background-color: #fff !important;
        border: 1px solid #0000000D;
        width: 14px;
        height: 14px;
        opacity: 1;
    }

    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: linear-gradient(180deg, #D93D66 0%, #E87552 100%);

    }

    .photo-magnet-size .container {
        padding: 0;
    }

    .how-it-work-second-block .coll-30 img {
        height: 190px;
        width: 170px;
        margin-top: -30px;
        padding-left: 10px;
    }

    .work-card.coll-33 {
        width: 100%;
        flex: 0 0 100%;
    }

    .how-it-work-second-block .coll-70 {
        row-gap: 50px;
        top: -150px;
    }

    .how-it-work-second-block .coll-70::before {
        content: "";
        position: absolute;
        width: 310px;
        height: 535px;
        margin: auto;
        left: 0;
        right: 0;
        background-image: url(/cdn/shop/files/curve-line2.png?v=1755616346);
        top: 45px;
    }

    .work-card p {
        margin-top: 10px;
        width: 60%;
    }

    .how-it-works-block {
        margin-bottom: -130px;
    }

    .fpt-link {
        width: 100%;
        justify-content: center;
    }

    .main-banner-image2 {
        top: 90px;
    }

    .faq-ar .main-banner-image2, 
    .faq .main-banner-image2 {
        top: 120px;
    }

    .main-banner-image2 img {
        width: 135px;
        height: 155px;
    }

    .main-banner-image1 img {
        width: 95px;
    }

    .main-banner-block::before {
        height: 50px;
    }

    .main-banner-block {
        height: 270px;
        padding-top: 60px;
    }

    .faq-ar .main-banner-block,
    .faq .main-banner-block {
        height: 300px;
        padding-top: 60px;
    }

    .coll-55.dmaani-img {
        width: 100%;
        flex: 0 0 100%;
    }

    .coll-40.daamani-text {
        width: 100%;
        flex: 0 0 100%;
    }
    .cart .st-cart-bottom .totals {
        justify-content: center !important;
    }
    .cart .st-cart-bottom .tax-note {
        text-align: center;
    }
    .st-product-card-grid-block {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .st-product-card-img-block:hover::before {
        content: none;
    }
    .quick-review {
        display: none;
    }
    .st-product-card-img-block a.st-product-card-img-mobile {
        display: block;
        height: 100%;
        width: 100%;
    }

    .st-product-card-img-block a.st-product-card-img-mobile img {
        display: block;
    }
    .st-product-card-img-desktop {
        display: none;
    }
    .privacy-policy-title-with-date {
        flex-direction: column;
        align-items: start;
        row-gap: 20px;
    }
    .photo-magnet-incard {
        padding: 10px;
    }
    .card-ico-2::before {
        content: none;
        display: none;
    }
    .exclusive-offer-block .coll-33 {
        padding: 50px 25px;
    }
    h2.subs-title {
        text-align: center;
    }
    .exclusive-offer-block .coll-65 p {
        text-align: center;
    }
    .newsletter-form input[type="email"] {
        padding: 14px 20px;
    }
    #accordion1 .active .apps_panel_content, #accordion2 .active .apps_panel_content {
        padding: 13px 0 0 48px;
    }
    #accordion1 .apps_panel, #accordion2 .apps_panel {
        padding: 12px;
    }
    .footer-links li {
        margin-top: 15px;
    }
    .footer-top .coll-75 .coll-45 h4 {
        font-size: 24px;
    }
    .email-temp input[type="email"] {
        padding: 15px 160px 15px 24px;
    }
    .email-temp button {
    right: 1px;
    top: 2px;
}
.footer-bottom p {
    order: 2;
    padding-top: 20px;
}
.fpt-link {
    order: 1;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-middle h6 {
    margin-bottom: 10px;
}

.magan-damani {
    padding: 50px 0;
}

.turning-moment-block h2 {
    margin-bottom: 20px;
}

.turning-moment-block h2::before {
    right: 35px;
}

.turning-moment-block p {
    margin-bottom: 15px;
}

.newsletter-form button.primary-btn {
    padding: 16px 40px;
}

}

@media only screen and (max-width:480px) {
    .baner-im img:nth-child(1) {
        height: 285px;
    }

    .baner-im img:nth-child(2) {
        width: 130px;
        height: 150px;
    }

    .baner-im img:nth-child(3) {
        width: 175px;
        height: 220px;
    }

    .photo-magnet-size-block h2 {
        width: 90%;
    }

    .small-text {
        font-size: 12px;
        padding: 12px 25px;
    }

    .footer-middle .coll-25 {
        width: 100%;
        flex: 0 0 100%;
    }

    .footer-middle .coll-40 {
        width: 100%;
        flex: 0 0 100%;
        margin-top: 15px;
    }

    .footer-top .coll-75 .coll-25,
    .footer-top .coll-45 {
        padding-left: 0;
    }

    .footer-top .coll-75 .coll-25::before,
    .footer-top .coll-45::before {
        display: none;
    }

    .ft-logo {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-top .coll-25>h4 {
        text-align: center;
        font-size: 24px;
    }

    .footer-top p {
        margin: 20px auto 0;
        text-align: center;
    }

    .footer-top .coll-75 .coll-25 h4 {
        text-align: left;
    }

    .footer-top .coll-75 .coll-45 h4 {
        text-align: center;
    }

    footer#footer .container {
        padding: 0 20px;
    }

    .footer-top {
        padding: 30px 0 30px;
    }

    .damani-img2 img {
        height: 345px;
    }

    .damani-img1 img {
        height: 175px;
    }

}

@media only screen and (max-width:430px) {
    .how-it-work-second-block .coll-70::before {
        width: 330px;
        height: 560px;
        top: 35px;
    }

    .how-it-work-second-block .coll-30 img {
        height: 170px;
        width: 155px;
        margin-top: -30px;
    }
    .turning-moment-block h2::before {
        right: -12px;
    }
}