/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Odibee+Sans&display=swap");
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
    --white: #fff;
    --black: #000;
    --primary: #cdaa7a;
    --secondary: #333333;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "DM Sans", sans-serif;
}

#shopify-section-template--20713042346031__h_blog_LEhGfw .blogwraps .img-fluid {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    color: #828282;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    margin: 0;
    font-family: "Odibee Sans", sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.img {
    perspective: none;
    overflow: hidden;
    transform-style: preserve-3d;
}

.img img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
    display: block;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--theme-color);
}

/* Video styling */
.preloader-video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
    background-color: #cdaa7a;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    display: inline-block;
    line-height: normal;
    letter-spacing: 1px;
    padding: 15px 50px;
    font-family: "Odibee Sans";
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 17px 32px;
}

/* NAV HEADER CSS */

header {
    margin: 0 auto;
    width: 100%;
    padding: 0;
    transition: 0.3s ease-in-out;
    background-color: var(--white);
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    gap: 2.5rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 20px;
    color:rgb(3, 3, 3);
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 0;
    display: inline-block;
    letter-spacing: 1px;
    font-family: "Odibee Sans";
    position: relative;
}

/* Drop-Down Css Start */

.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}

.quicklist li a:hover {
    color: var(--white);
}

.navbar .drop-down>a:after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    padding-left: 0.625rem;
    color: var(--primary);
    transition: transform 0.4s ease;
}

.navbar .drop-down:hover>a::after {
    transform: rotate(360deg);
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    left: 0rem;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
    transition: transform 0.4s ease;
}

.navbar .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down li {
    min-width: 200px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    padding: 6px 1.0625rem;
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
    text-transform: uppercase;
}

.navbar .drop-down ul a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Drop-Down Css End  */

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 780px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 1.5rem;
    width: fit-content;
    margin: auto;
    left: 0;
    right: 0;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 3.125rem;
    height: 3.125rem;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    position: absolute;
    top: unset;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    border: 1px solid #fff;
    color: #fff;
    bottom: -5px;
}

.homeSlider .swiper-button-next {
    right: 16%;
}

.homeSlider .swiper-button-prev {
    left: 16%;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    background: var(--white);
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider h1 {
    margin: 0;
    color: var(--white);
    font-size: 56px;
    line-height: 1;
    font-weight: 400;
    text-transform: capitalize;
    margin-top: 1rem;
}

.main-slider p {
    color: var(--white);
    font-weight: 500;
    line-height: 1.2;
    margin: 0.625rem 0;
    font-size: 20px;
}

.nav-social {
    display: flex;
    align-items: center;
}

.nav-social li a i {
    height: 6.25rem;
    width: 5rem;
    display: grid;
    place-items: center;
    border: 1px solid #bbbbbb;
    transition: 0.5s ease;
    color: #363028;
    font-size: 18px;
}

.nav-social li a {
    position: relative;
}

.nav-social li a span {
    font-size: 12px;
    font-weight: 400;
    background-color: #363028;
    padding: 1px 7px;
    border-radius: 20px;
    color: var(--white);
    position: absolute;
    top: -1rem;
    bottom: 0;
    margin: auto;
    height: fit-content;
    right: 8px;
}

.nav-social li a i:hover {
    background-color: #cdaa7a;
    color: var(--white);
}

.form-inline {
    margin: 0 0 0 7.125rem;
}

.slideOne h5 {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    margin: 1rem 0;
    font-size: 52px;
    font-weight: 400;
    color: var(--white);
}

.slideOne h5 del {
    font-size: 32px;
    font-weight: 400;
}

.slideOne .btn-group {
    gap: 1.125rem;
    align-items: center;
}

.slideOne .btn-group a:last-child {
    border: 3px solid #c5c5c5;
    background: transparent;
    padding: 0.7375rem 3.125rem;
}

.homeSlider .swiper-button-prev::after,
.homeSlider .swiper-button-next::after {
    font-family: "Font Awesome 5 Pro";
    font-size: 20px;
}

.homeSlider .swiper-button-next::after {
    content: "\f178";
}

.homeSlider .swiper-button-prev::after {
    content: "\f177";
}

.slideOne img {
    filter: brightness(0) invert(1);
    width: 417px;
}

/* !MAIN HERO SLIDER CSS */


/* Choose Sec Css Start */

.choose-sec {
    background-color: #f3eae5;
    z-index: 1;
    padding: 7.25rem 0;
}

.choose-flex a {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 34px;
    font-weight: 400;
    text-transform: uppercase;
    color: #363028;
    font-family: "Odibee Sans";
    letter-spacing: 1px;
    position: relative;
    width: fit-content;
    height: fit-content;
}
.t4s-menu-item a {
  font-size: 20px !important;
  color: #000;
  text-transform:capitalize !important;
}

#ProductInfo-template--main-qv__main .t4s-product__description.t4s-rte {
  display: none;
}
.choose-flex a i {
    border: 1px solid #363028;
    height: 3.125rem;
    width: 3.125rem;
    display: grid;
    place-items: center;
    border-radius: 50px;
    font-size: 20px;
    display:none;
}

.choose-flex {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin: 0 0 3.125rem 0;
}

.choose-flex a::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 130px;
    background: #000;
    left: 0;
    bottom: 0.7rem;
    transition: 0.5s ease;
}

.subHead {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

.choosesub {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.choose-content {
    text-align: center;
}

.choose-content h5 {
    font-size: 35px;
    font-weight: 400;
    color: var(--primary);
    height: 108px;
    width: 108px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--white);
    margin: 0 auto 0;
}

.choose-content h3 {
    font-size: 35px;
    font-weight: 400;
    text-transform: capitalize;
    color: #363028;
    margin: 1.525rem 0 0 0;
}

.choose-content p {
    color: #444444;
    line-height: 1.7;
    width: 90%;
    margin: 0 auto 0;
}

.mainHead {
    font-size: 76px;
    font-weight: 400;
    text-transform: uppercase;
    color: #363028;
    letter-spacing: 2px;
}

/* Choose Sec Css End  */



/* shop-category */
/* General Section Styles */
.shop-category-section {
    background-color: #fff;
    padding: 96px 0;
}

/* Tabs Navigation */
.category-tabs {
    border: none;
}

.category-tabs .nav-item {
    margin: 2px;
}

.category-tabs .nav-link {
    background-color: #c9ad7f;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    padding: 12px 18px;
    border-radius: 0;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.category-tabs .nav-link:hover {
    background-color: #b59868;
    text-decoration: none;
}

.categoryslider .swiper-slide.swiper-slide-active .customer-imag img {
    transform: scale(1.5);
}

.categoryslider .swiper-slide.swiper-slide-active .customer-content {
    bottom: -18%;
    left: -12%;
}

.categoryslider {
    padding: 1rem 0 2rem 0;
}

.categoryslider .swiper-slide.swiper-slide-active .customer-content a {
    opacity: 1;
}

.categoryslider .swiper-pagination-bullet-active {
    background-color: var(--primary) !important;
}

.categoryslider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    background-color: var(--black);
}

/* Product Card */
.product-card {
    position: relative;
    margin-bottom: 30px;
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    /* Ensure consistency */
}

.product-img-wrap img {
    max-height: 300px;
    width: auto;
    display: block;
}

/* Hover Actions (Icons) */
.hover-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    background-color: rgba(255, 255, 255, 0.1);
    /* Subtle hint if needed, mostly transparent */
}

/* Show icons on hover */
.product-card:hover .hover-actions {
    opacity: 1;
    visibility: visible;
}

/* Side Icons (Heart, Cart, Search) */
.side-icons {
    position: absolute;
    top: 20px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Compare Icon (Bottom Right) */
.compare-icon {
    position: absolute;
    bottom: 10px;
    right: 15px;
}

/* Action Buttons Style */
.action-btn {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.action-btn:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

/* Typography */
.product-title {
    font-size: 16px
    margin-bottom: 5px;
    font-weight: 500;
    line-height: 1.3;
}

.product-title a {
    color: #222;
    text-decoration: none;
}

.product-title a:hover {
    color: #c9ad7f;
}

.product-cat {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 5px;
    font-weight: 400;
}

.product-price {
    color: #c9ad7f;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}

/* shop-category */


/* Customer Sec Css Start */

.customer-sec {
    background: url(/cdn/shop/files/custombg.webp?v=1769653008) center/cover fixed;
    z-index: 1;
    padding: 7.5rem 0 6rem;
}

.customer-top {
    text-align: center;
}

.product-top .mainHead {
    font-size: 80px;
}

.customer-top .mainHead {
    color: var(--white);
    font-size: 5rem;
}

.customersub {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.customer-content h3 {
    font-size: 34px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 2px;
    display: flex;
    align-items: end;
    gap: 0.325rem;
}

.customer-content a {
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--white);
    letter-spacing: 1px;
    font-family: "Odibee Sans";
    border-bottom: 1px solid;
    opacity: 0;
    transition: 0.6s ease;
}

.customer-content h3 span {
    font-size: 20px;
}

.customer-wrapp {
    position: relative;
}

.customer-content {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

.customer-imag img {
    width: 100%;
    transition: 0.8s ease;
}

.customerslider .swiper-slide.swiper-slide-active .customer-imag img {
    transform: scale(1.5);
}

.customerslider .swiper-slide.swiper-slide-active .customer-content {
    bottom: -18%;
    left: -12%;
}

.customerslider {
    padding: 116px 0 130px;
}

.customerslider .swiper-slide.swiper-slide-active .customer-content a {
    opacity: 1;
}

.customerslider .swiper-pagination-bullet-active {
    background-color: var(--primary) !important;
}

.customerslider .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    background-color: var(--white);
}

/* Customer Sec Css End  */

/* About Sec Css Start */

.about-content p {
    color: #444444;
    font-size: 18px;
    line-height: 1.5;
    margin: 1.75rem 0 1.835rem 0;
    width: 93%;
}

.about-imag img {
    width: 100%;
}

.about-heading .mainHead {
    font-size: 64px;
}

/* About Sec Css End  */

/* Search Sec Css Start */

.search-sec {
    background: url(/cdn/shop/files/searchbg_1.webp?v=1769655656) center/cover fixed;
    z-index: 1;
    padding: 96px 0 96px 0;
}

form.search-form .form-control {
    outline: unset;
    box-shadow: unset;
    background: unset;
    border-radius: unset;
    height: 75px;
    border: 1px solid #8c8c8c;
    border-right: unset;
    font-size: 16px;
    font-weight: 400;
    color: #d5d5d5;
    font-family: "DM Sans";
}

form.search-form .form-control::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: #d5d5d5;
    font-family: "DM Sans";
}

form.search-form .form-group select {
    border-right: 1px solid #8c8c8c;
    border-left: unset;
    position: relative;
}

.search-flex {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin: 3.1253rem 0 0 0;
}

.search-flex h5 {
    font-size: 64px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.search-flex h5 span {
    display: block;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #c0c0c0;
    letter-spacing: 1px;
}

/* form.search-form button {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border: unset;
  height: 3.75rem;
  width: 190px;
  justify-content: center;
} */

.searchsub {
  position: absolute;
  right: 17%;
  top: 0;
  z-index: -1;
}

.search-content .mainHead {
    color: var(--white);
}

form.search-form .select-group {
    position: relative;
    margin: 0 0 1.25rem 0;
}

form.search-form .select-group::before {
    position: absolute;
    content: "";
    height: 1.875rem;
    width: 2px;
    background: #8c8c8c;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -10px;
}
.search-imag {
  position: absolute;
  right: -54%;
  top: -95px;
}
.search-imag {
    margin: 0 0 -8rem 0;
}

/* Search Sec Css End  */


/* Client Sec Css Start */

.client-contant {
    background: #cdaa7a;
    padding: 3.5rem 6.5625rem 4.5rem 6.625rem;
}

figure.client-imag {
    text-align: center;
    padding: 3.5rem 0 2.5625rem 0;
}

.client-contant h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    font-family: "DM Sans";
    text-align: center;
}

.client-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin: 3.0625rem 0 0 0;
}

.client-flex h4 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

.client-flex h4 span {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
}

.client .swiper-button-next:after,
.client .swiper-button-prev:after {
    display: none;
}

section.client .swiper-button-prev,
section.client .swiper-button-next {
    height: 359px;
    border: 1px solid #363028;
    margin: auto;
    position: absolute;
    top: 26%;
    bottom: 0;
    color: #444444;
    font-size: 32px;
    font-weight: 400;
    font-family: "Odibee Sans";
    width: 170px;
}

.client-top {
    text-align: center;
    margin: 0 0 2rem 0;
}

.client {
    padding: 10rem 0 7rem 0;
}

.footer-logo {
    display: block;
    margin: 0 0 2.5rem 0;
}

section.client .swiper-button-prev {
    left: 15%;
}

section.client .swiper-button-prev span,
section.client .swiper-button-next span {
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section.client .swiper-button-next {
    right: 15%;
}

.client-top .subHead {
    margin: 0 0 0.325rem 0;
}

/* Client Sec Css End  */

/* Footer Css Start */

footer {
    background: url(../images/footerBnnr.webp) center/cover no-repeat;
    position: relative;
    z-index: 1;
    padding-top: 6rem;
}

footer::before {
    position: absolute;
    content: "";
    background-color: rgb(54 48 40 / 90%);
    inset: 0;
    /* z-index: -1; */
}

.flowerimag {
    flex-shrink: 0;
    position: absolute;
    left: 0;
    margin: auto;
    top: 0;
}

.footer-top {
    margin: 0 0 7.6875rem;
    display: flex;
    align-items: center;
}

.subscribe-heading h2 {
    color: #cdaa7a;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.5;
    text-transform: uppercase;
}

.subscribe-heading h2 span {
    display: block;
    color: #ffffff;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

form.footerform .form-group .form-control {
    position: relative;
    background: #ffffff;
    color: #757575;
    font-size: 16px;
    font-weight: 400;
    box-shadow: unset;
    border: none;
    outline: unset;
    height: 5rem;
    border-radius: 0;
    padding: 0 0 0 1.875rem;
}

form.footerform .themeBtn {
    position: absolute;
    top: 0;
    right: 32px;
    height: 60px;
    border: unset;
    margin: auto;
    bottom: 0;
}

form.footerform .form-group {
    margin: 0;
}



ul.quicklist li a {
    display: flex;
    gap: 0.9375rem;
    font-size: 22px;
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: 400;
    align-items: baseline;
    font-family: "Odibee Sans";
    width: 96%;
}

ul.quicklist li+li {
    margin-top: 1.5rem;
}

.quicklist li a span {
    color: #cdaa7a;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quicklist li a:hover {
    color: #cdaa7a;
}

footer h3 {
    color: var(--white);
    font-size: 26px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 62px;
    position: relative;
}

footer h3::before {
    position: absolute;
    content: "";
    background: #cdaa7a;
    height: 3px;
    width: 3.125rem;
    bottom: -10px;
}

.listitmem li {
    display: flex;
    align-items: center;
    margin: 1.375rem 0 1.375rem 0;
}

.listitmem li a {
    color: #dbdbdb;
    font-size: 16px;
    font-weight: 800;
    font-family: "DM Sans";
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-shrink: 0;
}

.footer-flex {
    display: flex;
    align-items: end;
}

.ifarme-wrapp {
    margin: 0 13px 0 0;
}

.listitmem li a:hover {
    color: #cdaa7a;
}

.copy-right a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: "Odibee Sans";
    text-transform: uppercase;
}

.copylist {
    display: flex;
    align-items: center;
    gap: 1.875rem;
    justify-content: end;
}

.copy-right {
    border-top: 1px solid #555555;
    padding: 1.5rem 0 1.25rem;
    margin: 6.25rem 0 0 0;
    position: relative;
}

.copy-right a span {
    color: #cdaa7a;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Footer Css End  */
/* innerpages Start */

.innerBan .overlay {
    background: #00000052;
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 70px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
}

.innerBan {
    position: relative;
}

.product-box h5 {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    background: var(--primary);
    width: fit-content;
    margin: 0;
    padding: 4px 20px;
    position: absolute;
    top: 10px;
    left: -28px;
}

section.product-sec.shopage .product-wrapp {
    margin-bottom: 4rem;
}

section.product-sec.shopage {
    padding-bottom: 2rem;
}

section.product-sec.shopage .product-wrapp::before {
    left: -0.875rem;
    width: 315px;
}

section.client.testipage {
    padding: 5rem 132px 3rem;
}

section.client.testipage .client-contant {
    margin-bottom: 50px;
}

a.usericon {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #606060 !important;
    margin-bottom: 1rem;
    display: block;
}

.blog-cntnt h2 {
    font-size: 24px;
    font-weight: 400;
    color: #363028;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: 80%;
}

.blog-cntnt a {
    font-size: 1.125rem;
    font-weight: 400;
    color: #88827a;
    text-transform: uppercase;
    font-family: "Odibee Sans";
}

.blogwraps h3 {
    font-size: 34px;
    font-weight: bold;
    color: #fff;
    background: var(--primary);
    width: fit-content;
    text-align: center;
    padding: 8px 15px;
    margin: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    font-family: "DM Sans";
}

.blogwraps h3 span {
    display: block;
    font-weight: 600;
    font-size: 22px;
}

.blogwraps figure img {
    width: 100%;
}

.blogwraps figure {
    position: relative;
}

.blog-cntnt {
    margin-top: 23px;
}

.blogwraps {
    position: relative;
    margin-bottom: 5rem;
}

.blogwraps::before {
    position: absolute;
    content: "";
    border: 2px solid #d3b081;
    width: 262px;
    height: 365px;
    bottom: -2rem;
    left: -1rem;
    z-index: -1;
}

.contact_form form .form-control {
    border: 1px solid #8c8c8c;
    outline: unset;
    box-shadow: unset;
    height: 60px;
    border-radius: unset;
    background: transparent;
    color: #cdaa7a;
    font-size:18px;
}

.contact_form form .form-control::placeholder {
    color: #cdaa7a;
}

.contact_form form button {
    margin-top: 1rem;
    border: unset;
    outline: unset;
}

.contact_form {
    background: url(../images/searchbg.webp) center/cover no-repeat;
}

section.contact_form h2.mainHead {
    margin-bottom: 2rem;
}

.contactloc h3 {
    font-size: 22px;
    font-weight: 400;
    color: #cdaa7a;
    text-transform: uppercase;
    margin: 0;
}

.contactloc {
    display: flex;
    gap: 21px;
}

.contactloc a {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    font-family: "Odibee Sans";
}

section.contact_form .row+.row {
    margin-top: 30px;
}

.contactimg11 {
    position: absolute;
    right: 0;
    top: 0;
}

/* Terms & Privacy Start */
.terms-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #000;
    font-family: "Font Awesome 5 Pro";
    padding: 1rem 0;
}

.terms-content h2 {
    font-size: 32px;
}

.terms-content h2 {
    font-size: 32px;
    font-weight: bold;
    font-family: "Font Awesome 5 Pro";
    color: cornflowerblue;
    margin-bottom: 1rem;
}

.terms-content p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

ul.termslist li a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

ul.termslist li {
    margin: 1rem 0;
    list-style: disc;
}

p.para {
    margin-top: 1rem;
}

p.para strong {
    display: block;
    padding-top: 1rem;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

p.para strong a {
    font-size: 16px;
    font-weight: bold;
}

ul.termslist li a span {
    font-weight: bold;
}

/* Terms & Privacy End */

/* Revesion Css Start */

section.choose-sec h2 {
    font-size: 32px;
    letter-spacing: 0;
    text-transform: capitalize;
}

form.search-form button.themeBtn {
    padding: 16px 32px;
}

.innerBan p {
    color: #fff;
    font-size: 22px;
}

section.product-sec.shopage .product-box h3 {
    font-size: 22px;
}

.innerBan.shopinnerBan H3 {
    font-size: 50px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    margin: 0.625rem 0;
}

.product-sec.shopage .product-box h4 {
    font-size: 16px;
    line-height: 1.4;
}

section.product-sec.shopage .product-sub {
    flex-shrink: 0;
}

.blog-pages figure img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.blog-content h2 {
    font-size: 35px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: "DM Sans";
    margin-bottom: 1rem;
    color: #363028;
}

.blog-content p {
    color: #444444;
    font-size: 22px;
    line-height: 1.5;
    margin: 0.625rem 0 0.75rem;
}

.blog-content h4 {
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize;
    color: #363028;
    font-family: "DM Sans";
}

.blog-items li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

.blog-items li a span {
    font-weight: bold;
}

.blog-items li {
    list-style: disc;
}

.blog-items li+li {
    margin: 0.625rem 0 0;
}

.blogbottom {
    margin: 4rem 0 0 0;
}

.blog-items {
    margin: 1rem 0;
}

.blog-content p a {
    font-weight: bold;
    color: var(--black);
}

.innerBan.blogs-inner h2 {
    font-size: 50px;
}

/* Revesion Css End  */


section.contact_form.contact-page1 .mainHead {
    color: #000 !important;
}


section.contact_form.contact-page1 .contactloc a {
    color: #000;
}

section.contact_form.contact-page1 {
    background: transparent;
}


.product-grid-section {
    background-color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.product-card1 {
    background: #fff;
    padding: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect: Show Shadow and Border */
.product-card1:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-color: #f0f0f0;
}

.product-img-wrapper {
    position: relative;
    margin-bottom: 15px;
    text-align: center;
}

.product-img {
    max-height: 300px;
    width: auto;
    display: inline-block;
}

/* Compare Icon (Arrows) */
.btn-compare {
    position: absolute;
    bottom: 0;
    right: 10px;
    background: none;
    border: none;
    color: #333;
    font-size: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card1:hover .btn-compare {
    opacity: 1;
    transform: translateY(0);
}

.product-details {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.product-card1:hover .product-details {
    border-color: #eee;
}

.product-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
    line-height: 1.4;
}

.product-category {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 15px;
    color: #c4a47c;
    font-weight: 600;
    margin-bottom: 0;
    transition: margin 0.3s ease;
}

/* Hidden details section */
.hover-details {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card1:hover .hover-details {
    height: auto;
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
    padding-bottom: 5px;
}

.product-variant {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

/* Action Buttons */
.btn-add-to-cart {
    background-color: #416e4b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 20px;
    border: none;
    border-radius: 2px;
    transition: background 0.3s;
}

.btn-add-to-cart:hover {
    background-color: #33573b;
    color: #fff;
}

.action-icon {
    color: #333;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.2s;
}

.action-icon:hover {
    color: #416e4b;
}


.product-detail-section {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #fff;
}

/* Zoom Container */
.product-image-container {
    cursor: crosshair;
    border-radius: 4px;
    background: #f9f9f9;
}

.product-main-image {
    transition: transform 0.2s ease-out;
    transform-origin: center center;
}

.zoom-expand-btn {
    bottom: 20px;
    left: 20px;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: #555;
    transition: all 0.3s;
}

.zoom-expand-btn:hover {
    background: #333;
    color: #fff;
}

/* Typography */
.meta-nav {
    font-size: 0.85rem;
}

.product-title {
    font-size: 35px;
    font-weight: 600;
    color: #333;
}

.product-price {
    font-size: 24px;
    color: #c5a982;
    font-weight: 600;
}

/* Quantity Selector */
.quantity-wrapper {
    border: 1px solid #ddd;
    display: inline-flex;
}

.qty-btn {
    background: #fff;
    border: none;
    width: 40px;
    height: 45px;
    font-size: 22px;
    color: #555;
    cursor: pointer;
    outline: none !important;
}

.qty-btn:hover {
    background-color: #f8f8f8;
}

.qty-input {
    width: 40px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    height: 45px;
    font-size: 16px;
    color: #333;
}

/* Add to Cart Button */
.btn-add-cart {
    background-color: #436e47;
    color: #fff;
    border: none;
    height: 45px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.btn-add-cart:hover {
    background-color: #355738;
    color: #fff;
}

/* Action Links */
.action-links a {
    transition: color 0.2s;
}

.action-links a:hover {
    color: #c5a982 !important;
}

/* Social Icons */
.social-link {
    color: #666;
    margin-right: 12px;
    font-size: 16px;
    text-decoration: none;
}

.social-link:hover {
    color: #333;
}


.t4s-lh-1.t4s-d-flex.t4s-align-items-center.t4s-pr {
  font-size: 19px;
font-weight: 700
}

.t4s-navigation.t4s-text-center.t4s-nav__hover_sideup.t4s-nav-arrow__false {
  text-align: end !important;
}
.t4s-site-nav__icons.t4s-use__kalles.is--hover2.t4s-h-cart__design1.t4s-lh-1.t4s-d-inline-flex.t4s-align-items-center {
}
/* .t4s-site-nav__icon.t4s-site-nav__cart {
    height: 6.25rem;
    width: 5rem;
    
    border: 1px solid #bbbbbb;

} */

.homeSlider .swiper-button-next::after {
    content: ">";}

.homeSlider .swiper-button-prev::after {
    content: "<";}

.template-article h1, .template-article h2, .template-article h3, .template-article h4,.template-articleh5,  .template-article h6 {

  font-family: 'poppins';
}
.form-control::placeholder {
  font-size: 18px;
}


.collection-description h1,
.collection-description h4, 
.collection-description h3 {
  font-size: 62px;
  color: #fff;
  line-height: 71px;
}
.collection-description {
  color: #fff;
  font-size: 25px;
}