  /* -------------------------------------------
    Name:       Tohfe Ka Theka
    Version:    1.0
    Developer:  Sunil kumar
    ------------------------------------------- */
  /*--------------------------------------------*/
  
  /* ========common css start here======= */
  :root{
    --primary:#000;
    --secondary:#960627;
    --accent:#ff6b00;
  }

  * {
    margin: 0;
    padding: 0;
  
  }
  
  ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  a:hover,
  a:focus {
    text-decoration: none;
    box-shadow: none;
  }
  
  a {
    transition: 0.4s all ease-in-out;
    text-decoration: none;
  }
  
  body {
    overflow-x: hidden;
    background: #fff;
    font-family: fregan_serifbold;
  }
  
  h1,  h2,  h3,  h4,  h5,  h6 {
    margin: 0;
  
  }
  
  h1 a,  h2 a,  h3 a,  h4 a,  h5 a,  h6 a {
    color: inherit;
  }
  
  h1,  h2 {
    font-weight: 800;
  }
  
  h3,  h4 {
    font-weight: 700;
  }
  
  h5,  h6 {
    font-weight: 600;
  }
  
  h1 {
    font-size: 48px;
    line-height: 56px;
  }
  
  h2 {
    font-size: 34px;
    line-height: 45px;
  }
  
  h3 {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -.02em;
  }
  
  h4 {
    font-size: 22px;
    line-height: 32px;
  }
  
  h5 {
    font-size: 18px;
    line-height: 24px;
  }
  
  h6 {
    font-size: 16px;
    line-height: 26px;
  }
  
  .padd-50 {
    padding: 30px 0;
  }
.thm-btn,.woof_reset_search_form{
      background: var(--secondary);
      color: #fff;
      border: none;
      padding: 8px 16px;
      border-radius: 7px;
      font-size: 20px;
      font-weight: 600;
      cursor: pointer;
      transition: background .15s;
      white-space: nowrap;
}
  .thm-btn:hover{
    background: #7a0420;
    color: #fff;
  }
/* ========common css end  here======= */
.topbar {
    background: var(--primary);
    font-size: 5px 0;
    padding: 8px 0;
}
.marquee-wrap {background: var(--tkr);overflow: hidden;padding: 5px 0;}
.marquee-track { display: flex; width: max-content; animation: ticker 22s linear infinite; }
.marquee-track span { font-size: 11px; color: rgba(255,255,255,.95); letter-spacing: 2px; font-weight: 600; padding: 0 28px; white-space: nowrap; }
.marquee-track .dot {color: rgb(255 255 255 / 77%);font-size: 18px;line-height: 1;display: flex;align-items: center;}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.search-box{
  border:1px solid #ddd;
  border-radius:30px;
  padding:8px 15px;
  align-items:center;
  gap:10px;
}

.search-box input{
  border:none;
  outline:none;
  width:100%;
  font-size: 13px;
}


.icons a{
  font-size:18px;
  cursor:pointer;
  color: #000;
}

.badge-cart{
  position:absolute;
  top: -12px;
  right: -10px;
  background: #960627;
  color:#fff;
  font-size:10px;
  padding: 1px 4px;
  border-radius:50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-toggler span {
    display: block;
    height: 2px;
    width: 25px;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
    background-color: #141414;
}
.navbar-toggler span:nth-child(1) {
    width: 15px;
}
.navbar-toggler span:nth-child(3) {
    width: 10px;
}


.nav-bar{
  background: #960627;
  padding:10px 0;
}
.dropdown-menu li a {
    color: #000;
}

.menu{
  list-style:none;
}

.menu a{
  text-decoration:none;
  color: #fff;
  font-size: 15px;
}

.contact-item i {
    border: 1px solid #c6c6c6;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: #3f3f3f;
}

.contact-item a {
    color: #000;
    font-size: 14px;
    display: block;
    line-height: normal;
}
.contact-item .small {
    font-size: 12px;
}

.dropdown{
  position:relative;
}

.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  padding:10px;
  display:none;
  box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu{
  display:block;
}

.offer-text{
  font-size: 15px;
  color: #fff;
}

.hero-slide{
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  height: calc(100vh - 180px);
}


.hero-content{
  position: relative;
  color:#fff;
  max-width: 600px;
  padding-left: 60px;
}

.hero-content h1{
  font-size: 60px;
  font-weight: 700;
  color: #000;
}

.hero-content p{
  margin: 15px 0;
  font-size: 22px;
  color: #000;
}

.animate{
  opacity:0;
  transform: translateY(40px);
  animation: fadeUp 0.8s forwards;
}

.delay-1{ animation-delay:0.3s; }
.delay-2{ animation-delay:0.6s; }

@keyframes fadeUp{
  to{
    opacity:1;
    transform: translateY(0);
  }
}



.arrow{
  background:#fff;
  color:#000;
  padding:12px;
  border-radius:50%;
  font-size:18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.category-slider {
  position: relative;
}

.category-slider .owl-nav {
  position: absolute;
  top: 25%;
  width: 100%;
  transform: translateY(-50%);
}

.category-slider .owl-nav button {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff !important;
  color: #000 !important;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.category-slider .owl-nav .owl-prev {
  left: -45px;
}

.category-slider .owl-nav .owl-next {
  right: -45px;
}

.category-slider .owl-nav button:hover {
  background: #000 !important;
  color: #fff !important;
}
.category-card{
  position:relative;
  border-radius: 100px;
  cursor:pointer;
  text-align: center;
}

.category-card img{
  width:100%;
  height: 150px;
  object-fit:cover;
  transition:0.5s;

}
.category-card figure {
    overflow: hidden;
    margin: 0;
    border-radius: 100px;
}

.category-overlay{
  position: relative;
  width:100%;
  padding:20px;
}

.category-overlay h5{
  color: #000;
  font-size: 16px;
  line-height: 20px;
}

.category-card:hover img{
  transform:scale(1.1);
}

.category-slider .owl-item{
  padding:10px;
}
.category-card a:hover{
  color: #960627;
}
.product-section {
    background: #ffecf0;
}

.product-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  transition:0.3s;
  border: 1px solid #ececec;
}

.product-img{
  position:relative;
  overflow:hidden;
}

.product-img img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:0.5s;
}

.product-img .img2{
  position:absolute;
  top:0;
  left:0;
  opacity:0;
}

.product-card:hover .img2{
  opacity:1;
}

.product-card:hover .img1{
  opacity:0;
}

.product-icons{
  position:absolute;
  right:10px;
  top:10px;
  display:flex;
  flex-direction:column;
  gap:8px;
  opacity:0;
  transition:0.3s;
}

.product-icons i{
  background:#fff;
  padding:8px;
  border-radius:50%;
  cursor:pointer;
  box-shadow:0 3px 10px rgba(0,0,0,0.2);
}

.product-card:hover .product-icons{
  opacity:1;
}

.product-info{
  padding:10px;
  border-top: 1px solid #ddd;
  text-align: center;
}

.product-info h6{
  font-size: 18px;
  margin-bottom:5px;
}

.price{
  font-weight:600;
  font-size: 18px;
}

.price span{
  text-decoration:line-through;
  color: #960627;
  margin-left:5px;
}

.product-slider .owl-item{
  padding:10px;
}
.product-icons i:hover{
  background: #960627;
  color: #fff;
}

.product-slider .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  transform: translateY(-50%);
}

.product-slider .owl-nav button {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff !important;
  color: #000 !important;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.product-slider .owl-nav .owl-prev {
  left: -45px;
}

.product-slider .owl-nav .owl-next {
  right: -45px;
}

.product-slider .owl-nav button:hover {
  background: #000 !important;
  color: #fff !important;
}

.usp-strip{
  background:#fff;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
}

.usp-item{
  padding:15px 10px;
  transition:0.3s;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.usp-item i{
  font-size:28px;
  color:#000;
  margin-bottom:8px;
  display:block;
}

.usp-item h6{
  font-size: 20px;
  font-weight:600;
  margin:0;
}

.usp-item p{
  font-size: 14px;
  color: #960627;
  margin:0;
}


.usp-item:hover{
  transform:translateY(-5px);
}


.how-we-work{
  background:#f9f9f9;
}

.process-card{
  background:#fff;
  padding:20px;
  border-radius:12px;
  border:1px solid #eee;
  height:100%;
  transition:0.3s;
  position:relative;
}

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


.process-card .icon{
  width: 55px;
  height: 55px;
  background: #960627;
  color:#fff;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 22px;
}


.process-card .num{
  font-size: 40px;
  font-weight:600;
  color:#999;
}

.process-card h5{
  font-size: 18px;
  margin-bottom:6px;
}


.process-card p{
  font-size: 14px;
  color: #000;
}

.process-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.process-card:hover .icon{
  background: #73021c;
}


.view-all{
  font-size:14px;
  text-decoration:none;
  color:#000;
  font-weight:500;
}

.view-all:hover{
  text-decoration:underline;
}

.badge-sale{
  position:absolute;
  top:10px;
  left:10px;
  background: #960627;
  color:#fff;
  font-size: 14px;
  padding: 2px 10px;
  border-radius:3px;
}

.best-seller{
  background: #ffecf0;
}

.testimonial-section{
  background:#f9f9f9;
}

.testimonial-card{
  background:#fff;
  padding:25px;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  text-align:center;
  height:100%;
}

.review{
  font-size: 16px;
  color: #0d0d0d;
  margin-bottom:15px;
}

.stars{
  color:#ffc107;
  margin-bottom:15px;
}

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

.user img{
  width: 50px !important;
  height:50px;
  border-radius:50%;
}

.user h6{
  margin:0;
  font-size: 16px;
  line-height: normal;
}

.user span{
  font-size: 12px;
  color: #960627;
}

.testimonial-slider .owl-item{
  padding:10px;
}
.cta-section{
  background: url(../../assets/images/cta-bg-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 110px 0;
  position:relative;
  overflow:hidden;
  background-position: center;
}

.cta-content .tagline{
  font-size: 20px;
  color:#555;
  display:block;
  margin-bottom:10px;
}

.cta-content h2{
  font-size: 42px;
  font-weight:700;
  margin-bottom:15px;
}

.cta-content p{
  font-size: 16px;
  color: #181717;
  margin-bottom:20px;
}



.insta-card{
  position:relative;
  overflow:hidden;
  border-radius:8px;
  cursor:pointer;
}

.insta-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  transition:0.4s;
}

.insta-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:0.3s;
}

.insta-overlay i{
  color:#fff;
  font-size:24px;
}

.insta-card:hover img{
  transform:scale(1.1);
}

.insta-card:hover .insta-overlay{
  opacity:1;
}

.client-logos{
      background: #ffecf0;
}


.logo-item{
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #fff;
  border-radius: 5px;
}


.logo-item img{
  max-height: 65px;
  width: auto !important;
  transition:0.3s;
}


.logo-item:hover img{
  opacity:1;
  transform:scale(1.05);
}
.logo-slider .owl-nav {
    display: none;
}

.logo-slider .owl-dots {
    display: none !important;
}
.blog-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.blog-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.blog-content{
  padding:15px;
}

.blog-content h6{
  font-size: 18px;
  margin-bottom:8px;
}

.blog-content p{
  font-size: 13px;
  color:#666;
}

.blog-content a{
  text-decoration:none;
  font-size: 16px;
  font-weight:500;
  color:#000;
}

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


.newsletter-section{
  background:#f8f8f8;
}

.newsletter-box{
  max-width:600px;
  margin:auto;
}

.newsletter-box h2{
  font-weight:600;
  margin-bottom:10px;
}

.newsletter-box p{
  color:#666;
  margin-bottom:20px;
}

.newsletter-form{
  display:flex;
  gap:10px;
}

.newsletter-form input{
  flex:1;
  padding:12px;
  border:1px solid #ddd;
  border-radius:5px;
  outline:none;
}

.newsletter-form button{
  padding:12px 20px;
  background: #960627;
  color:#fff;
  border:none;
  border-radius:5px;
  cursor:pointer;
  transition:0.3s;
}

.newsletter-form button:hover{
  background: #860523;
}

.footer{
  background: #000;
  border-top:1px solid #eee;
  padding-top:50px;
  font-size:14px;
}


.footer-brand{
  font-weight:600;
  margin-bottom:5px;
}

.footer-tag{
  font-size:13px;
  color:#888;
  margin-bottom:10px;
}

.footer-desc{
  font-size: 14px;
  color: #fff;
  line-height:1.6;
}

.footer-social{
  margin-top:15px;
}

.footer-social a{
  display:inline-flex;
  width:36px;
  height:36px;
  align-items:center;
  justify-content:center;
  border: 2px solid #ffffff;
  border-radius:50%;
  margin-right:8px;
  color: #fff;
  transition:0.3s;
}

.footer-social a:hover{
  background: #950627;
  color:#fff;
}


.footer-col h6{
  font-weight:600;
  margin-bottom:15px;
  color: #fff;
  font-size: 22px;
}

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col ul li{
  margin-bottom:8px;
}

.footer-col ul li a{
  text-decoration:none;
  color: #fff;
  font-size: 14px;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color: #960627;
}

.contact-list li{
  color: #fff;
  font-size:13px;
}


.footer-bottom{
  border-top:1px solid #eee;
  margin-top:40px;
  padding:15px 0;
  font-size:13px;
  color: #fff;
}

.footer-credit{
  color:#999;
}
.footer-logo img {
    width: 120px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}
.footer-bottom p {
    margin: 0;
}
.menu-mobile-box{
  display:none;
}
.menu-mobile-box {
    position: fixed;
    bottom: -3px;
    background-color: #fff;
    z-index: 9;
    padding: 0 calc(10px + 28 * (100vw - 320px) / 1600);
    width: 100%;
    border-radius: 0;
    left: 50%;
    transform: translateX(-50%);
}
.menu-mobile-box ul {
    display: flex;
    align-items: center;
}
.menu-mobile-box ul li {
    width: 100%;
}
.menu-mobile-box ul li.active a {
    color: #909477;
    font-weight: 500;
}

.menu-mobile-box ul li a {
    display: grid;
    gap: 4px;
    color: #23232399;
    text-align: center;
    font-size: calc(16px + 2 * (100vw - 320px) / 1600);
    padding-block: calc(12px + 6 * (100vw - 320px) / 1600);
    position: relative;
    z-index: 0;
}
.menu-mobile-box ul li.active a i {
    color: #909477;
}

.menu-mobile-box ul li a i {
    size: calc(20px + (22 - 20) * ((100vw - 320px) / (1920 - 320)));
    color: #23232399;
    margin-inline: auto;
}


/* ===== REVIEW FORM UI ===== */

#commentform {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    max-width: 100%;
    margin-top: 10px;
}


#commentform p {
    margin-bottom: 22px;
}


#commentform label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}


#commentform input[type="text"],
#commentform input[type="email"],
#commentform textarea {
    width: 100%;
    border: 1px solid #dcdcdc;
    background: #fafafa;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 15px;
    transition: 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

#commentform textarea {
    min-height: 180px;
    resize: vertical;
}

#commentform input:focus,
#commentform textarea:focus {
    border-color: #000;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

#commentform .comment-notes {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

#commentform .required {
    color: red;
}


#commentform .comment-form-rating label {
    margin-bottom: 0;
}

#commentform .stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

#commentform .stars a {
    position: relative;
    width: 38px;
    height: 38px;
    font-size: 0;
    text-decoration: none;
    transition: 0.3s ease;
    margin-right: 25px;
}


#commentform .stars a::before {
    content: "★";
    font-size: 34px;
    line-height: 38px;
    color: #d5d5d5;
    position: absolute;
    inset: 0;
    text-align: center;
    transition: 0.3s ease;
}


#commentform .stars:hover a::before {
    color: #d5d5d5;
}

#commentform .stars a:hover::before,
#commentform .stars a:hover ~ a::before {
    color: #ffb400;
}

#commentform .stars.selected a.active::before,
#commentform .stars.selected a.active ~ a::before {
    color: #ffb400;
}


#commentform .comment-form-cookies-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: #666;
}

#commentform .comment-form-cookies-consent input {
    margin-top: 3px;
}

#commentform .submit {
    background: #960627;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

#commentform .submit:hover {
    background: #73021c;
    color: #fff;
    transform: translateY(-2px);
}
ul.page-numbers .page-numbers {
  background: #960627;
  display: block;
  color: #fff;
  text-align: center;
  padding: 6px 12px;
  border-radius: 4px;
}
ul.page-numbers li:not(:last-child) {
  margin-right: 7px;
}
ul.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.page-numbers .page-numbers.current {
  background: #000;
}