/* ======= Basic style ======= */
html,
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

body {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75em;
  color: #555;
  overflow-x: hidden;
}

p {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.75em;
  color: #4B4B4B;
  margin-bottom: 5px;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 43px;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 21px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Darker Grotesque", sans-serif;
  font-weight: 600;
  line-height: 1.5em;
  margin: 0 0 15px 0;
  color: #000;
}

img {
  width: 100%;
  height: auto;
}

img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #f4f4f4;
}

span,
a,
a:hover {
  
  text-decoration: none;
  color: inherit;
}
li {
  font-size: 17px;
}

b {
  font-weight: 400;
  color: #555;
}

/* text field */
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
  outline: none;
}

input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea {
  max-width: 100%;
  margin-bottom: 10px;
  /* padding: 15px 0; */
  height: auto;
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-width: 0 0 1px;
  border-style: solid;
  display: block;
  width: 100%;
  line-height: 1.5em;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  background-image: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  border-color: ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

input:focus,
textarea:focus {
  border-bottom-width: 1px;
  border-color: #c6321b;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  line-height: 1.75em;
  -webkit-transition: background-color 0.15s ease-out;
  transition: background-color 0.15s ease-out;
  background: #fff;
  border: none;
}

input[type="submit"]:hover {
  background-color: #f4f4f4;
  color: #555;
  border: none;
}

select {
  padding: 10px;
  border-radius: 5px;
}

table,
th,
tr,
td {
  border: 1px solid #f4f4f4;
}

th,
tr,
td {
  padding: 10px;
}

input[type="radio"],
input[type="checkbox"] {
  display: inline;
}

/* placeholder */
::-webkit-input-placeholder {
  color: #555;
  font-size: 16px;
  font-weight: 400;
}

/* Top head style start */


section.topsection{
  background-color: #3C3C3C;
  padding: 10px 0;
}
.top-box{
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-box p{
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
}
.top-box img{
  width: 13px;
  margin: 6px 0 0;
}

/*Menu Section*/

/* HEADER */
.navber-section header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#fff;
  position:relative;
  z-index:99;
}
.navber-section .header-left {
    display: flex;
    align-items:flex-end;
    gap: 25px;
}
.navber-section .logo img {
    width: auto;
    z-index: 999;
    position: relative;
    margin: 0 0 -80px;
}
/* NAV (Desktop) */
.navber-section nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin-bottom: 1.2rem;
}
.navber-section nav ul li{position:relative;}
.navber-section nav ul li a{
  text-decoration:none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #111111;
  padding:8px 4px;
  transition:.3s;
}
.navber-section nav ul li a:hover,
.navber-section nav ul li a.active{color:#0072ff;}

/* Dropdown */
.navber-section nav ul li ul{
  position:absolute;
  top:100%;
  left:0;
  min-width:180px;
  background:#fff;
  box-shadow:0 4px 15px rgba(0,0,0,0.1);
  display:none;
  flex-direction:column;
  z-index:99;
  padding: 0;
    gap: 0;
}
.navber-section nav ul li:hover ul{display:flex;}
.navber-section nav ul li ul li a{
  padding:10px 15px;
  font-weight:400;
  color:#444;
  width: 100%;
}
.navber-section nav ul li ul li a:hover{background:#f7f7f7;}

/* Icons (Right) */
.navber-section .header-icons{
  display:flex;
  align-items:center;
  gap:20px;
    position: relative;
}
.navber-section .header-icons a{
  color:#333;
  font-size:16px;
  position:relative;
}
.navber-section .header-icons a:hover{color:#0072ff;}
.navber-section .header-icons .cart-count{
  position:absolute;
  top:-6px;right:-10px;
  background:#ff9800;
  color:#fff;
  font-size:11px;
  font-weight:bold;
  padding:2px 5px;
  border-radius:50%;
}
div#search-box {
    position: absolute;
    right: 0;
    top: 48px;
}

/* HAMBURGER */
.navber-section .hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.navber-section .hamburger span{
  width:26px;
  height:3px;
  background:#333;
  border-radius:2px;
  transition:.3s;
}

/* MOBILE MENU (Off-canvas) */
.navber-section .mobile-nav{
  position:fixed;
  top:0;right:-100%;
  width:100%;
  height:100vh;
  background:#fff;
  transition:right .4s ease;
  padding:30px 20px;
  box-shadow:-2px 0 8px rgba(0,0,0,0.1);
  z-index:999;
}
.navber-section .mobile-nav.active{right:0;}
.navber-section .mobile-nav ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:15px;
}
.navber-section .mobile-nav ul li a{
  text-decoration:none;
  color:#333;
  font-size:16px;
  display:block;
  padding:10px;
  transition:.3s;
}
.navber-section .mobile-nav ul li a:hover{background:#f7f7f7;border-radius:4px;}
.navber-section .mobile-nav ul li ul{
  display:none;
  flex-direction:column;
  padding-left:15px;
}
.navber-section .mobile-nav ul li.open ul{display:flex;}

/* MOBILE ICONS */
.navber-section .mobile-icons{
  margin-top:30px;
  display:flex;
  gap:20px;
  font-size:18px;
}
.navber-section .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  color: #333;
  cursor: pointer;
}
.navber-section .close-btn:hover {color: #0072ff;}
.navber-section nav ul li a svg {
    width: 20px;
    height: 20px;
}
/* RESPONSIVE */
@media(max-width:991px){
  .navber-section nav{display:none;}
  .navber-section .header-icons{display:none;}
  .navber-section .hamburger{display:flex;}
  .navber-section .mobile-nav ul {
    padding: 0;
}
}

/*Banner*/
.banner-content {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 100%;
    text-align: left;
}
.bannerbox{
  max-width: 584px;
}
.bannerbox h3{
  font-size: 16px;
  color: #D3AF37;
  text-transform: uppercase;
  -webkit-text-stroke: 0.3px;
  display: inline-block;
    background: #fff;
    padding: 8px 20px;
    border-radius: 5px;
}
.bannerbox h2{
  font-size: 60px;
  color: #111111;
  -webkit-text-stroke: 2px;
  line-height: 66px;
}
.bannerbox h4 svg {
    width: 39px;
}
.bannerbox h4 {
    font-size: 34px;
    color: #111111;
    -webkit-text-stroke: 1px;
    line-height: 36px;
}
.bannerbox p {
    font-size: 20px;
    color: #4B4B4B;
    -webkit-text-stroke: 0.5px;
    line-height: 26px;
}
.banner-sec .swiper {
    width: 100%;
    height: 100%;
}
.banner-sec .swiper-wrapper {
    align-items: center;
}

.banner-sec .swiper-slide {
  text-align: center;
  font-size: 18px;
  /*flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;*/
  position: relative;
}

.banner-sec .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.arrow-box {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 0px 0 0;
}
.button-prev-banner img {
    transform: rotate(180deg);
    
}
.arrow-box .button-next-banner,
.arrow-box .button-prev-banner {
    cursor: pointer;
}
.swiper-button-disabled{
    cursor: no-drop;
}
.swiper-button-disabled img{
    filter: contrast(0.5);
    cursor: no-drop;
}
.btn-black {
    background: #3C3C3C;
    color: #fff;
    text-decoration: none;
    min-height: 52px;
    display: flex;
    justify-content: center;
    max-width: 152px;
    align-items: center;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    font-family: League Spartan;
    transition: .4s ease-out;
}
.btn-black:hover {
    background: #1151AB;
    color: #fff;
}

.btn-color {
    background: #1151AB;
    color: #fff;
    text-decoration: none;
    min-height: 52px;
    display: flex;
    justify-content: center;
    max-width: 272px;
    align-items: center;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    font-family: League Spartan;
    transition: .4s ease-out;
    padding: 0 20px;
    margin: 0 auto;
}
.btn-color:hover {
    background: #3C3C3C;
    color: #fff;
}

.why-choose {
  text-align: center;
  padding: 60px 0px;
  margin: auto;
}
.circlelogo {
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
}
/* Heading */
.why-choose h2 {
  font-size: 28px;
  line-height: 1.6;
  font-weight: 400;
}

.why-choose h2 span {
  font-weight: 600;
  color: #000;
}

.why-choose h2 img {
  vertical-align: middle;
  width: 24px;
  margin: 0 6px;
}

/* Layout */
.why-choose-box {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    align-items: flex-end;
    justify-content: space-between;
}

.why-choose-box img {
  border-radius: 16px;
  max-width: 100%;
}

/* Circle Logo with Rotating Text */
.circle-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin: auto;
}

.circlelogo img {
    border-radius: 16px;
    width: 72px;
}

.why-choose h3 {
    font-size: 16px;
    color: #D3AF37;
    text-transform: uppercase;
    -webkit-text-stroke: 0.3px;
}
.why-choose h3 {
    font-size: 16px;
    color: #D3AF37;
    text-transform: uppercase;
    -webkit-text-stroke: 0.3px;
}
.why-choose ul {
    padding: 0;
    font-size: 36px;
    font-weight: 600;
    color: #111111;
    max-width: 997px;
    margin: 0 auto;
    font-family: League Spartan;
    text-transform: capitalize;
}
.why-choose ul li {
    display: inline-block;
}
.why-choose ul li img {
    width: 60px;
}
.why-choose ul li span {
    font-weight: 300;
}
.circlelogo p {
    font-size: 20px;
    color: #4B4B4B;
    -webkit-text-stroke: 0.5px;
    line-height: 26px;
}
.circlelogo-img {
    position: relative;
    width: 100%;
}

.circlelogo-img {
  position: relative;
  width: 160px;   /* adjust size */
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circlelogo-img .main-product {
  position: relative;
  z-index: 2;
  max-width: 120px; /* product size */
}

.circlelogo-rool {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;  /* circle size */
  height: 160px;
  transform: translate(-50%, -50%);
  animation: rotate-circle 12s linear infinite; /* speed */
}

.circlelogo-rool img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* rotation animation */
@keyframes rotate-circle {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


/* Card Container */
.product-card {
  background: #fff;

  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
}

/* Image Section */
.product-image {
  position: relative;
  text-align: center;
	overflow:hidden;
}
.product-image img {
  max-width: 100%;
  border-radius: 5px;
}

/* Wishlist Heart */
.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wishlist-btn:hover {
  background: #f44336;
  color: #fff;
}

/* Content Section */
.product-content {
  padding: 15px;
}
.product-category {
  font-size: 13px;
  color: #1151AB;
  text-transform: uppercase;
  -webkit-text-stroke: 0.3px;
}
.product-price, .product-price span {
    font-size: 20px;
    color: #111111 !important;
    margin: 5px 0;
    font-family: 'League Spartan';
}
.product-title {
    font-size: 20px;
    font-weight: 400;
    color: #111111;
    margin-bottom: 10px;
    font-family: 'League Spartan';
    -webkit-text-stroke: 0.2px;
}

/* Rating Stars */
.product-rating {
  font-size: 14px;
  color: #f4b400;
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-rating span {
    font-size: 15px;
    color: #3C3C3C;
    font-family: 'League Spartan';
    -webkit-text-stroke: 0.2px;
}
.heding {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-end;
    padding: 0 0 40px;
}
.heding h2 {
    color: #111111;
    font-family: 'League Spartan';
    font-size: 36px;
    -webkit-text-stroke: 0.3px;
}
.newproducts-sec {
    padding: 0 0 60px;
}

.shopcat-sec{
  padding: 100px 0;
  background: #FFF1C4;
}
.catheding{
  margin: 0 0 40px;
  text-align: center;
}
.catheding h2{
    color: #111111;
    font-family: 'League Spartan';
    font-size: 36px;
    -webkit-text-stroke: 0.3px;  
}
.catheding p {
    font-size: 20px;
    font-family: 'League Spartan';
    color: #000;
    font-weight: 300;
    line-height: 26px;
}

.category-card {
  background: #fff; /* light yellow background */
  border-radius: 16px;
  text-align: center;
  padding: 60px 0px;
/*  width: 220px;*/
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin: 20px auto;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 8px 0 4px;
}

.category-count {
  font-size: 14px;
  color: #777;
}

.category-flower {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 40px;
  opacity: 0.5;
}

.category-flower img {
  width: 100%;
  height: auto;
}

.metho-sec{
  padding: 100px 0;
  background: #fff;
}
.box-metho {
    display: flex;
}
.process-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 286px;
    margin: 20px auto;
    transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  background: #1151AB;
}

.process-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  border: 2px solid #f0c53d; /* yellow border */
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.process-icon img {
  width: 40px;
  height: auto;
}

.step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f0c53d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 50%;
}

.process-title {
    font-size: 24px;
    color: #111111;
    font-family: League Spartan;
    margin-bottom: 10px;
}

.process-desc {
  font-size: 20px;
    font-family: League Spartan;
  color: #4B4B4B;
  line-height: 1.6;
}
.process-card:hover .process-title, .process-card:hover .process-desc{
    color: #fff;
}
.customer-sec{
  padding: 100px 0;
  background: #AFF9F7;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  max-width: 100%;
  margin: 20px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  font-family: Arial, sans-serif;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.quote {
    font-size: 67px;
    color: #f4c542;
    line-height: 1;
    margin: -45px 0 0;
}

.stars {
  color: #f4c542;
  font-size: 18px;
}

.testimonial-text {
  font-size: 20px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 20px;
	min-height: 190px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 4px;
    font-family: 'League Spartan';
}

.author-badge {
  
  color: #333;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 6px;
  font-style: italic;
}
.swiper-pagination {
    display: flex;
    bottom: 0px !important;
    justify-content: center;
}
.swiper-pagination-bullet {
    cursor: pointer !important;
    width: 16px !important;
    height: 8px !important;
    border-radius: 19px !important;
    background: #3C3C3C !important;
}
.swiper-pagination-bullet-active {
    background: #D3AF37 !important;
    width: 36px !important;
    height: 8px !important;
    border-radius: 19px !important;
}

.hotsell-box {
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 40px;
  gap: 40px;
  height: 293px;
  width: 50%;
}

.box-hotsell-content h2 {
    font-size: 36px;
    font-weight: 600;
    font-family: 'League Spartan';
    color: #111111;
    margin-bottom: 8px;
}

.box-hotsell-content p {
  font-size: 22px;
    font-family: 'League Spartan';
    color: #111111;
    webkit-text-stock:0.2px;
  margin-bottom: 20px;
}



.box-hotsell-content .image-section img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.box-hotsell {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.hotsell-product {
    width: 50%;
    display: flex;
    gap: 20px;
}
.floting-sec{
  padding: 100px 0 100px;
}
.floting-box h4{
  font-size: 38px;
  color: #6B704F;
  margin: 0;
}
.floting-box img{
  width: auto;
}
.floting-box {
    display: flex;
    align-items: center;
    gap: 30px;
}
.niac-sec{
  padding:0 0 100px;
}
.niac-box {
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: flex-end;
    gap: 30px;
}
.niac-itam:nth-child(1) {
    padding: 0 0 70px;
}
.niac-itam:nth-child(3) {
    padding: 0 0 50px;
}
.niac-itam {
    flex: 1;
     width: 33%; 
}
.niac-itam h2 {
    font-family: League Spartan;
    font-size: 60px;
    color: #111111;
    margin: 0 0 80px;
}
.niac-itam h3 {
    font-family: League Spartan;
    font-size: 40px;
    color: #111111;
    margin: 0 0 30px;
}
.niac-itam img {
    width: auto;
}
.benifet-box{
    background: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 35px;
    position: relative;
}
.benifet-box:after {
    position: absolute;
    width: 95%;
    height: 95%;
    content: '';
    border: 1px dashed #D3AF37;
    z-index: 9;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    border-radius: 8px;
}
.benifet-box ul{
  padding: 0;
  margin: 0;
  font-family: League Spartan;
    font-size: 23px;
    color: #000;
}
.benifet-box ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 0 10px;
}
.benifet-box ul li p{
  padding: 0;
  margin: 0;
  font-family: League Spartan;
  font-size: 18px;
  color: #000;
  line-height: normal;
}
.mySwiper-nica img {
  padding: 0 0 0px;
}
.blog-sec {
    padding: 100px 0;
	background: #FFF1C4;
}
.heading-box-right .btn-black {
    width: auto;
    max-width: 100%;
    padding: 0 25px;
    text-transform: uppercase;
}
.heading-box {
  align-items: center;
}
.heading-box h2{
  line-height: 18px;
}
.blog-sec{
  padding: 100px 0;
}
.blog-wrap {
  display: flex;
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease;
	    flex: 1;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.blogbox-img {
    position: relative;
    overflow: hidden;
}
span.card-category {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    color: #6B704F;
    text-transform: uppercase;
    font-family: League Spartan;
    font-size: 14px;
    padding: 6px 17px;
    border-top-right-radius: 8px;
}
.card-content{
  margin: 15px 0 0;
	padding:0 15px;
}
.card-content h3 a {
    font-family: League Spartan;
    color: #000;
    text-decoration: none;
    line-height: 20px;
    font-size: 26px;
}

.card-content p.card-date {
    font-family: League Spartan;
    color: #111;
    text-transform: uppercase;
    line-height: 20px;
    font-size: 14px;
}
.uspsection{
    background: #1151AB;
    padding: 50px;
}
.usp-box-wrap {
    display: flex;
    justify-content: space-between;
}
.usp-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.usp-content h4 {
    color: #fff;
    font-family: 'League Spartan';
    font-size: 18px;
    margin: 0;
}
.usp-content p {
    color: #fff;
    font-family: 'League Spartan';
    font-size: 16px;
    margin: 0;
}
 .email-box {
  display: flex;
  align-items: center;
  border: 1px solid #3C3C3C;
  border-radius: 50px;
  padding: 2px;
  max-width: 280px;
  width: 100%;
  overflow: hidden;
}

.email-box input {
  border: none;
  outline: none;
  padding: 10px 15px;
  flex: 1;
  font-size: 14px;
  color: #968786;
  margin: 0;
}

.email-box input::placeholder {
  color: #968786;
}

.email-box button {
  border: none;
  background: #d4a62e; /* golden circle */
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-right: 4px;
}

.email-box button svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.email-box button:hover {
  background: #b88d24;
}
.footer-box {
    display: flex;
    gap: 70px;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.footer-box:after{
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: #ccc;
    transform: translate(-50%, -50%);
    left: 32%;
    top: 50%;
}
.footerbox-left {
    max-width: 490px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    padding: 70px 0;
}
.footerbox-left img {
    width: 91px;
}
.footerbox-left p {
    font-size: 20px;
    text-align: center;
    color: #3C3C3C;
    font-weight: 500;
    line-height: 1;
    max-width: 310px;
}
.socila-box ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 20px;
  color: #3C3C3C;
}
.socila-box ul li img{
  width: 40px;
  height: 40px;
}
.footerbox-right {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.footer-item {
    width: 33%;
}
.footer-item:nth-child(3) {
    width: 460px;
}
.footer-item h3{
    font-family: League Spartan;
    font-size: 18px;
    font-weight: 400;
    color: #1151AB;
    margin: 0 0 20px;
}
.footer-item ul {
    padding: 0;
    font-size: 18px;
    font-family: League Spartan;
    text-transform: capitalize;
}
.footer-item ul li {
    padding: 0 0 10px;
}
.footer-item ul li a {
    color: #3C3C3C;
    text-decoration: none;
}
.footer-item ul li.phone {
    font-size: 24px;
}
.footer-item:nth-child(3) ul {
    text-transform: none;
}
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #3c3c3c63;
}
.footer-bottom-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom-box p {
    color: #3c3c3c;
    font-size: 18px;
    font-family: 'League Spartan';
    margin: 0;
}
.footer-bottom-box p a{
    color: #3c3c3c;
    font-weight: 600;
    text-decoration: none;
}
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s;
  z-index: 9999;
}
.inner-banner {
    position: relative;
}
.inner-banner-content {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 100%;
    text-align: left;
}
.inner-banner-content h1 {
    font-size: 60px;
    color: #fff;
    font-family: 'League Spartan';
    margin: 0;
}
.inner-banner-content ul {
    font-size: 20px;
    color: #fff;
    font-family: 'League Spartan';
    margin: 0;
    display: flex;
    gap: 8px;
    padding: 0;
}
.inner-banner-content ul li a {
    color: #ffffffb3;
    text-decoration: none;
}

.unique-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.unique-section .left {
  flex: 1 1 50%;
}

.unique-section .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.unique-section .right {
  flex: 1 1 50%;
  background: #f9f9f9;
  padding: 0px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.unique-section .right h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #111;
  font-weight: bold;
}

.unique-section .right p.sub {
  font-size: 20px;
  color: #4B4B4B;
  margin-bottom: 40px;
  line-height: 1;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.feature-icon {
  background: #d8a600; /* golden yellow */
  color: #fff;
  font-size: 20px;
  width: 65px;
  height: 65px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 20px;
  margin: 0 0 6px;
  font-weight: bold;
  color: #111111;
}

.feature-text p {
  font-size: 20px;
  margin: 0;
  color: #4B4B4B;
  line-height: 1.5;
}
/* .right-content {
    max-width: 390px;
} */
.about-box-left img {
    border-radius: 20px;
}
@media(max-width: 768px) {
  .unique-section {
    flex-direction: column;
  }
  .unique-section .right {
    padding: 40px 20px;
  }
}
.about-sec {
    padding: 100px 0;
}
.about-heading {
    width: 100%;
    max-width: 1071px;
    margin: 0 auto;
    text-align: center;
}
.about-heading h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    color: #111;
    line-height: 1;
}
.about-heading p {
    color: #4B4B4B;
    line-height: 1.4;
    font-family: 'League Spartan';
    font-size: 20px;
}
.about-box {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 40px 0 0;
}
.about-box-left, .about-box-right {
    flex: 1;
}
.aboutbox-rightcont {
    padding: 78px 40px;
    background: #3C3C3C;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}
.aboutbox-rightcont img{
  width: 180px;
}
.aboutbox-rightcont p {
    color: #fff;
    line-height: 1.4;
    font-family: 'League Spartan';
    font-size: 18px;
}
.msg_area {
    padding: 100px 0;
}
.form-box {
    display: flex;
    align-items: center;
    gap: 140px;
}
.form-box h3 {
    color: #111111;
    font-size: 36px;
    font-family: 'League Spartan';
    font-weight: 600;
    margin:0 0 30px;
}
.detils-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.detls-item {
    display: flex;
    gap: 20px;
    align-items: center;
}
.icon-box {
    width: 96px;
    height: 96px;
    /* padding: 20px; */
    border-radius: 50%;
    background: #FFF1C4;
    display: flex;
    /* height: auto; */
    align-items: center;
    justify-content: center;
}
.icon-box img {
    /* padding: 20px; */
    /* background: #FFF1C4; */
    /* border-radius: 50%; */
    width: 43px;
    height: 43px;
}
.content-box {
    flex: 1 1 50%;
}
.detls-item h4 {
    font-size: 24px;
    color: #3C3C3C;
    margin: 0 0 10px;
    font-family: 'League Spartan';
}
.detls-item p {
    font-size: 18px;
    font-family: 'League Spartan';
    color: #3C3C3C;
}
.homeform_wrap {
    flex: 1 1 65%;
}

.contact-form {
  width: 700px;
}

.contact-form .formbox {
    display: flex;
    gap: 15px;
    justify-content: space-around;
    width: 100%;
}
.wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}

.contact-form textarea {
  grid-column: span 2;
  height: 120px;
  resize: none;
}

.contact-form input[type="submit"] {
  grid-column: span 2;
  width: 120px;
  padding: 12px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin:25px 0 0;
}

.contact-form input[type="submit"]:hover {
  background: #000;
}
.contact-form .formbox {
    width: 100%;
    flex-direction: column;
}
.blog-right {
    display: flex;
    justify-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.blog-right .blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s ease;
    flex: 45%;
}
.blog-left .widget_search {
    margin: 0 0 15px;
}
.blog-left label.wp-block-search__label {
    display: none;
}
.blog-left .wp-block-search__inside-wrapper {
    display: flex;
    flex: auto;
    flex-wrap: nowrap;
    max-width: 100%;
    align-items: center;
    border: 1px solid #3c3c3c78;
    padding: 0 12px;
    border-radius: 8px;
}
.blog-left input.wp-block-search__input {
    border: none;
    font-size: 18px;
}
.blog-left .wp-block-search__button {
    border: none;
    font-size: 0;
    background: url(../images/Icon1.svg);
    width: 24px;
    height: 24px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.widget_block h2.wp-block-heading{
    font-size: 26px;
    color: #111111;
    font-weight: 600;
}
.wp-block-categories-list {
    padding: 0;
    font-size: 20px;
    color: #4B4B4B;
}
.wp-block-categories-list li {
    padding: 0 0 10px;
}
.wp-block-categories-list li a {
    color: #4B4B4B;
    text-decoration: none;
}
.wp-block-latest-posts__featured-image {
    width: 25%;
    float: left;
    margin: 0 10px 10px 0;
}
.wp-block-latest-posts a {
    font-size: 18px;
    color: #111111;
    text-decoration: none;
}
.shop-banner{
    background: #FFF1C4;
    padding: 24px 0;
}
.shop-banner ul{
    padding: 0 19%;
    display: flex;
    gap: 10px;
    font-size: 20px;
    color: #3C3C3C;
    font-weight: 600;
}
.shop-banner ul li img{
    filter: invert(1);
    width: 13px;
    height: 13px;
}
.shop-banner ul li a {
    color: rgba(60, 60, 60, 0.60);
    text-decoration: none;
}
.shop-wrap {
    display: flex;
    gap: 70px;
}
.shop-left {
    flex: 1;
}
.shop-right {
    flex: 1 1 50%;
}
h2.wp-block-heading {
    display: none;
}
.shop-left h4, .shop-left h3 {
    color: #111 !important;
    font-size: 26px;
    font-weight: 700;
}
.yith-wcan-filters .yith-wcan-filter {
    margin-bottom: 30px;
    border-bottom: 1px solid #3c3c3c24;
    padding: 0 0 30px;
}
.woocommerce .woocommerce-result-count {
    margin: 0 0 1em;
    color: #3C3C3C;
    font-size: 19px;
    font-weight: 500;
}
.wishlist-icon {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 10%;
    right: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 38px; */
    border: 1px solid #EBEBEB;
    padding: 0px 3px 0px 10px;
    border-radius: 6px;
}
.product-image .add_to_cart_button{
    padding: 17px 47px !important;
    background: #3C3C3C !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-weight: 700;
    font-size: 15px !important;
    border-radius: 6px !important;
    position: absolute !important;
    transform: translate(-50%, -50%) !important;
    bottom: -100px;
    width: 70%;
	transition: all 0.3s ease-in-out;
}
.product-card:hover .product-image .add_to_cart_button{
	bottom: 30px;
}
.product-image .add_to_cart_button:after {
    content: '';
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 15%;
    width: 20px;
    height: 20px;
    background: url(../images/cart-icon.svg);
	background-size: cover;
}
.product-image .added_to_cart{
	padding: 17px 47px !important;
    background: #1151AB !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-weight: 700;
    font-size: 15px !important;
    border-radius: 6px !important;
    position: absolute !important;
    transform: translate(-50%, -50%) !important;
    bottom: -100px;
    width: 70%;
	transition: all 0.3s ease-in-out;
}
.product-card:hover .product-image .added_to_cart{
	bottom: 20px;
}
.woocommerce ul.products li.product a img {
    margin: 0 !important;
}
.woocommerce ul.products li.product h3{
    padding:0 !important;
}
.product-card h2.woocommerce-loop-product__title{
    margin: 0 !important;
    padding: 0 !important;
    color: #111111 !important;
    font-size: 20px !important;
    font-weight: 600;
}
.wishlist-btn svg {
    width: 15px !important;
    height: 15px !important;
}
.wishlist-btn a {
    padding: 0 !important;
    gap: 0 !important;
}
.shop-ditels .entry-summary .yith-add-to-wishlist-button-block {
    position: absolute;
    right: 0;
    top: 2%;
}
.shop-ditels .entry-summary .yith-add-to-wishlist-button-block a {
    gap: 0 !important;
    background: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 6px;
    padding: 10px;
}
.shop-ditels .entry-summary h1{
    color:#111111;
    font-size:26px;
    font-weight:600;
}
.shop-ditels .entry-summary .price span{
    color:#111111;
    font-size:19px;
    font-weight:700;
}
.woocommerce div.product p.price del, .woocommerce div.product span.price del {
    opacity: .4;
    display: inline-block;
    text-decoration: line-through;
    color: #000;
}
.woocommerce div.product p.price ins, .woocommerce div.product span.price ins {
    text-decoration: none;
}
.woocommerce span.onsale {
    display: none !important;
}
.woocommerce .quantity .qty {
    width: 3.631em;
    text-align: center;
    border: 1px solid #3c3c3c3d;
    color: #3C3C3C;
    font-size: 22px;
    font-weight: 600;
    background: #F2F3F0;
    padding: 8px 0;
    border-radius: 6px;
}
.shop-ditels .entry-summary .single_add_to_cart_button{
    padding: 17px 30px !important;
    background: #3C3C3C !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-weight: 700;
    font-size: 15px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease-in-out;
}
.shop-ditels .entry-summary .buy-now-btn{
    padding: 17px 30px !important;
    background: #1151AB !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-weight: 700;
    font-size: 15px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease-in-out;
}
.delivery-info {
    border-top: 1px solid #ccc;
    margin: 30px 0 0;
    padding: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: #3C3C3C;
    font-size: 20px;
    font-family: 'League Spartan';
}
.payment-info {
    border-radius: 6px;
    margin: 30px 0 0;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: #3C3C3C;
    font-size: 20px;
    font-family: 'League Spartan';
    background:#F2F3F0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: transparent !important;
    color: #1151AB !important;
    z-index: 2;
    border-bottom: 4px solid #1151AB !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before{
    display:none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs{
    padding: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none !important;
    background-color: transparent !important;
    color: #1111114a !important;
    display: inline-block;
    position: relative;
    z-index: 0;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 1em;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after{
    display:none;
}
.woocommerce .star-rating span::before{
    color: #D3AF37;
}
.woocommerce-product-rating a.woocommerce-review-link{
    color: #3C3C3C;
    text-decoration: none;
    font-size: 16px;
}
.posted_in a {
    color: #3C3C3C;
    text-decoration: none;
}
.yith_magnifier_gallery li a.active-thumbnail {
    border: 1px solid #D3AF37;
    border-radius: 10px;
}
.wishlist-title-container {
    display: none;
}
.wishlist-items-wrapper .product_type_simple{
    padding: 17px 30px !important;
    background: #3C3C3C !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-weight: 700;
    font-size: 15px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
.woocommerce table.shop_table td {
    font-size: 20px;
    text-decoration: none;
}
.wc-block-cart-item__quantity{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
        gap: 15px;
}
.wc-block-cart-item__wrap {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}
button.wc-block-cart-item__remove-link {
    font-size: 18px !important;
    text-decoration: none !important;
    color: #EB001B !important;
}
.wc-block-cart-item__wrap a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: #3C3C3C;
    
}
.wc-block-components-product-metadata {
    display: none;
}
.wp-block-woocommerce-cart-totals-block {
    background: #F2F3F0;
    padding: 30px;
    border-radius: 6px;
}
.wc-block-components-button {
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.8px;
    padding: 20px 0 !important;
    border-radius: 6px;
}
.wc-block-components-button:hover {
    background: #1151AB;
    color: #fff;
}
.wc-block-components-totals-coupon__form .wp-element-button{
    padding:0 !important;
}
.woocommerce-MyAccount-navigation ul {
    padding: 0;
}
.woocommerce-MyAccount-navigation ul li {
    margin: 0 0 10px;
}
.woocommerce-MyAccount-navigation ul li a {
    display: flex;
    background: #1151AB;
    padding: 14px 15px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
    display: flex;
    background: #000;
    padding: 14px 15px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}
.woocommerce-form-login__submit, .woocommerce-form-register__submit {
    background: #111 !important;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 17px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 1.8px;
    padding: 15px 37px !important;
    border-radius: 6px !important;
}
.page-template-about section.metho-sec {
    padding: 100px 0 0;
}
.blog-left {
    max-width: 360px;
}
.blog-page{
	background:#fff;
}
.blog-detls-page {
    background:#fff;
}
.blog-detls-page img {
    float: left;
    max-width: 500px;
    margin: 0 40px 20px 0px;
}
.mySwiper-banner .swiper-pagination {
    bottom: 30px !important;
}
.cart-summary {
    display: none !important;
}
.custom-cart-wrapper {
    display: none !important;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    float: unset !important;
    width: unset !important;
}
.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
    width: unset !important;
}
.woocommerce-cart table.cart img{
	    width: 132px !important;
}
.woocommerce table.shop_table td.product-name a {
    color: #3C3C3C;
    text-decoration: none;
    font-size: 16px;
    line-height: 25px;
}
.woocommerce-cart table.cart td.actions .coupon .input-text{
    float: left;
    box-sizing: border-box;
    border: 1px solid #3c3c3c4d !important;
    padding: 10px 6px 10px !important;
    margin: 0 4px 0 0;
    outline: 0;
    width: auto !important;
    border-radius: 10px !important;
}
.woocommerce .cart .button {
    float: none;
    background: #D3AF37;
    font-size: 17px;
    color: #fff;
    padding: 14px 30px;
    text-transform: capitalize;
    border-radius: 10px;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce #payment #place_order{
    background: #3C3C3C !important;
    font-size: 17px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}
/* 2-column cart layout */
.woocommerce-cart .woocommerce {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* Left: Cart products */
.woocommerce-cart .woocommerce-cart-form {
  width: 65%;
}

/* Right: Cart totals */
.woocommerce-cart .cart-collaterals {
  width: 35%;
}

/* Sticky cart totals (optional) */
.woocommerce-cart .cart-collaterals {
  position: sticky;
  top: 20px;
}

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

  .woocommerce-cart .woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals {
    width: 100%;
  }
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select
 {
    font-family: unset;
    font-weight: 400;
    letter-spacing: normal;
    padding: .5em;
    display: block;
    border: 1px solid #3c3c3c !important;
    box-sizing: border-box;
    border-radius: 10px !important;
    height: 45px;
    line-height: normal !important;
    font-size: 23px !important;
}
.product-price ins {
    text-decoration: none;
}
.shop-ditels{
	background:none;
}
