/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Smartcart - Grocery and Food Store HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Hero Offer List css 
06. Our Categories css
07. Our Fresh Deals css
08. Our Products css
09. Our Daily Products css
10. Our Fresh Stories css
11. Our Limited Offer css
12. Arrives Products css
13. Our Testimonials css
14. Our Smart Saving Deals css
15. Our Exclusive Deals css
16. Our Blog css
17. Footer css
18. About Us Page css
19. Blog Archive css
20. Blog Single css 
21. Products Page css
22. Product Single css
23. Cart Page css
24. Order Details Page css
25. Checkout Page css
26. Account Dashboard Page css
27. Account Order Page css
28. Account Order View Page css
29. Account Download Page css
30. Account Address Page css
31. Account Addresses Page css
32.	Account Details Page css
33. Account Wishlist Page css
34. Login Page css
35. Forgot Password css
36. Privacy Policy Page css
37. Term Condition Page css
38. Refund Return Policy css
39. Cancellation Policy css
40. Delivery Policy Page css
41. Testimonials Page css
42. FAQs Page css
43. Contact Page css
44. 404 Error Page css
45. Responsive css
-------------------------------------------------------------------------------------- */

/****************************************/
/*** 	   01. Global Variables 	  ***/
/****************************************/

:root {
  --primary-color: #000000;
  --secondary-color: #f5f5f5;
  --bg-color: #ffffff;
  --text-color: #000000b2;
  --accent-color: #e5ef52;
  --white-color: #ffffff;
  --black-color: #000000;
  --divider-color: #0000001a;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: "TikTok Sans", sans-serif;
}

/****************************************/
/*** 	     02. General css		  ***/
/****************************************/

html,
body {
  width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  color: var(--text-color);
  background-color: var(--bg-color);
}

::-webkit-scrollbar-track {
  background-color: var(--primary-color);
  border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
  width: 7px;
  background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--white-color);
}

::selection {
  color: var(--white-color);
  background-color: var(--primary-color);
  filter: invert(1);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.33em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2em;
  color: var(--primary-color);
  margin: 0;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 100px;
  padding: 16px 55px 16px 24px;
  border: none;
  overflow: hidden;
  box-shadow: none;
  outline: none;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.btn-default:hover {
  color: var(--white-color);
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  background-image: url("../images/arrow-primary.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px auto;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
  transform: translateY(-50%) rotate(45deg);
}

.btn-default::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.btn-default:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.btn-default.btn-highlighted {
  color: var(--primary-color);
  background-color: var(--white-color);
}

.btn-default.btn-highlighted:hover {
  color: var(--white-color);
}

.btn-default.btn-highlighted::before {
  background-color: var(--accent-color);
  background-image: url("../images/arrow-white.svg");
}

.btn-default.btn-highlighted:hover::before {
  background-color: var(--white-color);
  background-image: url("../images/arrow-primary.svg");
}

.btn-default.btn-highlighted::after {
  background: var(--primary-color);
}

.readmore-btn {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1em;
  text-transform: capitalize;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.4s ease-in-out;
}

.readmore-btn:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.cb-cursor:before {
  background: var(--accent-color);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 120px;
  position: relative;
  width: 120px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.light-section {
  background-color: var(--secondary-color);
}

.dark-section {
  background-color: #493db8;
}

.section-row {
  margin-bottom: 80px;
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-row .section-title.section-title-center {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.section-btn {
  text-align: right;
}

.section-content-btn .section-btn {
  margin-top: 30px;
  text-align: left;
}

.section-title-content p {
  margin-bottom: 20px;
}

.section-title-content p:last-child {
  margin-bottom: 0;
}

.section-title {
  margin-bottom: 40px;
}

.section-title .section-sub-title {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.section-title.section-sub-heading,
.section-title.section-sub-heading .section-sub-title {
  margin-bottom: 0;
}

.section-title h1 {
  font-size: 62px;
  letter-spacing: -0.04em;
  margin-bottom: 0;
  cursor: none;
}

.section-title h2 {
  font-size: 46px;
  letter-spacing: -0.04em;
  margin-bottom: 0;
  cursor: none;
}

.section-title p {
  margin-top: 15px;
  margin-bottom: 0;
}

.dark-section .section-title .section-sub-title,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
  color: var(--white-color);
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

.h3.hidden {
  margin: 0;
}

/****************************************/
/**** 	      03. Header css		 ****/
/****************************************/

.topbar {
  background: var(--accent-color);
  padding: 15px 0;
}

.topbar-content-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
}

.topbar-content-info p {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: var(--white-color);
  margin: 0;
}

.topbar-contact-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar-contact-list ul li {
  line-height: 1.1em;
  color: var(--white-color);
}

.topbar-contact-list ul li img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

.topbar-contact-list ul li a {
  color: inherit;
}

header.main-header {
  position: relative;
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  /* background: var(--bg-color); */
  background: #493db8;
  border-bottom: 1px solid var(--secondary-color);
  z-index: 100;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(0);
}

header.main-header .container {
  flex-wrap: wrap;
}

.navbar {
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}

.header-action-box {
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 25px 15px;
  margin: 0 auto;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  max-width: 170px;
}

.header-search-form-box {
  width: 100%;
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  max-width: 600px;
  padding: 0 20px;
}

.header-search-form .form-group {
  display: flex;
}

.header-search-form .form-group .form-control {
  flex-grow: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25em;
  color: white;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding: 15px 10px;
}

.header-search-form .form-group .form-control::placeholder {
  color: var(--primary-color);
  opacity: 20%;
}

.header-search-form .form-group .header-search-btn {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.header-search-form .form-group .header-search-btn i {
  font-size: 20px;
  color: var(--secondary-color);
}

.header-action-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 60px;
}

.special-offer-tag p {
  font-weight: 600;
  line-height: 1.2em;
  color: var(--accent-color);
  margin: 0;
}

.special-offer-tag p img {
  width: 100%;
  max-width: 24px;
  margin-right: 10px;
}

.special-offer-tag p a {
  color: inherit;
}

.header-action-list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-action-list ul li a img {
  width: 100%;
  max-width: 24px;
}

.main-menu {
  width: 100%;
  border-top: 1px solid var(--divider-color);
}

.main-menu .navbar-collapse {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
  gap: 20px 40px;
}

.popular-categories-box {
  position: relative;
}

.popular-categories-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  background: transparent;
  border: none;
  font-weight: 600;
  color: var(--primary-color);
  border-right: 1px solid var(--divider-color);
  outline: none;
  padding: 20px 40px 20px 0;
}

.popular-categories-btn a {
  display: flex;
  gap: 15px;
}

.popular-categories-btn img {
  width: 100%;
  max-width: 20px;
}

.popular-categories-list {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  width: 100%;
  display: none;
  box-shadow:
    var(--secondary-color) 0px 0px 1px 1px,
    var(--secondary-color) 1px 0px 1px -1px;
  background: var(--white-color);
  padding: 0;
  margin: 0;
}

.popular-categories-list li a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  padding: 12px 20px;
  color: var(--primary-color);
  background: transparent;
  border-bottom: 1px solid var(--divider-color);
  border-radius: 0px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.popular-categories-list li:last-child a {
  border-bottom: none;
}

.popular-categories-list li:hover a {
  padding-left: 23px;
  color: var(--accent-color);
}

.main-menu .nav-menu-wrapper {
  flex: 1;
}

.main-menu .nav-menu-wrapper > ul {
  display: inline-flex;
}

.main-menu ul .nav-item {
  position: relative;
  margin: 0 25px;
  padding: 9px 0;
}

.main-menu ul .nav-item .nav-link {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  padding: 9px 0px !important;
  color: var(--secondary-color);
  background: transparent;
  border-radius: 0px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul .nav-item.submenu > a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 16px;
  vertical-align: middle;
  margin-left: 8px;
}

.main-menu ul .nav-item .nav-link:hover,
.main-menu ul .nav-item .nav-link:focus {
  color: var(--accent-color);
}

.main-menu ul .nav-item:first-child {
  margin-left: 0;
}

.main-menu ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  width: 235px;
  background: var(--white-color);
  box-shadow:
    var(--secondary-color) 0px 0px 1px 1px,
    var(--secondary-color) 1px 0px 1px -1px;
  border-radius: 0;
  text-align: left;
  transform: scale(1, 0.8);
  visibility: hidden;
  opacity: 0;
  transform-origin: top;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul {
  width: 235px;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul li > ul {
  padding: 0;
}

.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
}

.main-menu ul .nav-item.submenu ul li.submenu > a:after {
  content: "\f105";
  float: right;
}

.main-menu ul ul .nav-item {
  margin: 0;
  padding: 0;
}

.main-menu ul ul .nav-item .nav-link {
  border-bottom: 1px solid var(--divider-color);
  padding: 10px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul ul .nav-item .nav-link:hover,
.main-menu ul ul .nav-item .nav-link:focus {
  color: var(--accent-color);
  background-color: transparent;
  padding: 10px 20px 10px 23px !important;
}

.main-menu ul ul .nav-item:last-child .nav-link {
  border-bottom: none;
}

.main-menu ul .nav-item.highlighted-menu {
  display: none;
}

.desktop-hide {
  display: none;
}

.main-menu .dropdown-menu {
  width: 100%;
  left: 0;
  right: 0;
  display: block;
  top: 100%;
  transform: scale(1, 0);
  border-radius: 0;
  background: var(--secondary-color);
  border: none;
  border-bottom: 1px solid var(--divider-color);
  padding: 60px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.main-menu .mega-menu:hover > .dropdown-menu {
  transform: scale(1, 1);
}

.dropdown-menu[data-bs-popper] {
  margin-top: 0;
}

.main-menu .mega-menu-box {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
  padding: 0 15px;
}

.mega-menu-links-box {
  width: calc(40% - 25px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 50px;
}

.mega-menu-link {
  width: calc(50% - 25px);
}

.mega-menu-link h2 {
  font-size: 18px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.main-menu .mega-menu-link ul {
  position: initial;
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
  transform-origin: initial;
  width: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
}

.main-menu .mega-menu-link ul li {
  margin-bottom: 10px;
}

.main-menu .mega-menu-link ul li:last-child {
  margin-bottom: 0px;
}

.main-menu .mega-menu-link ul li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
  color: var(--text-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu .mega-menu-link ul li a:hover {
  color: var(--primary-color);
}

.mega-menu-items-list {
  width: calc(60% - 25px);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.mega-menu-item {
  width: calc(33.33% - 20px);
}

.mega-menu-item-image {
  margin-bottom: 15px;
}

.main-menu .mega-menu-item-image a {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.mega-menu-item-image figure {
  display: block;
  border-radius: 20px;
}

.mega-menu-item-image figure img {
  width: 100%;
  aspect-ratio: 1 / 0.781;
  object-fit: cover;
  border-radius: 20px;
}

.mega-menu-item-content h2 {
  font-size: 18px;
}

.main-menu .mega-menu-item-content h2 a {
  color: inherit;
}

.mega-menu-item-content p {
  margin: 5px 0 0 0;
}

.mega-menu-item.big-offer-box {
  position: relative;
  align-content: end;
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
}

.mega-menu-item.big-offer-box .mega-menu-item-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.mega-menu-item.big-offer-box .mega-menu-item-image::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    transparent 44.42%,
    rgba(0, 0, 0, 0.36) 61.47%,
    var(--black-color) 100%
  );
  width: 100%;
  height: 100%;
}

.mega-menu-item.big-offer-box .mega-menu-item-image figure,
.mega-menu-item.big-offer-box .mega-menu-item-image figure img {
  height: 100%;
}

.mega-menu-item.big-offer-box .mega-menu-item-content {
  position: relative;
  z-index: 2;
}

.mega-menu-item.big-offer-box .mega-menu-item-content span {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2em;
  color: var(--white-color);
  margin-bottom: 5px;
}

.mega-menu-item.big-offer-box .mega-menu-item-content h2 {
  font-size: 30px;
  text-transform: uppercase;
  color: var(--white-color);
}

.mega-menu-item.big-offer-box .mega-menu-item-content h3 {
  font-size: 18px;
  color: var(--white-color);
  margin-top: 5px;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  position: relative;
  top: 0;
}

.slicknav_btn {
  background: var(--accent-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--white-color);
  border-radius: 10px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--accent-color);
}

.slicknav_menu ul.slicknav_nav {
  padding: 5px 0;
  border-bottom: 1px solid var(--dark-divider-color);
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 6px 20px;
  color: var(--white-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--white-color);
}

.slicknav_menu ul ul li a {
  padding: 6px 20px 6px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: "\f107";
  position: absolute;
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
  color: var(--white-color);
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
  transform: translateY(-50%) rotate(-180deg);
  color: var(--white-color);
}

/****************************************/
/*** 	       04. Hero css 	      ***/
/****************************************/

.hero {
  position: relative;
  background-image: url("../images/hero-bg-image.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  padding: 90px 0;
}

.hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 475px;
  height: 475px;
  background-image: url("../images/hero-bg-image-1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-content .section-title p {
  font-size: 18px;
}

.hero-btn {
  margin-top: 60px;
}

.hero-image figure {
  display: block;
  max-width: 580px;
  border-radius: 20px;
  margin-left: auto;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
}

/****************************************/
/*** 	  05. Hero Offer List css     ***/
/****************************************/

.special-offers {
  padding: 120px 0 60px;
}

.special-offers-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.special-offer-item {
  width: calc(33.33% - 20px);
  background: linear-gradient(180deg, #4e9f36 0%, #225d11 100%);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  overflow: hidden;
}

.special-offer-item:nth-child(3n + 2) {
  background: linear-gradient(180deg, #fcbe37 0%, #cf8e00 100%);
}

.special-offer-item:nth-child(3n + 3) {
  background: linear-gradient(180deg, #d43d3a 0%, #6e201e 100%);
}

.special-offer-item-body {
  position: relative;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  z-index: 1;
}

.special-offer-item-content .special-offer-item-title {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white-color);
  margin-bottom: 20px;
}

.special-offer-item-content h2 {
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--white-color);
}

.special-offer-item-btn a {
  color: var(--white-color);
  text-transform: capitalize;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.special-offer-item-image {
  width: 40%;
  align-content: end;
}

.special-offer-item-image figure {
  display: block;
  max-width: 250px;
  border-radius: 10px;
  margin: 0 -85px -55px -40px;
}

.special-offer-item-image img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border-radius: 10px;
}

/****************************************/
/*** 	  06. Our Categories css      ***/
/****************************************/

.our-categories {
  padding: 60px 0;
}

.categories-slider-item .categories-slider-item-image {
  height: 190px;
  width: 190px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  text-align: center;
  padding: 20px;
  align-content: center;
  margin: 0 auto 30px;
}

.categories-slider-item-image img {
  width: 100%;
  max-width: 140px;
  border-radius: 40px;
  transition: all 0.6s ease-in-out;
}

.categories-slider-item:hover .categories-slider-item-image img {
  transform: scale(1.06);
}

.categories-slider-item-content {
  text-align: center;
}

.categories-slider-item-content h3 {
  font-size: 18px;
}

.categories-slider-item-content h3 a {
  color: inherit;
}

.categories-slider .categories-slider-pagination {
  margin-top: 40px;
  text-align: center;
}

.categories-slider .categories-slider-pagination .swiper-pagination-bullet {
  position: relative;
  height: 10px;
  width: 10px;
  background: var(--divider-color);
  opacity: 1;
  margin: 0 5px;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

.categories-slider
  .categories-slider-pagination
  .swiper-pagination-bullet-active {
  background: var(--accent-color);
  width: 40px;
}

/****************************************/
/*** 	  07. Our Fresh Deals css     ***/
/****************************************/

.our-fresh-deals {
  margin-top: 120px;
}

.our-fresh-deals .container {
  max-width: 1500px;
}

.fresh-deals-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
  background:
    linear-gradient(270deg, rgba(21, 58, 43, 0.1) 0%, transparent 39.84%),
    var(--secondary-color);
  border-radius: 20px;
  padding: 100px;
  overflow: hidden;
}

.fresh-deals-image {
  position: relative;
  width: calc(50% - 30px);
  align-content: end;
}

.fresh-deals-image figure {
  max-width: 675px;
  margin: 0 0 -100px -100px;
  border-radius: 0 20px 0 0;
}

.fresh-deals-image img {
  width: 100%;
  aspect-ratio: 1 / 0.728;
  object-fit: cover;
  border-radius: 0 20px 0 0;
}

.fresh-deals-content {
  width: calc(50% - 30px);
  align-content: center;
}

.fresh-deals-body-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fresh-deals-body-list ul li {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5em;
  color: var(--primary-color);
  padding-left: 25px;
}

.fresh-deals-body-list ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 5px;
  width: 5px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.fresh-deals-body-list ul li:first-child {
  padding-left: 0;
}

.fresh-deals-body-list ul li:first-child:before {
  display: none;
}

.fresh-deals-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--divider-color);
}

.deals-free-delivery-item p {
  margin: 0;
}

.deals-free-delivery-item p img {
  width: 100%;
  max-width: 24px;
  margin-right: 10px;
}

.deals-free-delivery-item p span {
  font-weight: 600;
}

/****************************************/
/***   	    08. Our Products css      ***/
/****************************************/

.our-products {
  padding: 60px 0;
}

.product-item {
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 30px;
}

.product-item-header {
  position: relative;
  margin-bottom: 30px;
}

.product-item-image {
  max-width: 230px;
  margin: 0 auto;
}

.product-item-image figure {
  display: block;
  border-radius: 10px;
}

.product-item-image figure img {
  width: 100%;
  aspect-ratio: 1 / 0.685;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.6s ease-in-out;
}

.product-item:hover .product-item-image figure img {
  transform: scale(1.05);
}

.product-item-action {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%) scale(0);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.product-item:hover .product-item-action {
  transform: translateY(-50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.product-item-action ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-item-action ul li a {
  height: 50px;
  width: 50px;
  background-color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.product-item-action ul li a:hover {
  background-color: var(--primary-color);
}

.product-item-action ul li a img {
  width: 100%;
  max-width: 24px;
  transition: all 0.4s ease-in-out;
}

.product-item-action ul li a:hover img {
  filter: brightness(0) invert(1);
}

.product-item-content .product-item-category {
  font-size: 14px;
  text-transform: capitalize;
  line-height: normal;
  margin-bottom: 10px;
}

.product-item-content .product-item-title {
  font-size: 18px;
}

.product-item-content .product-item-title a {
  color: inherit;
}

.product-item-content .product-item-rating {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.product-item-content .product-item-rating i {
  font-size: 16px;
  color: var(--accent-color);
}

.product-item-content .product-item-rating b {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-left: 5px;
}

.product-item-price {
  margin-top: 10px;
}

.product-item-price h3 {
  font-size: 18px;
}

.product-item-price h3 span {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--text-color);
  margin-right: 10px;
}

.product-slider .product-pagination {
  margin-top: 40px;
  text-align: center;
}

.product-slider .product-pagination .swiper-pagination-bullet {
  position: relative;
  height: 10px;
  width: 10px;
  background: var(--divider-color);
  opacity: 1;
  margin: 0 5px;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

.product-slider .product-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  width: 40px;
}

.section-footer-text {
  margin-top: 30px;
  text-align: center;
}

.our-products .section-footer-text {
  margin-top: 40px;
}

.section-footer-text p {
  color: var(--primary-color);
  margin: 0 0 15px;
}

.section-footer-text p span {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  background: var(--accent-color);
  color: var(--bg-color);
  line-height: 1em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 10px;
}

.section-footer-text p a {
  display: inline-block;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
  color: var(--primary-color);
}

.section-footer-text.section-satisfy-img {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
  max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
  width: 32px;
  height: 32px;
  margin-left: -10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
  width: 100%;
  max-width: 16px;
}

.section-footer-text.section-satisfy-img p {
  margin: 0;
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text p a {
  color: var(--white-color);
}

.dark-section .section-footer-text p span {
  background-color: var(--white-color);
  color: var(--accent-color);
}

.dark-section .section-footer-text.section-satisfy-img .satisfy-client-image {
  border-color: var(--primary-color);
}

.satisfy-client-images {
  display: flex;
  align-items: center;
}

.satisfy-client-image {
  position: relative;
  display: inline-block;
  margin-left: -10px;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.satisfy-client-image:first-child {
  margin-left: 0;
}

.satisfy-client-image figure {
  display: block;
}

.satisfy-client-image figure img {
  width: 100%;
  max-width: 38px;
  border-radius: 50%;
}

.satisfy-client-image.add-more {
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.satisfy-client-image.add-more i {
  font-size: 18px;
  color: var(--white-color);
}

.satisfy-client-image.add-more h2 {
  font-size: 12px;
  line-height: 1em;
  color: var(--white-color);
}

/****************************************/
/***    09. Our Daily Products css    ***/
/****************************************/

.our-daily-products {
  padding: 60px 0;
}

.daily-products-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.daily-products-item {
  width: calc(50% - 15px);
  background: linear-gradient(180deg, #b2021b 0%, #62010f 100%);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  padding: 60px;
  overflow: hidden;
}

.daily-products-item:nth-child(2n + 2) {
  background: linear-gradient(180deg, #698c0a 0%, #1d2603 100%);
}

.daily-products-item-content {
  position: relative;
  width: 50%;
  align-content: center;
  z-index: 1;
}

.daily-products-item-content-info .daily-products-item-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white-color);
  margin-bottom: 20px;
}

.daily-products-item-content-info h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--white-color);
}

.daily-products-item-btn {
  margin-top: 40px;
}

.daily-products-item-btn a {
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
  text-transform: capitalize;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.daily-products-item-image {
  width: 50%;
  align-content: end;
}

.daily-products-item-image figure {
  margin: -60px -200px -120px -60px;
  display: block;
}

.daily-products-item-image img {
  width: 100%;
  aspect-ratio: 1 / 0.67;
  object-fit: cover;
}

/****************************************/
/***    10. Our Fresh Stories css     ***/
/****************************************/

.our-fresh-stories {
  padding: 60px 0 120px;
}

.stoty-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.story-item {
  position: relative;
  width: calc(25% - 22.5px);
  border-radius: 20px;
  overflow: hidden;
}

.story-item-video a {
  display: block;
  height: 100%;
  cursor: none;
}

.story-item-video video {
  width: 100%;
  height: 395px;
  min-height: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.story-item .icon-box {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.story-item .icon-box a {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border-radius: 50%;
}

.story-item .icon-box a i {
  font-size: 18px;
  color: var(--accent-color);
}

/****************************************/
/***    11. Our Limited Offer css     ***/
/****************************************/

.our-limited-offer {
  padding: 80px 0;
}

.limited-offer-content {
  height: 100%;
  align-content: center;
  margin-right: 15px;
}

.limited-offer-body-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.limited-offer-body-list ul li {
  width: calc(50% - 10px);
  position: relative;
  color: var(--white-color);
  line-height: 1.5em;
  padding-left: 30px;
}

.limited-offer-body-list ul li:before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 7 Free";
  font-size: 18px;
  font-weight: 500;
  color: var(--white-color);
  top: 0;
  left: 0;
}

.limited-offer-countdown {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--dark-divider-color);
}

.limited-offer-countdown h3 {
  font-size: 18px;
  color: var(--white-color);
  margin-bottom: 30px;
}

.limited-offer-countdown .countdown {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 60px;
  z-index: 1;
}

.limited-offer-countdown .countdown .counter-box {
  position: relative;
}

.limited-offer-countdown .countdown .counter-box:before {
  content: ":";
  position: absolute;
  top: 10px;
  right: -40px;
  font-size: 70px;
  color: var(--white-color);
  width: 18px;
  height: 34px;
}

.limited-offer-countdown .countdown .counter-box:last-child:before {
  display: none;
}

.limited-offer-countdown .countdown .counter-box span {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: -0.02em;
  color: var(--white-color);
}

.limited-offer-countdown .countdown .counter-box p {
  color: var(--white-color);
  text-transform: capitalize;
  margin: 15px 0 0;
}

.limited-offer-btn {
  margin-top: 60px;
}

.limited-offer-image {
  height: 100%;
  align-content: end;
  text-align: center;
}

.limited-offer-image figure {
  display: block;
  max-width: 575px;
  border-radius: 20px 20px 0 0;
  margin: 0 auto -80px;
}

.limited-offer-image img {
  width: 100%;
  aspect-ratio: 1 / 1.304;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

/****************************************/
/***     12. Arrives Products css     ***/
/****************************************/

.our-arrived-products {
  padding: 120px 0;
}

.arrived-products-list .product-item {
  margin-bottom: 30px;
}

.arrived-products-list .product-item .product-item-image figure {
  max-width: 190px;
  margin: 0 auto;
}

.arrived-products-list .product-item:last-child {
  margin-bottom: 0px;
}

.arrived-products-slider-box {
  position: relative;
  padding: 60px;
  height: 100%;
  min-height: 600px;
  border-radius: 20px;
  overflow: hidden;
  align-content: end;
}

.arrived-products-slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.arrived-products-slider .swiper,
.arrived-products-slider-image {
  height: 100%;
}

.arrived-products-slider-image figure {
  position: relative;
  display: block;
  height: 100%;
}

.arrived-products-slider-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 61.93%,
    rgba(0, 0, 0, 0.4) 73.68%,
    rgba(0, 0, 0, 0.8) 100%
  );
  width: 100%;
  height: 100%;
}

.arrived-products-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.arrived-products-content {
  position: relative;
  max-width: 65%;
  background-color: transparent;
  z-index: 2;
}

.arrived-products-content .section-title h2 {
  font-size: 30px;
}

.arrived-products-content .arrived-products-btn .btn-default::after {
  background: var(--accent-color);
}

.arrived-products-slider .arrived-products-pagination {
  position: absolute;
  right: 60px;
  bottom: 60px;
  left: auto;
  display: flex;
  justify-content: right;
  gap: 10px;
  z-index: 2;
}

.arrived-products-slider
  .arrived-products-pagination
  .swiper-pagination-bullet {
  position: relative;
  height: 10px;
  width: 10px;
  background: var(--dark-divider-color);
  opacity: 1;
  margin: 0;
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}

.arrived-products-slider
  .arrived-products-pagination
  .swiper-pagination-bullet-active {
  background: var(--white-color);
  width: 40px;
}

/****************************************/
/***     13. Our Testimonials css     ***/
/****************************************/

.our-testimonials {
  padding: 120px 0;
}

.testimonial-item {
  background-color: var(--white-color);
}

.testimonial-slider .swiper,
.testimonial-slider .swiper-wrapper,
.testimonial-slider .swiper-slide,
.testimonial-item {
  height: 100%;
}

.testimonial-slider .swiper-wrapper {
  cursor: none;
}

.testimonial-item {
  height: 100%;
  min-height: 350px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  transition: all 0.6s ease-in-out;
}

.testimonial-slider .swiper-slide .testimonial-item {
  transform: scale(0.95);
}

.testimonial-slider .swiper-slide.swiper-slide-next .testimonial-item {
  transform: scale(1);
}

.testimonial-item-rating i {
  color: var(--accent-color);
}

.testimonial-item-content p {
  font-size: 18px;
  font-weight: 500;
}

.testimonial-item-content p:last-child {
  margin-bottom: 0;
}

.testimonial-author-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--divider-color);
  margin-top: 30px;
  padding-top: 30px;
}

.testimonial-author-image figure {
  display: block;
  border-radius: 50%;
}

.testimonial-author-image img {
  width: 100%;
  max-width: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-author-content {
  width: calc(100% - 65px);
}

.testimonial-author-content h2 {
  font-size: 18px;
}

.testimonial-author-content p {
  margin: 5px 0 0;
  line-height: normal;
}

.testimonial-slider .testimonial-pagination {
  margin-top: 40px;
  text-align: center;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
  position: relative;
  height: 10px;
  width: 10px;
  background: var(--divider-color);
  opacity: 1;
  margin: 0 5px;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
  width: 40px;
}

.our-testimonials .section-footer-text {
  margin-top: 40px;
}

/****************************************/
/***  14. Our Smart Saving Deals css  ***/
/****************************************/

.our-smart-saving-deals {
  padding: 120px 0;
}

.smart-saving-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.smart-saving-item {
  position: relative;
  width: calc(16.66% - 8.33px);
  border-radius: 10px;
  overflow: hidden;
}

.smart-saving-item-image figure {
  position: relative;
  display: block;
  border-radius: 10px;
}

.smart-saving-item-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    transparent 61.93%,
    rgba(0, 0, 0, 0.4) 73.68%,
    rgba(0, 0, 0, 0.8) 100%
  );
  height: 100%;
  width: 100%;
  border-radius: 10px;
  z-index: 1;
}

.smart-saving-item-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.6s ease-in-out;
}

.smart-saving-item:hover .smart-saving-item-image img {
  transform: scale(1.06);
}

.smart-saving-item-content {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  text-align: center;
  z-index: 2;
}

.smart-saving-item-content h3 {
  color: var(--white-color);
  font-size: 18px;
}

.smart-saving-item-content h3 a {
  color: inherit;
}

.our-smart-saving-deals .section-footer-text {
  margin-top: 60px;
}

/****************************************/
/***   15. Our Exclusive Deals css    ***/
/****************************************/

.our-exclusive-deals .container {
  max-width: 1500px;
}

.exclusive-deals-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 60px;
  background:
    linear-gradient(270deg, rgba(21, 58, 43, 0.1) 0%, transparent 39.84%),
    var(--secondary-color);
  border-radius: 20px;
  padding: 60px 100px;
}

.exclusive-deals-image {
  width: calc(50% - 30px);
}

.exclusive-deals-image figure {
  max-width: 605px;
  display: block;
  border-radius: 20px;
  margin: 0 auto;
}

.exclusive-deals-image img {
  width: 100%;
  aspect-ratio: 1 / 0.59;
  object-fit: cover;
  border-radius: 20px;
}

.exclusive-deals-content {
  width: calc(50% - 30px);
}

.exclusive-deal-form {
  width: 100%;
  max-width: 280px;
}

.exclusive-deal-form .form-group {
  display: flex;
  border: 1px solid var(--divider-color);
  border-radius: 100px;
  padding: 5px;
}

.exclusive-deal-form .form-group .form-control {
  width: calc(100% - 40px);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text-color);
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding: 6px 15px;
}

.exclusive-deal-form .form-group .form-control::placeholder {
  color: var(--text-color);
}

.exclusive-deal-form .form-group .newsletter-btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent-color);
  border: none;
  border-radius: 50px;
  transition: all 0.4s ease-in-out;
}

.exclusive-deal-form .newsletter-btn:hover {
  background-color: var(--primary-color);
}

.exclusive-deal-form .newsletter-btn img {
  width: 100%;
  max-width: 12px;
  transition: all 0.4s ease-in-out;
}

.exclusive-deal-form .newsletter-btn:hover img {
  transform: rotate(45deg);
}

/****************************************/
/***   		 16. Our Blog css	      ***/
/****************************************/

.our-blog {
  padding: 120px 0;
}

.post-featured-image a,
.post-featured-image figure {
  display: block;
  cursor: none;
  overflow: hidden;
  border-radius: 20px;
}

.post-featured-image figure img {
  width: 100%;
  aspect-ratio: 1 / 0.684;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.post-item:hover .post-featured-image figure img {
  transform: scale(1.06);
}

.post-item-meta {
  margin-bottom: 20px;
}

.post-item-meta ul {
  list-style: none;
  display: flex;
  gap: 10px 0;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin: 0;
}

.post-item-meta ul li {
  font-size: 14px;
  line-height: normal;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid var(--divider-color);
}

.post-item-meta ul li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.post-item-meta ul li a {
  color: inherit;
}

.post-item-meta ul li img {
  width: 100%;
  max-width: 20px;
}

.post-item-content h2 {
  font-size: 18px;
  line-height: 1.4em;
}

.post-item-content h2 a {
  color: inherit;
}

.post-item-content p {
  margin: 10px 0 0;
}

.post-item-btn {
  margin-top: 25px;
}

.post-item.highlighted-post {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.post-item.highlighted-post .post-featured-image figure {
  position: relative;
}

.post-item.highlighted-post .post-featured-image figure:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    180deg,
    transparent 46.2%,
    rgb(from var(--black-color) r g b / 40%) 58.76%,
    rgb(from var(--black-color) r g b / 80%) 100%
  );
  border-radius: 20px;
  z-index: 1;
}

.post-item.highlighted-post .post-item-body {
  position: absolute;
  right: 40px;
  bottom: 40px;
  left: 40px;
  z-index: 2;
}

.post-item.highlighted-post .post-item-meta ul li,
.post-item.highlighted-post .post-item-content h2,
.post-item.highlighted-post .post-item-content p,
.post-item.highlighted-post .post-item-btn a {
  color: var(--white-color);
}

.post-item.highlighted-post .post-item-meta ul li {
  border-color: var(--dark-divider-color);
}

.post-item.highlighted-post .post-item-meta ul li img {
  filter: brightness(0) invert(1);
}

.posts-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.posts-item-list .post-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 0;
}

.posts-item-list .post-item .post-featured-image {
  width: calc(38% - 15px);
}

.post-item .post-featured-image,
.post-item .post-featured-image a,
.post-item .post-featured-image figure,
.post-item .post-featured-image img {
  height: 100%;
}

.posts-item-list .post-featured-image img {
  aspect-ratio: 1 / 1;
}

.posts-item-list .post-item .post-item-body {
  width: calc(62% - 15px);
  align-content: center;
}

/****************************************/
/***   		  17. Footer css   		  ***/
/****************************************/

.footer-header-box {
  padding: 40px 0;
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 80px;
}

.footer-header-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-contact-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.footer-contact-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.footer-contact-item .icon-box img {
  width: 100%;
  max-width: 40px;
}

.footer-contact-item-content {
  width: calc(100% - 55px);
}

.footer-contact-item-content p {
  font-size: 14px;
  line-height: normal;
  color: var(--white-color);
  margin-bottom: 0;
}

.footer-contact-item-content h2 {
  font-size: 20px;
  color: var(--white-color);
  margin: 5px 0 0;
}

.footer-contact-item-content h2 a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.footer-contact-item-content h2 a:hover {
  color: var(--primary-color);
}

.footer-payment-options ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-payment-options ul li {
  line-height: 0;
}

.footer-payment-options ul li a {
  display: inline-block;
  max-width: 60px;
  border: 1px solid var(--dark-divider-color);
  border-radius: 5px;
  text-align: center;
  align-content: center;
  overflow: hidden;
}

.footer-payment-options ul li a img {
  width: 100%;
  height: 100%;
}

.footer-logo img {
  width: 100%;
  max-width: 180px;
}

.about-footer-content {
  margin-top: 30px;
}

.about-footer-content p {
  color: var(--white-color);
  margin: 0 0 15px;
}

.about-footer-content p:last-child {
  margin-bottom: 0;
}

.footer-social-links {
  margin-top: 30px;
}

.footer-social-links ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.footer-social-links ul li a {
  width: 40px;
  height: 40px;
  color: var(--white-color);
  border: 1px solid var(--dark-divider-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
  color: var(--primary-color);
  background-color: var(--white-color);
}

.footer-social-links ul li a i {
  font-size: 18px;
  color: inherit;
}

.footer-links-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-left: 40px;
}

.footer-links {
  max-width: 28%;
}

.footer-links h2 {
  color: var(--white-color);
  font-size: 20px;
  margin-bottom: 30px;
}

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

.footer-links ul li {
  line-height: 1.4em;
  color: var(--white-color);
  margin-bottom: 15px;
}

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-links ul li a {
  color: inherit;
}

.footer-links.footer-newsletter-box {
  width: 100%;
  max-width: 36%;
}

.footer-newsletter-box .form-group {
  display: flex;
  border: 1px solid var(--dark-divider-color);
  border-radius: 100px;
  padding: 4px;
}

.footer-newsletter-box .form-group .form-control {
  width: calc(100% - 40px);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--white-color);
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding: 6px 15px;
}

.footer-newsletter-box .form-group .form-control::placeholder {
  color: var(--white-color);
}

.footer-newsletter-box .form-group .newsletter-btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white-color);
  border: none;
  border-radius: 50px;
  transition: all 0.4s ease-in-out;
}

.footer-newsletter-box .newsletter-btn:hover {
  background-color: var(--primary-color);
}

.footer-newsletter-box .newsletter-btn img {
  width: 100%;
  max-width: 12px;
  transition: all 0.4s ease-in-out;
}

.footer-newsletter-box .newsletter-btn:hover img {
  transform: rotate(45deg);
  filter: brightness(0) invert(1);
}

.footer-newsletter-box-content {
  margin-top: 40px;
}

.footer-newsletter-box-content p {
  color: var(--white-color);
  margin: 0;
}

.footer-copright {
  border-top: 1px solid var(--dark-divider-color);
  padding: 40px 0;
  margin-top: 80px;
}

.footer-copright-text {
  text-align: center;
}

.footer-copright-text p {
  color: var(--white-color);
  margin: 0;
}

/****************************************/
/***      18. About Us Page css       ***/
/****************************************/

.page-header {
  padding: 100px 0;
}

.page-header-box h1 {
  display: inline-block;
  font-size: 62px;
  line-height: 1.2em;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  cursor: none;
}

.page-header-box ol {
  margin: 0;
  padding: 0;
}

.page-header-box ol li.breadcrumb-item {
  font-size: 18px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--text-color);
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-color);
}

.about-us {
  padding: 120px 0;
}

.about-us-image-box {
  position: relative;
  height: 100%;
  border-radius: 20px;
  padding: 80px 5.208vw;
  margin-right: 15px;
  overflow: hidden;
}

.about-us-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.about-us-image figure {
  position: relative;
  display: block;
  height: 100%;
}

.about-us-image figure:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  height: 100%;
  width: 100%;
  opacity: 30%;
}

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

.about-us-image-body {
  position: relative;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  text-align: center;
  z-index: 1;
}

.about-us-image-body .section-title {
  margin: 0;
}

.about-us-image-body .section-title h2 {
  font-size: 62px;
}

.about-us-content {
  height: 100%;
  align-content: center;
}

.about-us-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.about-experience-box {
  width: 100%;
  max-width: 270px;
  background-color: var(--accent-color);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}

.about-experience-box:hover {
  background-color: var(--primary-color);
}

.about-experience-box .icon-box {
  margin-bottom: 20px;
}

.about-experience-box .icon-box img {
  width: 100%;
  max-width: 50px;
}

.about-experience-content h2 {
  font-size: 62px;
  color: var(--white-color);
}

.about-experience-content p {
  color: var(--white-color);
  margin: 5px 0 0;
}

.about-us-body-list {
  width: calc(100% - 300px);
  align-content: center;
}

.about-us-body-list h3 {
  font-size: 18px;
  margin-bottom: 30px;
}

.about-us-body-list ul {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: disc;
}

.about-us-body-list ul li {
  line-height: 1.4em;
  margin-bottom: 12px;
}

.about-us-body-list ul li:last-child {
  margin-bottom: 0;
}

.about-us-body-list ul li::marker {
  color: var(--accent-color);
}

.why-choose-us {
  padding: 120px 0;
}

.why-choose-item {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
}

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

.why-choose-item .icon-box {
  position: relative;
  height: 80px;
  width: 80px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.why-choose-item .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform: scale(0);
  z-index: 0;
}

.why-choose-item:hover .icon-box:before {
  transform: scale(1);
}

.why-choose-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 40px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.why-choose-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.why-choose-item-content h3 {
  font-size: 18px;
}

.why-choose-item-content p {
  margin: 10px 0 0;
}

.our-process {
  padding: 120px 0;
}

.our-process-content {
  height: 100%;
  align-content: center;
}

.process-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 60px;
}

.process-item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(30px, 60px);
  border-left: 2px dashed var(--divider-color);
  height: 100%;
  z-index: -1;
}

.process-item:last-child::before {
  display: none;
}
.process-item:last-child {
  margin-bottom: 0;
}

.process-item .process-item-no {
  height: 60px;
  width: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.process-item:hover .process-item-no {
  background-color: var(--primary-color);
}

.process-item-no h2 {
  color: var(--white-color);
  font-size: 30px;
  letter-spacing: -0.04em;
}

.process-item-content {
  width: calc(100% - 75px);
}

.process-item-content h3 {
  font-size: 18px;
}

.process-item-content p {
  margin: 10px 0 0;
}

.process-image-box {
  position: relative;
  height: 100%;
  padding: 0 40px 40px 0;
  margin-left: 15px;
}

.process-image {
  height: 100%;
}

.process-image figure {
  display: block;
  height: 100%;
  border-radius: 20px;
}

.process-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.992;
  object-fit: cover;
  border-radius: 20px;
}

.process-quotes-box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 310px;
  background: var(--bg-color);
  border-radius: 24px;
  padding: 10px 0 0 10px;
  z-index: 1;
}

.process-quotes-content {
  padding: 40px;
  background-color: var(--accent-color);
  background-image: url("../images/process-quotes-nox-image.png");
  background-position: bottom -5px right -5px;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 20px;
  border-right: none;
  border-bottom: none;
  transition: all 0.4s ease-in-out;
}

.process-image-box:hover .process-quotes-content {
  background-color: var(--primary-color);
}

.process-quotes-box p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--white-color);
  margin-bottom: 30px;
}

.process-quotes-box p:last-child {
  margin-bottom: 0;
}

.intro-video .container-fluid {
  padding: 0;
}

.intro-video-content-box {
  position: relative;
}

.intro-video-bg-video {
  height: 850px;
}

.intro-video-bg-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  opacity: 30%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.intro-video-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.video-play-button a {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: none;
  gap: 10px;
}

.video-play-button a span {
  position: relative;
  width: 100px;
  height: 100px;
  background: var(--dark-divider-color);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

.video-play-button a:hover span {
  background-color: var(--primary-color);
}

.video-play-button a span.bg-effect:before,
.video-play-button a span.bg-effect:after {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  border: 40px solid var(--white-color);
  opacity: 50%;
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1.2s infinite linear;
}

.video-play-button a span.bg-effect:after {
  animation-delay: 0.3s;
}

@keyframes border-zooming {
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.video-play-button a span i {
  font-size: 30px;
  color: var(--white-color);
  margin-left: 2px;
}

.our-team {
  padding: 120px 0 90px;
}

.team-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.team-item-image-box {
  position: relative;
  margin-bottom: 30px;
}

.team-item-image a {
  display: block;
  cursor: none;
  border-radius: 20px;
  overflow: hidden;
}

.team-item-image a figure {
  display: block;
}

.team-item-image a figure img {
  width: 100%;
  aspect-ratio: 1 / 1.205;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.team-item:hover .team-item-image a figure img {
  transform: scale(1.06);
}

.team-item-social-list {
  position: absolute;
  right: 20px;
  top: 20px;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0.6);
  transform-origin: top;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.team-item:hover .team-item-social-list {
  opacity: 1;
  transform: scaleY(1);
  visibility: visible;
}

.team-item-social-list ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.team-item-social-list ul li a {
  width: 40px;
  height: 40px;
  background: var(--white-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-item-social-list ul li a i {
  font-size: 18px;
  color: inherit;
}

.team-item-content h2 {
  font-size: 18px;
}

.team-item-content h2 a {
  color: inherit;
}

.team-item-content p {
  margin: 5px 0 0 0;
}

.our-faqs {
  padding: 120px 0;
}

.faqs-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.faq-cta-box {
  max-width: 465px;
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 40px;
}

.faq-cta-box .satisfy-client-images {
  margin-bottom: 30px;
}

.faq-cta-box .faq-cta-content h3 {
  font-size: 18px;
}

.faq-cta-box .faq-cta-content p {
  margin: 5px 0 0;
}

.faq-cta-btn {
  margin-top: 30px;
}

.faq-accordion .accordion-item {
  position: relative;
  background: var(--white-color);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.333em;
  background: transparent;
  color: var(--primary-color);
  padding: 22px 55px 22px 30px;
  transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\2b";
  font-family: "FontAwesome";
  position: absolute;
  right: 30px;
  top: 50%;
  font-size: 20px;
  font-weight: 400;
  transform: translateY(-50%);
  color: var(--primary-color);
  transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\f068";
  color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-body {
  background-color: transparent;
  padding: 22px 30px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
  margin: 0;
}

/****************************************/
/***       19. Blog Archive css       ***/
/****************************************/

.page-blog {
  padding: 120px 0px;
}

.page-blog .post-item {
  padding: 10px;
  background-color: var(--secondary-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-blog .post-item .post-featured-image,
.page-blog .post-item .post-featured-image a,
.page-blog .post-item .post-featured-image figure,
.page-blog .post-item .post-featured-image img {
  height: auto;
}

.page-blog .post-item .post-featured-image {
  margin-bottom: 10px;
}

.page-blog .post-item .post-featured-image a,
.page-blog .post-item .post-featured-image figure {
  border-radius: 10px;
}

.page-blog .post-item .post-item-body {
  padding: 20px;
}

.page-pagination {
  margin-top: 30px;
  text-align: center;
}

.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--divider-color);
  color: var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 500;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
  background: var(--accent-color);
  color: var(--white-color);
}

/****************************************/
/***       20. Blog Single css        ***/
/****************************************/

.page-single-post {
  padding: 120px 0;
}

.post-single-meta ol li {
  font-size: 18px;
  color: var(--text-color);
  margin-right: 15px;
}

.post-single-meta ol li:last-child {
  margin-right: 0;
}

.post-single-meta ol li i {
  font-size: 18px;
  color: var(--text-color);
  margin-right: 5px;
}

.post-image {
  position: relative;
  margin-bottom: 30px;
}

.post-image figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  aspect-ratio: 1 / 0.5;
  object-fit: cover;
  border-radius: 20px;
}

.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.post-entry:after {
  content: "";
  display: block;
  clear: both;
}

.post-entry a {
  color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  font-weight: 600;
  line-height: 1.2em;
  margin: 0 0 0.435em;
}

.post-entry h1 {
  font-size: 62px;
  line-height: 1.1em;
  letter-spacing: -0.04em;
}

.post-entry h2 {
  font-size: 46px;
  line-height: 1.1em;
  letter-spacing: -0.04em;
}

.post-entry h3 {
  font-size: 40px;
}

.post-entry h4 {
  font-size: 30px;
}

.post-entry h5 {
  font-size: 24px;
}

.post-entry h6 {
  font-size: 20px;
}

.post-entry p {
  margin-bottom: 20px;
}

.post-entry p:last-child {
  margin-bottom: 0;
}

.post-entry p strong {
  color: var(--primary-color);
  font-size: 18px;
}

.post-entry ol {
  margin: 0 0 30px;
}

.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}

.post-entry ol:last-child,
.post-entry ul:last-child {
  margin-bottom: 0;
}

.post-entry ol li,
.post-entry ul li {
  position: relative;
  line-height: 1.5em;
  color: var(--text-color);
  margin-bottom: 10px;
}

.post-entry ul li:last-child {
  margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
  margin-bottom: 0;
}

.post-entry blockquote {
  background: var(--secondary-color) url("../images/icon-blockquote.svg");
  background-repeat: no-repeat;
  background-position: 30px 30px;
  background-size: 45px;
  border-radius: 20px;
  padding: 30px 30px 30px 90px;
  margin-bottom: 20px;
}

.post-entry blockquote p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--primary-color);
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.tag-links {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.post-tags .tag-links a {
  display: inline-block;
  font-size: 16px;
  line-height: 1em;
  font-weight: 600;
  text-transform: capitalize;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 100px;
  padding: 12px 20px;
  transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
  background: var(--accent-color);
  color: var(--white-color);
}

.post-social-sharing {
  text-align: right;
}

.post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.post-social-sharing ul li:last-child {
  margin-right: 0;
}

.post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--divider-color);
  color: var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a {
  background: var(--accent-color);
  color: var(--white-color);
}

.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
}

/****************************************/
/***       21. Products Page css      ***/
/****************************************/

.page-products {
  padding: 120px 0;
}

.page-single-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 20px;
}

.product-category-item {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.product-category-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.product-category-filter-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 15px;
}

.page-single-sidebar .product-category-filter-header {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.product-category-filter-title {
  max-width: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-category-filter-title img {
  width: 100%;
  max-width: 24px;
}

.product-category-filter-title h2 {
  font-size: 18px;
}

.product-category-filter-clear-btn a {
  font-size: 16px;
  color: var(--text-color);
  transition: all 0.4s ease-in-out;
}

.product-category-filter-clear-btn a:hover {
  color: var(--accent-color);
}

.product-category-item-title {
  position: relative;
  font-size: 18px;
  margin-bottom: 20px;
}

.product-category-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-category-item ul li {
  line-height: normal;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 5px 10px;
  margin-bottom: 20px;
}

.product-category-item ul li:last-child {
  margin-bottom: 0;
}

.product-category-item ul li input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-color);
}

.product-category-item ul li label {
  flex: 1;
  cursor: pointer;
}

.product-item-list-box .product-category-filter-header {
  margin-bottom: 20px;
}

.product-category-result-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-category-result-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.product-category-result-pagination ul li {
  position: relative;
  line-height: 1.4em;
}

.product-category-result-pagination ul li::before {
  content: "/";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -12px;
}

.product-category-result-pagination ul li:last-child::before {
  display: none;
}

.product-category-result-pagination ul li a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.product-category-result-pagination ul li a:hover {
  color: var(--primary-color);
}

.product-category-sorting-list .form-select {
  min-width: 190px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25em;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border: none;
  border-radius: 5px;
  padding: 9px 35px 9px 15px;
  outline: none;
  box-shadow: none;
}

.product-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.product-item-list .product-item {
  width: calc(33.33% - 10px);
}

.product-learn-more-btn {
  text-align: center;
  margin-top: 60px;
}

/****************************************/
/***       21. Product Single css     ***/
/****************************************/

.page-product-single {
  padding: 60px 0 120px;
}

.product-single-breadcrumb-list {
  margin-bottom: 40px;
}

.product-single-breadcrumb-list ol {
  margin: 0;
  gap: 15px 55px;
}

.product-single-breadcrumb-list ol li {
  position: relative;
  color: var(--text-color);
  padding: 0;
}

.product-single-breadcrumb-list .breadcrumb li::before {
  content: "";
  position: absolute;
  right: -34px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/arrow-right-long.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  width: 14px;
  height: 14px;
  padding: 0;
}

.product-single-breadcrumb-list .breadcrumb li:last-child:before {
  display: none;
}

.product-single-breadcrumb-list .breadcrumb-item + .breadcrumb-item {
  padding: 0;
}

.product-single-breadcrumb-list .breadcrumb-item + .breadcrumb-item::before {
  content: "";
}

.product-single-breadcrumb-list .breadcrumb li a {
  color: inherit;
}

.product-single-info-box {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 30px 50px;
}

.product-single-image-box {
  position: sticky;
  width: calc(50% - 25px);
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  top: 20px;
  gap: 10px;
}

.product-single-image-slider {
  width: 145px;
}

.product-single-image-slider .swiper-wrapper {
  height: auto;
  flex-direction: column;
  gap: 10px 0;
}

.product-single-image-slider .swiper-slide {
  width: 100% !important;
  background: var(--secondary-color);
  border-radius: 20px;
  cursor: pointer;
  align-content: center;
  overflow: hidden;
}

.product-single-image-slider .swiper-slide figure {
  display: block;
  height: 100%;
}

.product-single-image-slider .swiper-slide figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-single-image-item {
  width: calc(100% - 155px);
  background-color: var(--secondary-color);
  border-radius: 20px;
}

.product-single-image-item .swiper-slide {
  align-content: center;
}

.product-single-image-item .swiper-slide figure {
  text-align: center;
  height: 100%;
}

.product-single-image-item .swiper-slide figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-single-info-content {
  width: calc(50% - 25px);
}

.product-single-title span {
  display: block;
  margin-bottom: 10px;
}

.product-single-title h1 {
  font-size: 46px;
  letter-spacing: -0.04em;
}

.product-single-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 15px;
}

.product-single-rating i {
  font-size: 16px;
  color: var(--accent-color);
}

.product-single-rating b {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.product-single-price,
.product-single-description,
.product-single-item-weight {
  margin-top: 30px;
}

.product-single-price h2 {
  font-size: 30px;
}

.product-single-price h2 sub {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-color);
  text-decoration: line-through;
  bottom: 0;
}

.product-single-description p {
  font-size: 16px;
  margin-bottom: 20px;
}

.product-single-description p:last-child {
  margin-bottom: 0;
}

.product-single-item-weight h2 {
  font-size: 18px;
  margin-bottom: 15px;
}

.product-single-item-weight ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-single-item-weight ul li input[type="radio"] {
  width: 0;
  height: 0;
}

.product-single-item-weight ul li label {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  background: var(--secondary-color);
  border-radius: 100px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.product-single-item-weight ul li label:hover,
.product-single-item-weight ul li input[type="radio"]:checked + label {
  background: var(--accent-color);
  color: var(--white-color);
}

.product-single-content-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--divider-color);
  padding: 12px;
  border-radius: 100px;
  gap: 12px;
}

.qty-btn {
  background: none;
  border: none;
  padding: 0;
  line-height: 0;
  outline: none;
}

.qty-btn span {
  font-size: 30px;
  color: var(--primary-color);
}

.qty-input {
  width: 35px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  outline: none;
}

.product-single-content-body .product-single-content-btn {
  line-height: 0;
}

.product-single-action ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-single-action ul li a {
  display: inline-block;
  border: 1px solid var(--divider-color);
  border-radius: 100px;
  padding: 12px;
  transition: all 0.4s ease-in-out;
}

.product-single-action ul li a:hover {
  background: var(--accent-color);
}

.product-single-action ul li a img {
  width: 100%;
  max-width: 24px;
  transition: all 0.4s ease-in-out;
}

.product-single-action ul li a:hover img {
  filter: brightness(0) invert(1);
}

.product-single-content-footer {
  border-top: 1px solid var(--divider-color);
  margin-top: 30px;
  padding-top: 30px;
}

.product-single-details-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-single-details-list ul li {
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 5px;
}

.product-single-details-list ul li span {
  font-weight: 600;
  color: var(--primary-color);
}

.product-single-details-list ul li:last-child {
  margin-bottom: 0;
}

.product-single-review-box {
  margin-top: 100px;
}

.product-step-nav {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.product-step-nav .nav-tabs {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  border: none;
}

.product-step-nav ul li {
  width: auto;
}

.product-step-nav ul li .nav-link {
  position: relative;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  padding: 0;
  border-radius: 0;
  margin: 0;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.product-step-nav ul li .nav-link.active,
.product-step-nav ul li .nav-link:hover {
  background: transparent;
  color: var(--primary-color);
}

.product-step-nav ul li .nav-link::before {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  left: auto;
  bottom: -26px;
  right: 0;
  background: var(--primary-color);
  width: 0;
  height: 2px;
  transition: all 0.4s ease-in-out;
}

.product-step-nav ul li .nav-link.active::before,
.product-step-nav ul li .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}

.product-tab-item-box h3 {
  font-size: 18px;
  margin-top: 20px;
}

.product-tab-item-box h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.product-tab-item-box p {
  margin-bottom: 20px;
}

.product-tab-item-box ul {
  list-style: disc;
  padding: 0 0 0 20px;
  margin: 20px 0 0 0;
}

.product-tab-item-box ul li {
  line-height: 1.4em;
  margin-bottom: 12px;
}

.product-tab-item-box h2:last-child,
.product-tab-item-box ul:first-child,
.product-tab-item-box p:last-child,
.product-tab-item-box ul li:last-child {
  margin: 0;
}

.product-review-from-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
}

.review-form,
.customer-review-list {
  width: calc(50% - 30px);
}

.customer-review-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.customer-review-item:last-child {
  margin-bottom: 0;
}

.customer-review-item .icon-box {
  margin-right: 20px;
}

.customer-review-item .icon-box img {
  width: 100%;
  max-width: 60px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.customer-review-item-body {
  width: calc(100% - 80px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.customer-review-item-content p {
  margin: 0 0 5px 0;
}

.customer-review-item-content p:last-child {
  margin-bottom: 0;
}

.customer-review-item-content p span {
  color: var(--primary-color);
  font-weight: 600;
}

.customer-review-item-rating i {
  color: var(--accent-color);
  font-size: 16px;
}

.review-form-content {
  margin-bottom: 30px;
}

.review-form-content h3 {
  margin: 0 0 5px 0;
}

.review-form-content p {
  margin: 15px 0 0 0;
}

.review-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--primary-color);
  border: 1px solid var(--divider-color);
  background-color: transparent;
  border-radius: 10px;
  padding: 12px 20px;
  box-shadow: none;
  outline: none;
}

.review-form .form-control::placeholder {
  color: var(--text-color);
  opacity: 50%;
}

.review-form-note {
  display: flex;
  align-items: start;
  gap: 5px;
}

.review-form-note input {
  margin-top: 2px;
}

.review-form-note .form-label {
  margin: 0;
  line-height: 1.1em;
}

.review-form .btn-default {
  width: 100%;
  padding: 15px 30px;
  margin: 20px 0 0 0;
}

.review-form .btn-default::before {
  display: none;
}

.product-additional-content-title {
  margin-bottom: 30px;
}

.product-additional-info-table {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
}

.product-additional-info-table table {
  width: 100%;
  white-space: nowrap;
  border: 1px solid var(--divider-color);
}

.product-additional-info-table::-webkit-scrollbar {
  height: 7px;
}

.product-additional-info-table::-webkit-scrollbar-track {
  background-color: var(--secondary-color);
}

.product-additional-info-table::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}

.product-additional-info-table table tr b {
  font-weight: 600;
  color: var(--primary-color);
}

.product-additional-info-table table tr td {
  min-width: 200px;
  border-top: 1px solid var(--divider-color);
  border-right: 1px solid var(--divider-color);
  color: var(--primary-color);
  padding: 20px 30px;
}

.product-additional-info-table table tr td:last-child {
  border-right: none;
}

.related-products {
  padding: 120px 0;
}

.related-product-items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.related-product-items-list .product-item {
  width: calc(25% - 22.5px);
  background-color: var(--white-color);
}

.related-product-items-list .product-item .product-item-action ul li a {
  background-color: var(--secondary-color);
}

.related-product-items-list .product-item .product-item-action ul li a:hover {
  background-color: var(--primary-color);
}

/****************************************/
/***      	 22. Cart Page css	      ***/
/****************************************/

.page-cart {
  padding: 120px 0;
}

.cart-item-header,
.cart-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.cart-item-header span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--primary-color);
}

.product-header-tag {
  width: calc(46% - 7.5px);
}

.price-header-tag {
  width: calc(18% - 7.5px);
}

.quantity-header-tag {
  width: calc(21% - 7.5px);
}

.subtotal-header-tag {
  width: calc(15% - 7.5px);
}

.cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cart-item-image-content {
  width: calc(63% - 5px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 30px;
}

.cart-item-image {
  position: relative;
  background: var(--secondary-color);
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin: 5px 5px 0 0;
}

.cart-item-image::before {
  content: "\f00d";
  position: absolute;
  top: -5px;
  right: -5px;
  font-family: "FontAwesome";
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-color);
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  font-size: 12px;
  color: var(--text-color);
  cursor: pointer;
}

.cart-item-image figure {
  display: block;
}

.cart-item-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cart-item-info-content {
  width: calc(100% - 110px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-grow: 1;
}

.cart-item-title p {
  color: var(--primary-color);
  max-width: 160px;
}

.cart-item-title p:last-child {
  margin-bottom: 0;
}

.cart-item-price {
  width: 35%;
}

.cart-item-price p:last-child {
  margin-bottom: 0;
}

.cart-item-quantity-total {
  width: calc(37% - 5px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.cart-item-quantity .qty-box {
  padding: 4px 10px;
  gap: 10px;
}

.cart-item-quantity .qty-btn {
  font-size: 22px;
}

.cart-item-subtotal {
  width: 38%;
}

.cart-item-subtotal p:last-child {
  margin-bottom: 0;
}

.cart-item-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: 40px;
}

.cart-item-buttons .btn-default {
  padding: 16px 24px 16px 55px;
}

.cart-item-buttons .btn-default.btn-update::before,
.cart-item-buttons .btn-default.btn-clear::before {
  font-family: "FontAwesome";
  font-size: 18px;
  color: var(--white-color);
  background: transparent;
  left: 25px;
  width: auto;
  height: auto;
  right: auto;
}

.cart-item-buttons .btn-default.btn-update:hover::before,
.cart-item-buttons .btn-default.btn-clear:hover::before {
  transform: translateY(-50%);
}

.cart-item-buttons .btn-default.btn-update::before {
  content: "\f01e";
}

.cart-item-buttons .btn-default.btn-clear::before {
  content: "\f2ed";
  font-weight: 400;
}

.interested-products-box {
  margin-top: 120px;
}

.interested-products-box-title {
  margin-bottom: 30px;
}

.interested-products-box-title h2 {
  font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1.1em;
}

.page-single-sidebar.right-side-sidebar {
  margin: 0 0 0 20px;
}

.order-summary-box {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 15px;
}

.order-summary-content-box {
  padding: 15px;
  margin-bottom: 15px;
}

.order-summary-box-title,
.order-summary-promocode-box,
.order-summary-shipment-info {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.order-summary-box-title h2 {
  font-size: 18px;
}

.order-summary-promocode-form {
  margin-bottom: 30px;
}

.order-summary-promocode-form .form-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: transparent;
  border: 1px solid var(--divider-color);
  border-radius: 100px;
  padding: 5px;
}

.order-summary-promocode-form .form-group .form-control {
  width: calc(100% - 40px);
  font-size: 16px;
  line-height: normal;
  color: var(--text-color);
  background-image: url("../images/icon-tag.svg");
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 14px auto;
  border: none;
  border-radius: 100px;
  outline: none;
  box-shadow: none;
  padding: 8px 10px 8px 36px;
}

.order-summary-promocode-form .form-group .form-control::placeholder {
  color: var(--text-color);
  opacity: 50%;
}

.order-summary-promocode-form .form-group .promocode-btn {
  background: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  box-shadow: none;
  transition: all 0.4s ease-in-out;
}

.order-summary-promocode-form .form-group .promocode-btn:hover {
  transform: rotate(45deg);
  background: var(--primary-color);
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.order-summary-total h3 {
  font-size: 18px;
  line-height: normal;
}

.order-summary-shipment-info h3 {
  font-size: 18px;
  line-height: normal;
  margin-bottom: 20px;
}

.order-summary-shipment-info ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.order-summary-shipment-info ul li {
  margin-bottom: 10px;
}

.order-summary-shipment-info ul li:last-child {
  margin-bottom: 0;
}

.order-summary-shipment-info ul li,
.order-summary-shipment-info ul li span {
  font-size: 16px;
  line-height: normal;
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px 10px;
}

.order-summary-shipment-info ul li span {
  flex-grow: 1;
  font-weight: 400;
  color: var(--text-color);
}

.order-summary-shipment-info ul li span label {
  width: calc(100% - 28px);
}

.order-summary-shipment-info ul li input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

.order-summary-shipment-info p {
  font-size: 16px;
  margin-bottom: 5px;
}

.order-summary-shipment-info p span {
  font-weight: 600;
  color: var(--primary-color);
}

.order-summary-shipment-info a {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
}

.order-summary-shipment-info a:hover {
  color: var(--primary-color);
}

.order-checkout-button .btn-default {
  width: 100%;
  text-align: center;
  padding-right: 24px;
}

.order-checkout-button .btn-default::before {
  display: none;
}

/****************************************/
/***    23. Order Details Page css    ***/
/****************************************/

.page-order-receive {
  padding: 120px 0;
}

.order-receive-sidebar {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 30px;
}

.order-receive-sidebar-item {
  margin-bottom: 50px;
}

.order-receive-sidebar-item:last-child {
  margin-bottom: 0;
}

h2.order-sidebar-item-title {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--divider-color);
}

.order-receive-sidebar-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-receive-sidebar-item ul li {
  line-height: 1.5em;
  margin-bottom: 20px;
}

.order-receive-sidebar-item ul li:last-child {
  margin-bottom: 0;
}

.order-receive-sidebar-item ul li a {
  display: block;
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.order-receive-sidebar-item ul li a:hover {
  color: var(--primary-color);
}

.order-receive-box ul li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--divider-color);
}

.order-receive-box ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.order-receive-box ul li span b {
  font-weight: 400;
  color: var(--primary-color);
}

.order-receive-title-box {
  margin-bottom: 40px;
}

.order-receive-title-box h2 {
  font-size: 46px;
  letter-spacing: -0.04em;
}

.order-receive-title-box p {
  font-size: 18px;
  color: var(--primary-color);
  margin: 5px 0 0;
}

.order-receive-content-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-receive-content-list ul li {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  line-height: 1.5em;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--divider-color);
}

.order-receive-content-list ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.order-receive-content-list ul li span {
  width: 67%;
}

li.order-receive-content-list-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

/****************************************/
/***       24. Checkout Page css      ***/
/****************************************/

.page-checkout {
  padding: 120px 0;
}

.checkout-login-box {
  margin-bottom: 40px;
}

.checkout-login-accordion {
  margin-bottom: 30px;
}

.checkout-login-accordion:last-child {
  margin-bottom: 0;
}

.checkout-accordion-header .checkout-accordion-button {
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 1.25em;
  color: var(--text-color);
  background: transparent;
  border: 1px dashed var(--divider-color);
  border-radius: 10px;
  text-align: left;
  padding: 14px 40px 14px 20px;
}

.checkout-accordion-header .checkout-accordion-button::after,
.checkout-accordion-header .checkout-accordion-button.collapsed::after {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  right: 20px;
  top: 50%;
  font-size: 18px;
  color: var(--text-color);
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.checkout-accordion-header .checkout-accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg);
}

.checkout-accordion-header .checkout-accordion-button b {
  font-weight: 400;
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
}

.checkout-accordion-header .checkout-accordion-button b:hover {
  color: var(--primary-color);
}

.checkout-accordion-body {
  margin-top: 30px;
}

.checkout-accordion-body-content {
  margin-bottom: 30px;
}

.checkout-accordion-body-content p {
  margin-bottom: 15px;
}

.checkout-accordion-body-content p:last-child {
  margin-bottom: 0;
}

.checkout-bill-address-form .form-group,
.checkout-login-form .form-group {
  margin-bottom: 30px;
}

.checkout-bill-address-form .form-group:last-child,
.checkout-login-form .form-group:last-child {
  margin-bottom: 0;
}

.checkout-bill-address-form .form-group label,
.checkout-login-form .form-group label {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.checkout-bill-address-form .form-control,
.checkout-login-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--primary-color);
  border: 1px solid var(--divider-color);
  background-color: transparent;
  border-radius: 10px;
  padding: 12px 20px;
  box-shadow: none;
  outline: none;
}

.checkout-bill-address-form .form-control::placeholder,
.checkout-login-form .form-control::placeholder {
  color: var(--text-color);
}

.checkout-bill-address-form select.form-control {
  padding: 12px 35px 12px 20px;
}

.checkout-bill-address-form select option {
  color: var(--primary-color);
}

.checkout-login-form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.checkout-form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

.checkout-form-checkbox label {
  font-size: 16px;
  color: var(--text-color);
  cursor: pointer;
  margin: 0;
}

.checkout-bill-address-title {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.checkout-bill-address-title h2 {
  font-size: 18px;
}

.checkout-form-checkbox.different-address-note {
  margin-top: 20px;
}

.checkout-form-checkbox.different-address-note label {
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
}

.checkout-sidebar-box {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 15px;
}

.product-total-order-box {
  padding: 15px;
}

.checkout-coupeon-accordion {
  margin-bottom: 30px;
}

.checkout-coupeon-accordion:last-child {
  margin-bottom: 0;
}

.coupeon-accordion-header .coupeon-accordion-button {
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 1.25em;
  color: var(--text-color);
  background: transparent;
  border: 1px dashed var(--divider-color);
  border-radius: 10px;
  text-align: left;
  padding: 14px 40px 14px 20px;
}

.coupeon-accordion-header .coupeon-accordion-button::after,
.coupeon-accordion-header .coupeon-accordion-button.collapsed::after {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  right: 20px;
  top: 50%;
  font-size: 18px;
  color: var(--text-color);
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.coupeon-accordion-header .coupeon-accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg);
}

.coupeon-accordion-header .coupeon-accordion-button b {
  text-decoration: underline;
  font-weight: 400;
}

.coupeon-accordion-header .coupeon-accordion-button b:hover {
  color: var(--primary-color);
}

.coupeon-accordion-body {
  margin-top: 30px;
}

.coupeon-accordion-body-content {
  margin-bottom: 20px;
}

.coupeon-accordion-body-content p {
  margin-bottom: 15px;
}

.coupeon-accordion-body-content p:last-child {
  margin-bottom: 0;
}

.coupeon-apply-form {
  display: flex;
  align-items: center;
  border: 1px solid var(--divider-color);
  border-radius: 100px;
  padding: 5px;
}

.coupeon-apply-form .form-group {
  width: calc(100% - 40px);
}

.coupeon-apply-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--primary-color);
  background-color: transparent;
  background-image: url("../images/icon-tag.svg");
  background-repeat: no-repeat;
  background-position: left 12px top 50%;
  background-size: 14px auto;
  border-radius: 100px;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 8px 18px 8px 35px;
}

.coupeon-apply-form .form-control::placeholder {
  color: var(--text-color);
}

.coupeon-apply-btn button {
  background: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  box-shadow: none;
  transition: all 0.4s ease-in-out;
}

.coupeon-apply-btn button:hover {
  transform: rotate(45deg);
  background: var(--primary-color);
}

.product-total-order-title {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.product-total-order-title h3 {
  font-size: 18px;
}

.product-total-item-tag-list {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.product-total-item-tag {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.product-total-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--divider-color);
  margin-top: 20px;
  padding-top: 20px;
}

.product-total-item-header {
  max-width: 70%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.product-total-item-image {
  width: 60px;
  height: 60px;
  text-align: center;
  align-content: center;
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 5px;
}

.product-total-item-image figure {
  display: block;
}

.product-total-item-image figure img {
  width: 100%;
  aspect-ratio: 1 / 0.7;
  object-fit: cover;
}

.product-total-item-title {
  width: calc(100% - 75px);
}

.product-total-item-title p {
  margin: 0;
}

.product-total-item-subtotal p {
  margin: 0;
}

.all-product-total {
  border-top: 1px solid var(--divider-color);
  margin-top: 20px;
  padding-top: 20px;
}

.all-product-total p {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  line-height: normal;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.all-product-total p:last-child {
  margin-bottom: 0;
}

.product-total-order-list .order-summary-shipment-info {
  border-top: 1px solid var(--divider-color);
  border-bottom: none;
  margin: 20px 0 0 0;
  padding: 20px 0 0 0;
}

.order-payment-info {
  border-top: 1px solid var(--divider-color);
  margin-top: 20px;
  padding-top: 20px;
}

.order-payment-info-item {
  margin-bottom: 20px;
}

.order-payment-info-item:last-child {
  margin-bottom: 0;
}

.order-payment-info-item span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  color: var(--text-color);
}

.order-payment-info-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

.order-payment-info-item span label {
  width: calc(100% - 28px);
  font-weight: 500;
  color: var(--primary-color);
}

.order-payment-info-item p {
  margin: 10px 0 0 0;
}

.place-order-button {
  margin-top: 15px;
}

.place-order-button .btn-default {
  width: 100%;
  text-align: center;
  padding-right: 24px;
}

.place-order-button .btn-default::before {
  display: none;
}

/****************************************/
/***  25. Account Dashboard Page css  ***/
/****************************************/

.page-my-account {
  padding: 120px 0;
}

.my-account-sidebar-item {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 40px;
}

.my-account-sidebar-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.my-account-sidebar-item ul li {
  font-weight: 600;
  color: var(--primary-color);
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.my-account-sidebar-item ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.my-account-sidebar-item ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: initial;
  transition: all 0.4s ease-in-out;
}

.my-account-sidebar-item ul li a:hover {
  color: var(--accent-color);
}

.my-account-sidebar-item ul li img {
  width: 100%;
  max-width: 24px;
}

.account-dashboard-detail-box p {
  margin-bottom: 30px;
}

.account-dashboard-detail-box p:last-child {
  margin-bottom: 0;
}

.account-dashboard-detail-box p b {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.account-dashboard-detail-box p a {
  font-weight: 500;
  text-decoration: underline;
  color: var(--primary-color);
  transition: all 0.4s ease-in-out;
}

.account-dashboard-detail-box p a:hover {
  color: var(--accent-color);
}

/****************************************/
/***    26. Account Order Page css    ***/
/****************************************/

.page-account-order {
  padding: 120px 0;
}

.account-order-table-box {
  overflow-x: auto;
  cursor: grab;
}

.account-order-table-box table {
  width: 100%;
  white-space: nowrap;
}

.account-order-table-box::-webkit-scrollbar {
  height: 7px;
}

.account-order-table-box::-webkit-scrollbar-track {
  background-color: var(--secondary-color);
}

.account-order-table-box::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}

.account-order-table-box table tr th {
  min-width: 100px;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  color: var(--primary-color);
  padding: 0 10px 20px 0;
}

.account-order-table-box table tr td {
  border-top: 1px solid var(--divider-color);
  padding: 20px 10px 20px 0;
}

.account-order-table-box table tr:last-child td {
  padding-bottom: 0;
}

.account-order-table-box table tr td:last-child {
  padding-right: 0;
}

.account-order-table-box table tr td.account-order-table-no {
  color: var(--primary-color);
}

.account-order-table-box table tr td .btn-default {
  font-size: 16px;
  padding: 8px 30px;
}

.account-order-table-box table tr td .btn-default::before {
  display: none;
}

.account-order-button {
  margin-top: 40px;
}

/****************************************/
/***  27. Account Order View Page css ***/
/****************************************/

.page-account-view-order {
  padding: 120px 0;
}

.view-order-product-info-box .product-header-tag {
  width: calc(53% - 6.67px);
}

.view-order-product-info-box .quantity-header-tag {
  width: calc(27% - 6.67px);
}

.view-order-product-info-box .subtotal-header-tag {
  width: calc(20% - 6.67px);
}

.view-order-product-info-box .cart-item-image-content {
  width: calc(53% - 5px);
}

.view-order-product-info-box .cart-item-quantity-total {
  width: calc(47% - 5px);
}

.view-order-product-info-box .cart-item-subtotal {
  width: 44%;
}

.view-order-product-info-box .cart-item-quantity p:last-child {
  margin: 0;
}

ul.view-order-product-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.view-order-product-info-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
  line-height: 1.2em;
  color: var(--primary-color);
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

ul.view-order-product-info-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

ul.view-order-product-info-list li span {
  width: 21%;
  font-weight: 400;
  color: var(--text-color);
}

.view-order-address-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 90px;
  margin-top: 80px;
}

.view-order-address-item {
  width: calc(50% - 45px);
}

.view-order-address-item h2 {
  font-size: 18px;
}

.view-order-address-item ul {
  list-style: none;
  border-top: 1px solid var(--divider-color);
  margin: 20px 0 0;
  padding: 20px 0 0;
}

.view-order-address-item ul li {
  line-height: 1.5em;
  margin-bottom: 20px;
}

.view-order-address-item ul li:last-child {
  margin-bottom: 0;
}

.view-order-address-item ul li a {
  display: block;
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.view-order-address-item ul li a:hover {
  color: var(--accent-color);
}

/****************************************/
/***  28. Account Download Page css   ***/
/****************************************/

.page-product-download {
  padding: 120px 0;
}

/****************************************/
/***   29. Account Address Page css   ***/
/****************************************/

.page-my-account-address {
  padding: 120px 0;
}

.account-address-content-header {
  margin-bottom: 40px;
}

.account-address-content-header p:last-child {
  margin-bottom: 0;
}

.account-address-item {
  margin-bottom: 50px;
}

.account-address-item:last-child {
  margin-bottom: 0;
}

.account-address-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--divider-color);
}

.account-address-item-title h2 {
  font-size: 18px;
}

.account-address-item-title p {
  font-weight: 600;
  margin-bottom: 0;
}

.account-address-item-title p a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.account-address-item-title p a:hover {
  color: var(--primary-color);
}

.account-address-item-title p a img {
  width: 100%;
  max-width: 24px;
  transition: all 0.4s ease-in-out;
}

.account-address-item-title p a:hover img {
  filter: brightness(0) invert(0);
}

.account-address-item-info-list {
  max-width: 415px;
}

.account-address-item-info-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.account-address-item-info-list ul li {
  line-height: 1.5em;
  margin-bottom: 20px;
}

.account-address-item-info-list ul li:last-child {
  margin-bottom: 0;
}

/****************************************/
/***  30. Account Addresses Page css  ***/
/****************************************/

.page-account-addresses {
  padding: 120px 0;
}

.account-address-form-btn {
  margin-top: 10px;
}

/****************************************/
/***   31. Account Details Page css   ***/
/****************************************/

.page-account-details {
  padding: 120px 0;
}

.account-details-content-item {
  margin-bottom: 50px;
}

.account-details-content-item:last-child {
  margin-bottom: 0;
}

/****************************************/
/***   32. Account Wishlist Page css  ***/
/****************************************/

.page-account-wishlist {
  padding: 120px 0;
}

.wishlist-item-header,
.wishlist-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.wishlist-item-header span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--primary-color);
}

.wishlist-product-tag {
  width: calc(41% - 7.5px);
}

.wishlist-price-tag {
  width: calc(24% - 7.5px);
}

.wishlist-status-tag {
  width: calc(25% - 7.5px);
}

.wishlist-action-tag {
  width: calc(10% - 7.5px);
}

.wishlist-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.wishlist-item-image-content {
  width: calc(65% - 5px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.wishlist-item-image {
  position: relative;
  background: var(--secondary-color);
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.wishlist-item-image figure {
  display: block;
}

.wishlist-item-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.wishlist-item-info-content {
  width: calc(100% - 90px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 5px 10px;
}

.wishlist-item-title {
  width: calc(54% - 5px);
}

.wishlist-item-title p {
  line-height: normal;
}

.wishlist-item-title p:last-child {
  margin-bottom: 0;
}

.wishlist-item-price {
  width: calc(46% - 5px);
}

.wishlist-item-price p {
  line-height: normal;
  margin-bottom: 5px;
}

.wishlist-item-price p:last-child {
  margin-bottom: 0;
}

.wishlist-item-price p span {
  text-decoration: line-through;
}

.wishlist-item-status-action {
  width: calc(35% - 5px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.wishlist-item-status p:last-child {
  margin-bottom: 0;
}

.wishlist-item-action {
  width: 22%;
}

.wishlist-item-action a {
  display: inline-block;
  color: var(--error-color);
  transition: all 0.4s ease-in-out;
}

.wishlist-item-action a i {
  font-size: 24px;
  color: inherit;
}

.wishlist-item-action a:hover {
  color: var(--accent-color);
}

.wishlist-content-button {
  margin-top: 40px;
}

/****************************************/
/***      	33. Login Page css	      ***/
/****************************************/

.page-login {
  padding: 120px 0;
}

.login-content-box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 80px;
}

.login-content-form-item {
  width: calc(50% - 40px);
}

.login-content-title-box {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.login-content-title-box h2 {
  font-size: 36px;
}

.login-content-title-box p {
  margin: 15px 0 0;
}

.login-content-form-btn {
  margin-top: 30px;
}

.login-content-form-btn a {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
}

.login-content-form-btn a:hover {
  color: var(--primary-color);
}

.login-form-info p {
  margin-bottom: 15px;
}

.login-form-info p:last-child {
  margin: 0;
}

.login-form-info p a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
}

.login-form-info p a:hover {
  color: var(--accent-color);
}

.signup-form-btn {
  margin-top: 30px;
}

.signup-form-btn .btn-default {
  width: 100%;
  padding-right: 24px;
}

.signup-form-btn .btn-default::before {
  display: none;
}

/****************************************/
/***      34. Forgot Password css     ***/
/****************************************/

.page-forgot-password {
  padding: 120px 0;
}

.forgot-password-content-box .login-content-form-item {
  width: auto;
  max-width: 860px;
  margin: 0 auto;
}

.forgot-password-content-box
  .login-content-form-item
  .login-content-title-box
  p {
  max-width: 730px;
}

/****************************************/
/***    35. Privacy Policy Page css   ***/
/****************************************/

.page-privacy-policy {
  padding: 120px 0;
}

.page-category-list {
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-category-list ul {
  list-style: none;
  margin: 0;
  padding: 30px;
}

.page-category-list ul li {
  line-height: 1.5em;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.page-category-list ul li:last-child {
  border-bottom: none;
  margin: 0;
  padding: 0;
}

.page-category-list ul li a {
  position: relative;
  display: block;
  text-transform: capitalize;
  color: inherit;
  padding-right: 25px;
  transition: all 0.3s ease-in-out;
}

.page-category-list ul li a:hover {
  color: var(--primary-color);
}

.page-category-list ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: url("../images/arrow-primary.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before {
  transform: translateY(-50%) rotate(45deg);
}

.page-category-list.privacy-policy-sidebar-list ul li a {
  padding-right: 0;
}

.page-category-list.privacy-policy-sidebar-list ul li a::before {
  display: none;
}

.sidebar-cta-box {
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  padding: 30px;
}

.sidebar-cta-title {
  max-width: 90%;
}

.sidebar-cta-box h2 {
  font-size: 22px;
  line-height: 1.4em;
}

.sidebar-cta-box ul {
  border-top: 1px solid var(--divider-color);
  margin: 30px 0 0 0;
  padding: 30px 0 0 0;
  list-style: none;
}

.sidebar-cta-box ul li {
  color: var(--text-color);
  line-height: 1.5em;
  margin-bottom: 15px;
}

.sidebar-cta-box ul li:last-child {
  margin-bottom: 0;
}

.sidebar-cta-box ul li a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.sidebar-cta-box ul li a:hover {
  color: var(--primary-color);
}

.sidebar-cta-box ul li a img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

.privacy-policy-entry-header {
  margin-bottom: 60px;
}

.privacy-policy-entry-header h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.privacy-policy-entry-header p {
  margin-bottom: 20px;
}

.privacy-policy-entry-header h3:last-child,
.privacy-policy-entry-header p:last-child {
  margin-bottom: 0;
}

.privacy-policy-entry-header p a {
  color: var(--primary-color);
  transition: all 0.4s ease-in-out;
}

.privacy-policy-entry-header p a:hover {
  color: var(--accent-color);
}

.privacy-policy-entry-item {
  margin-bottom: 60px;
}

.privacy-policy-entry-item:last-child {
  margin-bottom: 0;
}

.privacy-policy-entry-item .section-title:last-child {
  margin-bottom: 0;
}

.privacy-policy-entry-item .section-title h2 {
  font-size: 36px;
}

.privacy-policy-entry-item .section-title ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.privacy-policy-entry-item .section-title ul li {
  line-height: 1.4em;
  margin-bottom: 10px;
}

.privacy-policy-entry-item .section-title ul li:last-child {
  margin-bottom: 0;
}

.privacy-policy-entry-item .section-title ul li span {
  color: var(--primary-color);
}

.privacy-policy-entry-item .section-title ul li a {
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.privacy-policy-entry-item .section-title ul li a:hover {
  color: var(--accent-color);
}

.privacy-policy-entry-item-content-box {
  margin-bottom: 50px;
}

.privacy-policy-entry-item-content-box:last-child {
  margin-bottom: 0;
}

.privacy-policy-entry-item-content-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.privacy-policy-entry-item-content-box p {
  margin-bottom: 15px;
}

.privacy-policy-entry-item-content-box p:last-child {
  margin-bottom: 0;
}

.privacy-policy-entry-item-content-box p span {
  color: var(--primary-color);
}

.privacy-policy-entry-item-content-box ul {
  list-style: disc;
  margin: 0 0 20px;
  padding: 0 0 0 20px;
}

.privacy-policy-entry-item-content-box.number-list ul {
  list-style: decimal;
  padding-left: 25px;
}

.privacy-policy-entry-item-content-box h3:last-child,
.privacy-policy-entry-item-content-box ul:last-child {
  margin-bottom: 0;
}

.privacy-policy-entry-item-content-box ul li {
  line-height: 1.4em;
  margin-bottom: 10px;
}

.privacy-policy-entry-item-content-box ul li:last-child {
  margin-bottom: 0;
}

.privacy-policy-entry-item-content-box ul li span,
.privacy-policy-entry-item-content-box ul li::marker {
  color: var(--primary-color);
}

.privacy-policy-entry-item-content-box ul li a {
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.privacy-policy-entry-item-content-box ul li a:hover {
  color: var(--accent-color);
}

.privacy-policy-entry-item-content-box ul.contact-list-box {
  padding: 0;
}

.privacy-policy-entry-item-content-box ul.contact-list-box {
  list-style: none;
}

.privacy-policy-entry-item-content-box ul.contact-list-box li b {
  font-weight: 600;
  color: var(--primary-color);
}

/****************************************/
/***   36. Term Condition Page css    ***/
/****************************************/

.page-terms-conditions {
  padding: 120px 0;
}

/****************************************/
/***   37. Refund Return Policy css   ***/
/****************************************/

.page-refund-return-policy {
  padding: 120px 0;
}

/****************************************/
/***	38. Cancellation Policy css   ***/
/****************************************/

.page-cancellation-policy {
  padding: 120px 0;
}

/****************************************/
/***   39. Delivery Policy Page css   ***/
/****************************************/

.page-delivery-policy {
  padding: 120px 0;
}

/****************************************/
/***     40. Testimonials Page css    ***/
/****************************************/

.page-testimonials {
  padding: 120px 0 90px;
}

.page-testimonials .testimonial-item {
  background-color: var(--secondary-color);
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

/****************************************/
/***      	41. FAQs Page css	      ***/
/****************************************/

.page-faqs {
  padding: 120px 0;
}

.page-single-faqs .accordion-item {
  background-color: var(--secondary-color);
}

.page-faqs .page-single-faqs {
  margin-bottom: 60px;
}

.page-faqs .page-single-faqs:last-child {
  margin-bottom: 0px;
}

/****************************************/
/***      42. Contact Page css        ***/
/****************************************/

.page-contact-us {
  padding: 120px 0 60px;
}

.contact-us-content {
  margin-right: 15px;
}

.contact-us-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-us-item {
  width: calc(50% - 15px);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding: 20px;
}

.contact-us-item .icon-box {
  height: 50px;
  width: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.contact-us-item:hover .icon-box {
  background-color: var(--primary-color);
}

.contact-us-item .icon-box img {
  width: 100%;
  max-width: 24px;
}

.contact-us-item-content {
  width: calc(100% - 65px);
}

.contact-us-item-content h3 {
  font-size: 18px;
}

.contact-us-item-content p {
  margin: 5px 0 0;
}

.contact-us-item-content p a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.contact-us-item-content p a:hover {
  color: var(--primary-color);
}

.contact-social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--divider-color);
}

.contact-social-list h3 {
  font-size: 18px;
}

.contact-social-list ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-social-list ul li a {
  width: 36px;
  height: 36px;
  color: var(--accent-color);
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.contact-social-list ul li:hover a {
  background: var(--accent-color);
  color: var(--white-color);
}

.contact-social-list ul li a i {
  font-size: 16px;
  color: inherit;
}

.contact-form {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 60px;
}

.contact-form label {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25em;
  color: var(--primary-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  padding: 14px 20px;
  box-shadow: none;
  outline: none;
}

.contact-form .form-control::placeholder {
  color: var(--primary-color);
  opacity: 50%;
}

.google-map {
  padding: 60px 0 120px;
}

.google-map-iframe {
  width: 100%;
  height: 600px;
}

.google-map-iframe iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

/****************************************/
/***      42. 404 Error Page css      ***/
/****************************************/

.error-page {
  padding: 120px 0;
}

.error-page-image {
  text-align: center;
  margin-bottom: 40px;
}

.error-page-image img {
  width: 100%;
  max-width: 600px;
}

.error-page-content {
  text-align: center;
}

.error-page-content .section-title {
  margin-bottom: 15px;
}

/****************************************/
/***       44. Responsive css         ***/
/****************************************/

@media only screen and (min-width: 769px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

@media only screen and (max-width: 1440px) {
  .intro-video-bg-video {
    height: 700px;
  }

  .why-choose-content-box {
    padding: 100px 30px;
  }
}

@media only screen and (max-width: 1366px) {
  .dropdown-menu {
    padding: 40px 15px;
  }

  .mega-menu-box {
    padding: 0;
  }
}

@media only screen and (max-width: 1280px) {
  .main-menu ul .nav-item {
    margin: 0 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .navbar {
    gap: 30px;
    padding: 20px 15px;
  }

  .header-action-box {
    width: calc(100% - 68px);
    padding: 0;
  }

  .header-search-form-box {
    max-width: 410px;
    padding: 0 10px;
  }

  .header-search-form .form-group .form-control {
    padding: 12px 10px;
  }

  .header-action-details {
    gap: 15px;
  }

  .header-action-list ul {
    gap: 15px;
  }

  .main-menu {
    width: auto;
    background: transparent;
    padding: 0;
  }

  .main-menu .navbar-collapse {
    display: none !important;
  }

  .slicknav_menu ul.dropdown-menu {
    position: initial !important;
    transform: none !important;
    display: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    padding: 30px 15px;
    margin: 0;
    border: none;
    transition: inherit;
  }

  .slicknav_nav .mega-menu-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }

  .mega-menu-links-box {
    width: 100%;
    gap: 30px;
  }

  .mega-menu-link {
    width: calc(50% - 15px);
  }

  .mega-menu-link h2 {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .slicknav_menu .mega-menu-link ul {
    padding: 0;
  }

  .slicknav_menu .mega-menu-link ul li {
    margin-bottom: 10px;
  }

  .slicknav_menu .mega-menu-link ul li:last-child {
    margin-bottom: 0;
  }

  .slicknav_menu .mega-menu-link ul li a {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 400;
    padding: 0;
  }

  .mega-menu-items-list {
    width: 100%;
  }

  .mega-menu-item.big-offer-box {
    padding: 20px;
  }

  .slicknav_menu .mega-menu-item-image a {
    padding: 0;
  }

  .slicknav_menu .mega-menu-item-content h2 a,
  .mega-menu-item-content h2 {
    color: var(--primary-color);
    padding: 0;
  }

  .mega-menu-item.big-offer-box .mega-menu-item-content h2 {
    font-size: 26px;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .header-btn {
    display: none;
  }

  .section-content-btn .section-btn {
    margin-top: 20px;
  }

  .section-title p {
    margin-top: 10px;
  }

  .section-title-content {
    margin-top: 10px;
  }

  .section-title-content p {
    margin-bottom: 10px;
  }

  .section-btn {
    text-align: left;
    margin-top: 15px;
  }

  .section-title.section-sub-heading,
  .section-title .section-sub-title {
    margin-bottom: 10px;
  }

  .hero-content {
    margin-bottom: 30px;
  }

  .hero-btn {
    margin-top: 0;
  }

  .hero-image figure {
    margin: 0 auto;
  }

  .special-offer-item {
    width: calc(50% - 15px);
  }

  .fresh-deals-box {
    gap: 30px;
    padding: 30px;
  }

  .fresh-deals-image,
  .fresh-deals-content {
    width: calc(50% - 15px);
  }

  .fresh-deals-image figure {
    max-width: 520px;
    margin: 0 0 -30px -30px;
  }

  .fresh-deals-footer {
    margin-top: 30px;
    padding-top: 30px;
  }

  .fresh-deals-body-list ul {
    gap: 10px;
  }

  .fresh-deals-body-list ul li {
    padding-left: 15px;
  }

  .daily-products-item {
    padding: 30px;
  }

  .daily-products-item-image figure {
    margin: -30px -150px -80px -60px;
  }

  .stoty-item-list {
    gap: 20px;
  }

  .story-item {
    width: calc(25% - 15px);
  }

  .limited-offer-countdown {
    margin-top: 30px;
    padding-top: 30px;
  }

  .limited-offer-countdown h3 {
    margin-bottom: 20px;
  }

  .limited-offer-countdown .countdown {
    gap: 30px 50px;
  }

  .limited-offer-countdown .countdown .counter-box:before {
    font-size: 40px;
    right: -30px;
    width: 10px;
    height: 24px;
  }

  .limited-offer-countdown .countdown .counter-box span {
    font-size: 36px;
  }

  .limited-offer-countdown .countdown .counter-box p {
    margin-top: 10px;
  }

  .limited-offer-btn {
    margin-top: 30px;
  }

  .limited-offer-content {
    margin: 0;
  }

  .arrived-products-list {
    margin-bottom: 30px;
  }

  .testimonial-slider .swiper-slide .testimonial-item {
    transform: scale(1);
  }

  .smart-saving-item {
    width: calc(25% - 7.5px);
  }

  .exclusive-deals-box {
    padding: 30px;
    gap: 30px;
  }

  .exclusive-deals-image,
  .exclusive-deals-content {
    width: calc(50% - 15px);
  }

  .post-item.highlighted-post .post-item-body {
    right: 30px;
    bottom: 30px;
    left: 30px;
  }

  .footer-header-box {
    padding: 30px 0;
    margin-bottom: 30px;
  }

  .footer-payment-options ul {
    gap: 10px;
  }

  .footer-payment-options ul li a {
    max-width: 50px;
  }

  .about-footer-content {
    margin-top: 15px;
  }

  .footer-social-links {
    margin-top: 20px;
  }

  .about-footer {
    margin-bottom: 30px;
  }

  .footer-links-box {
    margin: 0;
  }

  .footer-links h2 {
    margin-bottom: 20px;
  }

  .footer-links ul li {
    margin-bottom: 10px;
  }

  .footer-newsletter-box-content {
    margin-top: 30px;
  }

  .footer-copright {
    padding: 30px 0;
    margin-top: 30px;
  }

  .about-us-image-box {
    padding: 40px 30px;
    margin: 0;
  }

  .about-experience-box {
    max-width: 210px;
    padding: 30px;
  }

  .about-us-body-list {
    width: calc(100% - 240px);
  }

  .process-item {
    margin-bottom: 30px;
  }

  .process-image-box {
    margin: 0;
  }

  .process-quotes-box {
    max-width: 270px;
  }

  .process-quotes-content {
    background-size: 55% auto;
    padding: 25px;
  }

  .team-item-image a figure img {
    aspect-ratio: 1 / 0.98;
  }

  .faqs-content {
    height: auto;
    margin-bottom: 30px;
  }

  .page-single-sidebar {
    margin: 0;
  }

  .product-item-list .product-item {
    width: calc(50% - 7.5px);
  }

  .page-single-sidebar .product-category-filter-header {
    margin-bottom: 20px;
  }

  .product-category-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .product-category-item-title {
    margin-bottom: 15px;
  }

  .product-category-item ul li {
    margin-bottom: 10px;
  }

  .product-single-info-content,
  .product-single-image-box {
    width: 100%;
  }

  .product-single-image-box {
    position: initial;
    max-width: 740px;
    margin: 0 auto;
  }

  .related-product-items-list .product-item {
    width: calc(50% - 15px);
  }

  .interested-products-box .product-item-list .product-item {
    width: calc(33.33% - 10px);
  }

  .page-single-sidebar.right-side-sidebar {
    position: initial;
    margin: 30px 0 0;
  }

  .order-summary-box-title,
  .order-summary-promocode-box,
  .order-summary-shipment-info {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .order-receive-sidebar-item {
    margin-bottom: 30px;
  }

  h2.order-sidebar-item-title {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .order-receive-sidebar-item ul li {
    margin-bottom: 15px;
  }

  .order-receive-title-box {
    margin-bottom: 30px;
  }

  .my-account-sidebar-item {
    padding: 30px;
  }

  .view-order-address-item-list {
    gap: 30px;
  }

  .view-order-address-item {
    width: calc(50% - 15px);
  }

  .login-content-box {
    gap: 40px;
  }

  .login-content-form-item {
    width: calc(50% - 20px);
  }

  .page-category-list ul,
  .sidebar-cta-box {
    padding: 20px;
  }

  .page-category-list ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .sidebar-cta-box ul {
    margin: 20px 0 0 0;
    padding: 20px 0 0 0;
  }

  .privacy-policy-entry-header {
    margin-bottom: 40px;
  }

  .privacy-policy-entry-item {
    margin-bottom: 40px;
  }

  .login-content-box {
    gap: 40px;
  }

  .login-content-form-item {
    width: calc(50% - 20px);
  }

  .contact-us-content {
    margin: 0 0 30px;
  }
}

@media only screen and (max-width: 991px) {
  .btn-default {
    font-size: 16px;
    padding: 15px 50px 15px 16px;
  }

  .btn-default::before {
    width: 36px;
    height: 36px;
  }

  .topbar {
    padding: 10px 0;
  }

  .topbar-contact-list ul li img {
    max-width: 18px;
    margin-right: 5px;
  }

  header.main-header {
    top: 0px;
    right: 0px;
    left: 0px;
  }

  header.main-header .header-sticky {
    width: 100%;
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 0;
  }

  header.main-header .header-sticky.active {
    width: 100%;
    border-radius: 0;
    top: 0;
    left: 0;
    right: 0;
  }

  .desktop-hide {
    display: block;
  }

  .mobile-hide {
    display: none;
  }

  .header-search-form .form-group .form-control {
    font-size: 14px;
  }

  .header-search-form .form-group .header-search-btn i {
    font-size: 16px;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h1 {
    font-size: 44px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero:before {
    height: 325px;
    width: 325px;
  }

  .hero-content .section-title p {
    font-size: 16px;
  }

  .special-offers {
    padding: 60px 0 30px;
  }

  .special-offer-item {
    gap: 20px;
  }

  .special-offer-item-body,
  .special-offer-item-image {
    width: 100%;
  }

  .special-offer-item-content .special-offer-item-title {
    margin-bottom: 15px;
  }

  .special-offer-item-content h2 {
    font-size: 22px;
  }

  .special-offer-item-image figure {
    margin: 0 auto -70px;
  }

  .our-categories {
    padding: 30px 0;
  }

  .categories-slider-item .categories-slider-item-image {
    margin-bottom: 20px;
  }

  .categories-slider .categories-slider-pagination {
    margin-top: 30px;
  }

  .our-fresh-deals {
    margin-top: 60px;
  }

  .fresh-deals-box {
    flex-direction: column-reverse;
  }

  .fresh-deals-image,
  .fresh-deals-content {
    width: 100%;
  }

  .fresh-deals-body-list ul li {
    font-size: 16px;
  }

  .our-products {
    padding: 30px 0;
  }

  .product-item-header {
    margin-bottom: 20px;
  }

  .product-item-action ul li a {
    width: 40px;
    height: 40px;
  }

  .product-item-action ul li a img {
    max-width: 20px;
  }

  .product-slider .product-pagination,
  .our-products .section-footer-text {
    margin-top: 30px;
  }

  .section-footer-text {
    margin-top: 10px;
  }

  .our-daily-products {
    padding: 30px 0;
  }

  .daily-products-item-content,
  .daily-products-item-image {
    width: 100%;
  }

  .daily-products-item-content-info .daily-products-item-title {
    margin-bottom: 15px;
  }

  .daily-products-item-content-info h3 {
    font-size: 22px;
  }

  .daily-products-item-btn {
    margin-top: 30px;
  }

  .daily-products-item-btn a {
    font-size: 16px;
  }

  .daily-products-item-image figure {
    margin: 0 -20px -50px;
  }

  .our-fresh-stories {
    padding: 30px 0 60px;
  }

  .story-item {
    width: calc(50% - 10px);
  }

  .our-limited-offer {
    padding: 60px 0;
  }

  .limited-offer-content {
    margin-bottom: 30px;
  }

  .limited-offer-body-list ul {
    gap: 10px 20px;
  }

  .limited-offer-body-list ul li {
    padding-left: 25px;
  }

  .limited-offer-body-list ul li:before {
    font-size: 16px;
  }

  .limited-offer-image {
    height: auto;
  }

  .limited-offer-image figure {
    max-width: 430px;
    margin-bottom: -60px;
  }

  .our-arrived-products {
    padding: 60px 0;
  }

  .arrived-products-slider-box {
    padding: 30px;
  }

  .arrived-products-content .section-title h2 {
    font-size: 26px;
  }

  .arrived-products-slider .arrived-products-pagination {
    right: 30px;
    bottom: 30px;
  }

  .our-testimonials {
    padding: 60px 0;
  }

  .testimonial-item {
    padding: 30px;
    min-height: auto;
    gap: 30px;
  }

  .testimonial-slider .testimonial-pagination {
    margin-top: 30px;
  }

  .our-testimonials .section-footer-text {
    margin-top: 30px;
  }

  .our-smart-saving-deals {
    padding: 60px 0;
  }

  .smart-saving-item {
    width: calc(33.33% - 6.67px);
  }

  .our-smart-saving-deals .section-footer-text {
    margin-top: 40px;
  }

  .exclusive-deals-box {
    flex-direction: column-reverse;
  }

  .exclusive-deals-image,
  .exclusive-deals-content {
    width: 100%;
  }

  .our-blog {
    padding: 60px 0;
  }

  .post-item.highlighted-post,
  .post-item .post-featured-image,
  .post-item .post-featured-image a,
  .post-item .post-featured-image figure,
  .post-item .post-featured-image img {
    height: auto;
  }

  .post-item.highlighted-post {
    margin-bottom: 30px;
  }

  .post-item.highlighted-post .post-item-body {
    right: 30px;
    bottom: 30px;
    left: 30px;
  }

  .posts-item-list .post-item {
    width: calc(50% - 15px);
    gap: 20px;
  }

  .posts-item-list .post-item .post-featured-image,
  .posts-item-list .post-item .post-item-body {
    width: 100%;
  }

  .posts-item-list .post-featured-image img {
    aspect-ratio: 1 / 0.68;
  }

  .post-item-meta {
    margin-bottom: 15px;
  }

  .post-item-meta ul li {
    margin-right: 15px;
    padding-right: 15px;
  }

  .post-item-btn {
    margin-top: 15px;
  }

  .page-header {
    padding: 80px 0;
  }

  .page-header-box h1 {
    font-size: 44px;
  }

  .about-us {
    padding: 60px 0;
  }

  .about-us-image-box {
    height: auto;
    margin: 0 0 30px;
  }

  .about-us-image-body {
    min-height: 300px;
  }

  .about-us-image-body .section-title h2 {
    font-size: 44px;
  }

  .about-experience-content h2 {
    font-size: 44px;
  }

  .about-us-body-list h3 {
    margin-bottom: 20px;
  }

  .about-us-body-list ul li {
    margin-bottom: 10px;
  }

  .why-choose-us {
    padding: 60px 0;
  }

  .why-choose-item {
    padding: 30px;
  }

  .why-choose-item .icon-box {
    height: 50px;
    width: 50px;
    margin-bottom: 20px;
  }

  .why-choose-item .icon-box img {
    max-width: 24px;
  }

  .our-process {
    padding: 60px 0;
  }

  .our-process-content {
    height: auto;
    margin: 0 0 30px;
  }

  .process-item .process-item-no {
    width: 50px;
    height: 50px;
  }

  .process-item .process-item-no h2 {
    font-size: 24px;
  }

  .process-item-content {
    width: calc(100% - 65px);
  }

  .process-image-box,
  .process-image,
  .process-image figure,
  .process-image figure img {
    height: auto;
  }

  .process-image img {
    aspect-ratio: 1 / 0.82;
  }

  .intro-video-bg-video {
    height: 520px;
  }

  .video-play-button a span {
    width: 70px;
    height: 70px;
  }

  .video-play-button a span i {
    font-size: 24px;
  }

  .our-team {
    padding: 60px 0 30px;
  }

  .team-item-image-box {
    margin-bottom: 20px;
  }

  .our-faqs {
    padding: 60px 0;
  }

  .faq-cta-box {
    padding: 30px;
  }

  .faq-cta-box .satisfy-client-images {
    margin-bottom: 20px;
  }

  .faq-cta-btn {
    margin-top: 20px;
  }

  .faq-accordion .accordion-header .accordion-button {
    padding: 16px 42px 16px 20px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    font-size: 18px;
    right: 20px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 16px 20px;
  }

  .page-blog {
    padding: 60px 0;
  }

  .page-pagination {
    margin-top: 10px;
  }

  .page-single-post {
    padding: 60px 0;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-entry h2 {
    font-size: 38px;
  }

  .post-entry p {
    margin-bottom: 15px;
  }

  .post-entry blockquote {
    background-position: 20px 20px;
    background-size: 40px;
    padding: 20px 20px 20px 70px;
    margin-bottom: 15px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .post-tags .tag-links a {
    padding: 12px 15px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .page-products {
    padding: 60px 0;
  }

  .page-single-sidebar {
    position: initial;
    margin: 0 0 30px;
  }

  .product-category-sorting-list .form-select {
    padding: 8px 35px 8px 12px;
  }

  .product-learn-more-btn {
    margin-top: 30px;
  }

  .page-product-single {
    padding: 30px 0 60px;
  }

  .product-single-title h1 {
    font-size: 36px;
  }

  .product-single-price,
  .product-single-description,
  .product-single-item-weight {
    margin-top: 20px;
  }

  .product-single-price h2 {
    font-size: 26px;
  }

  .product-single-price h2 sub {
    font-size: 22px;
  }

  .product-single-content-body {
    margin-top: 30px;
  }

  .qty-box {
    gap: 10px;
    padding: 10px 12px;
  }

  .product-single-action ul li a {
    padding: 10px;
  }

  .product-single-review-box {
    margin-top: 50px;
  }

  .product-step-nav {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .product-step-nav ul li .nav-link::before {
    bottom: -21px;
  }

  .product-tab-item-box h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .product-tab-item-box p {
    margin: 10px 0 0 0;
  }

  .review-form,
  .customer-review-list {
    width: 100%;
  }

  .customer-review-item {
    margin-bottom: 30px;
  }

  .customer-review-item-content p {
    margin: 0 0 5px 0;
  }

  .review-form .form-control {
    padding: 10px 15px;
  }

  .review-form .btn-default {
    padding: 14px 16px;
  }

  .related-products {
    padding: 60px 0;
  }

  .page-cart {
    padding: 60px 0;
  }

  .cart-item-image-content {
    gap: 15px;
  }

  .cart-item-info-content {
    width: calc(100% - 95px);
  }

  .cart-item-buttons {
    gap: 15px 30px;
    margin-top: 30px;
  }

  .cart-item-buttons .btn-default {
    padding: 14px 16px 14px 40px;
  }

  .cart-item-buttons .btn-default.btn-update::before,
  .cart-item-buttons .btn-default.btn-clear::before {
    left: 14px;
    font-size: 16px;
  }

  .interested-products-box {
    margin-top: 60px;
  }

  .interested-products-box-title {
    margin-bottom: 20px;
  }

  .interested-products-box-title h2 {
    font-size: 28px;
  }

  .interested-products-box .product-item-list .product-item {
    width: calc(50% - 7.5px);
  }

  .order-summary-promocode-form {
    margin-bottom: 20px;
  }

  .order-checkout-button .btn-default {
    padding-right: 15px;
  }

  .page-order-receive {
    padding: 60px 0;
  }

  .order-receive-title-box h2 {
    font-size: 36px;
  }

  .page-checkout {
    padding: 60px 0;
  }

  .checkout-login-box {
    margin-bottom: 30px;
  }

  .checkout-accordion-header .checkout-accordion-button::after,
  .checkout-accordion-header .checkout-accordion-button.collapsed::after {
    right: 15px;
  }

  .checkout-accordion-body {
    margin-top: 20px;
  }

  .checkout-accordion-body-content {
    margin-bottom: 20px;
  }

  .checkout-bill-address-title {
    margin-bottom: 20px;
  }

  .checkout-bill-address-form .form-group,
  .checkout-login-form .form-group {
    margin-bottom: 20px;
  }

  .checkout-bill-address-form .form-group label,
  .checkout-login-form .form-group label {
    margin-bottom: 10px;
  }

  .checkout-bill-address-form .form-control,
  .checkout-login-form .form-control {
    padding: 10px 15px;
  }

  .checkout-bill-address-form select.form-control {
    padding: 10px 35px 10px 15px;
  }

  .checkout-form-checkbox.different-address-note {
    margin-top: 15px;
  }

  .checkout-form-checkbox.different-address-note label {
    margin-bottom: 0;
  }

  .checkout-coupeon-accordion {
    margin-bottom: 20px;
  }

  .coupeon-accordion-header .coupeon-accordion-button {
    padding: 12px 35px 12px 15px;
  }

  .coupeon-accordion-header .coupeon-accordion-button::after,
  .coupeon-accordion-header .coupeon-accordion-button.collapsed::after {
    right: 15px;
  }

  .coupeon-accordion-body {
    margin-top: 20px;
  }

  .coupeon-accordion-body-content {
    margin-bottom: 15px;
  }

  .coupeon-apply-form .form-group {
    width: calc(100% - 34px);
  }

  .coupeon-apply-form .form-control {
    padding: 6px 18px 6px 35px;
  }

  .coupeon-apply-btn button {
    width: 34px;
    height: 34px;
  }

  .product-total-order-title {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .all-product-total,
  .product-total-item {
    margin-top: 15px;
    padding-top: 15px;
  }

  .place-order-button .btn-default {
    padding-right: 15px;
  }

  .page-my-account {
    padding: 60px 0;
  }

  .my-account-sidebar-item ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .account-dashboard-detail-box p {
    margin-bottom: 15px;
  }

  .page-account-order {
    padding: 60px 0;
  }

  .account-order-button {
    margin-top: 30px;
  }

  .page-account-view-order {
    padding: 60px 0;
  }

  ul.view-order-product-info-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .view-order-address-item-list {
    margin-top: 40px;
  }

  .view-order-address-item ul li {
    margin-bottom: 15px;
  }

  .page-product-download {
    padding: 60px 0;
  }

  .page-my-account-address {
    padding: 60px 0;
  }

  .account-address-content-header {
    margin-bottom: 30px;
  }

  .account-address-item {
    margin-bottom: 30px;
  }

  .account-address-item-title {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .account-address-item-info-list ul li {
    margin-bottom: 15px;
  }

  .page-account-addresses {
    padding: 60px 0;
  }

  .page-account-details {
    padding: 60px 0;
  }

  .account-details-content-item {
    margin-bottom: 30px;
  }

  .page-account-wishlist {
    padding: 60px 0;
  }

  .wishlist-content-button {
    margin-top: 30px;
  }

  .page-login {
    padding: 60px 0;
  }

  .login-content-form-item {
    width: 100%;
  }

  .login-content-title-box {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .login-content-title-box h2 {
    font-size: 30px;
  }

  .login-content-title-box p {
    margin: 10px 0 0;
  }

  .login-content-form-btn {
    margin-top: 20px;
  }

  .signup-form-btn {
    margin-top: 20px;
  }

  .signup-form-btn .btn-default {
    padding-right: 15px;
  }

  .page-forgot-password {
    padding: 60px 0;
  }

  .page-privacy-policy {
    padding: 60px 0;
  }

  .sidebar-cta-box h2 {
    font-size: 20px;
  }

  .sidebar-cta-title {
    max-width: 100%;
  }

  .sidebar-cta-box ul li {
    margin-bottom: 10px;
  }

  .privacy-policy-entry-header h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .privacy-policy-entry-item .section-title h2 {
    font-size: 30px;
  }

  .privacy-policy-entry-item-content-box {
    margin-bottom: 30px;
  }

  .privacy-policy-entry-item-content-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .privacy-policy-entry-item-content-box p {
    margin-bottom: 10px;
  }

  .privacy-policy-entry-item-content-box ul {
    margin-bottom: 15px;
  }

  .page-terms-conditions {
    padding: 60px 0;
  }

  .page-refund-return-policy {
    padding: 60px 0;
  }

  .page-cancellation-policy {
    padding: 60px 0;
  }

  .page-delivery-policy {
    padding: 60px 0;
  }

  .page-testimonials {
    padding: 60px 0 30px;
  }

  .page-faqs {
    padding: 60px 0;
  }

  .page-faqs .page-single-faqs {
    margin-bottom: 40px;
  }

  .page-contact-us {
    padding: 60px 0 30px;
  }

  .contact-social-list {
    margin-top: 30px;
    padding-top: 30px;
  }

  .contact-form {
    padding: 30px;
  }

  .contact-form label {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .google-map {
    padding: 30px 0 60px;
  }

  .google-map-iframe {
    height: 450px;
  }

  .error-page {
    padding: 60px 0px;
  }

  .error-page-image {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .topbar-content-box {
    justify-content: center;
  }

  .topbar-content-info {
    display: none;
  }

  .topbar-contact-list ul li {
    font-size: 14px;
  }

  .navbar {
    gap: 15px;
  }

  .header-action-box {
    width: calc(100% - 53px);
    gap: 20px;
  }

  .navbar-brand img {
    max-width: 180px;
  }

  .header-search-form-box {
    flex: 1;
    padding: 0 5px;
  }

  .header-search-form .form-group .form-control {
    font-size: 12px;
    padding: 10px 5px;
  }

  .header-search-form .form-group .header-search-btn i {
    font-size: 14px;
  }

  .slicknav_menu ul.dropdown-menu {
    padding: 20px 15px;
  }

  .mega-menu-links-box {
    gap: 20px;
  }

  .mega-menu-link {
    width: calc(50% - 10px);
  }

  .mega-menu-items-list {
    gap: 20px;
  }

  .mega-menu-item {
    width: calc(50% - 10px);
  }

  .mega-menu-item.big-offer-box {
    width: 100%;
    min-height: 180px;
  }

  .slicknav_menu .mega-menu-item-content h2 a {
    font-size: 18px;
  }

  .readmore-btn {
    font-size: 16px;
  }

  .section-row {
    margin-bottom: 30px;
  }

  .section-title h1 {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .hero:before {
    height: 175px;
    width: 175px;
  }

  .hero-image figure {
    max-width: 300px;
  }

  .special-offer-item {
    padding: 20px;
    width: 100%;
  }

  .special-offer-item-content .special-offer-item-title {
    margin-bottom: 10px;
  }

  .special-offer-item-content h2 {
    font-size: 20px;
  }

  .special-offer-item-image figure {
    margin-bottom: -55px;
  }

  .categories-slider-item .categories-slider-item-image {
    height: 150px;
    width: 150px;
  }

  .categories-slider-item-image img {
    max-width: 100px;
  }

  .fresh-deals-box {
    padding: 20px;
  }

  .fresh-deals-footer {
    gap: 10px 20px;
  }

  .deals-free-delivery-item p {
    font-size: 14px;
  }

  .deals-free-delivery-item p img {
    max-width: 18px;
    margin-right: 5px;
  }

  .fresh-deals-image figure {
    margin: 0 0 -20px -20px;
  }

  .product-item {
    padding: 20px;
  }

  .product-item-image {
    max-width: 200px;
  }

  .product-slider .product-pagination {
    margin-top: 20px;
  }

  .daily-products-item {
    width: 100%;
    padding: 20px;
  }

  .daily-products-item-content-info .daily-products-item-title {
    margin-bottom: 10px;
  }

  .daily-products-item-content-info h3 {
    font-size: 20px;
  }

  .daily-products-item-btn {
    margin-top: 20px;
  }

  .daily-products-item-image figure {
    margin: 0 0px -50px;
  }

  .stoty-item-list {
    gap: 10px;
  }

  .story-item {
    width: calc(50% - 5px);
  }

  .story-item-video video {
    height: 230px;
  }

  .story-item .icon-box {
    top: 10px;
    left: 10px;
  }

  .story-item .icon-box a {
    height: 32px;
    width: 32px;
  }

  .story-item .icon-box a i {
    font-size: 16px;
  }

  .limited-offer-countdown {
    margin-top: 20px;
    padding-top: 20px;
  }

  .limited-offer-body-list ul li {
    width: 100%;
  }

  .limited-offer-countdown .countdown {
    gap: 30px;
  }

  .limited-offer-countdown .countdown .counter-box:before {
    font-size: 30px;
    right: -18px;
    width: 8px;
    height: 20px;
  }

  .limited-offer-countdown .countdown .counter-box span {
    font-size: 26px;
  }

  .limited-offer-countdown .countdown .counter-box p {
    margin-top: 5px;
  }

  .limited-offer-image figure {
    max-width: 300px;
  }

  .arrived-products-slider-box {
    padding: 20px;
    min-height: 400px;
  }

  .arrived-products-content {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .arrived-products-content .section-title {
    margin-bottom: 20px;
  }

  .arrived-products-slider .arrived-products-pagination {
    bottom: 15px;
    right: 15px;
  }

  .testimonial-item {
    padding: 20px;
    gap: 20px;
  }

  .testimonial-item-content p {
    font-size: 16px;
  }

  .testimonial-author-box {
    margin-top: 20px;
    padding-top: 20px;
  }

  .smart-saving-item {
    width: calc(50% - 5px);
  }

  .smart-saving-item-content {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .smart-saving-item-content h3 {
    font-size: 16px;
  }

  .exclusive-deals-box {
    padding: 20px;
  }

  .post-item.highlighted-post .post-featured-image figure:before {
    background: linear-gradient(
      180deg,
      transparent 26.2%,
      rgb(from var(--black-color) r g b / 40%) 50.76%,
      rgb(from var(--black-color) r g b / 80%) 100%
    );
  }

  .post-item.highlighted-post .post-featured-image figure img {
    aspect-ratio: 1 / 1.15;
  }

  .post-item.highlighted-post .post-item-body {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .posts-item-list .post-item {
    width: 100%;
  }

  .post-item-meta ul li {
    margin-right: 10px;
    padding-right: 10px;
  }

  .post-item-content h2 {
    font-size: 18px;
  }

  .footer-contact-item {
    gap: 10px;
  }

  .footer-contact-item .icon-box img {
    max-width: 34px;
  }

  .footer-contact-item-content {
    width: calc(100% - 44px);
  }

  .footer-contact-item-content h2 {
    font-size: 18px;
  }

  .footer-payment-options ul li a {
    max-width: 45px;
  }

  .footer-links,
  .footer-links.footer-newsletter-box {
    max-width: 100%;
  }

  .footer-links h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-newsletter-box-content {
    margin-top: 15px;
  }

  .footer-copright {
    padding: 15px 0;
  }

  .page-header-box h1 {
    font-size: 28px;
    margin-bottom: 5px;
  }

  .page-header-box ol li.breadcrumb-item {
    font-size: 16px;
  }

  .about-us-image-box {
    padding: 20px;
  }

  .about-us-image-body {
    min-height: auto;
  }

  .about-us-image-body .section-title h2 {
    font-size: 28px;
  }

  .about-experience-box {
    max-width: 100%;
    padding: 20px;
  }

  .about-experience-content h2 {
    font-size: 28px;
  }

  .about-us-body-list {
    width: 100%;
  }

  .why-choose-item {
    padding: 20px;
  }

  .process-quotes-content {
    background-size: 40% auto;
    padding: 15px;
  }

  .process-quotes-box {
    padding: 5px 0 0 5px;
    max-width: 220px;
  }

  .process-quotes-box p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .intro-video-bg-video {
    height: 300px;
  }

  .video-play-button a span {
    width: 54px;
    height: 54px;
  }

  .video-play-button a span i {
    font-size: 18px;
  }

  .faq-cta-box {
    padding: 20px;
  }

  .faq-accordion .accordion-header .accordion-button {
    font-size: 16px;
    padding: 12px 34px 12px 15px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 12px 15px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    right: 15px;
    font-size: 16px;
  }

  .page-blog .post-item .post-item-body {
    padding: 10px;
  }

  .post-single-meta ol li,
  .post-single-meta ol li i {
    font-size: 16px;
  }

  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    padding: 65px 20px 20px 20px;
  }

  .post-entry blockquote p {
    font-size: 16px;
  }

  .post-entry h1,
  .post-entry h2,
  .post-entry h3,
  .post-entry h4,
  .post-entry h5,
  .post-entry h6 {
    margin: 0 0 0.58em;
  }

  .post-entry h2 {
    font-size: 26px;
  }

  .page-single-sidebar .product-category-filter-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .product-category-filter-title h2 {
    font-size: 16px;
  }

  .product-category-result-info {
    width: 100%;
    justify-content: space-between;
  }

  .product-category-sorting-list .form-select {
    min-width: auto;
    font-size: 16px;
  }

  .product-item-list {
    gap: 6px;
  }

  .product-item-list .product-item {
    width: calc(50% - 3px);
    padding: 15px;
  }

  .product-item-list .product-item-header {
    margin-bottom: 15px;
  }

  .product-item-list .product-item-action ul {
    gap: 10px;
  }

  .product-item-list .product-item-action ul li a {
    height: 30px;
    width: 30px;
  }

  .product-item-list .product-item-action ul li a img {
    max-width: 16px;
  }

  .product-item-list .product-item-content .product-item-category {
    margin-bottom: 5px;
  }

  .product-item-list .product-item .product-item-content .product-item-title {
    font-size: 16px;
  }

  .product-item-list .product-item .product-item-content .product-item-rating {
    margin-top: 5px;
  }

  .product-item-list
    .product-item
    .product-item-content
    .product-item-rating
    i {
    font-size: 10px;
  }

  .product-item-list
    .product-item
    .product-item-content
    .product-item-rating
    b {
    font-size: 12px;
  }

  .product-item-list .product-item .product-item-price h3 {
    font-size: 16px;
  }

  .product-single-breadcrumb-list ol {
    gap: 10px 40px;
  }

  .product-single-breadcrumb-list ol li {
    font-size: 14px;
  }

  .product-single-breadcrumb-list .breadcrumb li::before {
    right: -24px;
    width: 10px;
    height: 10px;
  }

  .product-single-image-box {
    flex-direction: column-reverse;
  }

  .product-single-image-slider {
    width: 100%;
  }

  .product-single-image-slider .swiper-wrapper {
    flex-direction: initial;
  }

  .product-single-image-slider .swiper-slide {
    width: calc(33.33% - 6.66px) !important;
  }

  .product-single-image-item {
    width: 100%;
  }

  .product-single-title h1 {
    font-size: 26px;
  }

  .product-single-rating {
    margin-top: 10px;
  }

  .product-single-price,
  .product-single-description,
  .product-single-item-weight {
    margin-top: 15px;
  }

  .product-single-price h2 {
    font-size: 22px;
  }

  .product-single-price h2 sub {
    font-size: 20px;
  }

  .product-single-item-weight ul li label {
    font-size: 14px;
    padding: 10px 16px;
  }

  .product-single-content-body {
    gap: 15px;
  }

  .qty-box {
    gap: 5px;
    padding: 9px 10px;
    font-size: 22px;
  }

  .product-single-action ul {
    gap: 15px;
  }

  .product-single-action ul li a {
    padding: 10px;
  }

  .product-shipping-box p span {
    display: block;
    border-right: none;
    padding-right: 0;
    margin: 0 0 5px 0;
  }

  .product-step-nav .nav-tabs {
    gap: 15px;
  }

  .product-step-nav ul li {
    width: calc(33.33% - 10px);
  }

  .product-step-nav ul li .nav-link {
    font-size: 16px;
  }

  .product-step-nav ul li .nav-link::before {
    display: none;
  }

  .product-tab-item-box h2 {
    font-size: 22px;
  }

  .customer-review-item .icon-box {
    margin-right: 10px;
  }

  .customer-review-item .icon-box img {
    max-width: 50px;
  }

  .customer-review-item-body {
    width: calc(100% - 60px);
  }

  .product-additional-content-title {
    margin-bottom: 20px;
  }

  .product-additional-info-table table tr {
    width: 50%;
  }

  .product-additional-info-table table tr td {
    min-width: 100%;
    padding: 15px 10px;
  }

  .related-product-items-list .product-item {
    width: 100%;
  }

  .cart-item-header {
    display: none;
  }

  .cart-item-image-content,
  .cart-item-quantity-total {
    width: 100%;
  }

  .cart-item-quantity-total {
    justify-content: left;
  }

  .cart-item-title {
    width: 100%;
  }

  .cart-item-title p {
    max-width: 100%;
  }

  .cart-item-subtotal {
    width: auto;
  }

  .interested-products-box-title h2 {
    font-size: 24px;
  }

  .interested-products-box .product-item-list .product-item {
    width: calc(50% - 3px);
  }

  .order-summary-content-box {
    padding: 5px;
  }

  .order-summary-box-title {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .order-summary-promocode-form .form-group .form-control {
    width: calc(100% - 34px);
    background-size: 14px auto;
    background-position: left 8px center;
    padding: 6px 10px 6px 30px;
  }

  .order-summary-promocode-form .form-group .promocode-btn {
    width: 34px;
    height: 34px;
  }

  .order-receive-sidebar {
    padding: 20px;
  }

  .order-receive-sidebar-item ul li {
    margin-bottom: 10px;
  }

  .order-receive-box ul li {
    padding-bottom: 10px;
  }

  .order-receive-title-box h2 {
    font-size: 26px;
  }

  .order-receive-title-box p {
    font-size: 16px;
  }

  .order-receive-content-list ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .order-receive-content-list ul li span {
    width: 42%;
  }

  .checkout-accordion-header .checkout-accordion-button {
    font-size: 14px;
  }

  .checkout-bill-address-title h2 {
    font-size: 18px;
  }

  .checkout-form-checkbox.different-address-note {
    margin-top: 10px;
  }

  .product-total-order-box {
    padding: 5px;
  }

  .coupeon-accordion-header .coupeon-accordion-button {
    font-size: 14px;
  }

  .order-payment-info-item p {
    font-size: 14px;
  }

  .my-account-sidebar-item {
    padding: 20px;
  }

  .my-account-sidebar-item ul li img {
    max-width: 22px;
  }

  .account-dashboard-detail-box p {
    font-size: 18px;
  }

  .account-order-table-box table {
    min-width: 630px;
    margin-bottom: 15px;
  }

  .account-order-table-box table tr th {
    min-width: auto;
    padding: 0 10px 15px 0;
  }

  .account-order-table-box table tr td {
    padding: 15px 10px 15px 0;
  }

  .account-order-table-box table tr td .btn-default {
    padding: 7px 24px;
  }

  .view-order-product-info-box .cart-item-header {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .view-order-product-info-box .product-header-tag {
    width: calc(56% - 6.67px);
  }

  .view-order-product-info-box .quantity-header-tag,
  .view-order-product-info-box .subtotal-header-tag {
    width: calc(22% - 6.67px);
  }

  .cart-item-header span {
    font-size: 16px;
  }

  .view-order-product-info-box .cart-item-image-content {
    width: calc(62% - 5px);
  }

  .view-order-product-info-box .cart-item-quantity-total {
    width: calc(38% - 5px);
    justify-content: space-evenly;
  }

  .view-order-product-info-box .cart-item-subtotal {
    width: auto;
  }

  .view-order-address-item ul li {
    margin-bottom: 10px;
  }

  ul.view-order-product-info-list li span {
    width: 40%;
  }

  .view-order-address-item {
    width: 100%;
  }

  .view-order-address-item ul {
    margin-top: 15px;
    padding-top: 15px;
  }

  .wishlist-item-header {
    display: none;
  }

  .wishlist-item {
    align-items: start;
  }

  .wishlist-item-image-content {
    width: calc(75% - 5px);
  }

  .wishlist-item-title,
  .wishlist-item-price {
    width: 100%;
  }

  .wishlist-item-status-action {
    flex-direction: column;
    width: calc(25% - 5px);
    align-items: end;
    text-align: end;
  }

  .wishlist-item-action {
    width: 100%;
  }

  .wishlist-item-action a i {
    font-size: 20px;
  }

  .login-content-title-box h2 {
    font-size: 24px;
  }

  .sidebar-cta-box h2 {
    font-size: 18px;
  }

  .privacy-policy-entry-item {
    margin-bottom: 30px;
  }

  .privacy-policy-entry-item .section-title {
    margin-bottom: 20px;
  }

  .privacy-policy-entry-item .section-title h2 {
    font-size: 24px;
  }

  .contact-us-item-list {
    gap: 20px;
  }

  .contact-us-item {
    width: 100%;
    padding: 15px;
  }

  .contact-form {
    padding: 20px;
  }

  .google-map-iframe {
    height: 350px;
  }
}
