﻿/*======================================
  Orfarm - Multipurpose eCommerce Template
======================================*/

:root {
  --tp-ff-body: "Jost", sans-serif;
  --tp-ff-heading: "Quicksand", sans-serif;
  --tp-ff-p: "Jost", sans-serif;
  --tp-schoolbell: "Schoolbell", cursive;
  --tp-common-white: #ffffff;
  --tp-common-black: #000000;
  --tp-heading-primary: #2d2a6e;
  --tp-heading-secondary: #96ae00;
  --tp-grey-1: #f2f2f6;
  --tp-grey-2: #f5f6f8;
  --tp-grey-3: #f5f2ff;
  --tp-grey-4: #fff3ec;
  --tp-grey-5: #ecfbff;
  --tp-grey-6: #feefd0;
  --tp-grey-7: #c4c4c4;
  --tp-grey-8: #f7f7f9;
  --tp-grey-9: #b4dea4;
  --tp-grey-10: #b0afcc;
  --tp-text-body: #4d5574;
  --tp-text-1: #ffb800;
  --tp-text-2: #334763;
  --tp-text-3: #79819c;
  --tp-text-4: #facfd4;
  --tp-text-5: #ffd600;
  --tp-theme-1: #2d2a6e;
  --tp-theme-2: #ea0d42;
  --tp-theme-3: #12b7ce;
  --tp-theme-4: #2d2c6e;
  --tp-theme-5: #d91212;
  --tp-border-1: #e6ebf0;
  --tp-border-2: #acafb7;
  --tp-border-3: #ebeff4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--tp-ff-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--tp-text-1);
  background: var(--tp-common-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--tp-theme-1);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tp-ff-heading);
  color: var(--tp-heading-primary);
  line-height: 1.2;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

/* Theme Background Colors */
.theme-bg-1 {
  background: var(--tp-heading-secondary);
}

/* Header Top Bar */
.header__top {
  color: var(--tp-common-white);
  font-size: 14px;
  padding: 10px 0;
  position: relative;
  z-index: 104;
}

body.has-sticky-header .header__top.header__top {
  display: none !important;
}
.header__top-text {
  font-size: 13px;
  color: var(--tp-common-white);
  letter-spacing: 0.3px;
}

.header__top-left span {
  font-size: 14px;
  color: var(--tp-common-white);
}

.header__top-left span strong {
  font-weight: 700;
  color: var(--tp-theme-1);
}

.header__top-right {
  gap: 20px;
}

.header__top-link {
  display: flex;
  align-items: center;
}

.header__top-link a {
  color: rgba(255, 255, 255, 0.8);
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  line-height: 1;
  transition: color 0.3s ease;
}

.header__top-link a:last-child {
  border-right: none;
  padding-right: 0;
}

.header__top-link a:hover {
  color: var(--tp-theme-1);
}

.header__lang {
  position: relative;
  cursor: pointer;
}

.header__lang-select {
  font-size: 14px;
  color: var(--tp-common-white);
  display: flex;
  align-items: center;
  gap: 5px;
}

.header__lang-select i {
  font-size: 10px;
}

.header__lang-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--tp-common-white);
  min-width: 140px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  border-radius: 6px;
  margin-top: 10px;
}

.header__lang:hover .header__lang-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__lang-submenu li a {
  display: block;
  padding: 6px 20px;
  font-size: 14px;
  color: var(--tp-text-1);
  white-space: nowrap;
}

.header__lang-submenu li a:hover {
  color: var(--tp-theme-1);
}

.header__top-price {
  position: relative;
  cursor: pointer;
}

.header__top-price .current {
  font-size: 14px;
}

.header__top-price .current::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 5px;
  font-size: 10px;
}

.header__top-price .list {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--tp-common-white);
  min-width: 100px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  border-radius: 6px;
  margin-top: 10px;
  max-height: 200px;
  overflow-y: auto;
}

.header__top-price:hover .list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__top-price .list li {
  padding: 5px 20px;
  font-size: 14px;
  color: var(--tp-text-1);
  white-space: nowrap;
  cursor: pointer;
}

.header__top-price .list li:hover,
.header__top-price .list li.selected {
  color: var(--tp-theme-1);
}

/* Header Main Area */
#header-sticky {
  transition: all 0.3s ease;
}

.header__main-area {
  background: var(--tp-common-white);
  position: relative;
  z-index: 103;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

#header-sticky.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  animation: tp-fade-in-down 0.4s ease forwards;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

#header-sticky-2.header-sticky-2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  animation: tp-fade-in-down 0.4s ease forwards;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

@keyframes tp-fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.header__for-megamenu {
  position: relative;
}

.header__logo {
  padding: 20px 0;
}

.header__logo img {
  max-height: 40px;
  transition: transform 0.3s ease;
}

.header__logo a:hover img {
  transform: scale(1.05);
}

/* Main Navigation */
.header__menu.main-menu {
  padding: 0;
}

.header__menu.main-menu nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.header__menu.main-menu nav > ul > li {
  position: relative;
  padding: 0 16px;
}

.header__menu.main-menu nav > ul > li > a {
  font-family: var(--tp-ff-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--tp-heading-primary);
  padding: 27px 0;
  display: block;
  position: relative;
  transition: color 0.3s ease;
}

.header__menu.main-menu nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  height: 2px;
  width: 0;
  background: var(--tp-theme-1);
  transition: width 0.3s ease;
}

.header__menu.main-menu nav > ul > li > a:hover {
  color: var(--tp-theme-1);
}

.header__menu.main-menu nav > ul > li > a:hover::after {
  width: 100%;
}

/* Dropdown Submenu */
.header__menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--tp-common-white);
  min-width: 220px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  border-radius: 6px;
}

.header__menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__menu .sub-menu li a {
  display: block;
  padding: 6px 25px;
  font-size: 14px;
  color: var(--tp-text-1);
}

.header__menu .sub-menu li a:hover {
  color: var(--tp-theme-1);
  padding-left: 30px;
}

/* Mega Menu */
.has-megamenu {
  position: static !important;
}

.has-megamenu .mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--tp-common-white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  display: flex;
  gap: 25px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border-radius: 6px;
  min-width: 700px;
  width: auto;
}

.has-megamenu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.has-megamenu .mega-menu > li {
  flex: 1;
  min-width: 150px;
}

.has-megamenu .mega-menu > li > a {
  font-family: var(--tp-ff-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--tp-heading-primary);
  margin-bottom: 10px;
  display: block;
  padding: 0;
}

.has-megamenu .mega-menu > li > a:hover {
  color: var(--tp-theme-1);
}

.has-megamenu .mega-menu > li ul li a {
  padding: 5px 0;
  font-size: 14px;
  color: var(--tp-text-1);
  display: block;
}

.has-megamenu .mega-menu > li ul li a:hover {
  color: var(--tp-theme-1);
  padding-left: 5px;
}

/* Home Menu Style (image grid) */
.home-menu-style {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 600px;
  padding: 20px !important;
}

.home-menu-style li {
  text-align: center;
}

.home-menu-style li a {
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.home-menu-style li a:hover {
  background: var(--tp-grey-6);
  padding-left: 8px !important;
}

/* Header Info Icons */
.header__info {
  justify-content: flex-end;
}

.header__info a,
.header__info button {
  border: none;
  background: none;
  padding: 0;
}

.header__info a i,
.header__info button i {
  height: 40px;
  width: 40px;
  border-radius: 50px;
  background-color: var(--tp-grey-3);
  text-align: center;
  line-height: 40px;
  color: var(--tp-theme-1);
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header__info a:hover i,
.header__info button:hover i {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.header__info-cart {
  position: relative;
}

.header__info-cart .cart-count {
  position: absolute;
  font-size: 11px;
  background-color: red;
  color: var(--tp-common-white);
  height: 18px;
  width: 18px;
  text-align: center;
  line-height: 18px;
  display: block;
  border-radius: 50px;
  top: -2px;
  right: -3px;
}

/* Color Themes for Icons */
.tpcolor__purple a i {
  background-color: var(--tp-grey-3);
}

.tpcolor__yellow a i {
  background-color: var(--tp-grey-4);
}

.tpcolor__greenish a i {
  background-color: var(--tp-grey-5);
}

.tpcolor__oasis a i,
.tpcolor__oasis button i {
  background-color: var(--tp-grey-6);
}

/* Mobile Header */
#header-sticky-2 {
  background: var(--tp-common-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 103;
  transition: all 0.3s ease;
}

.tpmobile-menu {
  /* padding: 10px 0; */
}

.mobile-menu-icon button {
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--tp-heading-primary);
  padding: 12px 0 12px 15px;
}

.tp-menu-toggle {
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--tp-heading-primary);
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--tp-theme-2);
}

/* Hero Slider */
/* Slider Area - Orfarm Template (Swiper) */
.slider-area {
  position: relative;
  overflow: hidden;
  padding-bottom: 180px;
}
.slider-active.swiper {
  height: 750px;
  position: relative;
}
.slider-active .swiper-wrapper {
  position: relative;
  height: 100%;
}
.slider-active .swiper-slide {
  height: 100%;
}
.tpslider__arrow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  pointer-events: none;
}
.tpslider__arrow button {
  pointer-events: auto;
}

.tpslider {
  height: 750px;
  background-position: bottom;
  background-repeat: repeat;
  background-size: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpslider {
    padding-top: 50px;
    height: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpslider {
    padding-top: 50px;
    height: 550px;
  }
}
@media (max-width: 767px) {
  .tpslider {
    padding-top: 50px;
    height: 700px;
  }
  /* Stop Swiper's fade from collapsing the slide height (reference shows full 700px) */
  .slider-active.swiper,
  .slider-active .swiper-wrapper,
  .slider-active .swiper-slide {
    height: 700px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tpslider {
    padding-top: 50px;
    height: 450px;
  }
  .slider-active.swiper,
  .slider-active .swiper-wrapper,
  .slider-active .swiper-slide {
    height: 450px !important;
  }
}

.tpslider__content:hover .tpslider__shape-fruits1 {
  transform: translateX(15px);
}
.tpslider__content p {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 60px;
}
@media (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tpslider__content p {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tpslider__content p {
    margin-bottom: 20px;
    font-size: 15px;
  }
}
@media (max-width: 767px),
  only screen and (min-width: 576px) and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tpslider__content p br {
    display: none;
  }
}

.tpslider__sub-title {
  font-size: 16px;
  color: var(--tp-heading-secondary);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
}
@media (max-width: 767px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tpslider__sub-title {
    margin-bottom: 20px;
  }
}

.tpslider__title {
  font-weight: 700;
  font-size: 65px;
  color: var(--tp-heading-primary);
  line-height: 1.02;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tpslider__title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpslider__title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpslider__title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .tpslider__title {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tpslider__title {
    margin-bottom: 20px;
    font-size: 27px;
  }
}
@media (max-width: 767px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tpslider__title br {
    display: none;
  }
}

.tpslider__thumb {
  margin-left: 70px;
}
@media (max-width: 767px) {
  .tpslider__thumb {
    padding-top: 50px;
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tpslider__thumb {
    padding-top: 50px;
    margin-left: 0;
  }
}
.tpslider__thumb > img {
  max-width: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tpslider__thumb > img {
    max-width: 310px;
    margin-left: -20px;
  }
}

.tpslider__thumb:hover .three-shap-four,
.tpslider__thumb:hover .three-shap-three,
.tpslider__thumb:hover .three-shap-two,
.tpslider__thumb:hover .tpslider__shape-five,
.tpslider__thumb:hover .tpslider__shape-four,
.tpslider__thumb:hover .tpslider__shape-one,
.tpslider__thumb:hover .tpslider__shape-three,
.tpslider__thumb:hover .tpslider__shape-two {
  transform: translateX(15px);
}

/* Leaf shapes: gentle idle wind-sway, rotate on hover (overrides the translateX above) */
@keyframes leafSway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}
.tpslider__shape-one,
.tpslider__shape-two,
.tpslider__shape-three,
.tpslider__shape-four {
  transform-origin: 50% 100%;
  animation: leafSway 4s ease-in-out infinite;
  transition: transform 0.45s ease;
}
.tpslider__shape-two { animation-duration: 4.6s; animation-delay: 0.4s; }
.tpslider__shape-three { animation-duration: 5s; animation-delay: 0.8s; }
.tpslider__shape-four { animation-duration: 4.3s; animation-delay: 0.2s; }
.tpslider__thumb:hover .tpslider__shape-one { animation: none; transform: rotate(-8deg); }
.tpslider__thumb:hover .tpslider__shape-two { animation: none; transform: rotate(10deg); }
.tpslider__thumb:hover .tpslider__shape-three { animation: none; transform: rotate(-6deg); }
.tpslider__thumb:hover .tpslider__shape-four { animation: none; transform: rotate(8deg); }

@media (prefers-reduced-motion: reduce) {
  .tpslider__shape-one,
  .tpslider__shape-two,
  .tpslider__shape-three,
  .tpslider__shape-four {
    animation: none;
  }
}

.tpslider__shape img {
  position: absolute;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpslider__shape img {
    height: 140px;
    width: 140px;
  }
}

.tpslider__shape-one {
  bottom: -10px;
  left: -325px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tpslider__shape-one {
    left: -190px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpslider__shape-one {
    left: -120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpslider__shape-one {
    bottom: -150px;
    left: -225px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tpslider__shape-one {
    left: -200px;
    bottom: -20px;
    height: 100px;
    width: 120px;
  }
}

.tpslider__shape-two {
  bottom: -111px;
  left: 190px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tpslider__shape-two {
    left: 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpslider__shape-two {
    left: 0;
    bottom: -165px;
    height: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpslider__shape-two {
    left: 90px;
  }
}

.tpslider__shape-three {
  top: 5px;
  left: -45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpslider__shape-three {
    top: -100px;
    left: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpslider__shape-three {
    top: -105px;
    left: 150px;
  }
}

.tpslider__shape-four {
  top: -70px;
  right: -125px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tpslider__shape-four {
    left: -25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpslider__shape-four {
    top: -80px;
    left: -25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpslider__shape-four {
    left: -60px;
  }
}

.tpslider__shape-fruits1 {
  position: absolute;
  left: -250px;
  bottom: -90px;
}
.tpslider__shape-fruits1 img {
  height: 120px;
  width: 120px;
}

.tpslider__five__brand {
  animation: lara 2s linear infinite;
}
.tpslider__five__title {
  font-weight: 700;
  font-size: 64px;
  color: var(--tp-common-white);
}
@media (max-width: 767px) {
  .tpslider__five__title {
    font-size: 42px;
  }
}

.tpslider__five__contact p {
  color: var(--tp-common-white);
  font-size: 16px;
  margin-bottom: 60px;
}

.tpslider__bg6 {
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 650px;
  background-position: 50%;
}

/* Slider Arrows */
.tpsliderarrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100px;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tpsliderarrow {
    bottom: 12%;
    left: 50px;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
  .tpsliderarrow {
    left: 25px;
  }
}

.tpsliderarrow i {
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--tp-heading-secondary);
  border-radius: 50%;
  color: var(--tp-common-white);
  font-size: 18px;
  display: block;
  opacity: 0.5;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tpsliderarrow i {
    height: 40px;
    width: 40px;
    line-height: 40px;
  }
}

.tpsliderarrow i:hover {
  opacity: 1;
}

.tpslider__arrow-nxt {
  left: auto;
  right: 100px;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
  .tpslider__arrow-nxt {
    right: 25px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tpslider__arrow-nxt {
    right: 50px;
  }
}

.tpslider-delay:hover .tpsliderarrow {
  opacity: 1;
  visibility: visible;
}

/* Slide animations */
.tpslider-delay .swiper-slide-active .tpslider__sub-title,
.tpslider-delay .swiper-slide-active .tpslider__title,
.tpslider-delay .swiper-slide-active p,
.tpslider-delay .swiper-slide-active .tpslider__btn,
.tpslider-delay .swiper-slide-active .tpslider__thumb-img,
.tpslider-delay .swiper-slide-active .tpslider__shape-one,
.tpslider-delay .swiper-slide-active .tpslider__shape-two,
.tpslider-delay .swiper-slide-active .tpslider__shape-three,
.tpslider-delay .swiper-slide-active .tpslider__shape-four,
.tpslider-delay .swiper-slide-active .tpslider__five__title,
.tpslider-delay .swiper-slide-active .tpslider__five__contact p,
.tpslider-delay .swiper-slide-active .tpslider__five__btn {
  animation-fill-mode: backwards;
}

.tpslider-delay .swiper-slide-active .tpslider__sub-title {
  animation-name: fadeInDown;
  animation-delay: 0.3s;
  animation-duration: 0.4s;
}
.tpslider-delay .swiper-slide-active .tpslider__title {
  animation-name: fadeInUp;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
}
.tpslider-delay .swiper-slide-active p {
  animation-name: fadeIn;
  animation-delay: 0.7s;
  animation-duration: 0.7s;
}
.tpslider-delay .swiper-slide-active .tpslider__btn {
  animation-name: zoomIn;
  animation-delay: 0.9s;
  animation-duration: 0.6s;
}
.tpslider-delay .swiper-slide-active .tpslider__thumb-img {
  animation-name: fadeInRight;
  animation-delay: 0.2s;
  animation-duration: 0.5s;
}
/* Leaf shapes: idle sway is handled by the base .tpslider__shape-* rule above */
.tpslider-delay .swiper-slide-active .tpslider__five__title {
  animation-delay: 0.7s;
  animation-duration: 0.7s;
}
.tpslider-delay .swiper-slide-active .tpslider__five__contact p {
  animation-delay: 0.8s;
  animation-duration: 0.8s;
}
.tpslider-delay .swiper-slide-active .tpslider__five__btn {
  animation-delay: 0.9s;
  animation-duration: 0.9s;
}

/* Slider hover effects */
.tpslider__thumb-img {
  transition: transform 0.5s ease;
}
.tpslider__thumb:hover .tpslider__thumb-img {
  transform: scale(1.04);
}
.tpsliderarrow i {
  transition: all 0.3s ease;
}
.tpsliderarrow i:hover {
  opacity: 1;
  transform: scale(1.12);
}

/* Pagination */
.slider-pagination {
  position: absolute;
  bottom: 35px !important;
  z-index: 999;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.slider-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--tp-heading-secondary);
  height: 8px !important;
  width: 8px !important;
  border-radius: 50%;
}
.slider-pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  display: inline-block;
  border-radius: 5px;
}

/* Slide Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-45deg) scale(0.7);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

/* Utility Classes */
.grey-bg {
  background: var(--tp-grey-8);
}
.grey-bg-2 {
  background: var(--tp-grey-1);
}
.pt-90 {
  padding-top: 90px;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-40 {
  padding-bottom: 40px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-15 {
  padding-top: 15px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-15 {
  margin-bottom: 15px;
}
.p-relative {
  position: relative;
}
.fix {
  overflow: hidden;
}
.pointer {
  cursor: pointer;
}
@media (min-width: 1400px) {
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-none {
    display: none !important;
  }
}

/* Categories */
.category__item {
  text-align: center;
  background-color: var(--tp-common-white);
  border-radius: 10px;
  padding: 30px 10px 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.category__thumb {
  display: inline-block;
  /* border-radius: 50%; */
}
.category__thumb img {
  height: 80px;
  width: 80px;
  /* border-radius: 50%; */
}
.category__title {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.1;
  color: var(--tp-heading-primary);
  margin-bottom: 0;
  font-family: var(--tp-ff-body);
}
.category__title a:hover {
  color: var(--tp-heading-secondary);
}
.category__count {
  font-weight: 400;
  font-size: 13px;
  color: var(--tp-text-body);
  display: none; /* ponytail: hidden on desktop, shown in mobile media query to match reference */
}

/* Category card hover effects */
.category__item {
  transition: box-shadow 0.3s ease;
}
.category__item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.category__thumb {
  transition: transform 0.3s ease;
}
.category__item:hover .category__thumb {
  transform: scale(1.08);
}

.category-area .swiper-wrapper {
  justify-content: flex-start;
}
.category-area .swiper-slide {
  width: auto;
  height: auto;
}

/* Category entrance animations — play per item when scrolled into view */
.category-area .category__item,
.category-area .category__thumb img,
.category-area .category__title {
  opacity: 0;
}
.category-area .category__item.in-view {
  animation: fadeInUp 0.5s both;
}
.category-area .category__item.in-view .category__thumb img {
  animation: zoomIn 0.5s both;
  animation-delay: 0.25s;
}
.category-area .category__item.in-view .category__title {
  animation: fadeInLeft 0.5s both;
  animation-delay: 0.35s;
}

@media (prefers-reduced-motion: reduce) {
  .category-area .category__item,
  .category-area .category__thumb img,
  .category-area .category__title {
    animation: none;
    opacity: 1;
  }
}

/* Theme Button */
.tp-btn {
  background-color: var(--tp-heading-secondary);
  text-align: center;
  color: var(--tp-common-white);
  font-weight: 600;
  border-radius: 50px;
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  padding: 13px 53px;
  transition: all 0.3s ease-out 0s;
}
.tp-btn:hover {
  background-color: var(--tp-heading-primary);
  color: var(--tp-common-white);
}

/* Section Title */
.tp-section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.tp-section-subtitle {
  font-family: var(--tp-schoolbell);
  font-size: 18px;
  color: var(--tp-theme-1);
  display: block;
  margin-bottom: 10px;
}

.tp-section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--tp-heading-primary);
  margin-bottom: 15px;
}

.tp-section-text {
  font-size: 16px;
  color: var(--tp-text-1);
  max-width: 550px;
  margin: 0 auto;
}

/* Special Products */
.tp-special-area {
  padding: 80px 0;
  background: var(--tp-grey-6);
}

/* Special products entrance animations — play per element when scrolled into view */
.tp-special-area .tp-section-subtitle,
.tp-special-area .tp-section-title,
.tp-special-area .tp-section-text,
.tp-special-area .tp-special-item,
.tp-special-area .tp-special-thumb img,
.tp-special-area .tp-special-title,
.tp-special-area .tp-special-add {
  opacity: 0;
}
.tp-special-area .tp-section-subtitle.in-view { animation: fadeInDown 0.5s both; animation-delay: 0.05s; }
.tp-special-area .tp-section-title.in-view { animation: fadeInDown 0.5s both; animation-delay: 0.15s; }
.tp-special-area .tp-section-text.in-view { animation: fadeInDown 0.5s both; animation-delay: 0.25s; }

.tp-special-area .tp-special-item.in-view { animation: fadeInUp 0.6s both; }
.tp-special-area .tp-special-item.in-view .tp-special-thumb > img:first-child {
  opacity: 1;
  animation: zoomIn 0.5s backwards;
  animation-delay: 0.25s;
}
.tp-special-area .tp-special-item.in-view .tp-special-title {
  animation: fadeInLeft 0.5s both;
  animation-delay: 0.35s;
}
.tp-special-area .tp-special-item.in-view .tp-special-add {
  animation: zoomIn 0.5s both;
  animation-delay: 0.45s;
}

@media (prefers-reduced-motion: reduce) {
  .tp-special-area .tp-section-subtitle,
  .tp-special-area .tp-section-title,
  .tp-special-area .tp-section-text,
  .tp-special-area .tp-special-item,
  .tp-special-area .tp-special-thumb img,
  .tp-special-area .tp-special-title,
  .tp-special-area .tp-special-add {
    animation: none;
    opacity: 1;
  }
}

.tp-special-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.tp-special-item {
  display: flex;
  background: var(--tp-common-white);
  border-radius: 12px;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--tp-border-5);
  transition: all 0.3s ease;
}

.tp-special-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--tp-theme-1);
}

.tp-special-thumb {
  width: 200px;
  min-height: 200px;
  flex-shrink: 0;
  margin-right: 25px;
  position: relative;
}

.tp-special-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.tp-special-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.tp-special-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f2277e;
  color: var(--tp-common-white);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}

.tp-special-thumb .tp-product-thumb-nav {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.tp-special-thumb .tp-product-thumb-nav img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--tp-border-5);
}

.tp-special-thumb .tp-product-thumb-nav img.active {
  border-color: var(--tp-theme-1);
}

.tp-special-thumb > img:first-child {
  height: 200px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tp-special-area .tp-special-item:hover .tp-special-thumb > img:first-child {
  opacity: 0;
  transform: scale(1.06);
}

.tp-special-thumb img.tp-special-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.06);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
  pointer-events: none;
  z-index: 1;
}

.tp-special-item:hover .tp-special-thumb img.tp-special-hover {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s, 0s, 0s;
}

.tp-special-content {
  flex: 1;
}

.tp-special-category {
  font-size: 13px;
  color: #d14d7a;
  margin-bottom: 8px;
  display: block;
}

.tp-special-category a {
  color: #d14d7a;
}

.tp-special-category a:hover {
  color: var(--tp-theme-1);
}

.tp-special-title {
  font-family: var(--tp-ff-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--tp-heading-primary);
  margin-bottom: 12px;
  display: block;
}

.tp-special-title:hover {
  color: var(--tp-theme-1);
}

.tp-special-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--tp-heading-primary);
  margin-bottom: 15px;
}

.tp-special-price .old-price {
  font-size: 16px;
  color: var(--tp-text-4);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 8px;
}

.tp-special-add {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tp-special-add:hover {
  background: var(--tp-theme-2);
  color: var(--tp-common-white);
}

.tp-special-bottom {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--tp-border-5);
}

.tp-special-bottom p {
  font-size: 13px;
  color: #d14d7a;
  margin-bottom: 3px;
}

/* Feature Organic Section */
.tp-feature-area {
  padding: 80px 0;
  position: relative;
  background: #effaf3;
  overflow: hidden;
}

.tp-feature-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.tp-feature-thumb {
  flex: 0 0 45%;
  position: relative;
}

.tp-feature-thumb img {
  width: 100%;
  border-radius: 12px;
}

.tp-feature-shape {
  position: absolute;
  z-index: 0;
}

.tp-feature-shape-1 {
  top: -30px;
  left: -30px;
  animation: float 4s ease-in-out infinite;
}

.tp-feature-shape-2 {
  bottom: -30px;
  right: -30px;
  animation: float 5s ease-in-out infinite 0.5s;
}

.tp-feature-shape-3 {
  top: 50%;
  right: -50px;
  animation: float 3.5s ease-in-out infinite 1s;
}

.tp-feature-content {
  flex: 1;
}

.tp-feature-content .tp-section-subtitle {
  text-align: left;
}

.tp-feature-content .tp-section-title {
  text-align: left;
  font-size: 42px;
  margin-bottom: 20px;
}

.tp-feature-content .tp-section-text {
  text-align: left;
  margin: 0 0 30px;
}

.tp-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.tp-feature-list-item {
  background: var(--tp-common-white);
  padding: 20px;
  border-radius: 10px;
}

.tp-feature-list-item h5 {
  font-family: var(--tp-ff-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-heading-primary);
  margin-bottom: 5px;
}

.tp-feature-list-item span {
  font-size: 14px;
  color: var(--tp-text-4);
}

.tp-feature-list-item a {
  color: var(--tp-theme-1);
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
}

.tp-feature-list-item a:hover {
  color: var(--tp-theme-2);
}

/* Promo Banners */
.tp-banner-area {
  padding: 80px 0;
}

.tp-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tp-banner-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  align-items: center;
  padding: 40px;
  background-size: cover;
  background-position: center;
}

.tp-banner-content h5 {
  font-family: var(--tp-schoolbell);
  font-size: 16px;
  color: var(--tp-theme-1);
  margin-bottom: 8px;
}

.tp-banner-content h3 {
  font-family: var(--tp-ff-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--tp-heading-primary);
  margin-bottom: 8px;
}

.tp-banner-content p {
  font-size: 14px;
  color: var(--tp-text-1);
  margin-bottom: 15px;
}

.tp-banner-btn {
  color: var(--tp-theme-1);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.tp-banner-btn:hover {
  color: var(--tp-theme-2);
}

/* Products Tab Area */
.tp-product-area {
  padding: 80px 0;
}

.tp-product-tab-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tp-product-tab-btn {
  padding: 10px 25px;
  border-radius: 25px;
  border: 1px solid var(--tp-border-5);
  background: var(--tp-common-white);
  font-size: 15px;
  font-weight: 500;
  color: var(--tp-text-1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tp-product-tab-btn.active,
.tp-product-tab-btn:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-1);
}

.tp-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.tp-product-item {
  background: var(--tp-common-white);
  border: 1px solid var(--tp-border-5);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tp-product-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.tp-product-thumb {
  position: relative;
  overflow: hidden;
}

.tp-product-thumb > img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.tp-product-thumb-nav {
  display: flex;
  gap: 5px;
  justify-content: center;
  padding: 10px;
}

.tp-product-thumb-nav img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--tp-border-5);
}

.tp-product-thumb-nav img.active {
  border-color: var(--tp-theme-1);
}

.tp-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f2277e;
  color: var(--tp-common-white);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}

.tp-product-content {
  padding: 20px;
}

.tp-product-category {
  font-size: 13px;
  color: var(--tp-text-4);
  margin-bottom: 6px;
}

.tp-product-category a {
  color: var(--tp-text-4);
}

.tp-product-category a:hover {
  color: var(--tp-theme-1);
}

.tp-product-title {
  font-family: var(--tp-ff-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-heading-primary);
  margin-bottom: 10px;
  display: block;
  line-height: 1.4;
}

.tp-product-title:hover {
  color: var(--tp-theme-1);
}

.tp-product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--tp-heading-primary);
}

.tp-product-price .old-price {
  font-size: 14px;
  color: var(--tp-text-4);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 5px;
}

.tp-product-add {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  padding: 10px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.tp-product-add:hover {
  background: var(--tp-theme-2);
}

/* Deals Section */
.tp-deals-area {
  padding: 80px 0;
  background: #effaf3;
  position: relative;
  overflow: hidden;
}

.tp-deals-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.tp-deals-content {
  flex: 1;
}

.tp-deals-content .tp-section-subtitle {
  text-align: left;
}

.tp-deals-content .tp-section-title {
  text-align: left;
  font-size: 42px;
}

.tp-deals-content .tp-section-text {
  text-align: left;
  margin: 0 0 30px;
}

.tp-deals-timer {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.tp-deals-timer-item {
  background: var(--tp-common-white);
  width: 80px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tp-deals-timer-item .number {
  font-family: var(--tp-ff-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--tp-heading-primary);
  line-height: 1;
}

.tp-deals-timer-item .label {
  font-size: 12px;
  color: var(--tp-text-4);
  text-transform: uppercase;
}

.tp-deals-btns {
  display: flex;
  gap: 15px;
}

.tp-deals-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tp-deals-btn:hover {
  background: var(--tp-theme-2);
  color: var(--tp-common-white);
}

.tp-deals-btn-border {
  background: transparent;
  color: var(--tp-heading-primary);
  border: 1px solid var(--tp-border-1);
}

.tp-deals-btn-border:hover {
  background: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.tp-deals-shape {
  position: absolute;
  z-index: 0;
}

.tp-deals-shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Blog Section */
/* Blog Slider (Swiper) */
.blog-area {
  padding: 100px 0;
}

.tpblog__item:hover .tpblog__thumb img {
  transform: scale(1.05);
}
.tpblog__thumb {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.tpblog__thumb img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 1s ease-out 0s;
}
.tpblog__wrapper {
  border-radius: 0 0 10px 10px;
  background-color: var(--tp-common-white);
  padding: 20px 28px 20px 30px;
}
@media (max-width: 767px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tpblog__wrapper {
    padding: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tpblog__wrapper {
    padding: 20px 15px;
  }
}
.tpblog__entry-wap span {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 8px;
  padding-right: 10px;
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 1400px) and (max-width: 1600px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tpblog__entry-wap span {
    margin-right: 4px;
    padding-right: 7px;
  }
}
.tpblog__entry-wap span:last-child {
  margin-right: 0;
  padding-right: 0;
}
.tpblog__entry-wap span::after {
  position: absolute;
  content: "";
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background-color: #cfd4de;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.tpblog__entry-wap span:last-child::after {
  display: none;
}
.tpblog__entry-wap .author-by a,
.tpblog__entry-wap .post-data a {
  color: var(--tp-text-body);
}
.tpblog__entry-wap .cat-links,
.tpblog__entry-wap span a:hover {
  color: var(--tp-heading-secondary);
}
.tpblog__wrapper p {
  margin-bottom: 25px;
  font-size: 16px;
  color: var(--tp-text-body);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tpblog__wrapper p {
    margin-bottom: 15px;
  }
}
.tpblog__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--tp-theme-1);
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  word-break: break-word;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tpblog__title {
    font-size: 16px;
  }
}
.tpblog__title a {
  color: inherit;
}
.tpblog__details,
.tpblog__title a:hover {
  color: var(--tp-heading-secondary);
}
.tpblog__details {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
}
.tpblog__details a {
  display: flex;
  align-items: center;
}
.tpblog__details a:hover i {
  opacity: 1;
  visibility: visible;
  animation: shakenext 1s ease infinite;
}
.tpblog__details a i {
  display: inline-block;
  font-size: 16px;
  margin-left: 3px;
  opacity: 0;
  visibility: hidden;
}
@keyframes shakenext {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

/* ========== Template Feature Organic ========== */
.product-feature-area .tpfeature__thumb {
  text-align: right;
  margin-right: -16px;
}
.product-feature-area .tpfeature__thumb img {
  max-width: 100%;
  border-radius: 16px;
  transition: transform 0.45s ease-out, box-shadow 0.45s ease-out;
}
.product-feature-area .tpfeature__thumb img:hover {
  transform: translateY(-8px) scale(1.03);
}

/* Feature Organic entrance animations — play per element when scrolled into view */
.product-feature-area .tpfeature__thumb,
.product-feature-area .tpfeature__content .tpsection__sub-title,
.product-feature-area .tpfeature__content .tpfeature__title,
.product-feature-area .tpfeature__content p,
.product-feature-area .tpfeature__product-item,
.product-feature-area .tpfeature__btn,
.product-feature-area .tpfeature__shape-one,
.product-feature-area .tpfeature__shape-two,
.product-feature-area .tpfeature__shape-three {
  opacity: 0;
}
.product-feature-area .tpfeature__thumb.in-view { animation: fadeInLeft 0.6s both; }
.product-feature-area .tpfeature__content.in-view .tpsection__sub-title { animation: fadeInDown 0.5s both; animation-delay: 0.1s; }
.product-feature-area .tpfeature__content.in-view .tpfeature__title { animation: fadeInUp 0.5s both; animation-delay: 0.2s; }
.product-feature-area .tpfeature__content.in-view p { animation: fadeIn 0.5s both; animation-delay: 0.3s; }
.product-feature-area .tpfeature__product-item.in-view { animation: fadeInUp 0.5s backwards; opacity: 1; }
.product-feature-area .tpfeature__box .tpfeature__product-item:nth-child(1).in-view { animation-delay: 0s; }
.product-feature-area .tpfeature__box .tpfeature__product-item:nth-child(2).in-view { animation-delay: 0.12s; }
.product-feature-area .tpfeature__btn.in-view { animation: zoomIn 0.5s both; animation-delay: 0.2s; }
.product-feature-area .tpfeature__shape-one.in-view { animation: zoomIn 0.6s backwards; opacity: 1; }
.product-feature-area .tpfeature__shape-two.in-view { animation: fadeInRight 0.6s backwards; opacity: 1; }
.product-feature-area .tpfeature__shape-three.in-view { animation: rotateIn 0.7s backwards; opacity: 1; }

/* Feature Organic hover interactions */
.product-feature-area .tpfeature__product-item:hover {
  transform: translateY(-6px);
}
.product-feature-area .tpfeature__product-title a {
  transition: color 0.3s ease-out;
}
.product-feature-area .tpfeature__product-title a:hover {
  color: var(--tp-theme-1);
}
.product-feature-area .tpfeature__product-item:hover .tpfeature__product-title {
  border-bottom-color: var(--tp-theme-1);
}
.product-feature-area .tpfeature__btn a {
  transition: color 0.3s ease-out, transform 0.3s ease-out;
}
.product-feature-area .tpfeature__btn a:hover {
  color: var(--tp-theme-1);
  transform: translateX(5px);
}
.swiper.swiper-container.tpproduct-active.tpslider-bottom.p-relative.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    padding-top: 8px;
}
img.tpcoundown__shape-four.in-view {
    height: auto;
    width: 320px;
    top: 154px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  img.tpcoundown__shape-four.in-view {
    width: 280px;
            top: 178px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  img.tpcoundown__shape-four.in-view {
    width: 240px;
  }
}
@media (max-width: 991px) {
  img.tpcoundown__shape-four.in-view {
        width: 200px;
        right: -31px;
        top: 257px;
  }
}
@media (max-width: 575px) {
  img.tpcoundown__shape-four.in-view {
    width: 162px;
        right: 0px;
        top: 0px;
  }
}
.product-feature-area .tpfeature__btn a i.fa-arrow-right {
  display: inline-block;
  transition: transform 0.3s ease-out;
}
.product-feature-area .tpfeature__btn a:hover i.fa-arrow-right {
  transform: translateX(4px);
}
.product-feature-area .tpfeature__shape-one,
.product-feature-area .tpfeature__shape-two,
.product-feature-area .tpfeature__shape-three {
  transition: transform 0.5s ease-out;
  will-change: transform;
}
@keyframes tpShapeFloatA {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-9px, -7px) rotate(-8deg); }
}
@keyframes tpShapeFloatB {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(9px, -7px) rotate(8deg); }
}
@keyframes tpShapeFloatC {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(0, -9px) rotate(-6deg); }
}
.product-feature-area:hover .tpfeature__shape-one {
  animation: tpShapeFloatA 2.6s ease-in-out infinite;
}
.product-feature-area:hover .tpfeature__shape-two {
  animation: tpShapeFloatB 3s ease-in-out infinite;
}
.product-feature-area:hover .tpfeature__shape-three {
  animation: tpShapeFloatC 3.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .product-feature-area .tpfeature__thumb,
  .product-feature-area .tpfeature__content .tpsection__sub-title,
  .product-feature-area .tpfeature__content .tpfeature__title,
  .product-feature-area .tpfeature__content p,
  .product-feature-area .tpfeature__product-item,
  .product-feature-area .tpfeature__btn,
  .product-feature-area .tpfeature__shape-one,
  .product-feature-area .tpfeature__shape-two,
  .product-feature-area .tpfeature__shape-three {
    animation: none;
    opacity: 1;
  }
  .product-feature-area .tpfeature__shape-one,
  .product-feature-area .tpfeature__shape-two,
  .product-feature-area .tpfeature__shape-three,
  .product-feature-area .tpfeature__btn a i.fa-arrow-right {
    transition: none;
  }
  .product-feature-area:hover .tpfeature__shape-one,
  .product-feature-area:hover .tpfeature__shape-two,
  .product-feature-area:hover .tpfeature__shape-three {
    animation: none;
    transform: none;
  }
}

/* Banner (promo) entrance animations — play per card when scrolled into view */
.banner-area .tpbanner__item,
.banner-area .tpbanner__sub-title,
.banner-area .tpbanner__title,
.banner-area .tpbanner__content p {
  opacity: 0;
}
.banner-area .tpbanner__item.in-view { animation: fadeInUp 0.6s both; }
.banner-area .row > .col-lg-4:nth-child(1) .tpbanner__item.in-view { animation-delay: 0s; }
.banner-area .row > .col-lg-4:nth-child(2) .tpbanner__item.in-view { animation-delay: 0.1s; }
.banner-area .row > .col-lg-4:nth-child(3) .tpbanner__item.in-view { animation-delay: 0.2s; }
.banner-area .tpbanner__item.in-view .tpbanner__sub-title { animation: fadeInDown 0.5s both; animation-delay: 0.15s; }
.banner-area .tpbanner__item.in-view .tpbanner__title { animation: fadeInUp 0.5s both; animation-delay: 0.25s; }
.banner-area .tpbanner__item.in-view .tpbanner__content p { animation: fadeIn 0.5s both; animation-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  .banner-area .tpbanner__item,
  .banner-area .tpbanner__sub-title,
  .banner-area .tpbanner__title,
  .banner-area .tpbanner__content p {
    animation: none;
    opacity: 1;
  }
}

/* Weekly products entrance animations — play when scrolled into view */
.weekly-product-area .tpsection__sub-title,
.weekly-product-area .tpsection__title,
.weekly-product-area .tpnavtab__area .nav-tabs,
.weekly-product-area .swiper-slide .tpproduct,
.weekly-product-area .tpproduct__all-item {
  opacity: 0;
}
.weekly-product-area .tpsection.in-view .tpsection__sub-title { animation: fadeInDown 0.5s both; }
.weekly-product-area .tpsection.in-view .tpsection__title { animation: fadeInUp 0.5s both; animation-delay: 0.1s; }
.weekly-product-area .tpnavtab__area .nav-tabs.in-view { animation: fadeIn 0.5s both; animation-delay: 0.2s; }
.weekly-product-area .swiper-slide .tpproduct.in-view { animation: fadeInUp 0.5s both; }
.weekly-product-area .swiper-wrapper > .swiper-slide:nth-child(1) .tpproduct.in-view { animation-delay: 0s; }
.weekly-product-area .swiper-wrapper > .swiper-slide:nth-child(2) .tpproduct.in-view { animation-delay: 0.08s; }
.weekly-product-area .swiper-wrapper > .swiper-slide:nth-child(3) .tpproduct.in-view { animation-delay: 0.16s; }
.weekly-product-area .swiper-wrapper > .swiper-slide:nth-child(4) .tpproduct.in-view { animation-delay: 0.24s; }
.weekly-product-area .swiper-wrapper > .swiper-slide:nth-child(5) .tpproduct.in-view { animation-delay: 0.32s; }
.weekly-product-area .swiper-wrapper > .swiper-slide:nth-child(6) .tpproduct.in-view { animation-delay: 0.4s; }
.weekly-product-area .tpproduct__all-item.in-view { animation: fadeIn 0.5s both; animation-delay: 0.1s; }

/* Weekly product area — hover interactions */
.weekly-product-area .tpsection__sub-title {
  transition: letter-spacing 0.35s ease;
}
.weekly-product-area .tpsection__sub-title:hover {
  letter-spacing: 1.5px;
}

.weekly-product-area .tpsection__title {
  transition: color 0.35s ease, transform 0.35s ease;
}
.weekly-product-area .tpsection__title:hover {
  color: var(--tp-heading-secondary);
  transform: translateY(-4px);
}

.weekly-product-area .tpnavtab__area nav .nav-link {
  border-radius: 30px;
}
.weekly-product-area .tpnavtab__area nav .nav-link:hover {
  background-color: var(--tp-heading-secondary);
  color: var(--tp-common-white);
  padding-left: 26px;
  padding-right: 26px;
}

.weekly-product-area .tpproduct {
  transition: all 0.3s ease-out 0s;
}
.weekly-product-area .tpproduct:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(61, 110, 168, 0.16);
}

.weekly-product-area .tpproduct__thumb > a:first-child img {
  transition: transform 0.4s ease;
}
.weekly-product-area .tpproduct:hover .tpproduct__thumb > a:first-child img {
  transform: scale(1.06);
}

.weekly-product-area .tpproduct__arrow .tpprduct-arrow a,
.weekly-product-area .tpproduct-btn a {
  transition: all 0.3s ease-out 0s;
}
.weekly-product-area .tpproduct__arrow .tpprduct-arrow a:hover,
.weekly-product-area .tpproduct-btn a:hover {
  transform: scale(1.12);
}

.product-area .tpproduct-active .swiper-wrapper {
  align-items: stretch;
}
.product-area .tpproduct-active .swiper-slide {
  height: auto;
}
.product-area .tpproduct {
  background-color: var(--tp-common-white);
  border: 1px solid var(--tp-grey-7);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  height: 100%;
}
.product-area .tpproduct:hover {
  transform: translateY(-6px);
  z-index: 2;
  border-color: var(--tp-heading-secondary);
  border-bottom-color: transparent;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 18px 36px rgba(61, 110, 168, 0.16);
}
.product-area .tpproduct__hover-text {
  left: -1px;
  right: -1px;
  margin-top: -1px;
}
.weekly-product-area .tpproduct__all-item a i {
  display: inline-block;
  transition: transform 0.3s ease;
}
.weekly-product-area .tpproduct__all-item a:hover i {
  transform: translateX(5px);
}

@media (prefers-reduced-motion: reduce) {
  .weekly-product-area .tpsection__sub-title,
  .weekly-product-area .tpsection__title,
  .weekly-product-area .tpnavtab__area .nav-tabs,
  .weekly-product-area .swiper-slide .tpproduct,
  .weekly-product-area .tpproduct__all-item {
    animation: none;
    opacity: 1;
  }
}

/* Deals of the day entrance animations — play when scrolled into view */
.product-coundown-area .section__sub-title,
.product-coundown-area .section__title,
.product-coundown-area .section__content p,
.product-coundown-area .tpcoundown__count-title,
.product-coundown-area .tpcoundown__countdown,
.product-coundown-area .tpcoundown__btn,
.product-coundown-area .tpcoundown__shape-one,
.product-coundown-area .tpcoundown__shape-two,
.product-coundown-area .tpcoundown__shape-three,
.product-coundown-area .tpcoundown__shape-four {
  opacity: 0;
}
.product-coundown-area .section__content.in-view .section__sub-title { animation: fadeInDown 0.5s both; }
.product-coundown-area .section__content.in-view .section__title { animation: fadeInUp 0.5s both; animation-delay: 0.1s; }
.product-coundown-area .section__content.in-view p { animation: fadeIn 0.5s both; animation-delay: 0.2s; }
.product-coundown-area .tpcoundown__count.in-view .tpcoundown__count-title { animation: fadeInDown 0.5s both; animation-delay: 0.1s; }
.product-coundown-area .tpcoundown__count.in-view .tpcoundown__countdown { animation: fadeIn 0.5s both; animation-delay: 0.2s; }
.product-coundown-area .tpcoundown__count.in-view .tpcoundown__btn { animation: zoomIn 0.5s both; animation-delay: 0.3s; }
.product-coundown-area .tpcoundown__shape-one.in-view { animation: zoomIn 0.6s both; }
.product-coundown-area .tpcoundown__shape-two.in-view { animation: fadeInRight 0.6s both; }
.product-coundown-area .tpcoundown__shape-three.in-view { animation: rotateIn 0.7s both; }
.product-coundown-area .tpcoundown__shape-four.in-view { opacity: 1; animation: tpbounce 1.8s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .product-coundown-area .section__sub-title,
  .product-coundown-area .section__title,
  .product-coundown-area .section__content p,
  .product-coundown-area .tpcoundown__count-title,
  .product-coundown-area .tpcoundown__countdown,
  .product-coundown-area .tpcoundown__btn,
  .product-coundown-area .tpcoundown__shape-one,
  .product-coundown-area .tpcoundown__shape-two,
  .product-coundown-area .tpcoundown__shape-three,
  .product-coundown-area .tpcoundown__shape-four {
    animation: none;
    opacity: 1;
  }
}

/* Deals of the day — hover interactions */
.product-coundown-area .section__title {
  transition: color 0.35s ease, transform 0.35s ease;
}
.product-coundown-area .section__title:hover {
  color: #ffb800;
  transform: translateY(-4px);
}

.product-coundown-area .section__sub-title {
  transition: letter-spacing 0.35s ease, opacity 0.35s ease;
}
.product-coundown-area .section__sub-title:hover {
  letter-spacing: 1.5px;
  opacity: 0.85;
}

.product-coundown-area .tpcoundown__count-title {
  transition: letter-spacing 0.35s ease, transform 0.35s ease;
}
.product-coundown-area .tpcoundown__count-title:hover {
  letter-spacing: 1px;
  transform: translateX(6px);
}

.product-coundown-area .tpcoundown__countdown span {
  transition: transform 0.3s ease;
}
.product-coundown-area .tpcoundown__countdown span:hover {
  transform: translateY(-6px);
}
.product-coundown-area .tpcoundown__countdown span:hover .time-count {
  color: #ffb800;
}

.product-coundown-area .whight-btn,
.product-coundown-area .border-btn {
  transition: all 0.3s ease-out 0s;
}
.product-coundown-area .whight-btn:hover,
.product-coundown-area .border-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(29, 29, 54, 0.22);
}

.product-coundown-area .tpcoundown__shape img {
  transition: transform 0.4s ease, filter 0.4s ease;
}
.product-coundown-area .tpcoundown__shape img:hover {
  filter: drop-shadow(0 10px 16px rgba(29, 29, 54, 0.25));
}

/* Blog entrance animations — play when scrolled into view */
.blog-area .tpsection__sub-title,
.blog-area .tpsection__title,
.blog-area .tpsection p,
.blog-area .swiper-slide .tpblog__item {
  opacity: 0;
}
.blog-area .tpsection.in-view .tpsection__sub-title { animation: fadeInDown 0.5s both; }
.blog-area .tpsection.in-view .tpsection__title { animation: fadeInUp 0.5s both; animation-delay: 0.1s; }
.blog-area .tpsection.in-view p { animation: fadeIn 0.5s both; animation-delay: 0.2s; }
.blog-area .swiper-slide .tpblog__item.in-view { animation: fadeInUp 0.5s both; }
.blog-area .swiper-wrapper > .swiper-slide:nth-child(1) .tpblog__item.in-view { animation-delay: 0s; }
.blog-area .swiper-wrapper > .swiper-slide:nth-child(2) .tpblog__item.in-view { animation-delay: 0.08s; }
.blog-area .swiper-wrapper > .swiper-slide:nth-child(3) .tpblog__item.in-view { animation-delay: 0.16s; }
.blog-area .swiper-wrapper > .swiper-slide:nth-child(4) .tpblog__item.in-view { animation-delay: 0.24s; }
.blog-area .swiper-wrapper > .swiper-slide:nth-child(5) .tpblog__item.in-view { animation-delay: 0.32s; }
.blog-area .swiper-wrapper > .swiper-slide:nth-child(6) .tpblog__item.in-view { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .blog-area .tpsection__sub-title,
  .blog-area .tpsection__title,
  .blog-area .tpsection p,
  .blog-area .swiper-slide .tpblog__item {
    animation: none;
    opacity: 1;
  }
}

/* Main feature (footer) entrance animations — play when scrolled into view */
.feature-area .mainfeature__item,
.feature-area .mainfeature__icon,
.feature-area .mainfeature__title,
.feature-area .mainfeature__content p {
  opacity: 0;
}
.feature-area .mainfeature__item.in-view { animation: fadeInUp 0.5s both; }
.feature-area .row-cols-lg-5 .col:nth-child(1) .mainfeature__item.in-view { animation-delay: 0s; }
.feature-area .row-cols-lg-5 .col:nth-child(2) .mainfeature__item.in-view { animation-delay: 0.08s; }
.feature-area .row-cols-lg-5 .col:nth-child(3) .mainfeature__item.in-view { animation-delay: 0.16s; }
.feature-area .row-cols-lg-5 .col:nth-child(4) .mainfeature__item.in-view { animation-delay: 0.24s; }
.feature-area .row-cols-lg-5 .col:nth-child(5) .mainfeature__item.in-view { animation-delay: 0.32s; }
.feature-area .mainfeature__item.in-view .mainfeature__icon { animation: zoomIn 0.5s both; animation-delay: 0.1s; }
.feature-area .mainfeature__item.in-view .mainfeature__title { animation: fadeInUp 0.5s both; animation-delay: 0.2s; }
.feature-area .mainfeature__item.in-view .mainfeature__content p { animation: fadeIn 0.5s both; animation-delay: 0.3s; }

/* Feature bar — hover interactions */
.feature-area .mainfeature__item {
  position: relative;
  padding: 12px 10px;
  border-radius: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-area .mainfeature__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background-color: #ffb800;
  transform: translateX(-50%);
  transition: width 0.35s ease;
}
.feature-area .mainfeature__item:hover {
  transform: translateY(-6px);
}
.feature-area .mainfeature__item:hover::after {
  width: 40px;
}
.feature-area .mainfeature__icon img {
  transition: filter 0.3s ease;
}
.feature-area .mainfeature__item:hover .mainfeature__icon img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25)) brightness(1.15);
}
.feature-area .mainfeature__title {
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.feature-area .mainfeature__item:hover .mainfeature__title {
  color: #ffb800;
  letter-spacing: 1px;
}
.feature-area .mainfeature__content p {
  transition: color 0.3s ease;
}
.feature-area .mainfeature__item:hover .mainfeature__content p {
  color: var(--tp-common-white);
}

@media (prefers-reduced-motion: reduce) {
  .feature-area .mainfeature__item,
  .feature-area .mainfeature__icon,
  .feature-area .mainfeature__title,
  .feature-area .mainfeature__content p {
    animation: none;
    opacity: 1;
  }
}
.tpfeature__title {
  font-size: 40px;
  line-height: 1.1;
}
.tpfeature__title span {
  color: var(--tp-heading-secondary);
}
.tpfeature__product-title {
  font-family: var(--tp-ff-body);
  color: var(--tp-heading-primary);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 20px;
  padding: 0 0 5px;
  border-bottom: 1px dashed #c2c2d3;
}
.tpfeature__product-info {
  font-size: 16px;
  color: var(--tp-text-body);
}
.tpfeature__product-item {
  margin-bottom: 20px;
  position: relative;
  padding-left: 16px;
  transition: transform 0.3s ease-out;
}
.tpfeature__product-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background-color: var(--tp-theme-1);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.3s ease-out;
}
.tpfeature__product-item:hover::before {
  transform: scaleY(1);
}
.tpfeature__box {
  margin-bottom: 30px;
}
.tpfeature__shape-one {
  position: absolute;
  top: 30px;
  left: 0;
}
.tpfeature__shape-two {
  position: absolute;
  bottom: 320px;
  right: -53px;
}
.tpfeature__shape-three {
  position: absolute;
  top: 0;
  right: -95px;
}
.tp-btn-3,
.tp-btn-4 {
  font-family: var(--tp-ff-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  line-height: 35px;
  padding: 5px 55px;
  border-radius: 50px;
  color: var(--tp-common-white);
  background-color: var(--tp-heading-secondary);
  transition: all 0.3s ease-out 0s;
}
.tp-btn-3 {
  color: var(--tp-common-white);
}
.tp-btn-3:hover {
  color: var(--tp-common-white);
  background-color: #859a00;
}
.tp-btn-4 {
  background-color: var(--tp-heading-primary);
  color: var(--tp-common-white);
}
.tp-btn-4:hover {
  color: var(--tp-common-white);
  background-color: #859a00;
}
/* match reference: smaller padding at medium desktop widths */
@media only screen and (min-width: 992px) and (max-width: 1399px) {
  .tp-btn-3,
  .tp-btn-4 {
    padding: 5px 40px;
  }
}

/* ========== Template Promo Banners ========== */
.tpbanner__content {
  min-height: 220px;
  border-radius: 10px;
  padding: 31px 40px 27px;
  background-repeat: no-repeat;
  background-size: cover;
}
.tpbanner__item {
  transition:
    transform 0.3s ease-out,
    box-shadow 0.3s ease-out;
}
.tpbanner__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.tpbanner__white-text {
  color: #fff;
}
.tpbanner__content p {
  transition: color 0.3s ease-out;
}
.tpbanner__item:hover .tpbanner__content p {
  color: var(--tp-heading-secondary);
}
.tpbanner__sub-title {
  color: var(--tp-text-5);
  font-weight: 500;
  font-size: 14px;
  display: block;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tpbanner__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.3px;
  color: var(--tp-common-white);
  margin-bottom: 30px;
}
.tpbanner__white {
  color: var(--tp-common-white) !important;
}

/* ========== Template Products Tab ========== */
.weekly-product-area {
  background: var(--tp-grey-8);
}
.tpsection {
  margin-bottom: 20px;
}
.tpsection__sub-title {
  font-family: var(--tp-schoolbell);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--tp-heading-secondary);
}
.tpsection__title {
  font-family: var(--tp-ff-heading);
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: -0.3px;
  color: var(--tp-heading-primary);
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .tpsection__title {
    font-size: 28px;
  }
}
.tpnavtab__area {
  position: relative;
  padding-bottom: 100px;
}
.tpnavtab__area nav {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}
.tpnavtab__area nav .nav-tabs {
  border-bottom: none;
}
.tpnavtab__area nav .nav-link {
  color: var(--tp-text-body);
  font-weight: 500;
  font-size: 16px;
  font-family: var(--tp-ff-body);
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 0 22px;
  margin-bottom: 8px;
  transition: all 0.3s ease-out 0s;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.tpnavtab__area nav .nav-link.active,
.tpnavtab__area nav .nav-link:hover {
  color: var(--tp-heading-secondary);
  background-color: transparent;
  border: none;
}
.tpproduct {
  background-color: var(--tp-common-white);
  border-radius: 10px;
  border: 1px solid var(--tp-grey-7);
  transition: all 0.3s ease-out 0s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tpproduct__content {
  flex: 1 1 auto;
}
.tpproduct:hover {
  z-index: 2;
  border-color: var(--tp-heading-secondary);
  border-bottom-color: transparent;
  border-radius: 10px 10px 0 0;
}
.tpproduct__thumb {
  padding: 20px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.tpproduct__thumb > a:first-child img {
  width: 100%;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.tpproduct__thumb-img {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 0.45s ease, transform 0.55s ease, visibility 0s linear 0s;
}
.tpproduct__thumb-img img {
  width: 100%;
}
.tpproduct:hover .tpproduct__thumb-img {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.tpproduct:hover .tpproduct__thumb > a:first-child img {
  opacity: 0;
  transform: scale(1.06);
}
.tpproduct__info.bage {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 2;
}
.bage__discount {
  background: var(--tp-theme-2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 3px;
}
.tpproduct__shopping {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tpproduct__shopping a {
  width: 30px;
  height: 30px;
  background: var(--tp-common-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--tp-text-body);
  transition: all 0.3s ease-out 0s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}
.tpproduct__shopping-wishlist {
  transition-delay: 0.1s;
}
.tpproduct__shopping-wishlist.active {
  background: #ea0d42;
  color: #fff;
}
.tpproduct:hover .tpproduct__shopping a {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}
.tpproduct__shopping a:hover {
  background: var(--tp-heading-secondary);
  color: #fff;
}
.tpproduct__content {
  background-color: white;
  padding: 11px 22px 20px 18px;
  border-radius: 10px;
}
.tpproduct__content-weight {
  font-size: 13px;
  color: var(--tp-text-3);
  display: block;
  margin-bottom: 5px;
}
.tpproduct__content-weight a {
  color: var(--tp-text-3);
}
.tpproduct__content-weight a:hover {
  color: var(--tp-heading-secondary);
}
.tpproduct__rating .star-svg {
  display: inline-block;
}
.tpproduct__title {
  font-family: var(--tp-ff-jost);
  font-weight: 400;
  font-size: 16px;
  color: var(--tp-heading-primary);
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  word-break: break-word;
}
.tpproduct__title:hover {
  color: var(--tp-heading-secondary);
}
.tpproduct__title a {
  color: inherit;
}
.tpproduct__title a:hover {
  color: var(--tp-heading-secondary);
}
.tpproduct__price {
  font-size: 16px;
  color: var(--tp-heading-primary);
  font-weight: 500;
}
.tpproduct__price span {
  color: var(--tp-theme-2);
  font-size: 18px;
  font-weight: 600;
}
.tpproduct__price del {
  color: var(--tp-text-3);
  text-decoration: line-through;
  font-weight: 400;
  font-size: 14px;
  margin-left: 5px;
}
.tpproduct__add {
  background: var(--tp-heading-secondary);
  color: #fff;
  border: none;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}
.tpproduct__add:hover {
  background: var(--tp-theme-1);
}
.tpproduct__all-item {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 15px;
}
.tpproduct__all-item span {
  font-size: 16px;
  color: var(--tp-text-1);
}
.tpproduct__all-item a {
  color: var(--tp-theme-1);
  font-weight: 600;
  margin-left: 5px;
}
.tpproduct__all-item a:hover {
  color: var(--tp-heading-secondary);
}
.tpproduct__hover-text {
  background-color: white;
  padding: 11px 21px 20px 19px;
  position: absolute;
  top: 100%;
  margin-top: -1px;
  left: -1px;
  right: -1px;
  border: 1px solid transparent;
  border-top: transparent;
  border-radius: 0 0 10px 10px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: all 0.2s ease-out 0s;
}
.tpproduct:hover .tpproduct__hover-text {
  opacity: 1;
  visibility: visible;
  box-shadow: 0 15px 30px rgba(61, 110, 168, 0.1);
  border-radius: 0 0 10px 10px;
  border: 1px solid var(--tp-heading-secondary);
  border-top: transparent;
}
.tpproduct__descrip ul {
  margin: 0;
  padding: 0;
}
.tpproduct__descrip ul li {
  list-style: none;
  font-size: 13px;
  color: var(--tp-text-3);
  line-height: 1.8;
  padding-left: 10px;
  position: relative;
}
.tpproduct__descrip ul li:before {
  position: absolute;
  content: "";
  height: 3px;
  width: 3px;
  background-color: var(--tp-grey-7);
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tpproduct__hover-btn .tpproduct__add {
  margin-top: 0;
}
.tpproduct__arrow {
  position: relative;
}
.tpslider-bottom {
  padding-bottom: 50px;
}
.swiper-container {
  padding-bottom: 150px;
  margin-bottom: -150px;
}
.tpproduct__arrow .tpprduct-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.tpproduct__arrow .tpprduct-arrow a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-text-body);
  transition: all 0.3s ease-out 0s;
}
.tpproduct__arrow .tpprduct-arrow a:hover {
  background: var(--tp-heading-secondary);
  color: #fff;
  border-color: var(--tp-heading-secondary);
}
.tpproduct__arrow .tpproduct-btn__prv {
  left: -20px;
}
.tpproduct__arrow .tpproduct-btn__nxt {
  right: -20px;
}
.pointer {
  cursor: pointer;
}
.tpproduct-btn {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.tpproduct-btn a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-text-body);
  transition: all 0.3s ease-out 0s;
}
.tpproduct-btn a:hover {
  background: var(--tp-heading-secondary);
  color: #fff;
  border-color: var(--tp-heading-secondary);
}

/* ========== Template Deals of Day ========== */
.tpcoundown__bg {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.tpcoundown {
  padding: 150px 5px 130px;
}
.tpcoundown__count-title {
  color: var(--tp-common-white);
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
}
.tpcoundown {
  padding: 150px 5px 130px;
}
@media (max-width: 767px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 576px) and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpcoundown {
    margin-left: 0;
  }
}
.tpcoundown__bg {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .tpcoundown__bg {
    background-position: 100%;
  }
}
.tpcoundown__count-title {
  color: var(--tp-common-white);
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
}
.tpcoundown__countdown {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.tpcoundown__countdown span {
  margin-right: 50px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .tpcoundown__countdown span {
    margin-right: 15px;
  }
}
.tpcoundown__countdown span p {
  font-weight: 500;
  font-size: 12px;
  line-height: 17px;
  text-transform: uppercase;
  color: var(--tp-grey-9);
  margin-bottom: 0;
  transform: translateY(-10px);
  margin-left: 3px;
}
@media (max-width: 767px) {
  .tpcoundown__countdown span p {
    font-size: 10px;
    transform: translateY(-15px);
  }
}
.tpcoundown__countdown .time-count {
  font-weight: 500;
  font-size: 36px;
  line-height: 52px;
  color: var(--tp-common-white);
  margin-right: 0;
}
@media (max-width: 767px) {
  .tpcoundown__countdown .time-count {
    font-size: 20px;
  }
}
.tpcoundown__btn {
  display: flex;
  gap: 15px;
  margin-top: 50px;
}
.whight-btn {
  padding: 5px 55px;
  background-color: var(--tp-heading-secondary);
  display: inline-block;
  text-align: center;
  line-height: 35px;
  text-transform: uppercase;
  color: var(--tp-common-white);
  font-weight: 600;
  border-radius: 50px;
  font-size: 13px;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .whight-btn {
    padding: 5px 40px;
  }
}
.whight-btn {
  color: var(--tp-heading-secondary);
  background-color: var(--tp-common-white);
}
.whight-btn,
.whight-btn:hover {
  border: 2px solid var(--tp-common-white);
}
.whight-btn:hover {
  color: var(--tp-common-white);
  background-color: transparent;
}
.border-btn {
  background-color: transparent;
  color: var(--tp-common-white);
}
.border-btn:hover {
  background-color: var(--tp-common-white);
  color: var(--tp-heading-secondary);
}
.tpcoundown__shape {
  position: static;
}
.tpcoundown__shape img {
  position: absolute;
}
.tpcoundown__shape img:hover {
  animation-name: chara, lara;
  animation-duration: 0.3s, 1.5s;
  animation-delay: 0s, 0.3s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards;
  animation-direction: normal, alternate;
}
.tpcoundown__shape-one {
  left: -175px;
  top: 140px;
}
.tpcoundown__shape-two {
  right: 600px;
  bottom: 190px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tpcoundown__shape-two {
    right: 400px;
    bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpcoundown__shape-two {
    right: 0;
    bottom: 0;
  }
}
.tpcoundown__shape-three {
  right: 70px;
  top: 215px;
  z-index: 10;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpcoundown__shape-three {
    right: 370px;
  }
}
.tpcoundown__shape-four {
    right: 10%;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 160px;
    height: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tpcoundown__shape-four {
    right: 10%;
    width: 140px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpcoundown__shape-four {
    right: 0;
    width: 120px;
  }
}
@media (max-width: 991px) {
  .tpcoundown__shape-four {
    width: 100px;
  }
}
@media (max-width: 575px) {
  .tpcoundown__shape-four {
    width: 70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tpcoundown__shape-four {
    right: 10%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpcoundown__shape-four {
    right: 0;
  }
}
@media (max-width: 767px) {
  .tpcoundown__shape {
    display: none;
  }
}

/* ========== Template Footer Features ========== */
.mainfeature__bg {
  background-repeat: repeat-x;
  padding-top: 40px;
  background: var(--tp-grey-8);
}
.mainfeature__icon {
  margin-bottom: 10px;
}
.mainfeature__icon img {
  height: 25px;
  width: 25px;
}
.mainfeature__title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  color: var(--tp-common-white);
  margin-bottom: 2px;
}
.mainfeature__content p {
  color: var(--tp-grey-10);
  font-size: 14px;
  margin-bottom: 0;
}
.mainfeature__border {
  border-bottom: 1px solid #484492;
}
.mainfeature__item {
  text-align: center;
}
section.product-coundown-area.tpcoundown__bg.grey-bg.pb-25 {
  background-color: var(--tp-grey-8);
}
/* ========== Template Section Title ========== */
.tpsection__sub-title {
  font-family: var(--tp-schoolbell);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--tp-heading-secondary);
}
.tpsection__title {
  font-family: var(--tp-ff-heading);
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: -0.3px;
  color: var(--tp-heading-primary);
  margin-bottom: 10px;
}
.tpsection p {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: var(--tp-text-body);
}
@media (max-width: 767px) {
  .tpsection__title {
    font-size: 28px;
  }
}

/* ========== Deals Of The Day Section (sample match) ========== */
.section__content {
  margin-bottom: 35px;
}
.section__content p {
  color: var(--tp-common-white);
  max-width: 480px;
}
@media (max-width: 767px) {
  .section__content p br {
    display: none;
  }
}
.section__sub-title {
  font-family: var(--tp-schoolbell);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  color: var(--tp-common-white);
  display: block;
}
.section__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 43px;
  letter-spacing: -0.5px;
  color: var(--tp-common-white);
}
@media (max-width: 767px) {
  .section__title {
    font-size: 28px;
  }
  .section__title br {
    display: none;
  }
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-25 {
  margin-bottom: 25px;
}
.ml-15 {
  margin-left: 15px;
}
.ml-175 {
  margin-left: 175px;
}
@media (max-width: 991px) {
  .ml-175 {
    margin-left: 0;
  }
}

/* Features Bar */
/* ========== Template Footer Features ========== */
.mainfeature__item:hover .mainfeature__icon img {
  animation: animation-plus 1s linear infinite alternate;
}
@keyframes animation-plus {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* ========== Template Footer ========== */
.tpfooter__area.theme-bg-2 {
  background: var(--tp-theme-4);
}
.tpfooter__top {
  border-bottom: 1px solid #484492;
}
.tpfooter__widget-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  color: var(--tp-common-white);
  margin-bottom: 30px;
}
.tpfooter__widget p {
  color: var(--tp-grey-10);
  font-size: 16px;
  margin-bottom: 0;
}
.tpfooter__widget p a {
  color: var(--tp-heading-secondary);
}
.tpfooter__widget-social a {
  color: var(--tp-common-white);
  font-size: 16px;
  margin-right: 5px;
}
.tpfooter__widget-social a:hover {
  color: var(--tp-heading-secondary);
}
.tpfooter__widget-social-title {
  color: var(--tp-grey-10);
  display: block;
}
.tpfooter__widget-time-info span {
  font-size: 16px;
  color: var(--tp-grey-10);
  display: block;
}
.tpfooter__widget-time-info span b {
  font-weight: 400;
  font-size: 16px;
  color: var(--tp-common-white);
}
.tpfooter__widget-links ul li {
  list-style: none;
}
.tpfooter__widget-links ul li a {
  font-size: 16px;
  color: var(--tp-grey-10);
  transition: all 0.3s ease-out 0s;
  display: inline-block;
  margin-bottom: 8px;
}
.tpfooter__widget-links ul li a:hover {
  color: var(--tp-common-white);
  padding-left: 8px;
}
.tpfooter__widget-newsletter p {
  font-size: 16px;
  color: var(--tp-common-white);
  margin-bottom: 20px;
}
.tpfooter__widget-newsletter form {
  position: relative;
}
.tpfooter__widget-newsletter form input {
  border-radius: 3px;
  height: 50px;
  width: 100%;
  background-color: var(--tp-common-white);
  border: none;
  padding: 5px 150px 5px 50px;
}
.tpfooter__widget-newsletter form input::placeholder {
  color: #acafb7;
  font-size: 14px;
}
.tpfooter__widget-newsletter form span {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.tpfooter__widget-newsletter-submit {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--tp-theme-1);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
}
.tpfooter__widget-newsletter-submit:hover {
  background: var(--tp-heading-secondary);
}
.tpfooter__widget-newsletter-check .form-check-label {
  font-size: 14px;
  color: var(--tp-common-white);
}
.tpfooter__widget-newsletter-check .form-check-input:checked {
  background-color: var(--tp-heading-secondary);
  border-color: transparent;
}
.tpfooter__widget-newsletter-check .form-check-input:focus {
  box-shadow: none;
}
.tpfooter__widget-newsletter-check .form-check-input[type="checkbox"] {
  border-radius: 2px;
}
.footer-col-2 {
  padding-left: 40px;
}
.footer-col-3 {
  padding-left: 30px;
}
.footer-col-4 {
  margin-left: 60px;
  position: relative;
}
.footer-col-4:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: #484492;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
}
.tpfooter___bottom {
  padding-top: 40px;
  padding-bottom: 40px;
}
.tpfooter__copyright-text {
  font-size: 16px;
  color: var(--tp-grey-10);
}
.tpfooter__copyright-text a {
  color: var(--tp-heading-secondary);
}
.tpfooter__copyright-thumb img {
  max-width: 100%;
}

/* Body Overlays */
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.body-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cartbody-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cartbody-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-body-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Search Overlay */
.tpsearchbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: var(--tp-common-white);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  transform: translateY(-100%);
}

.tpsearchbar.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tpsearchbar__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--tp-grey-6);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.tpsearchbar__close:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.tpsearchbar__title {
  font-family: var(--tp-ff-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--tp-heading-primary);
  margin-bottom: 40px;
}

.tpsearchbar__form form {
  display: flex;
  border-bottom: 2px solid var(--tp-border-1);
  padding-bottom: 5px;
}

.tpsearchbar__form input {
  flex: 1;
  border: none;
  padding: 15px 0;
  font-size: 18px;
  outline: none;
  background: transparent;
}

.tpsearchbar__form input::placeholder {
  color: var(--tp-text-9);
}

.tpsearchbar__search-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--tp-heading-primary);
  cursor: pointer;
  padding: 15px;
  transition: all 0.3s ease;
}

.tpsearchbar__search-btn:hover {
  color: var(--tp-theme-1);
}

/* Cart Sidebar */
.tpcartinfo {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100%;
  background: var(--tp-common-white);
  z-index: 9999;
  transition: all 0.4s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.tpcartinfo.open {
  right: 0;
}

@media (max-width: 480px) {
  .tpcartinfo {
    width: 100%;
    right: -100%;
  }
  .tpcart {
    padding: 60px 20px 30px;
  }
}

.tpcart__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--tp-grey-6);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.tpcart__close:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.tpcart {
  padding: 60px 30px 30px;
}

.tpcart__title {
  font-family: var(--tp-ff-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--tp-heading-primary);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--tp-border-5);
}

.tpcart__list {
  max-height: calc(100vh - 260px);
  overflow-y: auto;
}

.tpcart__total {
  font-size: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--tp-border-5);
}

.tpcart__total strong {
  color: var(--tp-theme-2);
  font-size: 18px;
}

.cartmini__empty p {
  font-size: 16px;
  color: var(--tp-text-1);
  margin: 20px 0;
}

.tp-btn-2,
.tp-btn:hover {
  color: var(--tp-common-white);
}
.tp-btn-2 {
  padding: 1px 28px;
  background-color: var(--tp-heading-secondary);
  display: inline-block;
  text-align: center;
  line-height: 35px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 50px;
  font-size: 13px;
  transition: all 0.3s ease-out 0s;
}
.tp-btn-2:hover {
  color: var(--tp-common-white);
  background-color: #859a00;
}

/* Mobile Side Menu */
.tpsideinfo {
  position: fixed;
  top: 0;
  left: -100%;
  width: 350px;
  height: 100%;
  background: var(--tp-common-white);
  z-index: 9999;
  transition: all 0.4s ease;
  overflow-y: auto;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.tpsideinfo.open {
  left: 0;
}

.tpsideinfo__close {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px;
  width: 100%;
  border: none;
  background: var(--tp-heading-secondary);
  color: var(--tp-common-white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tpsideinfo__close:hover {
  background: var(--tp-theme-1);
}

.tpsideinfo__search {
  padding: 30px 20px;
  border-bottom: 1px solid var(--tp-border-5);
}

.tpsideinfo__search-title {
  font-family: var(--tp-ff-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--tp-heading-primary);
  display: block;
}

.tpsideinfo__search form {
  display: flex;
  border: 1px solid var(--tp-border-5);
  border-radius: 30px;
  overflow: hidden;
}

.tpsideinfo__search form input {
  flex: 1;
  border: none;
  padding: 12px 15px;
  font-size: 14px;
  outline: none;
}

.tpsideinfo__search form button {
  background: none;
  border: none;
  padding: 12px 15px;
  font-size: 16px;
  color: var(--tp-heading-primary);
  cursor: pointer;
}

.tpsideinfo__nabtab {
  padding: 20px;
}

.tpsideinfo__nabtab .nav {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--tp-border-5);
}

.tpsideinfo__nabtab .nav button {
  flex: 1;
  padding: 10px;
  border: none;
  background: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--tp-text-1);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.tpsideinfo__nabtab .nav button.active {
  color: var(--tp-theme-1);
}

.tpsideinfo__nabtab .nav button.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--tp-theme-1);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.mobile-menu li {
  border-bottom: 1px solid var(--tp-border-5);
}

.mobile-menu li a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--tp-heading-primary);
}

.mobile-menu li a:hover {
  color: var(--tp-theme-1);
}

.mobile-menu .sub-menu {
  padding-left: 20px;
  display: none;
  background: var(--tp-grey-6);
  border-radius: 6px;
  margin: 5px 0;
}

.mobile-menu .sub-menu.open {
  display: block;
}

.tpsideinfo__account-link,
.tpsideinfo__wishlist-link {
  padding: 15px 20px;
  border-top: 1px solid var(--tp-border-5);
}

.tpsideinfo__account-link a,
.tpsideinfo__wishlist-link a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--tp-text-1);
}

.tpsideinfo__account-link a:hover,
.tpsideinfo__wishlist-link a:hover {
  color: var(--tp-theme-1);
}

/* Utility classes */
.p-relative {
  position: relative;
}
.ml-10 {
  margin-left: 10px;
}
.mt-10 {
  margin-top: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.pt-35 {
  padding-top: 35px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pt-80 {
  padding-top: 80px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-25 {
  padding-bottom: 25px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pb-80 {
  padding-bottom: 80px;
}
.text-center {
  text-align: center;
}
.d-flex {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.justify-content-end {
  justify-content: flex-end;
}
.justify-content-center {
  justify-content: center;
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.d-none {
  display: none !important;
}
@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
  .d-none.d-lg-block {
    display: block !important;
  }
}
.d-sm-block {
  display: none !important;
}
.d-md-block {
  display: none !important;
}
.d-xl-block {
  display: none !important;
}
/* NOTE: .d-md-none / .d-xl-none are handled by the media queries below (visible below md/xl, hidden at/above). Do NOT add global display:none here. */

@media (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-none {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
  .d-xl-none {
    display: none !important;
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .tp-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tp-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tp-searchbar__title {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .tp-special-grid {
    grid-template-columns: 1fr;
  }
  .tp-feature-wrap {
    flex-direction: column;
  }
  .tp-banner-grid {
    grid-template-columns: 1fr;
  }
  .tp-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tp-deals-wrap {
    flex-direction: column;
  }
  .tp-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tp-features-bar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tp-footer-grid {
    grid-template-columns: 1fr;
  }
  .tpsideinfo {
    width: 300px;
  }
  .tpsearchbar__title {
    font-size: 24px;
  }
  .tpsearchbar__form input {
    font-size: 16px;
  }
  .d-none.d-md-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .tp-product-grid {
    grid-template-columns: 1fr;
  }
  .tp-blog-grid {
    grid-template-columns: 1fr;
  }
  .tp-features-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tp-special-item {
    flex-direction: column;
  }
  .tp-special-thumb {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .tp-feature-list {
    grid-template-columns: 1fr;
  }
  .tp-deals-timer-item {
    width: 60px;
    height: 60px;
  }
  .tp-deals-timer-item .number {
    font-size: 20px;
  }
  .tp-section-title {
    font-size: 28px;
  }
}

/* Slider responsive */
@media (max-width: 1199px) {
  .slider-active.swiper {
    height: 600px;
  }
}
@media (max-width: 991px) {
  .slider-active.swiper {
    height: 550px;
  }
}
@media (max-width: 767px) {
  .slider-active.swiper {
    height: 500px;
  }
}

/* Icon-* fallback to Font Awesome */
[class^="icon-"],
[class*=" icon-"] {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.icon-chevron-left:before {
  content: "\f053";
}
.icon-chevron-right:before {
  content: "\f054";
}
.icon-chevrons-right:before {
  content: "\f101";
}
.icon-chevrons-up:before {
  content: "\f077";
}
.icon-heart:before {
  content: "\f004";
}
.icon-layers:before {
  content: "\f5fd";
}
.icon-eye:before {
  content: "\f06e";
}

/* ========== About Page (template match) ========== */
@keyframes lara {
  0% {
    transform: translateY(-1px);
  }
  25% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(-7px);
  }
  75% {
    transform: translateY(-5px);
  }
  to {
    transform: translateY(-1px);
  }
}
@keyframes left-right {
  0% {
    transform: translateX(3px);
  }
  25% {
    transform: translateX(7px);
  }
  50% {
    transform: translateX(15px);
  }
  75% {
    transform: translateX(7px);
  }
  to {
    transform: translateX(2px);
  }
}
.tpvideo__bg img {
  border-radius: 10px;
  max-width: 100%;
}
.tpvideo__video-btn {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  transform: translateY(-50%);
}
.tpvideo__video-btn i {
  height: 60px;
  width: 60px;
  line-height: 55px;
  text-align: center;
  background-color: hsla(0, 0%, 100%, 0.3);
  display: inline-block;
  border-radius: 50%;
  border: 1px solid var(--tp-common-white);
}
@media (max-width: 767px) {
  .tpvideo__video-btn i {
    height: 40px;
    width: 40px;
    line-height: 37px;
  }
}
.tpvideo__icon i {
  font-family: var(--tp-ff-jost);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 35px;
  text-transform: uppercase;
  color: #96ae00;
  display: flex;
  align-items: baseline;
}
.tpvideo__icon i img {
  max-width: 100%;
  flex: 0 0 auto;
  margin-right: 5px;
}
.tpvideo__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: var(--tp-heading-primary);
}
.tpvideo__content p {
  font-family: var(--tp-ff-jost);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: var(--tp-text-body);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpvideo__content p br {
    display: none;
  }
}
.tpabout__item:hover .tpabout__icon img,
.tpabout__title-img img:hover {
  animation: lara 1s linear infinite;
}
@media (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tpabout__title-img img {
    max-width: 100%;
  }
}
.tpabout__title-img p {
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 767px) {
  .tpabout__title-img p br {
    display: none;
  }
}
.tpabout__title {
  font-weight: 700;
  font-size: 16px;
  color: var(--tp-heading-primary);
  margin-bottom: 15px;
}
.tpabout__border {
  border-bottom: 1px solid var(--tp-border-1);
}
.tpabout__content p {
  font-size: 16px;
}
@media (max-width: 767px),
  only screen and (min-width: 576px) and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tpabout__content p br {
    display: none;
  }
}
.tpabout__inner-sub {
  font-family: var(--tp-ff-jost);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--tp-common-white);
}
.tpabout__inner-title {
  font-weight: 700;
  font-size: 60px;
  line-height: 45px;
  letter-spacing: -0.03em;
  color: var(--tp-common-white);
}
.tpabout__inner p {
  font-family: var(--tp-ff-jost);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--tp-common-white);
  margin-bottom: 65px;
}
@media (max-width: 767px) {
  .tpabout__inner p br {
    display: none;
  }
}
.tpabout__inner-btn a {
  font-family: var(--tp-ff-jost);
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 19px;
  color: var(--tp-common-white);
  background-color: var(--tp-heading-secondary);
  padding: 16px 58px;
  border-radius: 3px;
  text-transform: uppercase;
}
.tpabout__inner-bg {
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.tpabout__inner-list ul li {
  list-style: none;
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  font-family: var(--tp-ff-jost);
  font-weight: 400;
  font-size: 16px;
  color: var(--tp-text-body);
}
.tpabout__inner-list ul li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: var(--tp-heading-secondary);
  color: var(--tp-common-white);
  text-align: center;
  line-height: 25px;
}
.tpabout__inner-2 p {
  font-family: var(--tp-ff-jost);
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: var(--tp-text-body);
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .tpabout__inner-2 p br {
    display: none;
  }
}
.tpabout__inner-title-2 {
  font-family: var(--tp-ff-heading);
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.03em;
  color: var(--tp-heading-primary);
}
.tpabout__inner-tag {
  font-family: var(--tp-ff-jost);
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--tp-heading-primary);
}
.tpabout__inner-tag .active {
  color: var(--tp-common-white);
  font-weight: 500;
  margin-right: 8px;
  background-color: var(--tp-heading-secondary);
  display: inline-block;
  padding: 3px 16px;
  border-radius: 30px;
}
.tpabout__inner-thumb-2 > img {
  animation: left-right 3s linear infinite;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpabout__inner-thumb-2 > img {
    width: 420px;
  }
}
@media (max-width: 767px) {
  .tpabout__inner-thumb-2 > img {
    max-width: 100%;
  }
}
.tpabout__inner-thumb-shape-one {
  position: absolute;
  bottom: -120px;
  right: 95px;
  animation: left-right 2s linear infinite;
}
.tpabout__inner-thumb-shape-two {
  position: absolute;
  top: -55px;
  left: 0;
  animation: left-right 4s linear infinite;
}
.img-box__thumb img {
  width: 100%;
}
.img-box__title {
  font-family: var(--tp-ff-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--tp-theme-1);
}
.img-box__content p {
  font-size: 15px;
  color: var(--tp-text-body);
}
@media (max-width: 767px),
  only screen and (min-width: 576px) and (max-width: 767px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .img-box__content p br {
    display: none;
  }
}
.tpchoose__item {
  background-color: var(--tp-common-white);
  padding: 50px 35px 45px;
  border-radius: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tpchoose__item {
    padding: 30px 20px 30px 21px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpchoose__item {
    padding: 35px 15px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tpchoose__item {
    padding: 50px 15px 45px;
  }
}
.tpchoose__item:hover .tpchoose__details i {
  opacity: 1;
  visibility: visible;
  animation: shakenext 1s ease infinite;
}
.tpchoose__item:hover .tpchoose__icon img {
  animation: lara 1s linear infinite;
}
.tpchoose__title {
  font-size: 16px;
  color: var(--tp-heading-primary);
  font-weight: 700;
}
.tpchoose__content p {
  font-size: 16px;
}
.tpchoose__details {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}
.tpchoose__details,
.tpchoose__details:hover {
  color: var(--tp-heading-secondary);
}
.tpchoose__details i {
  display: inline-block;
  margin-left: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
}
.tpchoose__bg {
  background-size: cover;
}
.tptestimonial__avata img {
  height: 70px;
  width: 70px;
  border-radius: 50px;
}
.tptestimonial__content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  .tptestimonial__content p {
    font-size: 16px;
  }
}
@media (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tptestimonial__content p br {
    display: none;
  }
}
.tptestimonial__rating {
  color: var(--tp-text-1);
}
.tptestimonial__rating a {
  margin: 0 -3px;
}
.tptestimonial__title {
  font-weight: 700;
  font-size: 13px;
  color: var(--tp-heading-primary);
  text-transform: uppercase;
  margin-bottom: 0;
}
.tptestimonial__content2 p {
  font-size: 16px;
}
@media (max-width: 767px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tptestimonial__content2 p br {
    display: none;
  }
}
.tptestimonial__bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}
.tptestimonial__bg:hover .tptestimonial__nxt,
.tptestimonial__bg:hover .tptestimonial__prv {
  opacity: 1;
  visibility: visible;
}
.tptestimonial__prv {
  left: 220px;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
  .tptestimonial__prv {
    left: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tptestimonial__prv {
    left: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tptestimonial__prv {
    left: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tptestimonial__prv {
    left: 100px;
  }
}
.tptestimonial__nxt {
  right: 220px;
  left: 0 auto;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
  .tptestimonial__nxt {
    right: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tptestimonial__nxt {
    right: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tptestimonial__nxt {
    right: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tptestimonial__nxt {
    right: 100px;
  }
}
.tptestimonial-active3 .tptestimonial__item {
  border: 1px solid #ebeff4;
  border-radius: 10px;
  padding: 40px 30px 35px;
}

/* ========== Spacing Utilities (template px-based) ========== */
.mb-0 {
  margin-bottom: 0px;
}
.mb-3 {
  margin-bottom: 3px;
}
.mb-4 {
  margin-bottom: 4px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-6 {
  margin-bottom: 6px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-50 {
  margin-bottom: 50px;
}
.ml-1 {
  margin-left: 1px;
}
.mt-35 {
  margin-top: 35px;
}
.mt-45 {
  margin-top: 45px;
}
.mt-50 {
  margin-top: 50px;
}
.p-6 {
  padding: 6px;
}
.pb-12 {
  padding-bottom: 12px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pb-35 {
  padding-bottom: 35px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pb-55 {
  padding-bottom: 55px;
}
.pb-170 {
  padding-bottom: 170px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-45 {
  padding-top: 45px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-75 {
  padding-top: 75px;
}
.pt-175 {
  padding-top: 175px;
}
.px-5 {
  padding-left: 5px;
  padding-right: 5px;
}
.py-1 {
  padding-top: 1px;
  padding-bottom: 1px;
}
.py-2 {
  padding-top: 2px;
  padding-bottom: 2px;
}

/* ========== Contact Page (orfarm) ========== */
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}
.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}
.breadcrumb-item + .breadcrumb-item:before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/");
}
.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}
.z-index-1 {
  z-index: 1;
}
.w-img img {
  width: 100%;
}
.gx-7 {
  --bs-gutter-x: 20px;
}
.tp-breadcrumb__title {
  font-family: var(--tp-ff-heading);
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: var(--tp-heading-primary);
  letter-spacing: -0.03em;
  margin-bottom: 0;
}
.tp-breadcrumb__content {
  padding: 8px 0;
}
.tp-breadcrumb__list span {
  font-size: 14px;
  color: var(--tp-theme-1);
  line-height: 30px;
  font-weight: 400;
}
.tp-breadcrumb__list .dvdr {
  color: var(--tp-text-3);
  transform: translateY(0);
  display: inline-block;
  padding: 0;
}
.tp-breadcrumb__active {
  color: var(--tp-text-3) !important;
}
.tp-breadcrumb__active a:hover {
  color: var(--tp-heading-secondary);
}
.tplocation__thumb img {
  border-radius: 10px 10px 0 0;
}
.tplocation__content {
  background-color: #f7f7f9;
  border: 1px solid #ebeff4;
  border-radius: 0 0 10px 10px;
  padding: 65px 40px 50px;
}
@media (max-width: 767px) {
  .tplocation__content {
    padding: 50px 15px 40px;
  }
}
.tplocation__content ul li {
  list-style: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: var(--tp-text-body);
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  .tplocation__content ul li {
    font-size: 15px;
  }
  .tplocation__content ul li br {
    display: none;
  }
}
.tplocation__content ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: var(--tp-text-body);
}
@media (max-width: 767px) {
  .tplocation__content ul li a {
    font-size: 15px;
  }
}
.tplocation__content ul li .tplocation__button {
  font-weight: 600;
  font-size: 13px;
  line-height: 19px;
  text-transform: uppercase;
  color: var(--tp-common-white) !important;
  background-color: var(--tp-heading-secondary);
  display: inline-block;
  padding: 16px 47px;
  border-radius: 30px;
}
.tplocation__content ul li .tplocation__button:hover {
  background-color: #859a00;
}
.tplocation__content ul li span {
  color: var(--tp-heading-secondary);
  display: inline-block;
}
.tplocation__content-two {
  background-color: transparent;
  border: none;
  padding: 0;
}
.tplocation__text-title {
  font-family: var(--tp-ff-heading);
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  text-transform: uppercase;
  color: var(--tp-heading-primary);
}
.tplocation__wrapper {
  border: 1px solid #ebeff4;
  padding: 20px 30px 20px 20px;
  border-radius: 10px;
  height: 772px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--tp-heading-secondary) #e2e6eb;
}
@media (max-width: 767px) {
  .tplocation__wrapper {
    padding: 20px 15px;
  }
}
.tplocation__item {
  padding-bottom: 20px;
  border-bottom: 1px solid #e6eaf0;
  margin-bottom: 40px;
}
.tplocation__item:hover .tplocation__text-title {
  color: var(--tp-heading-secondary);
}
@media (max-width: 767px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tplocation__item {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
.tplocation__item:last-child {
  padding-bottom: 0;
  border: none;
  margin-bottom: 0;
}
@media (max-width: 767px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tplocation__img {
    margin-bottom: 20px;
  }
}
.tplocation__img img {
  border-radius: 10px;
}
@media (max-width: 767px) {
  .tplocation__img img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.tplocation__wrapper::-webkit-scrollbar-thumb {
  background-color: blue;
  border-radius: 20px;
  border: 3px solid orange;
}
.tpcontactmap {
  height: 770px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tpcontactmap {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .tpcontactmap {
    height: 350px;
  }
}
.tpcontactmap iframe {
  height: 100%;
  border-radius: 10px;
  width: 100%;
}
.tpcontact-inner-sub-title {
  font-weight: 500;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--tp-common-white);
  background-color: var(--tp-heading-secondary);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
}
.tpcontact-inner-title {
  font-family: var(--tp-ff-heading);
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.03em;
  color: var(--tp-heading-primary);
}
@media (max-width: 767px) {
  .tpcontact-inner-title {
    font-size: 28px;
  }
}
.tpcontact-inner-text p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: var(--tp-text-body);
  font-family: var(--tp-ff-jost);
}
.tpcontact__img img {
  border-radius: 10px;
}
.tpmap__box {
  position: relative;
}
.tpmap__wrapper {
  position: absolute;
  bottom: -25px;
  left: 0;
  top: 0;
  width: 50%;
  z-index: -1;
}
@media (max-width: 767px) {
  .tpmap__wrapper {
    position: static;
    width: 100%;
    height: 400px;
    margin-bottom: 75px;
  }
}
.tpmap__wrapper iframe {
  height: 100%;
  width: 100%;
}
.tpform__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--tp-heading-primary);
}
@media (max-width: 767px) {
  .tpform__wrapper {
    padding-top: 0;
    margin-left: 0;
  }
}
.tpform__wrapper p {
  font-family: var(--tp-ff-jost);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: var(--tp-text-body);
  margin-bottom: 25px;
}
.tpform__input input {
  width: 100%;
  height: 50px;
  border: 1px solid #ebeff4;
  border-radius: 30px;
  padding: 5px 20px;
}
.tpform__input input::placeholder {
  font-family: var(--tp-ff-jost);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #8a94ac;
}
.tpform__input input:focus {
  border: 1px solid var(--tp-heading-primary);
}
.tpform__textarea textarea {
  width: 100%;
  height: 200px;
  border: 1px solid #ebeff4;
  border-radius: 20px;
  resize: none;
  padding: 5px 20px;
}
.tpform__textarea textarea::placeholder {
  font-family: var(--tp-ff-jost);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #8a94ac;
}
.tpform__textarea textarea:focus {
  border: 1px solid var(--tp-heading-primary);
  outline: 0;
}
.tpform__textarea button {
  font-family: var(--tp-ff-jost);
  font-weight: 600;
  font-size: 13px;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  color: var(--tp-common-white);
  background-color: var(--tp-heading-secondary);
  display: inline-block;
  padding: 16px 50px;
  border-radius: 30px;
  cursor: pointer;
  border: none;
}
.tpform__textarea-check .form-check-input:checked {
  background-color: var(--tp-heading-secondary);
  border-color: transparent;
}
.tpform__textarea-check .form-check-input:focus {
  border: 1px solid #ebeff4;
  box-shadow: none;
  cursor: pointer;
}
.tpform__textarea-check .form-check-label {
  font-family: var(--tp-ff-jost);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: var(--tp-text-body);
}
.tpform__textarea-check .form-check-label a {
  color: var(--tp-heading-secondary);
  text-decoration: underline;
}

.mt-20 {
  margin-top: 20px;
}
.ml-60 {
  margin-left: 60px;
}
.pt-120 {
  padding-top: 120px;
}

/* contact: one merged card (info + form) on top, full-width map below */
.map-area .tpmap__wrapper {
  position: static;
  width: 100%;
  z-index: auto;
  background-color: var(--tp-common-white);
  border: 1px solid var(--tp-border-3);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 0 50px rgba(31, 46, 168, 0.06);
}
.map-area .tpmap__wrapper iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
  display: block;
}
.map-area .row.align-items-stretch > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.map-area .tpcontact.mb-30 {
  width: 100%;
}
.map-area .tpcontact.mb-30 .tpcontact__img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.map-area .tpcontact.mb-30 .tpcontact__img img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.map-area .tpcontact.mb-30 .tplocation__content-two {
  margin-bottom: 25px;
}
.map-area .z-index-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.map-area .tpform__wrapper {
  height: 100%;
}

/* Blog Page (orfarm) */
.tpblog__entry-wap span {
  color: var(--tp-text-3);
}
.pt-30 {
  padding-top: 30px;
}
.mb-80 {
  margin-bottom: 80px;
}
.fix {
  overflow: hidden;
}
.basic-pagination {
  text-align: center;
  padding-top: 40px;
}
.basic-pagination ul {
  padding-left: 0;
  margin: 0;
}
.basic-pagination ul li {
  display: inline-block;
  list-style: none;
}
.basic-pagination ul li.disabled {
  display: none;
}
.basic-pagination ul li.current {
  background: var(--tp-heading-secondary);
  border-color: var(--tp-heading-secondary);
  color: var(--tp-common-white);
  border-radius: 50%;
}
.basic-pagination ul li:not(:last-child) {
  margin-right: 5px;
}
.basic-pagination ul li a,
.basic-pagination ul li span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #dce1e8;
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-text-3);
  transition: all 0.2s ease-out 0s;
}
.basic-pagination ul li a.current,
.basic-pagination ul li a:hover,
.basic-pagination ul li span.current,
.basic-pagination ul li span:hover {
  background: var(--tp-heading-secondary);
  border-color: var(--tp-heading-secondary);
  color: var(--tp-common-white);
}
.basic-pagination ul li a i,
.basic-pagination ul li span i {
  font-weight: 600;
}
.tpblog__item:hover .tpblog__thumb img {
  transform: scale(1.05);
}
.tpblog__thumb {
  border-radius: 10px 10px 0 0;
}
.tpblog__thumb img {
  width: 100%;
  transition: all 1s ease-out 0s;
}
.tpblog__entry-wap span {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 8px;
  padding-right: 10px;
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}
.tpblog__entry-wap span:last-child {
  margin-right: 0;
  padding-right: 0;
}
.tpblog__entry-wap span:after {
  position: absolute;
  content: "";
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background-color: #cfd4de;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.tpblog__entry-wap span:last-child:after {
  display: none;
}
.tpblog__entry-wap .cat-links,
.tpblog__entry-wap span a:hover {
  color: var(--tp-heading-secondary);
}
.tpblog__wrapper {
  border-radius: 0 0 10px 10px;
  background-color: var(--tp-common-white);
  padding: 20px 28px 20px 30px;
}
.tpblog__wrapper p {
  margin-bottom: 25px;
  font-size: 16px;
}
.tpblog__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--tp-theme-1);
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  word-break: break-word;
}
.tpblog__details,
.tpblog__title a:hover {
  color: var(--tp-heading-secondary);
}
.tpblog__details {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
}
.tpblog__details a {
  display: flex;
  align-items: center;
}
.tpblog__details a:hover i {
  opacity: 1;
  visibility: visible;
  animation: shakenext 1s ease infinite;
}
.tpblog__details a i {
  display: inline-block;
  font-size: 16px;
  margin-left: 3px;
  opacity: 0;
  visibility: hidden;
}
.tpblog__item-2 .tpblog__thumb {
  border-radius: 10px;
}
.tpblog__item-2 .tpblog__wrapper {
  padding: 20px 28px 20px 0;
}
.tpblog__single-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.22;
  color: var(--tp-common-white);
}
.tpblog__single-img {
  position: relative;
}
.tpblog__single-img:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(10, 12, 31, 0.5);
}
.tpblog__single-img img,
.tpblog__single-img:before {
  display: block;
  width: 100%;
  border-radius: 10px;
}
.tpblog__single-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  padding: 0 50px;
  margin: 0 auto;
}
.tpblog__single-text .tpblog__entry-wap span,
.tpblog__single-text > a {
  color: var(--tp-common-white);
}
.tpblog__single-text .tpblog__entry-wap .author-by a,
.tpblog__single-text .tpblog__entry-wap .post-data a {
  color: var(--tp-common-white);
}
.tpblog__single-text > a {
  font-family: var(--tp-ff-jost);
  font-weight: 600;
  font-size: 12px;
  line-height: 17px;
  align-items: center;
  text-transform: uppercase;
}
.tpblog__left-item {
  padding-right: 50px;
  border-right: 1px dashed #e6ecf0;
  margin-right: 80px;
}
.tpblog__left-item .tpblog__title {
  font-size: 24px;
}
.tpblog__right-item {
  margin-left: -60px;
}
.blog-left-sidebar .tpblog__left-item {
  padding-left: 50px;
  border-left: 1px dashed #e6ecf0;
  margin-left: 80px;
  padding-right: 0;
  border-right: none;
  margin-right: 0;
}
.blog-left-sidebar.tpblog__right-item {
  margin-left: 0;
  margin-right: -60px;
}
/* ===== Wishlist ===== */
.header__info-wishlist {
  position: relative;
}
.wishlist-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ea0d42;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.wishlist-table {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.wishlist-table thead th {
  background: #f7f7f9;
  text-transform: uppercase;
  font-size: 13px;
  color: #79819c;
  padding: 15px;
  text-align: left;
}
.wishlist-table td {
  padding: 15px;
  vertical-align: middle;
  border-top: 1px solid #e6ecf0;
}
.wishlist-table a {
  color: #2d2a6e;
}
.wishlist-table a:hover {
  color: #96ae00;
}
.alert {
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}
.alert-success {
  background: #e6f7ec;
  color: #1a7f37;
  border: 1px solid #b7e4c5;
}

/* ===== Wishlist cards ===== */
.wishlist-card {
  background: #fff;
  border: 1px solid #e6ecf0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.wishlist-card:hover {
  box-shadow: 0 10px 30px rgba(45, 42, 110, 0.1);
  transform: translateY(-3px);
}
.wishlist-card__img {
  position: relative;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e6ecf0;
}
.wishlist-card__img img {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  display: inline-block;
}
.wishlist-card__remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ea0d42;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.wishlist-card__remove:hover {
  background: #c20b38;
  color: #fff;
}
.wishlist-card__body {
  padding: 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wishlist-card__title {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
}
.wishlist-card__title a {
  color: #2d2a6e;
}
.wishlist-card__title a:hover {
  color: #96ae00;
}
.wishlist-card__btn {
  display: inline-block;
  align-self: center;
  margin-top: auto;
}

/* ===== Cart ===== */
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ea0d42;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.header__info-cart {
  position: relative;
}
.cart-table {
  background: #fff;
  border-radius: 10px;
  padding: 10px 25px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e6ecf0;
  position: relative;
}
.cart-item:last-child {
  border-bottom: 0;
}
.cart-item__img {
  flex: 0 0 90px;
}
.cart-item__img img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}
.cart-item__info {
  flex: 1 1 auto;
}
.cart-item__title {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #2d2a6e;
  margin-bottom: 10px;
}
.cart-item__title:hover {
  color: #96ae00;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-item__update {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #96ae00;
  background: none;
  border: 0;
  cursor: pointer;
}
.cart-item__price {
  flex: 0 0 auto;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ea0d42;
}
.cart-item__remove {
  position: absolute;
  top: 20px;
  right: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f3f9;
  color: #ea0d42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.cart-item__remove:hover {
  background: #ea0d42;
  color: #fff;
}
.cart-summary {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
}
.cart-summary__title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #2d2a6e;
  margin-bottom: 20px;
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #4d5574;
  padding: 10px 0;
  border-bottom: 1px solid #e6ecf0;
}
.cart-summary__total {
  font-weight: 700;
  color: #2d2a6e;
  border-bottom: 0;
  font-size: 18px;
}
.cart-summary__total span:last-child {
  color: #ea0d42;
}
.cart-summary__checkout {
  display: block;
  text-align: center;
  margin-top: 20px;
}
.cart-summary__continue {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  color: #79819c;
}
.cart-summary__continue:hover {
  color: #96ae00;
}

/* ===== Cart newsletter ===== */
.cart-newsletter {
  display: flex;
  justify-content: center;
}
.cart-newsletter__inner {
  background: #fff;
  border-radius: 10px;
  padding: 35px 40px;
  text-align: center;
  width: 100%;
  max-width: 720px;
}
.cart-newsletter__title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #2d2a6e;
  margin-bottom: 8px;
}
.cart-newsletter__desc {
  font-size: 14px;
  color: #4d5574;
  margin-bottom: 20px;
}
.cart-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cart-newsletter__form input {
  flex: 1 1 180px;
  min-width: 0;
  border: 1px solid #e6ecf0;
  border-radius: 30px;
  padding: 12px 20px;
  font-size: 14px;
  color: #2d2a6e;
  outline: 0;
}
.cart-newsletter__form input:focus {
  border-color: #96ae00;
}
.cart-newsletter__form button {
  flex: 0 0 auto;
  border: 0;
  background: #96ae00;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  padding: 12px 34px;
  border-radius: 30px;
  cursor: pointer;
}
.cart-newsletter__form button:hover {
  background: #859a00;
}

/* ===== Cart order form ===== */
.cart-order {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
}
.cart-order__title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #2d2a6e;
  margin-bottom: 20px;
}
.cart-order__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-order__form input,
.cart-order__form textarea {
  border: 1px solid #e6ecf0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #2d2a6e;
  outline: 0;
  width: 100%;
  font-family: inherit;
}
.cart-order__form input:focus,
.cart-order__form textarea:focus {
  border-color: #96ae00;
}
.cart-order__form textarea {
  resize: vertical;
}
.cart-order__submit {
  margin-top: 6px;
  border: 0;
  background: #96ae00;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  padding: 13px 30px;
  border-radius: 30px;
  cursor: pointer;
}
.cart-order__submit:hover {
  background: #859a00;
}
.cart-summary__continue {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #79819c;
}
.cart-summary__continue:hover {
  color: #96ae00;
}

.status-badge {
  display: inline-block;
  min-width: 92px;
  text-align: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.status-new {
  background: #79819c;
}
.status-processing {
  background: #f0ad4e;
}
.status-completed {
  background: #5cb85c;
}
.status-cancelled {
  background: #d9534f;
}
.status-form select {
  max-width: 130px;
  font-size: 12px;
  padding: 2px 6px;
}

/* Footer: add breathing room before HOT CATEGORIES column */
@media (min-width: 992px) {
  .tpfooter__widget.footer-col-3 {
    padding-left: 25px;
  }
}
@media (min-width: 1200px) {
  .tpfooter__widget.footer-col-3 {
    padding-left: 45px;
  }
}

/* ===== Mobile polish (match Orfarm reference, block horizontal scroll) ===== */
@media (max-width: 767px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Hero slider: match reference (full-height slide, no clip, no extra gap) */
  .slider-area {
    overflow: visible;
    padding-bottom: 0;
  }
  .slider-active.swiper {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  /* Hide slider nav arrows on mobile (they overlay the slide and trap touch) */
  .tpslider__arrow {
    display: none;
  }
  .tpslider {
    padding-top: 40px;
  }
  .tpslider__content {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  .tpslider__content p {
    margin-bottom: 20px;
    font-size: 15px;
    color: #4d5574;
  }
  .tp-btn {
    padding: 8px 30px;
  }
  .tpslider__thumb {
    margin-left: 0;
    text-align: center;
  }

  /* Category: match reference on mobile (round thumb + count visible, not centered) */
  .category__thumb {
    border-radius: 0;
  }
  .category__thumb img {
    border-radius: 0;
  }
  .category__count {
    display: block;
  }
  .category-area.category--centered .swiper-wrapper {
    justify-content: flex-start !important;
  }
  /* smaller square category cards on mobile */
  .category__item {
    border-radius: 0;
    padding: 18px 8px 14px;
  }

  /* Special products: horizontal swipe on mobile (match reference product slider) */
  .tp-special-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
    scrollbar-width: none;
  }
  .tp-special-grid::-webkit-scrollbar {
    display: none;
  }

  /* Banner: match reference on mobile (image not cover + white paragraph) */
  .tpbanner__content {
    background-size: auto;
  }
  .tpbanner__content p {
    color: var(--tp-common-white);
    font-size: 16px;
    margin-bottom: 15px;
  }
  .tp-special-item {
    flex: 0 0 auto;
    width: 100%;
    scroll-snap-align: start;
  }
  /* Shop list: stack vertically on mobile (no horizontal swipe) */
  .tp-shop-list {
    display: block;
    overflow: visible;
  }
  .tp-shop-list .tp-special-item {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
  /* hide Add to Cart + meta (Category/Stock/SKU) on mobile card */
  .tp-special-add-form,
  .tp-special-bottom {
    display: none;
  }

  /* Deals countdown: match reference on mobile (left-aligned, full bg, stacked buttons) */
  .tpcoundown {
    text-align: left;
  }
  .section__content {
    text-align: left;
  }
  .section__content p {
    margin-left: 0;
    margin-right: 0;
  }
  .tpcoundown__btn {
    display: block;
    text-align: left;
  }
  .tpcoundown__btn a {
    margin-left: 0;
    margin-bottom: 10px;
  }
  .tpcoundown__bg {
    opacity: 1;
  }

  /* Tighten oversized section vertical rhythm */
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .product-coundown-area {
    padding-top: 0;
    padding-bottom: 25px;
  }

  /* Footer: match reference on mobile (left-aligned, clean stacked columns, no overflow) */
  .tpfooter__top .row {
    margin-left: 0;
    margin-right: 0;
  }
  .tpfooter__top .row > [class*="col-"] {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .footer-col-2,
  .footer-col-3,
  .footer-col-4 {
    margin-left: 0;
  }
  .footer-col-4:before {
    display: none;
  }
  .tpfooter__widget,
  .tpfooter__widget-title,
  .tpfooter__widget-social,
  .tpfooter__widget-social-title,
  .tpfooter__widget-links,
  .tpfooter__widget-newsletter {
    text-align: left;
  }
  .tpfooter__widget-social-title {
    margin-bottom: 5px;
  }
  .tpfooter__widget-newsletter-submit {
    background: var(--tp-heading-secondary);
  }
  .tpfooter__copyright,
  .tpfooter__copyright-text {
    text-align: left;
  }
  .tpfooter__copyright-thumb {
    text-align: center;
  }

  /* Contact: let the merged info/form card size to its content on mobile
     (base .tpmap__wrapper forces height:400px which clips the form) */
  .map-area .tpmap__wrapper {
    height: auto;
    padding: 8px;
  }

  /* Feature bar icons: keep 2-col but allow wrap */
  .tpfeatures__item {
    justify-content: flex-start;
  }
}

/* Shop: category filter bar */
.tp-shop-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.tp-shop-filter-link {
  display: inline-block;
  padding: 7px 22px;
  border: 1px solid #e6ecf0;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #4d5574;
  text-decoration: none;
  transition: all 0.2s ease;
}
.tp-shop-filter-link:hover,
.tp-shop-filter-link.active {
  background: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  color: #fff;
}

/* Very small phones: 2-up grids everywhere, no cramped single source */
@media (max-width: 480px) {
  .category-active .swiper-slide,
  .product__item {
    max-width: 100%;
  }
}

@keyframes tpbounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
