<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&amp;family=Nunito:ital,wght@0,200..1000;1,200..1000&amp;display=swap');

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   border: 0px solid red;
}
p, a, h1, h2, h3, h4, h5, h6{
   padding: 0;
   margin: 0;
}
*::before,
*::after {
   box-sizing: border-box;
}

:root {
   --font-main: "Crimson Text", serif;
   --font-sec: "Nunito", sans-serif;
   --black: #333;
   --black-2: #313131;
   --grey-white: #cbc8c8;
   --grey: #6f6666;
   --grey2: rgb(249, 249, 249);
   --gold: #ad7936;
   --dark-gold: #7a6447;
   --light-pink: #f0e5d4;
   --white: #fff;
}

a {
   display: inline-block;
   text-decoration: none;
}
.main-btn{
   margin-top: 10px;
   text-align: center;
   padding: 8px;
   background-color: #000;
   margin-bottom: 5px;
   color: #fff;
}
.main-btn:hover {
   background-color: rgb(0, 0, 0, 0.7);
}

.top-line a {
   text-align: center;
   color: var(--grey-white);
   font-family: var(--font-sec);
   font-size: 12px;
}
.top-line {
   overflow: hidden;
   position: relative;  
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: var(--black);
   padding: 5px 0 !important;
   height: 30px;
}

.top-line-message {
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.top-line-message.active {
  opacity: 1;
}
/* header nav bar */
/* header nav bar */
.desktop {
   padding: 7px 35px;
   position: absolute;
   top: 23px;
   left: 0;
   right: 0;
   z-index: 10;
}

/* Hidden by default, slides in on scroll up */
.sticky-desktop {
    width: 100% !important;
    padding: 8px 35px;
    position: fixed;
    top: -200px; /* Initially hidden */
    left: 0;
    right: 0;
    z-index: 20000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.8s ease-in;
}

/* When user scrolls up, this class makes it visible */
.header-visible {
   top: 0 !important;
}


/* for other pages */
.gap {
   width: 100%;
   height: 135px !important;
}

.desktop h1 a {
   padding: 10px 0;
}

/* scroll event */
.scroll-h1-a {
   color: #fff;
   padding: 15px 0;
}

.logo-links {
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-bottom: 1px solid var(--grey-white);
}
.links{
   width: 20%;
}
.links:last-child{
   text-align: right;
}
.links a {
   padding: 0 8px;
   font-weight: 300;
}

nav {
   padding: 7px 8px;
}

.nav-container {
   display: flex;
   justify-content: center;
   align-items: center;
}

.nav-item {
   position: relative;
   padding-bottom: 10px;
}

.nav-item a {
   padding: 5px 18px;
   font-family: var(--font-sec);
   font-size: 13px;
   white-space: nowrap;
}

.clr-fff a {
   color: white;
}
.scroll-nav-clr a {
   color: var(--black);
}
.sticky-desktop .dropdown {
    top: 50px !important;
}
.sticky-desktop .logo-links {
   border-bottom: none !important;
}
.dropdown {
   display: none;
   position: absolute;
   top: 30px;
   left: 50%; 
   transform: translateX(-50%); 
   background-color: #fff;
   transition: all 0.9s;
   box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
   overflow: hidden;
   max-width: auto;
}


.dropdown-left {
    display: flex;
    padding: 10px 50px 10px 10px;
}

.sub-column {
    display: flex;
    flex-direction: column;
    padding: 10px 50px 10px 10px;
}
.dropdown-left a {
   color: var(--black);
   text-decoration: none;
   display: block;
   padding: 5px 10px;
   transition: all 0.5s;
   border-left: 1px solid #fff;
}

.dropdown-left .link-head {
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
}

.dropdown-left .drop-links:hover {
   color: var(--grey-white);
   border-left: 1px solid var(--grey-white);
}

/* .dropdown-left a:last-child {
   color: var(--gold);
   font-size: 11px;
   font-weight: 600;
} */

.dropdown-right {
   padding: 10px;
   display: flex;
}

.card {
   margin: 5px;
   text-align: center;
   position: relative;
   height: 250px;
}

.card a {
   color: white;
   padding: 0;
   width: 160px;
   height: 100%;
   overflow: hidden;
}

.card a img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.9s ease;
}

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

.card .center-links {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 10;
}

.card .center-links .first-link {
   font-size: 18px;
   font-weight: 500;
}

.card .layer {
   position: absolute;
   z-index: 1;
   top: 0;
   width: 100%;
   height: 100%;
   background-color: rgb(0, 0, 0, 0.2);
}















/* =======mobile menu======= */
/* =======mobile menu======= */
/* =======mobile menu======= */



.mobile {
   position: absolute;
   top: 23px;
   left: 0;
   right: 0;
   padding: 15px 35px;
   z-index: 10000;
}

.mr {
   border-bottom: 1px solid var(--grey-white);
}

.mrHeader {
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.mrHeaderRight i {
   color: var(--gold);
   font-size: 20px;
   cursor: pointer;
}

.mrHeaderRight i:hover {
   color: var(--gold);
}

.mrHeader&gt;a {
   color: #fff;
   font-size: 26px;
}

/* Side Menu */
.side-menu {
   width: 45vw;
   height: 100vh;
   position: fixed;
   top: 0;
   left: -100%;
   background: #fff;
   transition: 0.3s;
   z-index: 100000;
   overflow-y: scroll;
   /* Allows scrolling */
   -webkit-overflow-scrolling: touch;
   /* Smooth scroll on iOS */
}

.mroverlay {
   display: none;
   position: fixed;
   top: 0;
   right: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   z-index: 100;
}

body.menu-open {
   overflow: hidden;
   position: relative;
   height: 100vh;
}

.menu-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px;
   border-bottom: 1px solid #eee;
}

.close-btn {
    margin: 0;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    overflow: hidden;
   cursor: pointer;
   transition: transform 0.3s ease;
}
.close-btn i{
    margin: 0;
    padding: 0;
    padding-top: 1px;
}
.close-btn:hover {
   transform: rotate(180deg);
}

.submenu-search {
   display: block;
   padding: 18px 7px 18px 30px;
   color: var(--black);
   transition: 0.2s;
   font-family: var(--font-sec);
   font-size: 22px;
}

.submenu-search:hover {
   background-color: var(--grey-white);
}

.submenu-search i {
   color: var(--black);
   padding-right: 12px;
}

/* Accordion Styles */
.accordion-container {
   padding: 0;
   margin: 0;
}

.accordion-item {
   border-bottom: 1px solid #eee;
}

.accordion-header {
   background-position: center center;
   background-size: cover;
   background-repeat: no-repeat;
   display: flex;
   align-items: center;
   padding: 30px 20px 30px 30px;
   cursor: pointer;
}



.accordion-title {
   flex-grow: 1;
}

.accordion-title a {
   font-family: var(--font-sec);
   font-size: 22px;
   color: #fff;
}

.accordion-btn {
   font-size: 28px;
   font-weight: 600;
   color: #fff;
}

.submenu {
   display: none;
}

.submenu-item {
   display: block;
   color: var(--black);
   font-size: 16px;
   font-family: var(--font-sec);
   padding: 20px 0 20px 35px;
   border-bottom: 1px solid var(--grey);
   transition: all 0.3s ease-out;
}



.submenu-item:hover {
   background-color: var(--light-pink);
}























/* ----main---- */
/* ----main---- */
/* ----main---- */

/* ----------section-1---------- */
/* ----------section-1---------- */
/* ----------section-1---------- */

.section-1 {
   position: relative;
}

/* jssor slider loading skin spin css */
.jssorl-009-spin img {
   animation-name: jssorl-009-spin;
   animation-duration: 1.6s;
   animation-iteration-count: infinite;
   animation-timing-function: linear;
}

@keyframes jssorl-009-spin {
   from {
      transform: rotate(0deg);
   }

   to {
      transform: rotate(360deg);
   }
}

.jssorb064 {
   position: absolute;
}

.jssorb064 .i {
   position: absolute;
   cursor: pointer;
}

.jssorb064 .i .b {
   fill: #000;
   fill-opacity: .5;
   stroke: #fff;
   stroke-width: 1500;
   stroke-miterlimit: 10;
   stroke-opacity: 0.5;
}

.jssorb064 .i:hover .b {
   fill-opacity: .8;
}

.jssorb064 .iav .b {
   fill: #a1a09a;
   fill-opacity: 1;
   stroke: #dfdad0;
   stroke-opacity: .7;
   stroke-width: 4000;
}

.jssorb064 .iav:hover .b {
   fill-opacity: .6;
}

.jssorb064 .i.idn {
   opacity: .3;
}























/* ----------section-2---------- */
/* ----------section-2---------- */
/* ----------section-2---------- */

/* carousl slider */

.section-2 {
   margin: 20px 0;
}

.wrapper {
   padding: 20px 30px;
   overflow: hidden;
   position: relative;

}

.heading {
   text-align: center;
   font-family: var(--font-main);
   font-size: 24px;
   font-weight: 100;
}

/* carousel slider */
/* Style for the carousel container */
.owl-carousel {
   position: relative;
}

/* Style for the navigation buttons (left and right arrows) */
.owl-nav {
   position: absolute;
   top: 40%;
   width: 100%;
   display: flex;
   justify-content: space-between;
   transform: translateY(-40%);
}

/* arrows */
.owl-prev,
.owl-next {
   background-color: rgba(0, 0, 0, 0.5);
   color: white;
   font-size: 34px !important;
   padding: 10px;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   transition: all 0.3s ease;
   border: 1px solid red;
}

/* Hover effect on the arrows */
.owl-prev:hover,
.owl-next:hover {
   background-color: rgba(0, 0, 0, 0.7);
   /* Darker background on hover */
}

/* Optional: Add arrow icons to the navigation buttons */
.owl-prev:before,
.owl-next:before {
   content: '';
   display: inline-block;
   width: 16px !important;
   height: 16px !important;
   border: solid transparent;
   border-width: 2px 2px 0 0;
   transform: rotate(45deg);
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.owl-prev:before {
   border-left-color: white;
   display: none;
}

.owl-next:before {
   border-right-color: white;
   transform: rotate(-135deg);
   display: none;
}

.slider-card {
   display: block;
   position: relative;
   overflow: hidden;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
   overflow: hidden;
   width: 100%;
   height: 450px !important;
}

.image-container {
   position: relative;
   overflow: hidden;
   width: 100%;
   height: 100% !important;
}

.slider-img {
   object-fit: cover !important;
   transition: all 0.9s ease;
   height: 100%;
   width: 100%;
}

.hover-image {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0;
   transform: scale(1);
   object-fit: cover !important;
   transition: all 0.9s ease;
}

.slider-card:hover .slider-img {
   transform: scale(1.1);
   width: 100%;
   height: 100%;
}

.slider-card:hover .hover-image {
   opacity: 1;
   transform: scale(1.1);
}

.slider-card-detail {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.slider-card-detail .dtl-left {
   display: flex;
   flex-direction: column;
   padding: 8px 0;
}

.slider-card-detail .dtl-left a {
   font-family: var(--font-sec);
   font-size: 14px;
   font-weight: 600;
   color: var(--grey);
   transition: all 0.3s;
   padding: 2px 0;
}

.slider-card-detail .dtl-left a:hover {
   color: var(--black);
}

.slider-card-detail .dtl-left span:nth-child(2) {
   font-family: var(--font-sec);
   font-size: 12px;
   font-weight: 300;
   text-transform: uppercase;
   padding-top: 2px;
}

.slider-card-detail .dtl-left span:nth-child(3) {
   font-family: var(--font-sec);
   font-size: 13px;
   font-weight: 600;
   color: var(--gold);
   padding: 2px 0;
}

.slider-card-detail .dtl-right a {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   transition: all 0.3s;
   color: #000;
   font-weight: 300;
}

.slider-card-detail .dtl-right a:hover {
   background-color: var(--black);
   color: white;
}

.slides-container.grabbing {
   cursor: grabbing;
}
.stock-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color:#7a6447; /* red */
        color: #fff;
        padding: 5px 10px;
        font-size: 12px;
        font-weight: bold;
        border-radius: 4px;
        z-index: 2;
        text-transform: uppercase;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

.bg-dull{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

























/* ----------section-3---------- */
/* ----------section-3---------- */
/* ----------section-3---------- */

/* season top pick cards */

.top-pick-cards {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 10px;
}

.top-cards-wrap {
   position: relative;
   width: calc(100%/3);
   height: 420px !important;
}

.top-cards-wrap .pick-card {
   display: block;
   height: 100%;
}

.top-pick-cards .pick-card {
   overflow: hidden;
   height: 100%;
}

.top-pick-cards .pick-card img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.9s ease;
}

.top-pick-cards .pick-card:hover img {
   transform: scale(1.08);
}

.top-pick-cards-link {
   position: absolute;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 20px;
   bottom: 50px;
   z-index: 20;
   left: 50%;
   transform: translateX(-50%);
}

.top-pick-cards-link a {
   text-align: center;
}

.top-pick-cards-link a:nth-child(1) {
   font-size: 50px;
   font-family: var(--font-main);
   color: #fff;
   white-space: nowrap;
   transition: all 0.3s;
   margin: 10px 0;
}

.top-pick-cards-link a:nth-child(1):hover {
   text-shadow: -3px -3px 5px rgba(0, 0, 0, 0.7);
}

.top-pick-cards-link a:nth-child(2) {
   font-size: 14px;
   font-family: var(--font-sec);
   font-weight: 600;
   width: fit-content;
   color: #fff;
   padding: 10px 22px;
   border-radius: 3px;
   border: 1px solid #fff;
}

/*season top pick cards ends  */
























/* ----------section-4---------- */
/* ----------section-4---------- */
/* ----------section-4---------- */

/* FORMALS AND BRIDAL BOXES */
.section-4 {
   padding: 20px 0;
}

.formal-box {
   display: flex;
}

.formal-left {
   width: 50%;
   height: 650px;
   overflow: hidden;
}
.formal-left img{
   height: 100%;
   object-fit: cover;
}
.formal-left a {
   display: block;
   width: 100%;
   height: 100%;
}

.formal-right {
   width: 50%;
   height: 650px;
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: var(--light-pink);
}

.formal-right-wrap&gt;a {
   display: block;
   font-size: 50px;
   letter-spacing: 8px;
   font-family: var(--font-main);
   color: rgb(185, 139, 107);
   text-align: center;
   padding: 20px 0;
}

.formal-right-wrap p {
   font-family: var(--font-sec);
   font-size: 14px;
   color: var(--gold);
   padding-bottom: 30px;
   text-align: center;
}

.formal-card-links {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 8px;
}

.section-4 .formal-box .formal-right .formal-card-link-1 a:nth-child(1) {
   display: block;
   width: 180px;
   height: 150px;
   overflow: hidden;
}

.formal-card-links img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: contain;
   transition: transform 0.8s ease;
}

.section-4 .formal-box .formal-right .formal-card-link-1:hover img {
   transform: scale(1.08);
}

.formal-card-link-1 a:nth-child(2) {
   display: block;
   text-align: center;
   background-color: var(--dark-gold);
   color: #fff;
   font-family: var(--font-sec);
   padding: 7px 0;
   font-size: 10px;
   font-weight: 500;
   transition: all 0.3s;
}

.formal-card-link-1 a:nth-child(2):hover {
   background-color: var(--black);
}

/* section-4 FORMALS AND BRIDAL BOXES ends */





























/* ----------section-5---------- */
/* ----------section-5---------- */
/* ----------section-5---------- */

/* cover image */

.section-5 {
   width: 100%;
   height: 100%;
   padding: 20px 0;
   position: relative;
   overflow: hidden;
}

.section-5 .bg {
   width: 100%;
   height: 100%;
}

.section-5 .bg a {
   display: block;
   width: 100%;
   height: 100%;
}

.fullWidth {
   display: block;
   width: 100%;
   object-fit: cover;
}

.section-5 .btn {
   position: absolute;
   bottom: 15vh;
   left: 25vw;
   padding: 7px 18px;
   color: var(--grey-white);
   border: 1px solid var(--grey-white);
   transition: all 0.3s;
   font-family: var(--font-sec);
}

.section-5 .btn:hover {
   border: 1px solid rgb(0, 0, 0, 0.01);
}

/* cover image ends */






























/* SECTION-6 cover image */
/* SECTION-6 cover image */
/* SECTION-6 cover image */

.section-6 {
   padding: 30px 0 10px 0;
}

.section-6 .wrapper-2 {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 20px;
}

.section-6 .link-cover {
   width: 42%;
}

.section-6 .link-cover a {
   width: 100%;
   height: 100%;
}

.section-6 .link-cover-box {
   width: 42%;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 20px;
}

.cover-box-heading {
   font-size: 39px;
   font-family: var(--font-main);
   letter-spacing: 2px;
   color: var(--black);
   padding: 5px 0;
}

.section-6 .link-cover-box p {
   text-align: center;
   font-family: var(--font-sec);
   font-size: 14px;
   color: var(--black);
}

.section-6 .cover-box-btn {
   padding: 7px 15px;
   font-family: var(--font-sec);
   font-size: 13px;
   font-weight: 300;
   color: var(--gold);
   border: 2px solid var(--black);
   transition: all 0.2s;
}

.section-6 .cover-box-btn:hover {
   background-color: var(--black);
   color: #fff;
}

/* SECTION-6 cover image ends */
































/* SECTION-8 flex cards links */
/* SECTION-8 flex cards links */
/* SECTION-8 flex cards links */

.flex-cards-logo {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 20px 0 10px 0;
}

.flex-cards-logo&gt;a {
   width: 120px;
}

.flex-cards-logo&gt;a img {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.section-8 .flex-cards-logo&gt;p {
   font-family: var(--font-sec);
   font-size: 14px;
}

.section-8 .card-1 {
   position: relative;
   overflow: hidden;
}

.section-8 .mg-bm {
   margin-bottom: 4px;
}

.section-8 .card-1 a {
   overflow: hidden;
}

.section-8 .card-1 a img {
   display: block;
}
.section-8 .top-cards-wrap {
   position: relative;
   width: calc(100%/3);
   height: 620px !important;
}
.section-8 .top-cards-wrap .pick-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;   
    object-position: top;  
    display: block;
}
/* SECTION-8 flex cards links ends*/



































/* SECTION-9 FEATURED COLLECTIONS */
/* SECTION-9 FEATURED COLLECTIONS */
/* SECTION-9 FEATURED COLLECTIONS */
.section-9 {
   padding: 20px 0;
   margin-top: 20px;
   background-color: var(--light-pink);
}
.section-9 .top-cards-wrap {
   position: relative;
   width: 100%;
   height: 620px;
}
.section-9 .top-cards-wrap .pick-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;  
    object-position: top;  
    display: block;
}

/* SECTION-9 FEATURED COLLECTIONS ENDS*/




































/* SECTION-10 CLIENT DIARIES */
/* SECTION-10 CLIENT DIARIES */
/* SECTION-10 CLIENT DIARIES */
.section-10 {
   padding: 30px 0;
}

.diaries-flex {
   display: flex;
   gap: 30px;
}

.diaries-box {
   width: 40%;
   padding: 0 50px;
   display: flex;
   justify-content: center;
   align-items: center;
}

.section-10 .txt-align {
   display: block;
   text-align: center;
}

.diaries-box p {
   text-align: center;
   font-family: var(--font-sec);
   font-size: 13px;
   margin-top: 20;
   line-height: 24px;
}

.diaries-slider {
   width: 60%;
   height: 500px;
   /* Set fixed height */
   position: relative;
}

.swiper-slide {
   height: 100%;
   overflow: hidden;
   border-radius: 8px;
   /* Optional */
}

.swiper-slide a {
   display: block;
   width: 100%;
   height: 100%;
}

.swiper-slide img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
}

/* Custom arrow styling */
.swiper-button-next,
.swiper-button-prev {
   color: white;
   background: rgba(0, 0, 0, 0.5);
   padding: 20px;
   border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
   font-size: 24px;
}

/* SECTION-10 CLIENT DIARIES ends*/








/* Section-12 Images Grid */

.section-12{
   margin: 50px 0;
}
.grid-images{
   position: relative;
   border: 1px solid rgb(255, 255, 255);
}
.main-image{
   position: relative;
   margin-top: 50px;
   margin-bottom: 50px;
   z-index: 10;
}
.main-image img{
   height: 450px;
   width: 320px;
   object-fit: cover; 
   object-position: top;   
}

@keyframes slideLeft-1 {
  0% {
    transform: translateX(100px) translateY(100px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

.side-img-1 {
  position: absolute;
  top: 0;
  left: 100px;
}
.side-img-1 img{
   height: 270px
}
.side-img-1.animate {
  animation: slideLeft-1 3s forwards;
}

@keyframes slideLeft-2 {
  0% {
    transform: translateX(100px) translateY(-100px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
.side-img-2{
   position: absolute;
   bottom: 0px;
   left: 130px;
}
.side-img-2 img{
   height: 250px;
}
.side-img-2.animate {
  animation: slideLeft-2 3s forwards;
}

@keyframes slideLeft-3 {
  0% {
    transform: translateX(-100px) translateY(100px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
.side-img-3{
   position: absolute;
   top: 40px;
   right: 120px;
}
.side-img-3 img{
   height: 220px;
}
.side-img-3.animate {
  animation: slideLeft-3 3s forwards;
}

@keyframes slideLeft-4 {
  0% {
    transform: translateX(-100px) translateY(-100px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
.side-img-4{
   position: absolute;
   bottom: 20px;
   right: 100px;
}
.side-img-4 img{
   height: 200px;
}
.side-img-4.animate {
  animation: slideLeft-4 3s forwards;
}


.section-12 .content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.section-12 .content p {
   width: 90%;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: justify;
}

.section-12 .buttons {
  display: flex;
  gap: 15px;
}

.section-12 .btn {
  background: #000;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s;
}

.section-12 .btn:hover {
  background: #000;
  color:#fff;
}


















/* ---footer----- */
/* ---footer----- */
/* ---footer----- */
footer {
   background-color: var(--black-2);
   padding: 0 80px;
   color: #fff;
}

.ftr-wrapper {
   display: flex;
   justify-content: space-between;
   padding: 20px 0;
}

.ftr-cols {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: 10px;
}

.ftr-cols h3 {
   font-family: var(--font-sec);
   font-size: 16px;
   font-weight: 500;
   padding: 10px 0;
   color: #fff;
}

.ftr-cols a {
   width: fit-content;
   color: var(--grey-white);
   font-size: 14px;
   font-family: var(--font-sec);
   padding: 4px 0;
}

.ftr-cols .social-links {
   display: flex;
   justify-content: space-around;
   align-items: center;
   gap: 9px;
   color: #fff;
}

.ftr-cols .social-links&gt;a {
   display: block;
   font-size: 25px;
   text-align: center;
}

.ftr-cols .social-links&gt;a i {
   display: block;
   width: 100%;
   height: 100%;
   text-align: center;
}

.ftr-cols p {
   font-family: var(--font-sec);
   color: var(--grey-white);
   font-size: 14px;
}

.ftr-cols .subs-box {
   margin-top: 20px;
   position: relative;
}

.ftr-cols .subs-box input {
   width: 100%;
   background: none;
   font-family: var(--font-sec);
   color: var(--grey-white);
   padding: 9px 4px;
   outline: none;
   border: none;
   border-bottom: 1px solid var(--grey-white);
}

.ftr-cols .subs-box i {
   position: absolute;
   top: 10px;
   right: 5px;
   color: var(--grey-white);
   cursor: pointer;
}

footer&gt;p {
   font-family: var(--font-sec);
   color: var(--grey-white);
   font-size: 16px;
   padding: 14px 0;
}

.cta {
   display: flex;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   position: fixed;
   right: 1.3%;
   bottom: 8%;
   z-index: 50;
   transition: all 0.6s;
   background-color: rgb(0, 128, 83);
   color: #fff;
   font-size: 30px;
   animation: waveAnimation 1.2s infinite linear;
}


.cta i {
   display: block;
}

@keyframes waveAnimation {
   0% {
      transform: scale(1);
      /* Initial state */
      box-shadow: 0 0 0 0 rgba(103, 196, 103, 0.5);
      /* No wave yet */
   }

   50% {
      transform: scale(1);
      /* Keep the button normal size */
      box-shadow: 0 0 0 7px rgba(59, 182, 131, 0.5);
      /* Maximum wave */
   }

   100% {
      transform: scale(1);
      /* Keep the button normal size */
      box-shadow: 0 0 0 13px rgba(158, 193, 158, 0.2);
      /* Fade wave out but keep a slight effect */
   }
}

/* for scroll event */
/* .btm-gap {
   background-color: #fff;
   width: 100%;
   height: 70px;
   display: none;
} */
.bottom-menu {
   display: none;
   padding: 10px 35px;
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   z-index: 100;
   background-color: #fff;
}

.wrap-btm-menu {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.bottom-menu a {
   text-align: center;
   width: 25%;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 5px;
   padding: 0px 10px;
   color: var(--black);
   font-family: var(--font-sec);
}


.bottom-menu a i {
   font-size: 22px;
}

.bottom-menu a span:nth-child(2) {
   font-size: 12px;
}

.wish-list {
   position: relative;
}

#wish-list-count {
   position: absolute;
   background-color: #000;
   color: #fff;
   right: -9px;
   top: -3px;
   width: 15px;
   height: 15px;
   border-radius: 50%;
   font-size: 8px;
   display: flex;
   justify-content: center;
   align-items: center;
}


/* search menu */
.right-side-menu {
   width: 30%;
   height: 100vh;
   position: fixed;
   top: 0;
   right: -100%;
   background-color: #fff;
   z-index: 10000000;
   overflow-y: scroll;
   /* Allows scrolling */
   -webkit-overflow-scrolling: touch;
   /* Smooth scroll on iOS */
   transition: all 0.3s;
}

.right-side-menu .menu-header h2 {
   font-family: var(--font-sec);
   font-size: 16px;
   font-weight: 500;
}

.right-side-menu h3 {
   margin-top: 20px;
   padding: 10px 20px;
   font-family: var(--font-sec);
   font-size: 14px;
   font-weight: 800;
   text-align: start;
   box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.1),
      /* Top shadow */
      0px 4px 8px rgba(0, 0, 0, 0.1);
   /* Bottom shadow */
}

.search-container {
   position: relative;
   padding: 20px;
}

.search-bar {
   width: 100%;
   padding: 10px 20px;
   font-size: 16px;
   border: 1px solid #ccc;
   padding-right: 40px;
   /* Space for the icon */
   outline: none;
}

.search-button {
   position: absolute;
   right: 30px;
   top: 50%;
   transform: translateY(-50%);
   background: transparent;
   border: none;
   cursor: pointer;
}

.search-button i {
   font-size: 18px;
   color: #777;
   /* Color for the search icon */
}


.warp-side-cards {
   display: flex;
   padding: 10px 15px;
}

.warp-side-cards&gt;a {
   height: 100px;
}

.warp-side-cards&gt;a img {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.right-side-card-detail {
   display: flex;
   flex-direction: column;
   gap: 5px;
   margin-left: 7px;
}

.right-side-card-detail a:nth-child(1) {
   font-family: var(--font-sec);
   font-weight: 600;
   font-size: 14px;
   color: var(--black);
}

.right-side-card-detail span:nth-child(2) {
   font-family: var(--font-sec);
   color: var(--gold);
   font-size: 16px;
}

.right-side-card-detail a:nth-child(3) {
   font-family: var(--font-sec);
   font-size: 12px;
   font-weight: 300;
   color: var(--grey);
   text-decoration: underline;
}

/* laod screen */
.on-load-screen {
   display: none;
   position: absolute;
   top: 60%;
   left: 50%;
   transform: translate(-50%, -60%);
   z-index: 1000000;
}

.load-img-container {
   height: 240px;
}

.load-img-container img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.load-wrapper h3 {
   color: #fff;
   font-family: var(--font-main);
   font-size: 22px;
   font-weight: 500;
   margin-bottom: 7px;
}

.load-wrapper {
   padding: 25px 15px 20px;
   background-color: var(--black);
   color: #fff;
   display: flex;
   align-items: center;
   flex-direction: column;
}

.load-wrapper&gt;p {
   text-align: center;
   font-family: var(--font-sec);
   font-size: 14px;
   padding: 5px;
   width: 70%;
   line-height: 24px;
}

.on-load-screen .subscribe {
   position: relative;
   padding: 7px 10px;
   width: 100%;
}

.on-load-screen .subscribe input {
   width: 100%;
   padding: 10px 20px;
   font-size: 16px;
   border: 1px solid #ccc;
   padding-right: 40px;
   /* Space for the icon */
   outline: none;
   background: none;
   color: #fff;
}

.on-load-screen .subscribe button {
   position: absolute;
   top: 50%;
   right: 0px;
   transform: translateY(-50%);
   font-family: var(--font-sec);
   font-weight: 600;
   background: none;
   font-size: 16px;
   padding: 10px 20px;
   color: #fff;
   cursor: pointer;
   transition: all 0.3s;
   border: none;
}

.on-load-screen .subscribe button:hover {
   background-color: var(--gold);
}

.close-loading-btn {
   position: absolute;
   top: 0px;
   right: 0px;
   font-size: 26px;
   color: white;
   cursor: pointer;
   padding: 8px 16px;
   text-align: center;
   transition: all 0.3s;
}

.close-loading-btn:hover {
   background-color: rgba(0, 0, 0, 0.4);
}










/* Blog Page */


.blog-post {
   position: relative;
   overflow: hidden;
}

.blog-image-wrapper {
   position: relative;
   height: 220px;
   overflow: hidden
}

.blog-date {
   position: absolute;
   top: 10px;
   left: 10px;
   background: var(--light-pink);
   color: var(--black-2);
   padding: 5px 10px;
   z-index: 1;
   text-align: center;
   font-size: 18px;
   text-transform: uppercase;
   font-weight: 600;
}

.blog-date span {
   display: block;
}

.blog-image {
   width: 100%;
   height: 260px;
   object-fit: cover;
   transition: transform 0.3s ease, opacity 0.3s ease;
   overflow: hidden;
}

.blog-dots {
   display: none;
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   color: rgba(255, 255, 255, 0.8);
   font-size: 30px;
   z-index: 1;
   transition: all 3s ease-in-out;
}

.blog-content {
   padding: 15px 0;
   text-align: center;
}

.share-icon {
   position: relative;
   cursor: pointer;
   color: var(--grey);
}

.share-icon .blog-post-icons {
   display: none;
   position: absolute;
   left: 50%;
   bottom: 20%;
   transform: translate(-50%, -50%);
   background: var(--black);
   padding: 5px;
}

.share-icon:hover .blog-post-icons {
   display: flex;
}

.blog-post-icons a {
   color: var(--white);
   padding-inline: 5px;
}

.blog-title {
   text-transform: uppercase;
   color: var(--black-2);
   font-size: 22px;
   line-height: 1.4;
   margin-bottom: 10px;
   font-family: "Montserrat", sans-serif;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* Show max 2 lines */
   -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
   max-height: calc(1.4em * 2); /* Optional: precise height control */
}

.blog-description {
   -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
   height: 90px;
   color: var(--tblack-2);
   font-size: 14px;
}

.blog-detail-link {
   display: inline-block;
   letter-spacing: .3px;
   font-weight: 800;
   font-size: 13px;
   color: var(--black);
}

.blog-post:hover .blog-dots {
   display: block;
}

.blog-post:hover .blog-image {
   transform: scale(1.1);
   opacity: 0.4;
   overflow: hidden;
}
.blog-section {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
   width: 100%;
   margin: 0 auto;
}

.blog-section .blog-post {
   width: calc(32% - 10px);
}

@media screen and (max-width: 786px) {
   .blog-section .blog-post {
       width: calc(50% - 10px);
       margin: 0;
   }
}

@media screen and (max-width: 480px) {
   .blog-section .blog-post {
       width: calc(100% - 10px);
   }
}

.blog-section .blog-post img {
   overflow: scroll;
}

.blog-tag {
   position: absolute;
   bottom: 0;
   left: 50%;
   z-index: 1;
   transform: translate(-50%);
   background-color: var(--white);
   font-size: 12px;
   padding: 8px;
}


.blog-info {
   display: flex;
   gap: 20px;
   justify-content: center;
   align-items: center;
}

.blog-info&gt;a {
   color: var(--black-2);
   font-size: 14px;
}

.blog-meta {
   text-align: center;
   width: 100%;
}
/* Blog Detail */
.blog-meta a {
   padding: 5px 10px;
   color: var(--white);
   background-color: var(--grey);
   width: fit-content;
   font-size: 14px;
}

.blog-meta h1 {
   font-weight: 600;
   font-size: 24px;
   color: var(--black);
   line-height: 1.4;
}

.blog-meta p {
   font-size: 16px;
   color: var(--black-2);
   margin: 10px 0;
}

.event-detail .blog-image {
   position: relative;
   height: 100% !important;
}

.event-detail .blog-image img {
   width: 100%;
   height: 100% !important;
}

.blog--detailed-content {
   text-align: left;
}

.blog-detailed-content h2 {
   margin-top: 20px;
   color: var(--black);
   line-height: 1.4;
   font-size: 20px;
   font-weight: 600;
}

.blog-detailed-content p {
   line-height: 1.6;
   font-size: 16px;
   color: var(--black-2);
}

hr {
   margin: 20px 0;
}

.social-media-icons {
   text-align: center;
   margin: 20px auto;
}

.navigation-links {
   margin: 20px 0;

}

.navigation-links .prev-blog a,
.navigation-links .next-blog a,
.navigation-links .blog-page a {
   color: var(--black);
}

.navigation-links .prev-blog i,
.navigation-links .next-blog i {
   background-color: var(--white);
   color: var(--black);
   border-radius: 50%;
   border: 1px solid var(--black);
   text-align: center;
   padding-block: 7px;
   width: 30px;
   height: 30px;
}

.comment-section h3 {
   text-transform: uppercase;
   font-weight: 600;
   font-size: 22px;
   color: var(--black);
   font-family: "Montserrat", Arial, Helvetica, sans-serif;
   margin-bottom: 20px;
   line-height: 1.4;
}

.comment-section {
   margin: 20px 0;
}

.comment-section label {
   font-size: 14px;
   font-weight: 600;
   display: inline;
}

.red {
   color: red;
}

.comment-section input,
.comment-section textarea {
   font-family: "Lato", sans-serif;
   padding: 7px;
   width: 100%;
   border: none;
   border-radius: 0;
   outline: none;
   font-size: 14px;
   border-bottom: 2px solid rgba(129, 129, 129, .2);
}

#notify {
   width: fit-content;
}

.comment-btn {
   padding: 7px 14px;
   font-size: 14px;
   text-transform: uppercase;
   font-family: "Lato", sans-serif;
   color: var(--white);
   background-color: var(--grey);
   border: none;
}

.blog-categories h3 {
   text-transform: uppercase;
   font-weight: 600;
   font-size: 16px;
   color: var(--black);
   font-family: "Montserrat", Arial, Helvetica, sans-serif;
   margin-bottom: 20px;
   line-height: 1.4;
}

.blog-category-item {
   border-bottom: 2px solid rgba(129, 129, 129, .2);
   width: 100%;
   text-align: left;
   padding-bottom: 20px;
}

.blog-category-item a {
   font-size: 14px;
   font-family: "Lato", sans-serif;
   color: var(--grey);
}

.recent-blogs h3 {
   text-transform: uppercase;
   font-weight: 600;
   font-size: 16px;
   color: var(--black);
   font-family: "Montserrat", Arial, Helvetica, sans-serif;
   margin-bottom: 20px;
   line-height: 1.4;
}

.recent-blog-item {
   border-bottom: 2px solid rgba(129, 129, 129, .2);
   padding-bottom: 15px;
   display: flex;
   gap: 10px;

}

.recent-blog-item img {
   width: 100px;
   height: 70px;
   object-fit: cover;
   object-position: center center;
}

.recent-blog-item p {
   text-transform: uppercase;
   font-size: 16px;
   color: var(--black-2);
   font-family: "Montserrat", Arial, Helvetica, sans-serif;
   margin-bottom: 5px;
   line-height: 1.4;
}

.recent-blog-item span {
   font-size: 12px;
   color: var(--black);
}

.instagram-posts .row {
   display: flex;
   justify-content: space-between;
   margin: 10px 0;
}

.instagram-posts .row img {
   width: 100%;
}

#sidebar {
   position: relative;
}

#sidebar-toggle {
   display: none;
   position: fixed;
   top: 30%;
   left: -10px;
   border: none;
   border-radius: 50%;
   color: var(--heading-color);
   width: 50px;
   height: 50px;
   background-color: rgba(255, 255, 255, .9);
   box-shadow: 0 0 5px rgba(0, 0, 0, .17);
   text-align: center;
   border-top-right-radius: 35px;
   border-bottom-right-radius: 35px;
}

@media (max-width: 1024px) {
   .left-part {
       width: 100%;
   }

   .navigation-links span {
       display: none;
   }

   .right-part {
       display: none;
   }

   #sidebar-toggle {
       display: block !important;
   }

   #sidebar {
       position: absolute;
       top: 0;
       right: 0;
       z-index: 355;
       width: 270px;
       background-color: var(--white);
       height: 100vh;
       overflow-y: scroll;
       padding-top: 20px;
   }

}





















/* =======================about us page======================= */
/* =======================about us page======================= */
/* =======================about us page======================= */


/* =======================about us page======================= */
/* =======================about us page======================= */
/* =======================about us page======================= */

/* background-image */


.about-us-bg {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: 100vh;
   background-image: url('../images/about.jpg');
   background-position: center center;
   background-size: cover;
   background-repeat: no-repeat;
}

.about-h {
   width: 65%;
}

.about-us-bg h1 {
   text-align: right;
   font-family: var(--font-main);
   color: #fff;
   font-size: 68px;
   padding: 15px 0;
}

.about-us-bg p {
   text-align: right;
   font-family: var(--font-main);
   color: #fff;
   font-size: 22px;
   line-height: 40px;
}

.abt-sect-1 {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   padding: 50px 100px;
}

.sect-1-left {
   width: 50%;
   display: flex;
   align-items: end;
   flex-direction: column;
}

.sect-1-left h2 {
   width: 75%;
   text-align: right;
   font-family: var(--font-main);
   font-size: 40px;
   border-bottom: 1px solid black;
   padding: 7px 20px;
}

.sect-1-left h2 a {
   color: #000;
}

.sect-1-left p {
   width: 75%;
   font-family: var(--font-sec);
   font-size: 14px;
   line-height: 28px;
   padding: 20px 25px 20px 0;
}
.sect-1-right{
    width: 45%;
}
.sect-1-right a {
   display: block;
}

.sect-1-right a img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
}

/* section-2 */

.sect-1-left .abt-full-width {
   width: 100%;
   text-align: left;
   padding-top: 0;
}

.sect-1-left .abt-padding {
   padding-left: 20px;
}

.sect-1-left .abt-sect-3-width {
   width: 100%;
   text-align: right;
}



















/* =======================faqs page======================= */
/* =======================faqs page======================= */
/* =======================faqs page======================= */


/* =======================faqs page======================= */
/* =======================faqs page======================= */
/* =======================faqs page======================= */

.faq-h {
   position: relative;
   background-color: var(--grey);
   padding: 35px 0;
}

.faq-h h1 {
   font-family: var(--font-main);
   font-size: 35px;
   text-align: center;
   color: var(--grey-white);
}

.faqs {
   padding: 20px 100px 70px 100px;
}

.faq-wrap {
   margin-top: 20px;
}

.faq-q-wrap {
   display: flex;
   justify-content: flex-start;
   gap: 10px;
   align-items: center;
   cursor: pointer;
   padding: 10px 0;
}

.faq-title a {
   font-size: 18px;
   font-family: var(--font-sec);
   color: #333;
}

.faq-btn {
   font-size: 24px;
   font-weight: bold;
   transition: transform 0.3s;
}

.faq-ans {
   display: none;
   padding: 10px 0;
   color: var(--grey);
   font-size: 16px;
   font-family: var(--font-sec);
}

.faq-ans p {
   margin: 0;
}

.faq-q-wrap.active .faq-btn {
   transform: rotate(45deg);
   /* Rotate the plus sign when clicked */
}

/* Styling when FAQ is open */
.faq-ans.show {
   display: block;
}


























/* =======================disclaimer page======================= */
/* =======================disclaimer page======================= */
/* =======================disclaimer page======================= */


/* =======================disclaimer page======================= */
/* =======================disclaimer page======================= */
/* =======================disclaimer page======================= */

.disc-wrap {
   padding: 2px 100px 100px 100px;
}

.disc-wrap h3 {
   padding: 30px 0 7px 0;
   font-family: var(--font-sec);
   font-size: 18px;
}

.disc-wrap p {
   font-family: var(--font-sec);
   color: var(--grey);
   font-size: 14px;
   line-height: 28px;
}

/* =======================policy page======================= */

.policy-pd {
   padding-top: 30px;
}

/* =======================terms page======================= */

.terms ul {
   padding: 7px 20px;
   font-family: var(--font-sec);
   color: var(--grey);
}

.terms span {
   color: #000;
   font-weight: 600;
}

/* =======================track page======================= */

.track p {
   color: #000;
}

.track a {
   color: var(--grey);
}

/* =======================store locator page======================= */
.locator .map-wrap {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px 0;

}

.locator .map-wrap .map-left {
   width: 50%;
}

.locator .map-wrap .map-left a {
   margin-bottom: 14px;
   color: var(--grey);
   border-bottom: 1px solid var(--grey);
}

.locator .map-wrap .map-right {
   width: 50%;
}






















/* =======================contact us page======================= */
/* =======================contact us page======================= */
/* =======================contact us page======================= */

.sect-cont {
   display: flex;
   justify-content: center;
   align-items: center;
}

.sect-cont .contact-wrap {
   padding: 70px 0;
   display: flex;
   justify-content: center;
}

.sect-cont .cont-left {
   padding: 0px 158px 20px 15px;
}

.sect-cont .cont-left h1::after {
   content: "";
   width: 60%;
   height: 1px;
   position: absolute;
   top: 100%;
   left: 0;
   background-color: #000;
}

.sect-cont .cont-left .addr&gt;a {
   font-family: var(--font-sec);
   color: #000;
   font-size: 16px;
   text-decoration: underline;
   margin-bottom: 20px;
   font-weight: 500;
}

.sect-cont .cont-left .addr p span {
   font-family: var(--font-sec);
   font-weight: 500;
   margin-right: 3px;
}

.sect-cont .cont-left .addr p a {
   font-family: var(--font-sec);
   color: var(--grey);
   border-bottom: 1px solid var(--grey);
   padding: 1px 0;
}

.sect-cont .cont-left .addr&gt;p {
   font-family: var(--font-sec);
   font-size: 16px;
   font-weight: 500;
   margin: 20px 0;
}

.sect-cont .cont-left .addr h2 {
   font-family: var(--font-main);
   font-size: 32px;
   padding: 8px 0 3px 0;
   font-weight: 500;
}

.sect-cont .cont-right {
   padding: 0px 15px 20px 48px;
   border-left: 2px solid black;
}

.sect-cont h1 {
   font-family: var(--font-main);
   font-size: 38px;
   font-weight: 500;
   margin: 20px 0;
   padding-right: 150px;
   position: relative;
}

.sect-cont .cont-right form .inp {
   display: block;
   border: none;
   outline: none;
   width: 100%;
   padding: 20px 0;
   font-family: var(--font-sec);
   font-size: 16px;
   border-bottom: 1px solid var(--grey);
}

.sect-cont button {
   margin-top: 20px;
   background-color: #000;
   color: #fff;
   padding: 7px 130px;
   text-align: center;
}



/* =======================shipping page======================= */
/* =======================shipping page======================= */

.shipping span {
   font-weight: bold;
   font-style: italic;
   color: #000;
   font-size: 14px;
}

/* =======================payment page======================= */
/* =======================payment page======================= */

.pay-mg {
   margin-top: 30px;
}


























/* =======================product page======================= */
/* =======================product page======================= */
/* =======================product page======================= */
.prod-bg {
   background-color: var(--light-pink);
}
#load-more-btn {
    background-color: #ad7936;  /* Button color (Golden shade) */
    color: #fff;  /* Text color */
    border: none;  /* No border */
    padding: 12px 30px;  /* Padding */
    font-size: 16px;  /* Font size */
    font-weight: bold;  /* Bold text */
    cursor: pointer;  /* Pointer cursor */
    border-radius: 5px;  /* Rounded corners */
    transition: background-color 0.3s, transform 0.3s;  /* Smooth transitions */
    outline: none;  /* No outline */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  /* Subtle shadow */
}

#load-more-btn:hover {
    background-color: #855024;  /* Darker golden color on hover */
    transform: translateY(-2px);  /* Slightly lift the button on hover */
}

#load-more-btn:disabled {
    background-color: #d3d3d3;  /* Light gray when disabled */
    cursor: not-allowed;  /* Change cursor */
}

#load-more-btn:focus {
    outline: none;  /* Remove outline on focus */
}
.prod-bg h1 {
   color: var(--gold);
   font-weight: 600;
}

.prod-wrap {
   background-color: var(--light-pink);
   padding: 0 1px 20px 10px;
   display: flex;
   justify-content: center;
   gap: 10px;
   flex-wrap: wrap;
}

.prod-wrap .prod-card {
   width: 22%;
}

.prod-wrap .prod-card&gt;a {
   height: 500px;
}

.prod-wrap .prod-card&gt;a .image-container {
   height: 100%;
}



.prod-card .slider-card .slider-img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.prod-card .slider-card-detail .dtl-right a {
   display: flex;
   justify-content: center;
   align-items: center;
}

.prod-card .slider-card-detail .dtl-right a i {
   text-align: center;
   display: block;
}

.card-btns {
   padding: 10px 65px;
   background-color: var(--light-pink);
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.card-btns .left-btn {
   color: var(--grey);
   color: var(--gold);
   padding: 20px 0;
}

.card-btns .left-btn .filter-btn {
   cursor: pointer;
}

.card-btns .filter-menu {
   position: fixed;
   top: 0;
   left: -100%;
   z-index: 200000;
   width: 35vw;
   height: 100vh;
   background: #fff;
   transition: 0.3s;
   overflow-y: scroll;
}

.wrap-filter {
   padding: 20px;
}

.wrap-filter h4 {
   font-family: var(--font-sec);
   font-size: 20px;
   font-weight: 600;
   width: fit-content;
   position: relative;
}

.wrap-filter h4::after {
   content: "";
   width: 150%;
   height: 2px;
   position: absolute;
   top: 100%;
   left: 0;
   background-color: var(--gold);
}

.wrap-filter button {
   padding: 12px 26px;
   font-size: 13px;
   font-family: var(--font-sec);
   margin: 10px 0;
   background: none;
   transition: all 0.3s;
   text-align: center;
   border: 2px solid black;
   cursor: pointer;
}

.wrap-filter button:hover {
   background-color: #000;
   color: #fff;
}

.price-slider-container {
   width: 100%;
   position: relative;
   padding: 40px 0;
}

.price-range {
   width: 100%;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
}

.price-range#minPrice {
   z-index: 2;
}

.price-range#maxPrice {
   z-index: 1;
}

.price-values p {
   font-family: var(--font-sec);
   font-size: 19px;
   color: var(--grey);
}

.size-checkbox-container {
   width: 100%;
   max-width: 400px;
   margin: 0 auto;
   padding: 20px;
   border-radius: 10px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h3 {
   text-align: center;
   margin-bottom: 20px;
   font-size: 18px;
   color: #333;
}

.size-checkbox-group {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 10px;
}

label {
   display: flex;
   align-items: center;
   justify-content: flex-start;
   font-size: 14px;
   color: #333;
}

input[type="checkbox"] {
   margin-right: 8px;
   transform: scale(1.2);
}

label {
   cursor: pointer;
}

.right-btn {
   position: relative;
   color: var(--grey);
}

.right-btn .sort-btn {
   cursor: pointer;
}

.right-btn .sort-data {
   display: none;
   position: absolute;
   top: 120%;
   right: 0;
   z-index: 100;
   background-color: #fff;
   padding: 17px 0;
}

.right-btn .sort-data a {
   display: block;
   padding: 7px 100px 7px 17px;
   font-family: var(--font-sec);
   white-space: nowrap;
   font-size: 14px;
   color: var(--dark-gold);
   font-weight: 300;
}

.right-btn .sort-data a:hover {
   background-color: var(--grey-white);
}
























/* =======================product detail page======================= */
/* =======================product detail page======================= */
/* =======================product detail page======================= */
.prod-dtl {
   padding: 20px 30px 40px 30px;
   display: flex;
   /* gap: 30px; */
   justify-content: flex-start;
}

.prod-dtl .prod-dtl-wrap {
   width: 100%;
   display: flex;
   gap: 25px;
   align-items: flex-start;
}


/* jssor slider loading skin spin css */
.jssorl-009-spin img {
   animation-name: jssorl-009-spin;
   animation-duration: 1.6s;
   animation-iteration-count: infinite;
   animation-timing-function: linear;
}

@keyframes jssorl-009-spin {
   from {
      transform: rotate(0deg);
   }

   to {
      transform: rotate(360deg);
   }
}


.jssora093 {
   display: block;
   position: absolute;
   cursor: pointer;
}

.jssora093 .c {
   fill: none;
   stroke: #fff;
   stroke-width: 400;
   stroke-miterlimit: 10;
}

.jssora093 .a {
   fill: none;
   stroke: #fff;
   stroke-width: 400;
   stroke-miterlimit: 10;
}

.jssora093:hover {
   opacity: .8;
}

.jssora093.jssora093dn {
   opacity: .6;
}

.jssora093.jssora093ds {
   opacity: .3;
   pointer-events: none;
}

.jssort101 .p {
   position: absolute;
   top: 0;
   left: 0;
   box-sizing: border-box;
   background: #000;
}

.jssort101 .p .cv {
   position: relative;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: 2px solid #000;
   box-sizing: border-box;
   z-index: 1;
}

.jssort101 .a {
   fill: none;
   stroke: #fff;
   stroke-width: 400;
   stroke-miterlimit: 10;
   visibility: hidden;
}

.jssort101 .p:hover .cv,
.jssort101 .p.pdn .cv {
   border: none;
   border-color: transparent;
}

.jssort101 .p:hover {
   padding: 2px;
}

.jssort101 .p:hover .cv {
   background-color: rgba(0, 0, 0, 6);
   opacity: .35;
}

.jssort101 .p:hover.pdn {
   padding: 0;
}

.jssort101 .p:hover.pdn .cv {
   border: 2px solid #fff;
   background: none;
   opacity: .35;
}

.jssort101 .pav .cv {
   border-color: #fff;
   opacity: .35;
}

.jssort101 .pav .a,
.jssort101 .p:hover .a {
   visibility: visible;
}

.jssort101 .t {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: none;
   opacity: .6;
}

.jssort101 .pav .t,
.jssort101 .p:hover .t {
   opacity: 1;
}


.dtl {
   width: 40%;
   padding-right: 70px;
}

.dtl .prod-name {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.div-span span {
   display: inline-block;
   margin-top: 5px;
}

.dtl .prod-name h2 {
   font-family: var(--font-main);
   font-size: 26px;
   font-weight: 400;
   color: var(--gold);
   text-transform: uppercase;
   letter-spacing: 3px;
}

.prod-name .share-icons {
   position: relative;
   padding: 10px 0;
}

.share-opt {
   display: none;
   position: absolute;
   top: 100%;
   left: 0;
   flex-direction: column;
   gap: 15px;
   align-items: center;
   z-index: 999;
}

.prod-name .share-icons i {
   font-size: 20px;
   display: block;
}

.prod-name .sr {
   color: var(--gold);
}

.share-icons .fa-solid {
   cursor: pointer;
}

.share-icons:hover .share-opt {
   display: flex;
}

.share-opt .hvr:hover {
   color: rgb(56, 179, 183);
   cursor: pointer;
}

.prod-class {
   font-size: 13px;
   font-family: var(--font-sec);
   padding: 4px 0;
   letter-spacing: 3px;
   text-transform: uppercase;
}

.prod-price-1 {
   font-size: 18px;
   font-weight: 600;
   color: var(--grey-white);
   font-family: var(--font-sec);
   padding: 4px 0;
   letter-spacing: 2px;
}

.prod-gst {
   font-size: 13px;
   font-weight: 300;
   font-family: var(--font-sec);
   padding: 4px 0;
   font-style: italic;
}

.dtl .info {
   margin: 25px 0;
}

.info p {
   padding: 3px 0;
}

.info p span {
   color: var(--grey);
   margin-right: 4px;
   font-size: 13px;
}

.prod-time {
   font-size: 14px;
   font-weight: 500;
   font-family: var(--font-sec);
}

.item-select {
   padding: 15px 0;
}

.item-select h4 {
   font-size: 13px;
   font-weight: 500;
   color: var(--grey);
   text-transform: uppercase;
   letter-spacing: 2px;
   margin-bottom: 7px;
}

.item-select button:nth-child(2) {
   font-size: 14px;
   font-family: var(--font-sec);
   padding: 5px 10px;
   cursor: pointer;
   background: none;
   margin-right: 5px;
   border: 1px solid var(--grey);
}

.item-select button:nth-child(3) {
   font-size: 14px;
   font-family: var(--font-sec);
   padding: 5px 10px;
   cursor: pointer;
   background: none;
   border: 1px solid var(--grey);
}

.sizes {
   padding: 10px 0;
}

.sizes h4 {
   font-size: 13px;
   font-weight: 500;
   font-family: var(--font-sec);
   letter-spacing: 2px;
   margin-bottom: 7px;
}

.sizes span {
   font-size: 14px;
   font-family: var(--font-sec);
   margin-right: 5px;
   padding: 5px 10px;
   text-align: center;
   border: 1px solid var(--black);
}

.sizes p {
   padding: 17px 0;

}

.sizes p a {
   font-size: 14px;
   color: var(--dark-gold);
   text-decoration: underline;
}

.add-to-cart {
   display: flex;
   align-items: center;
   gap: 8px;
}

.counter {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 9px;
   font-family: var(--font-sec);
   padding: 8px 20px;
   border: 1px solid var(--black);
}

.counter button {
   display: inline-block;
   font-size: 20px;
   cursor: pointer;
   background: none;
   border: none;
   text-align: center;
   font-weight: bold;
   padding: 0 5px;
}

.counter .number {
   display: inline-block;
   font-size: 16px;
   text-align: center;
   font-weight: bold;
}

.add-to-cart&gt;button {
   background-color: #000;
   color: white;
   font-size: 15px;
   font-family: var(--font-sec);
   font-weight: 500;
   padding: 10px 20px;
   text-transform: capitalize;
}

.add-to-cart&gt;a {
   margin-left: 10px;
   color: var(--dark-gold);
   font-size: 25px;
}

.add-to-cart-btn {
   cursor: pointer;
}

.support {
   padding: 10px 0;
}

.support a {
   color: #000;
}

.prod-item {
   margin: 10px 0;
}

.prod-header {
   padding: 10px;
   width: fit-content;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: start;
   gap: 15px;
}

.prod-title {
   font-size: 16px;
   font-weight: 600;
   font-family: var(--font-sec);
}

.prod-arrow {
   font-size: 20px;
   transition: transform 0.3s ease;
}

.prod-content {
   display: none;
   padding: 10px;
}

.prod-content p {
   margin: 0;
}

.prod-name,
.prod-price,
.prod-details {
   font-size: 14px;
   color: #333;
}

.prod-text {
   font-size: 14px;
   font-family: var(--font-sec);
   color: var(--grey);
}

/* 
cart sidebar
*/
.cart-sidebar {
   display: none;
   position: relative;
}

.cart-sidebar-bar {
   background-color: var(--main-color);
}

.cart-body {
   overflow: auto;
   height: 55vh;
   margin-bottom: 40px;
}

.cart-footer {
   position: absolute;
   height: 40vh;
   right: 0;
   bottom: 0;
   box-shadow: 0 6px 11px 1px #000000;
   text-align: center;
}

.cart-price {
   font-size: 18px;
   margin-block: 10px;
}

.cart-price .subtotal-value {
   color: var(--main-color);
}

.cart-buttons a {
   display: inline-block;
   width: 100%;
   padding-block: 10px;
   color: var(--black-color);
   font-size: 18px;
   border: 2px solid #000000;
   margin-block: 3px;
}
@media screen and (max-width: 1024px) {

   .product-detail-content h2 {
       font-size: 16px;
   }

   #productTab {
       display: none;
   }

   #productTabContent {
       display: none;
   }
   .cart-sidebar {
       display: none;
   }
}
/* cart menu */
/* cart menu */

.cart-menu {
   width: 22vw;
}

.cart-menu .cart-pd {
   padding: 10px 8px 10px 20px;
}

.cart-scroll {
   height: 60vh;
   overflow-y: auto;
}

.cart-menu .mini-cart {
   display: flex;
   gap: 22px;
   font-family: var(--font-sec);
   padding: 10px 18px;
   margin-bottom: 7px;
}

.mini-cart&gt;a {
   height: 155px;
}

.mini-cart&gt;a img {
   height: 100%;
   object-fit: contain;
}

.mini-cart-details a:nth-child(1) {
   font-size: 16px;
   font-weight: 700;
   color: var(--black);
   transition: color 0.2s;
}

.mini-cart-details a:nth-child(1):hover {
   color: var(--grey);
}

.mini-cart-details p:nth-child(2) {
   font-size: 11px;
   font-weight: 300;
   margin-bottom: 5px;
}

.mini-cart-details&gt;span {
   display: inline-block;
   font-size: 14px;
   font-weight: 500;
   margin-bottom: 7px;
   color: var(--gold);
}

.mini-cart-action .counter {
   padding: 8px 0;
   justify-content: space-around;
}

.mini-cart-action&gt;a {
   display: inline-block;
   color: var(--black-2);
   margin-right: 7px;
   margin-top: 17px;
   text-align: center;
   transition: color 0.2s;
}

.mini-cart-action&gt;a:hover {
   color: var(--grey);
}

.mini-cart-action&gt;a i {
   font-size: 18px;
   font-weight: 300;
}

.mini-cart-action-btns {
   background-color: var(--grey2);
   padding: 0 18px;
}

.cart-action-btns {
   width: 100%;
   display: block;
   text-align: center;
   padding: 10px 0;
   border-radius: 0;
   border: 1px solid var(--grey-white);
   font-size: 14px;
   font-family: var(--font-sec);
   font-weight: 500;
   background-color: var(--grey2);
   cursor: pointer;
   transition: all 0.3s;
}

.cart-action-btns:hover {
   background-color: rgb(128, 128, 128, 0.2);
}

.mini-cart-action-btns .btn1 {
   border-top: 2px dashed var(--grey-white);
}

.mini-cart-slider-wrap {
   border: 1px solid var(--grey-white);
}

#mini-cart-slider2 {
   padding: 18px;
}

.mini-cart-h3 {
   margin-top: 0 !important;
   margin-bottom: 10px !important;
   text-align: center !important;
   font-weight: 500 !important;
   font-family: var(--font-sec);
   color: #000;
   background-color: var(--grey2);
}

.cart-slide-flex {
   display: flex;
   gap: 10px;
   justify-content: flex-start;
   padding: 3px 8px;
}

.cart-slide-right {
   display: flex;
   justify-content: space-between;
   gap: 60px;
   align-items: center;
}

.cart-slide-details {
   display: flex;
   flex-direction: column;
}

.cart-slide-details&gt;a {
   font-family: var(--font-sec);
   font-size: 14px;
   font-weight: 300;
   color: var(--black2);
   transition: color 0.2s;
}

.cart-slide-details&gt;a:hover {
   color: var(--grey);
}

.cart-slide-details span {
   font-family: var(--font-sec);
   font-size: 12px;
   font-weight: 300;
   color: var(--grey);
   white-space: nowrap;
   padding: 3px 0;
}

.cart-slide-right&gt;a {
   color: #fff;
   background-color: var(--black-2);
   padding: 10px 7px;
   border-radius: 4px;
   transition: all 0.3s;
}

.cart-slide-right&gt;a:hover {
   background-color: rgb(0, 0, 0, 0.7);
}

.checkout-total {
   padding: 20px 20px 12px 20px;
}

.subtotal {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 10px;
}

.subtotal p {
   font-family: var(--font-sec);
   font-size: 18px;
   font-weight: 700;
}

.checkbox-wrapper {
   display: flex;
   align-items: center;
   gap: 8px;
   font-family: var(--font-sec);
   font-size: 12px;
   margin-bottom: 10px;
}

.checkbox-wrapper a {
   color: var(--grey);
   text-decoration: none;
   margin-left: 2px;
   text-decoration: underline;
}

/* Hide default checkbox */
.checkbox-wrapper input[type="checkbox"] {
   appearance: none;
   -webkit-appearance: none;
   width: 16px;
   height: 16px;
   border: 1px solid #ccc;
   border-radius: 3px;
   position: relative;
   cursor: pointer;
   outline: none;
}

/* Checked state - black background */
.checkbox-wrapper input[type="checkbox"]:checked {
   background-color: #000;
}

/* Optional: Add checkmark icon using pseudo-element */
.checkbox-wrapper input[type="checkbox"]:checked::after {
   content: '';
   position: absolute;
   top: 2px;
   left: 5px;
   width: 4px;
   height: 8px;
   border: solid white;
   border-width: 0 2px 2px 0;
   transform: rotate(45deg);
}
.proceed-to-checkout-btn{
   margin-top: 10px;
   width: 100%;
   text-align: center;
   padding: 8px;
}
.checkout-btns, .coupon-btn, .proceed-to-checkout-btn {
   background-color: #000;
   margin-bottom: 5px;
   color: #fff;
}

.checkout-btns:hover, .coupon-btn:hover, .proceed-to-checkout-btn:hover {
   background-color: rgb(0, 0, 0, 0.7);
}

.checkout-total&gt;a {
   display: block;
}

.checkout-total&gt;p {
   font-family: var(--font-sec);
   font-size: 11px;
   color: var(--grey);
}

.cart-empty {
    text-align: center;
    padding-block: 60px;
}

 
.cart-empty i {
    font-size: 180px;
    color: var(--text-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

 
.cart-empty h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

 
.cart-empty p {
    font-size: 16px;
    color: var(--subheading-color);
    margin-bottom: 20px;
}

 
.cart-empty a {
    display: inline-block;
    padding: 10px 20px;
    background: var(--main-color);
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 600;
}

@media screen and (max-width: 769px) {
    .cart-empty i {
        font-size: 80px;
    }
    .cart-empty p {
        font-size: 14px;
    }
}






















/* --------------Check out page------------------ */
/* --------------Check out page------------------ */
/* --------------Check out page------------------ */

.checkout-wrapper {
   display: flex;
   gap: 30px;
}

.checkout-wrapper-left {
   width: 50%;
   display: flex;
   justify-content: flex-end;
   padding: 35px 0;
}

.checkout-wrapper-right {
   width: 50%;
   background-color: var(--grey2);
   padding: 25px 0;
}

.checkout-wrapper-left-info {
   width: 70%;
}

.title {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.checkout-wrapper h4 {
   font-family: var(--font-sec);
   font-size: 21px;
   font-weight: 600;
   margin: 28px 0 8px 0;
}

.checkout-wrapper .margin {
   margin-top: 8px;
}

.checkout-wrapper .name {
   display: flex;
   gap: 12px;
}

.checkout-wrapper .ship-method {
   display: flex;
   justify-content: space-between;
   align-items: center;
   background-color: var(--grey-white);
   border: 2px solid black;
   width: 100%;
   padding: 16px;
   border-radius: 5px;
   font-family: var(--font-sec);
}

.checkout-wrapper .ship-method p:nth-child(2) {
   font-weight: 700;
}

.checkout-wrapper .input {
   width: 100%;
   border: 1px solid #ddd;
   padding: 16px;
   margin-bottom: 8px;
   border-radius: 5px;
   cursor: pointer;

}

.input:focus {
   outline: 2px solid black;
   outline-offset: 0px;
}

.title a {
   text-decoration: underline;
   color: black;
   font-family: var(--font-sec);
}

.checkout-select-wrapper {
   position: relative;
   width: 100%;
   font-family: Arial, sans-serif;
}

.checkout-select {
   appearance: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   width: 100%;
   padding: 24px 40px 8px 12px;
   margin-bottom: 8px;
   border: 1px solid #ccc;
   border-radius: 5px;
   background-color: white;
   font-size: 12px;
   cursor: pointer;
   position: relative;
   color: #000;
}

.checkout-select-label {
   position: absolute;
   top: 8px;
   left: 12px;
   font-size: 12px;
   pointer-events: none;
   z-index: 5;
}

.checkout-arrow {
   position: absolute;
   right: 12px;
   top: 50%;
   transform: translateY(-50%);
   pointer-events: none;
   font-size: 12px;
   color: #666;
}

.check-boxes-option {
   border: 1px solid #ddd;
   padding: 16px;
   margin-bottom: 8px;
   border-radius: 5px;
   cursor: pointer;
   display: flex;
   justify-content: flex-start;
   align-items: center;
   gap: 10px;
}

.check-boxes-option input[type="radio"] {
   accent-color: black;
   transform: scale(1.2);
   cursor: pointer;
}

.check-boxes-content {
   border: 1px solid #000;
   padding: 16px;
   margin-top: 8px;
   width: 100%;
   display: none;
   border-radius: 5px;
   background-color: #f9f9f9;
}

.check-boxes-content.active {
   display: block;
   margin-bottom: 7px;
}

.phone {
   position: relative;
}

.phone span {
   position: absolute;
   top: 50%;
   right: 5px;
   transform: translateY(-50%);
   font-size: 18px;
   cursor: pointer;
}

.phone span i {
   background-color: #fff;
   color: var(--grey-white);
}

.input[type="submit"] {
   background-color: black;
   font-family: var(--font-sec);
   color: white;
   font-weight: bold;
   border: none;
   font-size: 14px;
   margin-top: 25px;
}

.payment-p {
   margin-bottom: 17px;
   font-family: var(--font-sec);
   font-size: 12px;
   color: var(--grey);
}

.checkout-wrapper-right-info {
   width: 70%;
   padding: 40px;
}

.cart-flex {
   display: flex;
   align-items: center;
   gap: 9px;
}

.cart-flex-dtl {
   width: 100%;
   justify-content: space-between;
}

.mini-cart .cart-img-height {
   height: 100px;
}

.apply {
   margin-top: 10px;
   display: flex;
   justify-content: space-between;
   margin-bottom: 12px;
}
.apply .input{
   display: inline-block;
   width: 78%;
   margin-right: 7px;
   margin-bottom: 0;
}
.apply button{
   display: inline-block;
  border: none;
  text-align: center;
  padding: 16px 20px;
  border-radius: 5px;
  cursor: pointer;
  color: var(--grey);
  font-family: var(--font-sec);
  font-weight: 600;
}

.container-flex {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 10px 0;
   font-family: var(--font-sec);
   font-size: 14px;
}

.last-container {
   margin-top: 12px;
   font-size: 18px;
   font-weight: 700;
}

.last-container span {
   display: inline-block;
   font-size: 11px;
   font-weight: 300;
   margin-right: 4px;
}





















/* VIEW CART PAGE */
/* VIEW CART PAGE */
/* VIEW CART PAGE */

.main-cart-wrapper {
   padding: 70px 100px;
   font-family: var(--font-sec);
}

.cols-wrapper {
   display: flex;justify-content: space-between;
   align-items: center;
   padding-bottom: 7px;
   border-bottom: 1px solid var(--grey-white);
}

.cart-col-1 {
   width: 50%;
}

.cart-col-2 {
   width: 44%;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.main-cart-wrapper .cart-pd {
   padding: 25px 0;
}
.main-cart-wrapper .cart-pd2 {
   padding: 8px 0;
}
.main-cart-wrapper .cart-flex {
   display: flex;
   gap: 14px;
}
.main-cart-wrapper .cart-detail-size p{
   font-size: 12px;
   margin: 0;
   padding: 2px 0;
   font-weight: 600;
}
.main-cart-wrapper .cart-detail-size span{
   font-weight: 300;
   color: var(--grey);
}
.main-cart-wrapper .order-note {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 50px 0 10px 0;
}

.order-note-right .checkout-total &gt; p {
   padding: 4px 0;
}

.main-cart-wrapper .order-note-left {
   padding: 5px 0;
}

.main-cart-wrapper .order-note-left-wrapper {
   width: 54%;
}
.main-cart-wrapper .order-note-left label{
   padding: 15px 0;
}

.main-cart-wrapper .order-note-left textarea{
   width: 100%;
   padding: 8px 6px;
   outline: none;
   border: 1px solid var(--grey-white);
}
.main-cart-wrapper .order-note-left textarea:focus {
   border: 1px solid var(--black-2);
}

.main-cart-wrapper .order-note-left &gt; p {
   margin-bottom: 10px;
   font-size: 14px;
   font-family: var(--font-sec);
   font-weight: 300;
}

.main-cart-wrapper .order-note-left-wrapper input {
   width: 100%;
   padding: 8px 6px;
   outline: none;
   border: 1px solid var(--grey-white);
}

.main-cart-wrapper .order-note-left-wrapper input:focus {
   border: 1px solid var(--black-2);
}

.text-size {
   font-size: 14px;
   font-weight: 700;
   font-family: var(--font-sec);
}


/*adding custom css here*/



body {
    overscroll-behavior: none; /* Prevent pull-to-refresh on iOS */
}

html, body {
    overflow-x: hidden;
}

.bottom-menu, .cta {
    transform: translate3d(0, 0, 0); /* Helps with iOS rendering bugs */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling */
    will-change: transform;
}

:root {
    --vh: 100%;
}

@media (max-width: 768px) {
    :root {
        --vh: calc(100vh - 70px); /* Adjust as needed */
    }

    .your-section {
        height: var(--vh);
    }
}</pre></body></html>