/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Livora - Furniture Store eCommerce HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Our Collections css
06. Our Offers css
07. Our Products css
08. Intro Video css
09. Our Trending Products css
10. Our Arrivals css
11. Our Best Seller css
12. Our Flat Discount css
13. Our Stories css
14. Our Testimonials css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Blog Archive css
19. Blog Single css
20. Products Page css
21. Product Single css
22. Cart Page css
23. Order Received Page css
24. Checkout Page css
25. Account Dashboard Page css
26. Account Order Page css
27. Account Order View Page css
28. Account Download Page css
29. Account Address Page css
30. Account Addresses Page css
31. Account Details Page css
32. Account Wishlist Page css
33. Login Page css
34. Forgot Password css
35. Privacy Policy Page css
36. Term Condition Page css
37. Refund Return Policy css
38. Cancellation Policy css
39. Delivery Policy Page css
40. Testimonials Page css
41. FAQs Page css
42. Contact Us Page css
43. 404 Error Page css
44. Empty Cart Page css
45. Responsive css
-------------------------------------------------------------------------------------- */

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

:root {
  --primary-color: #161616;
  --secondary-color: #f8f5ef;
  --bg-color: #fcfbfa;
  --text-color: #585858;
  --accent-color: #fdd64b;
  --accent-color-hover: #d18e0f;
  --yellow-color: #fce059;
  --white-color: #ffffff;
  --black-color: #000000;
  --divider-color: #1616161a;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: "OPPOSans";
}

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

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

body {
  font-family: var(--default-font);
  font-size: 15px;
  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(--accent-color);
}

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

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

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

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

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: 12px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  background: var(--accent-color);
  color: var(--black-color);
  border-radius: 10px;
  padding: 17px 24px 17px 24px;
  border: none;
  overflow: hidden;
  box-shadow: none;
  outline: none;
  transition: all 0.4s ease-in-out;
  z-index: 0;
  text-align: center;
}

.btn-black {
  background: var(--black-color);
  color: var(--accent-color);
}

.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);
  color: var(--accent-color);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

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

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

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

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

.btn-default.btn-accent {
  padding: 17px 24px;
}
.btn-default:hover {
  color: var(--accent-color);
}

.btn-default.btn-accent::before {
  display: none;
}

.readmore-btn {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1.45em;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--primary-color);
  padding-right: 34px;
  transition: all 0.4s ease-in-out;
}

.readmore-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  width: 24px;
  height: 24px;
  background-color: var(--accent-color);
  background-image: url("../images/arrow-black.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px auto;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
}

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

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

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

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

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--primary-color) transparent
    var(--primary-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;
  text-align: center;
  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: var(--primary-color);
}

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

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

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

.section-row .section-title.section-title-center {
  width: 100%;
  max-width: 750px;
  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: 14px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: normal;
  color: var(--primary-color);
  border: 1px solid var(--divider-color);
  border-radius: 40px;
  padding: 7px 16px 7px 32px;
  margin-bottom: 15px;
}

.section-title .section-sub-title::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

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

.section-title h1 {
  font-size: 80px;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-bottom: 0;
  cursor: none;
}

.section-title h2 {
  font-size: 36px;
  line-height: 1.4em;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  cursor: none;
}

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

.dark-section .section-title .section-sub-title {
  border-color: var(--dark-divider-color);
  color: var(--white-color);
}

.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;
}

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

.topbar {
  background: var(--primary-color);
  padding: 11px 0;
}

.topbar-content-info {
  text-align: center;
}

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

header.main-header {
  position: relative;
  background: var(--white-color);
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  box-shadow: 0 1px 0px 0 rgba(0, 0, 0, 0.05);
  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;
  background: var(--bg-color);
  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;
  gap: 20px;
  padding: 20px 15px;
  margin: 0 auto;
}

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

.header-contact-info-list,
.header-action-details {
  width: calc(37% - 13.33px);
}

.header-contact-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

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

.header-contact-info .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

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

.header-contact-info:hover .icon-box::before {
  transform: scale(1);
}

.header-contact-info .icon-box img {
  position: relative;
  width: 100%;
  max-width: 26px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.header-contact-info:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.header-contact-info-content {
  width: calc(100% - 65px);
}

.header-contact-info-content p {
  font-size: 14px;
  margin-bottom: 5px;
}

.header-contact-info-content span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  color: var(--primary-color);
}

.header-contact-info-content span a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.header-contact-info-content span a:hover {
  color: var(--accent-color);
}

.navbar-brand {
  width: calc(26% - 13.33px);
  text-align: center;
}

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

.header-action-details ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-action-details ul li button {
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
}

.header-action-details ul li button:hover {
  background: transparent;
}

.header-action-details .modal {
  height: 100vh;
  background: var(--divider-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-right: 0 !important;
  overflow: hidden;
}

.modal-backdrop.show {
  background: transparent;
}

.header-action-details .modal-dialog {
  max-width: 600px;
}

.header-action-details .modal-content {
  position: relative;
  background: transparent;
  border-radius: 0;
  border: none;
  padding: 0;
}

.modal-open {
  padding: 0 !important;
}

.modal-backdrop {
  z-index: 0;
}

.header-action-details .modal .close {
  background: transparent;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  margin: 0 0 15px auto;
}

.header-action-details .modal .close i {
  font-size: 24px;
  color: var(--white-color);
}

.modal-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--divider-color);
  border: 1px solid var(--dark-divider-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  padding-right: 20px;
  overflow: hidden;
}

.modal-search-form .form-control {
  width: auto;
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--white-color);
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 14px 26px;
  box-shadow: none;
  outline: none;
}

.modal-search-form .form-control::placeholder {
  color: var(--white-color);
}

.modal-search-form .modal-search-btn i {
  font-size: 24px;
  color: var(--white-color);
}

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

.header-action-details ul li button:hover img,
.header-action-details ul li a:hover img {
  transform: scale(1.06);
}

.header-action-details ul li a {
  display: block;
}

.main-menu {
  width: 100%;
  background: var(--secondary-color);
}

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

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  margin: 0;
}

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

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

.main-menu ul .nav-item .nav-link {
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  padding: 8px 0px !important;
  color: var(--primary-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: 15px;
  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 ul {
  visibility: hidden;
  opacity: 0;
  transform: scale(1, 0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 255px;
  border-radius: 0 0 12px 12px;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--accent-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.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: 5px 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 {
  font-size: 15px;
  color: var(--white-color);
  padding: 8px 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(--primary-color);
  background-color: transparent;
  padding: 8px 20px 8px 23px !important;
}

.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(--white-color);
  padding: 60px;
  opacity: 0;
  border: none;
  border-bottom: 1px solid var(--divider-color);
  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: 20px;
  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-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: 15px;
  font-weight: 500;
  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(--accent-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;
}

.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: 20px;
}

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

.mega-menu-item-content p {
  font-size: 15px;
  color: var(--text-color);
  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;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.2) 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: 20px;
  color: var(--white-color);
  margin-top: 5px;
}

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

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

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

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  width: 22px;
  height: 3px;
  background-color: var(--white-color);
  border-radius: 6px;
  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: 15px;
  font-weight: 600;
  color: var(--white-color);
  line-height: normal;
  text-transform: capitalize;
  border-radius: 0 !important;
  margin: 0;
  padding: 7px 20px;
  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(--primary-color);
}

.slicknav_menu ul ul li a {
  padding: 7px 20px 7px 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(--primary-color);
}

/****************************************/
/*** 	       04. Hero css 	      ***/
/****************************************/
/* =========================
   FULL WIDTH HERO
========================= */

.hero {
  position: relative;
  width: 100vw !important;
  max-width: 100vw !important;

  min-height: 800px;

  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;

  padding: 0 !important;

  overflow: hidden;
}

/* Remove Bootstrap spacing */

.hero .container {
  width: 100% !important;
  max-width: 100% !important;

  margin: 0 !important;

  padding-left: 0 !important;
  padding-right: 0 !important;
}

.hero .row {
  width: 100% !important;

  margin-left: 0 !important;
  margin-right: 0 !important;
}

.hero .col-xl-12 {
  width: 100% !important;

  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Hero wrappers */

.hero-desktop,
.hero-mobile {
  width: 100% !important;
  max-width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* Swiper */

.ryka-hero-swiper,
.ryka-mobile-hero-swiper {
  width: 100% !important;
  max-width: 100% !important;

  height: 800px;

  margin: 0 !important;
  padding: 0 !important;
}

.ryka-hero-swiper .swiper-wrapper,
.ryka-mobile-hero-swiper .swiper-wrapper {
  margin: 0 !important;
  padding: 0 !important;
}

.ryka-hero-swiper .swiper-slide,
.ryka-mobile-hero-swiper .swiper-slide {
  width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;
}

/* Banner image */

.hero-content-box {
  width: 100% !important;
  height: 800px;

  margin: 0 !important;
  padding: 100px 0;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* =========================
   MOBILE
========================= */

.hero-mobile {
  display: none;
}

@media (max-width: 767px) {
  .hero {
    width: 100vw !important;
    max-width: 100vw !important;

    min-height: 650px;
  }

  .hero-desktop {
    display: none !important;
  }

  .hero-mobile {
    display: block !important;
  }

  .ryka-mobile-hero-swiper {
    height: 650px !important;
  }

  .ryka-mobile-hero-swiper .swiper-slide {
    height: 650px !important;
  }

  .hero-mobile .hero-content-box {
    height: 650px !important;
  }
}

/****************************************/
/*** 	  05. Our Collections css     ***/
/****************************************/

.ryka-category-section {
  padding: 45px 0;
  overflow: hidden;
}

.ryka-category-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Left Content */

.ryka-category-intro {
  flex: 0 0 170px;
  width: 145px;
}

.ryka-category-title {
  display: flex;
  flex-direction: column;

  font-size: 22px;
  line-height: 1.15;
  font-weight: 600;
  color: #111;
}

.ryka-category-line {
  width: 35px;
  height: 2px;

  margin: 9px 0 14px;

  background: #d6a900;
}

.ryka-category-intro p {
  margin: 0 0 15px;

  font-size: 10px;
  line-height: 1.5;
  color: #666;
}

.ryka-category-view-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  font-size: 10px;
  font-weight: 600;
  color: #111;
}

/* Slider */

.ryka-category-slider {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.ryka-category-swiper {
  width: 100%;
  overflow: visible;
}

/* Cards */

.ryka-category-card {
  position: relative;

  display: block;

  height: 210px;

  overflow: hidden;

  border-radius: 10px;

  background: #111;
  color: #fff;
}

.ryka-category-image {
  position: absolute;
  inset: 0;
}

.ryka-category-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.ryka-category-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.05));
}

.ryka-category-card:hover .ryka-category-image img {
  transform: scale(1.05);
}

/* Card Content */

.ryka-category-card-content {
  position: absolute;

  left: 10px;
  right: 10px;
  bottom: 13px;

  z-index: 2;

  text-align: center;
}

.ryka-category-icon {
  width: 27px;
  height: 27px;

  margin: 0 auto 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(4px);

  font-size: 10px;
}

.ryka-category-card h3 {
  margin: 0;

  color: #fff;

  font-size: 14px;
  line-height: 1.2;
}

/* Pagination */

.ryka-category-pagination {
  margin-top: 12px;
  text-align: center;
}

/* =========================================
   Desktop - Reduce Container Side Space
========================================= */

@media only screen and (min-width: 1200px) {
  .ryka-category-section .container {
    max-width: 1400px;
  }
}

/* =========================================
   Mobile
========================================= */

@media only screen and (max-width: 767px) {
  .ryka-category-section {
    padding: 40px 0;
  }

  .ryka-category-wrapper {
    display: block;
  }

  .ryka-category-intro {
    width: 100%;
    margin-bottom: 25px;
  }

  .ryka-category-card {
    height: 220px;
  }
}

/****************************************/
/*** 	  	 06. Our Offers css	      ***/
/****************************************/

.our-offers {
  padding: 50px 0;
}

.offer-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.offer-item {
  position: relative;
  width: calc(50% - 10px);
  min-height: 465px;
  border-radius: 20px;
  overflow: hidden;
}

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

.offer-item-image figure {
  position: relative;
  display: block;
  height: 100%;
}

.offer-item-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(22, 22, 22, 0.8) 0%,
    rgba(22, 22, 22, 0.36) 39.52%,
    rgba(22, 22, 22, 0) 50.11%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.offer-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.offer-item:hover .offer-item-image img {
  transform: scale(1.04);
}

.offer-item-content-box {
  position: relative;
  height: 100%;
  padding: 50px;
  z-index: 1;
}

.offer-item-content {
  margin-bottom: 40px;
}

.offer-item-content p {
  font-weight: 500;
  color: var(--white-color);
  margin: 0 0 10px;
}

.offer-item-content h3 {
  font-size: 30px;
  color: var(--white-color);
  line-height: 1.4em;
}

.offer-item-readmore-btn .readmore-btn {
  color: var(--white-color);
}

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

/* =========================================================
   RYKA PREMIUM PRODUCT SECTION
========================================================= */

.ryka-products-section {
  padding: 50px 0;
  overflow: hidden;
}

/* =========================================================
   PRODUCT SLIDER
========================================================= */

.ryka-product-slider {
  margin-top: 10px;
  width: 100%;
  overflow: hidden;
}

.ryka-product-swiper {
  width: calc(100% - 5px);
  margin: 0 8px;
  overflow: visible;
}

.ryka-product-swiper .swiper-wrapper {
  align-items: stretch;
}

.ryka-product-swiper .swiper-slide {
  height: auto;
}

/* =========================================================
   PRODUCT CARD
========================================================= */

.ryka-product-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;

  background: #ffffff;

  border: 1px solid #e8e8e8;
  border-radius: 8px;

  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.ryka-product-card:hover {
  transform: translateY(-5px);

  border-color: #dcdcdc;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   PRODUCT IMAGE
========================================================= */

.ryka-product-image-link {
  display: block;
  width: 100%;
}

.ryka-product-image figure {
  position: relative;

  width: 100%;
  aspect-ratio: 0.88 / 1;

  margin: 0;

  overflow: hidden;
}

.ryka-product-image figure img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.ryka-product-card:hover .ryka-product-image figure img {
  transform: scale(1.045);
}

.ryka-product-image figure {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  margin: 0;
  overflow: hidden;
}

.ryka-product-content {
  padding: 15px 16px 16px;
}

.ryka-product-category {
  margin-bottom: 5px;
}

.ryka-product-content h3 {
  min-height: 40px;
  font-size: 16px;
  line-height: 1.3;
}

.ryka-product-link {
  margin-top: 12px;
  padding-top: 11px;
}

/* =========================================================
   BADGE
========================================================= */

.ryka-product-badge {
  position: absolute;

  top: 14px;
  left: 14px;

  z-index: 2;

  padding: 7px 11px;

  background: var(--accent-color);
  color: #ffffff;

  border-radius: 2px;

  font-family: inherit;
  font-size: 8px;
  font-weight: 600;

  letter-spacing: 1.2px;
  line-height: 1;

  text-transform: uppercase;
}

/* =========================================================
   PRODUCT CONTENT / FOOTER
========================================================= */

.ryka-product-content {
  position: relative;

  flex: 1;

  display: flex;
  flex-direction: column;

  padding: 20px 20px 22px;

  background: #ffffff;
}

/* Category */

.ryka-product-category {
  display: block;

  margin: 0 0 8px;

  color: #999999;

  font-family: inherit;
  font-size: 9px;
  font-weight: 600;

  letter-spacing: 1.4px;
  line-height: 1.2;

  text-transform: uppercase;
}

/* Product title */

.ryka-product-content h3 {
  margin: 0;

  min-height: 47px;

  font-family: inherit;
  font-size: 17px;
  font-weight: 500;

  line-height: 1.4;

  color: #171717;
}

.ryka-product-content h3 a {
  display: inline;

  color: #171717 !important;

  text-decoration: none;

  transition: color 0.3s ease;
}

.ryka-product-content h3 a:hover {
  color: #777777 !important;
}

/* =========================================================
   CARD FOOTER / VIEW DETAILS
========================================================= */

.ryka-product-link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  margin-top: 20px;
  padding-top: 15px;

  border-top: 1px solid #eeeeee;

  color: #171717 !important;

  font-family: inherit;
  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.7px;

  line-height: 1.2;

  text-decoration: none;

  text-transform: uppercase;

  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.ryka-product-link i {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 25px;
  height: 25px;

  border: 1px solid #dedede;
  border-radius: 50%;

  font-size: 9px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.ryka-product-link:hover {
  color: var(--accent-color) !important;
}

.ryka-product-link:hover i {
  background: var(--accent-color);
  border-color: var(--accent-color);

  color: var(--primary-color);

  transform: translateX(3px);
}

/* =========================================================
   SLIDER NAVIGATION
========================================================= */

.ryka-product-navigation {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  margin-top: 35px;
}

.ryka-product-prev,
.ryka-product-next {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #dedede;
  border-radius: 50%;

  background: #ffffff;

  color: #111111;

  font-size: 10px;

  cursor: pointer;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.ryka-product-prev:hover,
.ryka-product-next:hover {
  background: #111111;
  border-color: #111111;

  color: #ffffff;
}

/* Pagination */

.ryka-product-pagination {
  position: relative !important;

  width: auto !important;

  display: flex;
  align-items: center;

  gap: 5px;
}

.ryka-product-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;

  margin: 0 !important;

  border-radius: 50%;

  opacity: 1;

  background: #d1d1d1;
}

.ryka-product-pagination .swiper-pagination-bullet-active {
  width: 20px;

  border-radius: 10px;

  background: #111111;
}

/* =========================================================
   EXPLORE ALL BUTTON
========================================================= */

.ryka-product-footer {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 45px;
}

.ryka-product-footer .btn-default {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* =========================================================
   TABLET
========================================================= */

@media only screen and (max-width: 1199px) {
  .ryka-product-content {
    padding: 18px 17px 20px;
  }

  .ryka-product-content h3 {
    font-size: 16px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 767px) {
  .ryka-products-section {
    padding: 65px 0;
  }

  .ryka-product-slider {
    margin-top: 30px;
  }

  .ryka-product-swiper {
    padding: 0 4px;
  }

  .ryka-product-swiper .swiper-slide {
    height: auto;
  }

  .ryka-product-card {
    border-radius: 6px;
  }

  .ryka-product-image figure {
    aspect-ratio: 0.82 / 1;
  }

  .ryka-product-badge {
    top: 9px;
    left: 9px;

    padding: 6px 8px;

    font-size: 7px;
    letter-spacing: 0.9px;
  }

  .ryka-product-wishlist {
    top: 8px;
    right: 8px;

    width: 32px;
    height: 32px;

    font-size: 12px;
  }

  .ryka-product-content {
    padding: 14px 13px 16px;
  }

  .ryka-product-category {
    margin-bottom: 6px;

    font-size: 7px;
    letter-spacing: 1px;
  }

  .ryka-product-content h3 {
    min-height: 38px;

    font-size: 13px;
    line-height: 1.4;
  }

  .ryka-product-link {
    margin-top: 14px;
    padding-top: 12px;

    font-size: 8px;
  }

  .ryka-product-link i {
    width: 22px;
    height: 22px;

    font-size: 8px;
  }

  .ryka-product-navigation {
    margin-top: 25px;
  }

  .ryka-product-prev,
  .ryka-product-next {
    width: 36px;
    height: 36px;
  }

  .ryka-product-footer {
    margin-top: 30px;
  }
}

/****************************************/
/*** 	    08. Intro Video css       ***/
/****************************************/

.intro-video {
  position: relative;
  min-height: 850px;
  align-content: end;
  padding: 100px 0;
}

.intro-video-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.intro-video-bg-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(22, 22, 22, 0) 50%,
    rgba(22, 22, 22, 0.8) 100%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.intro-video .container {
  position: relative;
  z-index: 2;
}

.intro-video .row .section-title {
  margin: 0;
}

.intro-video-circle {
  text-align: right;
}

.intro-video-circle a {
  display: inline-block;
  border-radius: 50%;
  cursor: none;
}

.intro-video-circle img {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
  100% {
    transform: rotate(360deg);
  }
}

.intro-video-circle a:hover img {
  animation-play-state: paused;
}

/****************************************/
/***   09. Our Trending Products css  ***/
/****************************************/

.our-trending-products {
  padding: 100px 0;
}

.trending-product-item-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trending-product-item,
.product-offer-item {
  width: calc(33.33% - 13.33px);
  background: var(--secondary-color);
  border-radius: 20px;
  display: flex;
  gap: 20px 40px;
  overflow: hidden;
  padding: 30px;
}

.trending-product-item {
  flex-direction: column;
  padding-bottom: 20px;
}

.trending-product-item-image {
  height: 100%;
}

.trending-product-item-image a,
.trending-product-item-image figure {
  display: block;
  height: 100%;
  cursor: none;
  border-radius: 10px;
  overflow: hidden;
}

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

.trending-product-item-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.trending-product-item-content h3 {
  font-size: 16px;
  text-transform: uppercase;
  border-right: 1px solid var(--divider-color);
  padding-right: 10px;
  margin-right: 10px;
}

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

.trending-product-item-content p {
  margin: 0;
}

.trending-product-item-content p b {
  color: var(--primary-color);
}

.product-offer-item.box-1 {
  background: linear-gradient(114deg, #bfae93 0.17%, #9b795d 99.83%);
}

.product-offer-item.box-2 {
  background: linear-gradient(114deg, #b1aea6 0.09%, #8b8370 98.63%);
}

.product-offer-item.box-3 {
  background: linear-gradient(114deg, #b1a981 0.17%, #897d45 99.83%);
}

.product-offer-item-content {
  width: calc(47% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.product-offer-item-header-content span {
  display: inline-block;
  color: var(--white-color);
  font-weight: 600;
  text-transform: uppercase;
  line-height: normal;
  background-color: var(--dark-divider-color);
  border-radius: 0 30px 30px 0;
  margin: 0 0 30px -30px;
  padding: 6px 20px;
}

.product-offer-item-header-content h3 {
  font-size: 20px;
  color: var(--white-color);
}

.product-offer-item-header-content h3 a {
  color: inherit;
}

.product-offer-item-header-content p {
  color: var(--white-color);
  margin: 10px 0 0;
}

.product-offer-item-body-content p {
  color: var(--white-color);
  margin: 0 0 5px;
}

.product-offer-item-body-content h3 {
  font-size: 20px;
  color: var(--white-color);
}

.product-offer-item-image {
  width: calc(53% - 20px);
  align-content: center;
}

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

.product-offer-item-image img {
  width: 100%;
  max-width: 279px;
  aspect-ratio: 1 / 0.811;
  border-radius: 10px;
}

/* =========================================================
   RYKA - COMPLETED DELIVERIES
========================================================= */
.ryka-deliveries-section {
  padding: 50px 0;
  overflow: hidden;
}

.ryka-deliveries-slider {
  width: 100%;
  margin-top: 50px;
  padding: 0 4px;
}

.ryka-deliveries-swiper {
  width: 100%;
  overflow: visible;
}

.ryka-deliveries-swiper .swiper-slide {
  height: auto;
}

.ryka-deliveries-slider {
  width: 100%;
  margin-top: 50px;
  padding: 0 10px;
  overflow: hidden;
}

.ryka-deliveries-swiper {
  width: 100%;
  overflow: hidden;
}

.ryka-deliveries-swiper .swiper-wrapper {
  align-items: stretch;
}

.ryka-deliveries-swiper .swiper-slide {
  height: auto;
}

.ryka-deliveries-swiper .swiper-wrapper {
  padding-left: 5px;
  padding-right: 5px;
}

.ryka-deliveries-swiper .swiper-slide {
  height: auto;
}

.ryka-delivery-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111;
}

.ryka-delivery-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ryka-delivery-image-link {
  display: block;
  width: 100%;
}

.ryka-delivery-image figure {
  position: relative;
  width: 100%;
  height: 520px;
  margin: 0;
  overflow: hidden;
}

.ryka-delivery-image figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.ryka-delivery-card:hover .ryka-delivery-image figure img {
  transform: scale(1.04);
}

.ryka-delivery-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: flex-end;

  padding: 30px 25px;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.12) 35%,
    rgba(0, 0, 0, 0.38) 65%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.ryka-delivery-content {
  width: 100%;
}

.ryka-delivery-number {
  display: block;
  margin-bottom: 12px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
}

.ryka-delivery-category {
  display: block;
  margin-bottom: 8px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ryka-delivery-content h3 {
  max-width: 90%;
  margin: 0;

  color: #fff;

  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.ryka-delivery-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 20px;
  padding-bottom: 7px;

  border-bottom: 1px solid var(--accent-color);

  color: var(--accent-color) !important;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);

  transition: gap 0.3s ease;
}

.ryka-delivery-btn i {
  font-size: 9px;
}

.ryka-delivery-btn:hover {
  color: #fff !important;
  gap: 15px;
}

.ryka-deliveries-bottom {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 25px;
  padding: 0 12px;
}

.ryka-deliveries-pagination {
  position: relative !important;

  width: auto !important;

  display: flex;
  align-items: center;
  gap: 5px;
}

.ryka-deliveries-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;

  margin: 0 !important;

  opacity: 1;

  background: #d2d2d2;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.ryka-deliveries-pagination .swiper-pagination-bullet-active {
  width: 22px;

  border-radius: 10px;

  background: #111;
}

.ryka-deliveries-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Tablet */

@media only screen and (max-width: 1199px) {
  .ryka-deliveries-section {
    padding: 80px 0;
  }

  .ryka-deliveries-slider {
    margin-top: 40px;
    padding: 0 10px;
  }

  .ryka-delivery-image figure {
    height: 460px;
  }

  .ryka-delivery-overlay {
    padding: 25px 20px;
  }

  .ryka-delivery-content h3 {
    font-size: 18px;
  }
}

/* Mobile */

@media only screen and (max-width: 767px) {
  .ryka-deliveries-section {
    padding: 60px 0;
  }

  .ryka-deliveries-slider {
    margin-top: 30px;
    padding: 0 6px;
  }

  .ryka-deliveries-swiper {
    width: 100%;
  }

  .ryka-delivery-image figure {
    height: 360px;
  }

  .ryka-delivery-overlay {
    padding: 20px 16px;

    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.18) 35%,
      rgba(0, 0, 0, 0.42) 62%,
      rgba(0, 0, 0, 0.82) 100%
    );
  }

  .ryka-delivery-number {
    margin-bottom: 7px;
    font-size: 8px;
  }

  .ryka-delivery-category {
    margin-bottom: 5px;
    font-size: 7px;
    letter-spacing: 1.1px;
  }

  .ryka-delivery-content h3 {
    max-width: 95%;

    font-size: 14px;
    line-height: 1.35;
  }

  .ryka-delivery-btn {
    margin-top: 13px;
    padding-bottom: 5px;

    font-size: 8px;
    gap: 7px;
  }

  .ryka-deliveries-bottom {
    margin-top: 20px;
    padding: 0 6px;
  }

  .ryka-deliveries-prev,
  .ryka-deliveries-next {
    width: 34px;
    height: 34px;

    font-size: 9px;
  }

  .ryka-deliveries-footer {
    margin-top: 30px;
  }
}

/****************************************/
/*** 	  11. Our Best Seller css	  ***/
/****************************************/

.our-best-seller {
  padding: 100px 0;
}

.best-seller-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.best-seller-item.highlighted-item {
  width: calc(50% - 10px);
}

.best-seller-item-list {
  width: calc(50% - 10px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.best-seller-item-list .best-seller-item {
  width: calc(50% - 10px);
}

.best-seller-item {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.best-seller-item-image a,
.best-seller-item-image figure {
  display: block;
  border-radius: 10px;
  cursor: none;
  overflow: hidden;
}

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

.best-seller-item:hover .best-seller-item-image img {
  transform: scale(1.06);
}

.best-seller-item-body {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 10px;
}

.best-seller-item-content {
  width: calc(100% - 30px);
}

.best-seller-item-content h3 {
  font-size: 16px;
  line-height: 1.4em;
  letter-spacing: -0.03em;
}

.best-seller-item-content h3 a {
  color: inherit;
}

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

.best-seller-item-content p span {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
}

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

.best-seller-item-btn a img {
  width: 100%;
  max-width: 18px;
}

.best-seller-item-btn a:hover {
  background-color: var(--primary-color);
  transform: rotate(45deg);
}

.best-seller-item.highlighted-item .best-seller-item-image,
.best-seller-item.highlighted-item .best-seller-item-image a,
.best-seller-item.highlighted-item .best-seller-item-image figure,
.best-seller-item.highlighted-item .best-seller-item-image img {
  height: 100%;
}

.best-seller-item.highlighted-item .best-seller-item-body {
  padding: 20px 30px 20px 20px;
}

.best-seller-item.highlighted-item .best-seller-item-content {
  width: calc(100% - 50px);
}

.best-seller-item.highlighted-item .best-seller-item-content h3 {
  font-size: 20px;
}

.best-seller-item.highlighted-item .best-seller-item-btn a {
  height: 40px;
  width: 40px;
}

.best-seller-item.highlighted-item .best-seller-item-btn a img {
  max-width: 24px;
}

.luxury-seller-item {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 100px;
}

.luxury-seller-item-content {
  width: calc(50% - 5px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 50px;
  height: 100%;
}

.luxury-seller-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.luxury-seller-amenities-item {
  width: calc(50% - 15px);
  display: flex;
  align-items: center;
  gap: 15px;
}

.luxury-seller-amenities-item .icon-box img {
  width: 100%;
  max-width: 50px;
}

.luxury-seller-item-image {
  width: calc(50% - 5px);
}

.luxury-seller-amenities-item-content {
  width: calc(100% - 65px);
}

.luxury-seller-amenities-item-content h3 {
  font-size: 16px;
  line-height: 1.4em;
}

.luxury-seller-item-list {
  padding-top: 30px;
  border-top: 1px solid var(--divider-color);
}

.luxury-seller-item-list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.luxury-seller-item-list ul li {
  position: relative;
  font-weight: 500;
  line-height: 1.5em;
  padding-left: 16px;
}

.luxury-seller-item-list ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 6px;
  width: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.luxury-seller-item-image figure {
  display: block;
  height: 100%;
  border-radius: 10px;
}

.luxury-seller-item-image figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.659;
  object-fit: cover;
  border-radius: 10px;
}

/****************************************/
/*** 	 12. Our Flat Discount css	  ***/
/****************************************/

.our-flat-discount {
  padding: 50px 0;
}

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

.flat-discount-body .countdown .counter-box {
  position: relative;
}

.flat-discount-body .countdown .counter-box:before {
  content: ":";
  position: absolute;
  top: 10px;
  right: -40px;
  font-size: 70px;
  color: var(--white-color);
  width: 20px;
  height: 36px;
}

.flat-discount-body .countdown .counter-box:last-child:before {
  display: none;
}

.flat-discount-body .countdown .counter-box span {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: -0.03em;
  color: var(--white-color);
}

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

.flat-discount-btn {
  margin-top: 30px;
}

.flat-discount-image figure {
  position: relative;
  mask-image: url("../images/discount-image-mask.svg");
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: cover;
}

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

/****************************************/
/*** 	   13. Our Stories css		  ***/
/****************************************/

.our-stories {
  padding: 100px 0;
}

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

.story-item {
  position: relative;
  width: calc(25% - 22.5px);
  height: 410px;
  background-color: var(--secondary-color);
  border-radius: 20px;
  overflow: hidden;
}

.story-item .story-item-video {
  height: 100%;
}

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

.story-item .story-item-video a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scale(0);
  background: var(--primary-color);
  border-radius: 20px;
  opacity: 30%;
  transition: all 0.5s ease-in-out;
}

.story-item:hover .story-item-video a:before {
  transform: scale(1);
}

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

.story-item .icon-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  transition: all 0.4s ease-in-out;
}

.story-item:hover .icon-box {
  transform: translate(-50%, -50%) scale(1);
}

.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%;
  transition: all 0.4s ease-in-out;
}

.story-item .icon-box a:hover {
  background-color: var(--primary-color);
}

.story-item .icon-box a i {
  font-size: 18px;
  color: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.story-item .icon-box a:hover i {
  color: var(--white-color);
}

.our-stories .section-footer-text {
  margin-top: 50px;
}

/****************************************/
/*** 	 14. Our Testimonials css     ***/
/****************************************/

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

.testimonials-image {
  margin-right: 15px;
}

.testimonials-image figure {
  display: block;
  border-radius: 20px;
}

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

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

.testimonial-item-rating {
  margin-bottom: 30px;
}

.testimonial-item-rating i {
  font-size: 18px;
  width: auto;
  color: var(--accent-color);
}

.testimonial-item-content p {
  font-weight: 700;
  margin: 0;
}

.testimonial-item-author-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--divider-color);
}

.testimonial-item-author {
  width: calc(100% - 95px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

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

.testimonial-item-author-image figure img {
  width: 100%;
  max-width: 60px;
  border-radius: 50%;
}

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

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

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

.testimonial-item-quotes img {
  width: 100%;
  max-width: 80px;
}

/****************************************/
/*** 	     15. Our Blog css         ***/
/****************************************/

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

.post-item {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.post-item.highlighted-post .post-featured-image {
  height: 100%;
}

.post-featured-image a {
  display: block;
  cursor: none;
  height: 100%;
}

.post-featured-image figure {
  position: relative;
  display: block;
  height: 100%;
}

.post-item.highlighted-post figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    transparent 52.39%,
    rgba(22, 22, 22, 0.35) 56.67%,
    rgba(22, 22, 22, 0.8) 100%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.post-item.highlighted-post .post-featured-image figure img {
  aspect-ratio: 1 / 0.752;
}

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

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

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

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

.post-item-meta ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4em;
}

.post-item-meta ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -23px;
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
  transform: translateY(-50%);
}

.post-item-meta ul li:last-child:before {
  display: none;
}

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

.post-item.highlighted-post .post-item-meta ul li::before {
  background: var(--white-color);
}

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

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

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

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

.post-item.highlighted-post .post-item-content h2 {
  color: var(--white-color);
}

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

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

.post-item-btn {
  border-top: 1px solid var(--divider-color);
  padding-top: 20px;
  margin-top: 20px;
}

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

.post-item.highlighted-post .post-item-btn .readmore-btn {
  color: var(--white-color);
}

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

.posts-item-list .post-item {
  width: 100%;
  background: var(--secondary-color);
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.posts-item-list .post-featured-image {
  width: calc(33% - 10px);
  border-radius: 20px;
  overflow: hidden;
}

.posts-item-list .post-item-body {
  position: initial;
  width: calc(67% - 10px);
  align-content: center;
  padding: 20px;
}

/****************************************/
/*** 	      16. Footer css          ***/
/****************************************/

.main-footer {
  padding: 80px 0 0;
}

.footer-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--dark-divider-color);
}

.footer-social-links,
.footer-contact-item-list {
  width: calc(38% - 13.33px);
}

.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);
  background: transparent;
  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-logo {
  width: calc(24% - 13.33px);
  text-align: center;
}

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

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

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

.footer-contact-item-list {
  justify-content: right;
}

.footer-contact-item .icon-box {
  position: relative;
  height: 50px;
  width: 50px;
  background-color: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

.footer-contact-item-content h2 {
  font-size: 16px;
  color: var(--white-color);
}

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

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

.footer-newsletter-box {
  max-width: 300px;
}

.footer-newsletter-content {
  margin-bottom: 30px;
}

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

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

.footer-newsletter-form .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: 100px;
  outline: none;
  box-shadow: none;
  padding: 6px 15px;
}

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

.footer-newsletter-form .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-form .newsletter-btn:hover {
  background-color: var(--accent-color);
}

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

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

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

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

.footer-links h2 {
  color: var(--white-color);
  font-size: 16px;
  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;
  transition: all 0.4s ease-in-out;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
}

.footer-links.footer-contact-list ul li {
  line-height: 1.6em;
}

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

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

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

.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: 47px;
  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%;
}

/****************************************/
/*** 	   17. About Us Page css      ***/
/****************************************/

.page-header {
  position: relative;
  background-image: url("../images/page-header-bg-image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 150px 0;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  opacity: 60%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header-box {
  text-align: center;
}

.page-header-box h1 {
  display: inline-block;
  font-size: 64px;
  color: var(--white-color);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  cursor: none;
}

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

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

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

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

.our-best-offers {
  padding: 100px 0;
}

.best-offer-item {
  background: var(--secondary-color);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 20px;
  overflow: hidden;
  padding: 40px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.best-offer-item-content-box {
  width: calc(56% - 10px);
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.best-offer-item-content h3 {
  font-size: 24px;
}

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

.best-offer-item-image {
  position: relative;
  width: calc(44% - 10px);
}

.best-offer-item-image figure {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

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

.best-offer-save-tag {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 92px;
  height: 92px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 5px;
  transition: all 0.4s ease-in-out;
  animation: zoom_in_out 1s infinite linear alternate;
}

@keyframes zoom_in_out {
  100% {
    transform: scale(0.9);
  }
}

.best-offer-item:hover .best-offer-save-tag {
  background: var(--primary-color);
}

.best-offer-save-tag p {
  color: var(--white-color);
  line-height: normal;
  margin: 0;
}

.best-offer-save-tag h3 {
  font-size: 26px;
  color: var(--white-color);
}

.best-offer-product-list {
  margin-top: 30px;
}

.best-offer-product-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.best-offer-product-list ul li {
  position: relative;
  width: calc(16.66% - 25px);
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--divider-color);
  border-radius: 50px;
  color: var(--primary-color);
  padding: 14px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.best-offer-product-list ul li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--divider-color);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.best-offer-product-list ul li:hover::before {
  right: auto;
  left: 0;
  width: 100%;
}

.best-offer-product-list ul li img {
  width: 100%;
  max-width: 50px;
  border-radius: 50%;
}

.vision-mission-item-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 100px;
}

.vision-mission-item {
  position: relative;
  width: calc(50% - 10px);
  border-radius: 20px;
  overflow: hidden;
}

.vision-mission-item-image figure {
  position: relative;
  display: block;
}

.vision-mission-item-image figure::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(22, 22, 22, 0) 64.68%,
    rgba(22, 22, 22, 0.8) 89.75%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.vision-mission-item-image img {
  width: 100%;
  aspect-ratio: 1 / 0.85;
  object-fit: cover;
  transition: all 0.6s ease-in-out;
}

.vision-mission-item:hover .vision-mission-item-image img {
  transform: scale(1.03);
}

.vision-mission-item-content {
  position: absolute;
  right: 40px;
  bottom: 40px;
  left: 40px;
  z-index: 1;
}

.vision-mission-item-content h3 {
  font-size: 30px;
  color: var(--white-color);
}

.vision-mission-item-content p {
  color: var(--white-color);
  margin: 10px 0 0;
}

.our-approach {
  padding: 100px 0;
}

.approach-title-list {
  margin-top: 40px;
}

.approach-title-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.approach-title-list ul li {
  position: relative;
  display: inline-block;
  font-weight: 600;
  line-height: normal;
  color: var(--primary-color);
  background: var(--white-color);
  border-radius: 50px;
  padding: 15px 20px 15px 38px;
  transition: all 0.4s ease-in-out;
}

.approach-title-list ul li:hover {
  color: var(--white-color);
  background: var(--primary-color);
}

.approach-title-list ul li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.approach-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.approach-item {
  width: calc(33.33% - 13.33px);
}

.approach-item-image-box {
  position: relative;
  margin-bottom: 25px;
}

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

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

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

.approach-item-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  z-index: 1;
}

.approach-item-tag a {
  font-weight: 600;
  text-transform: uppercase;
  line-height: normal;
  color: var(--white-color);
  background-color: var(--accent-color);
  border-radius: 20px;
  padding: 6px 20px;
  transition: all 0.4s ease-in-out;
}

.approach-item-tag a:hover {
  background-color: var(--primary-color);
}

.approach-item-content h3 {
  font-size: 16px;
  line-height: 1.4em;
}

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

.our-best-seller.about-our-best-seller {
  padding: 100px 0 50px;
}

.our-brands {
  margin-top: 100px;
}

.our-brands .container-fluid {
  padding: 0;
}

.brand-logo-ticker-box {
  --gap: 60px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.brand-logo-ticker-box .scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 15s linear infinite;
}

.brand-logo-ticker-box:hover .scrolling-content {
  animation-play-state: paused;
}

.brand-logo-ticker-box .scrolling-content span {
  width: calc((100vw / 8) - 52.5px);
  text-align: center;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.brand-logo-ticker-box .scrolling-content span img {
  width: 100%;
  max-width: 184px;
  height: 80px;
}

.our-team {
  padding: 50px 0 100px;
}

.team-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.team-item {
  position: relative;
  width: calc(25% - 15px);
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
}

.team-item-image a {
  cursor: none;
}

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

.team-item-image figure::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(
    180deg,
    transparent 28.36%,
    rgba(22, 22, 22, 0.6) 79.22%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

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

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

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

.team-item-social-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.team-item-social-list ul li {
  margin-bottom: 10px;
}

.team-item-social-list ul li:last-child {
  margin-bottom: 0;
}

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

.team-item-social-list ul li a:hover {
  background-color: var(--accent-color);
  color: var(--white-color);
}

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

.team-item-content {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  z-index: 1;
}

.team-item-content h2 {
  font-size: 16px;
  color: var(--white-color);
}

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

.team-item-content p {
  color: var(--white-color);
  margin: 10px 0 0;
}

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

.faq-content-box {
  position: sticky;
  top: 30px;
}

.faq-accordion .accordion-item {
  position: relative;
  background: var(--secondary-color);
  border-radius: 20px;
  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: 700;
  line-height: 1.333em;
  background: transparent;
  color: var(--primary-color);
  padding: 24px 60px 24px 30px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\f055";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  right: 30px;
  line-height: 1em;
  font-size: 24px;
  font-weight: 600;
  transform: translateY(-50%);
  color: var(--primary-color);
  transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "\f056";
}

.faq-accordion .accordion-item .accordion-body {
  border-top: 1px solid var(--divider-color);
  padding: 24px 30px;
}

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

/****************************************/
/***      	18. Blog Archive css      ***/
/****************************************/

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

.page-blog .posts-item-list .post-item {
  width: calc(33.33% - 20px);
  padding: 10px;
  gap: 10px;
}

.page-blog .posts-item-list .post-item .post-featured-image,
.page-blog .posts-item-list .post-item .post-item-body {
  width: 100%;
}

.page-blog .posts-item-list .post-item .post-featured-image {
  border-radius: 14px;
}

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

.page-pagination {
  margin-top: 60px;
  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: 10px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 600;
  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);
}

/****************************************/
/***      	19. Blog Single css       ***/
/****************************************/

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

.post-single-meta ol li {
  font-size: 17px;
  color: var(--white-color);
  line-height: normal;
  margin-right: 15px;
}

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

.post-single-meta ol li i {
  font-size: 17px;
  color: var(--white-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: 700;
  line-height: 1.2em;
  margin: 0 0 0.56em;
}

.post-entry h1 {
  font-size: 80px;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.post-entry h2 {
  font-size: 36px;
  letter-spacing: -0.03em;
  line-height: 1.4em;
}

.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 {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 600;
}

.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;
  font-size: 17px;
  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.5em;
  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: 500;
  text-transform: capitalize;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 100px;
  padding: 12px 20px;
  transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
  background: var(--primary-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: 100px;
  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;
}

/****************************************/
/***      	20. Products Page css     ***/
/****************************************/

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

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

.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: 0.75rem;
}

.product-category-filter-clear-btn a {
  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 {
  font-size: 16px;
  margin-bottom: 20px;
}

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

.product-category-item ul li {
  line-height: normal;
  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"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  accent-color: var(--primary-color);
  border-radius: 50%;
  border: 1px solid var(--divider-color);
}

.product-category-item ul li input[type="checkbox"]:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: inset 0 0 0 4px var(--white-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;
  font-size: 18px;
  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: 16px;
  font-weight: 500;
  line-height: 1.25em;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border: none;
  border-radius: 20px;
  padding: 9px 35px 9px 20px;
  outline: none;
  box-shadow: none;
}

.product-item-list-box .product-item-list {
  display: flex;
  flex-wrap: wrap;
  /* gap: 30px 15px; */
}

.product-item-list-box .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 50px;
}

.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%) rotate(45deg);
  background: url("../images/arrow-primary.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 li a {
  color: inherit;
}

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

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

.product-single-image-item {
  border-radius: 20px;
  margin-bottom: 10px;
}

.product-single-image-item .swiper-slide figure {
  display: block;
}

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

.product-single-image-slider .swiper-slide {
  cursor: pointer;
  padding: 0px;
}

.product-single-image-slider .swiper-slide figure {
  display: block;
  border-radius: 20px;
}

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

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

.product-single-price span,
.product-single-title span {
  display: inline-block;
  font-size: 16px;
  line-height: normal;
  margin-top: 10px;
}

.product-single-price {
  margin-top: 30px;
}

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

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

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

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

.product-single-item-color {
  margin-top: 40px;
}

.product-single-item-color h3 {
  font-size: 16px;
  margin-bottom: 15px;
}

.product-single-item-color h3 span {
  color: var(--text-color);
  font-weight: 400;
}

.product-item-variant {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.product-item-variant-label p {
  margin: 0;
}

.product-item-variant-colors {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-item-variant-colors input {
  display: none;
}

.product-item-variant-colors .color-variant {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
}

.product-item-variant-colors .color-variant.black {
  background: var(--primary-color);
}

.product-item-variant-colors .color-variant.gray {
  background: var(--divider-color);
}

.product-item-variant-colors .color-variant.light {
  background: rgb(from var(--accent-color) r g b / 40%);
}

.product-item-variant-colors .color-variant.accent {
  background: var(--accent-color);
}

.product-item-variant-colors .color-variant.pink {
  background: rgb(from var(--error-color) r g b / 50%);
}

.product-item-variant-colors input:checked + .color-variant {
  border: 4px solid transparent;
}

.product-item-variant-colors input:checked + .color-variant::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid var(--white-color);
}

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

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

.qty-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 32px;
  color: var(--primary-color);
  outline: none;
}

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

.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: 50px;
  padding: 12px 20px;
  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 {
  line-height: 1.5em;
  margin-bottom: 10px;
}

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

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

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

.product-single-payment-method h3 {
  font-size: 16px;
  margin: 0 0 15px;
}

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

.product-single-payment-method ul li {
  line-height: 0;
}

.product-single-payment-method ul li a {
  display: inline-block;
  min-width: 47px;
  border: 1px solid var(--divider-color);
  border-radius: 5px;
  text-align: center;
  align-content: center;
  overflow: hidden;
}

.product-single-payment-method ul li a img {
  width: 100%;
  height: 100%;
}

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

.product-step-nav {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  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(--primary-color);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  padding: 0;
  border-radius: 0;
  margin: 0;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

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

.product-step-nav ul li .nav-link::before {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  left: auto;
  bottom: -26px;
  right: 0;
  background-color: var(--accent-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 h2 {
  font-size: 30px;
}

.product-tab-item-box h3 {
  font-size: 22px;
  margin-top: 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 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;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

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

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

.customer-review-item-body {
  width: calc(100% - 65px);
  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);
}

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

.review-form-content h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

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

.review-form .form-control {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.333em;
  color: var(--primary-color);
  border: 1px solid var(--divider-color);
  background-color: transparent;
  border-radius: 10px;
  padding: 14px 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 {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.review-form-note input[type="checkbox"]:checked {
  accent-color: var(--accent-color);
}

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

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

.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: 4px;
}

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

.product-additional-info-table::-webkit-scrollbar-thumb {
  background: var(--primary-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: 50px 0 100px;
}

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

.page-cart {
  padding: 100px 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: 16px;
  font-weight: 700;
  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;
  max-width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  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);
}

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

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

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

.cart-item-title {
  max-width: 170px;
}

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

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

.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: 6px 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: 15px 30px 15px 60px;
}

.cart-item-buttons .btn-default.btn-update::before,
.cart-item-buttons .btn-default.btn-clear::before {
  position: absolute;
  font-family: "Font Awesome 7 Free";
  font-size: 18px;
  line-height: normal;
  color: var(--white-color);
  background: transparent;
  top: 50%;
  left: 30px;
  right: auto;
  transform: translateY(-50%);
  width: auto;
  height: auto;
}

.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: 100px;
}

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

.interested-products-box .product-item-list .product-item {
  width: calc(33.33% - 13.33px);
}

.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: 16px;
}

.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: 170px;
  font-size: 15px;
  line-height: normal;
  color: var(--text-color);
  background-color: transparent;
  background-image: url("../images/icon-tag.svg");
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 14px auto;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  flex-grow: 1;
  padding: 8px 10px 8px 36px;
}

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

.order-summary-promocode-form .form-group .btn-default {
  padding-top: 12px;
  padding-bottom: 12px;
}

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

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

.order-summary-shipment-info h3 {
  font-size: 16px;
  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: 15px;
}

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

.order-summary-shipment-info ul li,
.order-summary-shipment-info ul li span {
  line-height: normal;
  color: var(--primary-color);
  font-weight: 700;
  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(--accent-color);
}

.order-summary-shipment-info p {
  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: 700;
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

/****************************************/
/***   23. Order Received Page css    ***/
/****************************************/

.page-order-receive {
  padding: 100px 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;
}

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

.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(--accent-color);
}

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

.order-receive-sidebar-item.order-receive-box ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.order-receive-sidebar-item ul li span b {
  font-weight: 500;
  color: var(--primary-color);
}

.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;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.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: 16px;
  font-weight: 700;
  color: var(--primary-color);
}

/****************************************/
/***       24. Checkout Page css      ***/
/****************************************/

.page-checkout {
  padding: 100px 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-family: var(--default-font);
  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.4s ease-in-out;
}

.checkout-accordion-header .checkout-accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg);
}

.checkout-accordion-header .checkout-accordion-button b {
  color: var(--primary-color);
  font-weight: 400;
  text-decoration: underline;
}

.checkout-accordion-body {
  margin-top: 30px;
}

.checkout-accordion-body-content {
  margin-bottom: 30px;
}

.checkout-accordion-body-content p {
  font-size: 16px;
  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-weight: 700;
  color: var(--primary-color);
  line-height: normal;
  margin-bottom: 10px;
}

.checkout-bill-address-form .form-control,
.checkout-login-form .form-control {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.333em;
  color: var(--text-color);
  border: 1px solid var(--divider-color);
  background-color: transparent;
  border-radius: 10px;
  padding: 14px 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-login-form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.checkout-form-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.checkout-form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.checkout-form-checkbox input[type="checkbox"]:checked {
  accent-color: var(--accent-color);
}

.checkout-form-checkbox label {
  cursor: pointer;
}

.checkout-bill-address-title {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.checkout-bill-address-title h2 {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.checkout-form-checkbox.different-address-note {
  margin-top: 20px;
}

.checkout-form-checkbox.different-address-note label {
  color: var(--text-color);
  margin: 0;
  font-weight: 400;
}

.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-family: var(--default-font);
  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 {
  color: var(--primary-color);
  font-weight: 400;
  text-decoration: underline;
}

.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;
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  padding: 5px;
}

.coupeon-apply-form .form-group {
  min-width: 200px;
  flex: 1;
}

.coupeon-apply-form .form-control {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text-color);
  background-color: transparent;
  background-image: url("../images/icon-tag.svg");
  background-repeat: no-repeat;
  background-position: left 13px top 56%;
  background-size: 14px auto;
  border-radius: 0;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 8px 18px 8px 35px;
}

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

.coupeon-apply-btn .btn-default {
  border-radius: 5px;
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.product-total-order-title h3 {
  font-size: 20px;
}

.product-total-item-tag-list {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.product-total-item-tag {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
}

.product-total-item {
  display: flex;
  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: 74%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.product-total-item-image {
  max-width: 60px;
  border-radius: 5px;
  overflow: hidden;
}

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

.product-total-item-title {
  width: calc(100% - 75px);
}

.product-total-item-title p,
.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-weight: 500;
  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(--accent-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;
}

/****************************************/
/***  25. Account Dashboard Page css  ***/
/****************************************/

.page-my-account {
  padding: 100px 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-size: 16px;
  font-weight: 500;
  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 {
  font-size: 16px;
  margin-bottom: 30px;
}

.account-dashboard-detail-box p:last-child {
  margin-bottom: 0;
}

.account-dashboard-detail-box p span {
  font-size: 20px;
  font-weight: 700;
}

.account-dashboard-detail-box p b {
  color: var(--primary-color);
}

.account-dashboard-detail-box p a {
  font-weight: 500;
  text-decoration: underline;
  color: var(--primary-color);
  text-underline-offset: 2px;
  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: 100px 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(--primary-color);
}

.account-order-table-box::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}

.account-order-table-box table tr th {
  min-width: 100px;
  font-size: 16px;
  font-weight: 700;
  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: 18px 10px 18px 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 {
  padding: 8px 24px;
}

.account-order-button {
  margin-top: 40px;
}

/****************************************/
/***  27. Account Order View Page css ***/
/****************************************/

.page-account-view-order {
  padding: 100px 0;
}

.view-order-product-info-box .product-header-tag {
  width: calc(53% - 6.67px);
}

.view-order-product-info-box .quantity-header-tag {
  width: calc(24% - 6.67px);
}

.view-order-product-info-box .subtotal-header-tag {
  width: calc(23% - 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: 49%;
}

.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: 700;
  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: 23%;
  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: 20px;
}

.view-order-address-item ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--divider-color);
}

.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;
}

/****************************************/
/***  28. Account Download Page css   ***/
/****************************************/

.page-product-download {
  padding: 100px 0;
}

/****************************************/
/***   29. Account Address Page css   ***/
/****************************************/

.page-my-account-address {
  padding: 100px 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;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.account-address-item-title h2 {
  font-size: 20px;
}

.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: 20px;
  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: 100px 0;
}

.account-address-form-btn {
  margin-top: 10px;
}

/****************************************/
/***   31. Account Details Page css   ***/
/****************************************/

.page-account-details {
  padding: 100px 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: 100px 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: 16px;
  font-weight: 700;
  line-height: 1.4em;
  color: var(--primary-color);
}

.wishlist-product-tag {
  width: calc(40% - 7.5px);
}

.wishlist-price-tag {
  width: calc(25% - 7.5px);
}

.wishlist-status-tag {
  width: calc(26% - 7.5px);
}

.wishlist-action-tag {
  width: calc(9% - 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: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
}

.wishlist-item-image figure {
  display: block;
  max-width: 60px;
}

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

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

.wishlist-item-title p {
  max-width: 165px;
}

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

.wishlist-item-price {
  width: 44%;
}

.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(--primary-color);
}

.wishlist-content-button {
  margin-top: 40px;
}

/****************************************/
/***      	33. Login Page css	      ***/
/****************************************/

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

.login-content-box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 80px;
}

.login-content-form-item {
  width: calc(50% - 40px);
}

.login-form-content .section-title {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--divider-color);
}

.login-content-form-btn {
  margin-top: 30px;
}

.login-content-form-btn a {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.4s ease-in-out;
}

.login-content-form-btn a:hover {
  color: var(--accent-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;
  text-underline-offset: 3px;
  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%;
}

/****************************************/
/***      34. Forgot Password css     ***/
/****************************************/

.page-forgot-password {
  padding: 100px 0;
}

.forgot-password-content-box .login-content-form-item {
  width: auto;
  max-width: 860px;
  margin: 0 auto;
}

/****************************************/
/***    35. Privacy Policy Page css   ***/
/****************************************/

.page-privacy-policy {
  padding: 100px 0;
}

.page-category-list {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  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(--accent-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: 20px;
  height: 20px;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before {
  transform: translateY(-50%) rotate(45deg);
}

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

.sidebar-cta-title {
  max-width: 78%;
}

.sidebar-cta-box h2 {
  font-size: 20px;
  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(--accent-color);
}

.sidebar-cta-box ul li a img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

.privacy-policy-sidebar-list ul li {
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.page-category-list.privacy-policy-sidebar-list ul li a {
  padding-right: 0;
}

.privacy-policy-sidebar-list ul li a::before {
  display: none;
}

.privacy-policy-entry-header {
  margin-bottom: 60px;
}

.privacy-policy-entry-header h3 {
  font-size: 20px;
  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 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: 40px;
}

.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: inherit;
  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 {
  color: var(--primary-color);
}

/****************************************/
/***   36. Term Condition Page css    ***/
/****************************************/

.page-terms-conditions {
  padding: 100px 0;
}

/****************************************/
/***   37. Refund Return Policy css   ***/
/****************************************/

.page-refund-return-policy {
  padding: 100px 0;
}

/****************************************/
/***	38. Cancellation Policy css   ***/
/****************************************/

.page-cancellation-policy {
  padding: 100px 0;
}

/****************************************/
/***   39. Delivery Policy Page css   ***/
/****************************************/

.page-delivery-policy {
  padding: 100px 0;
}

/****************************************/
/***     40. Testimonials Page css    ***/
/****************************************/

.page-testimonials {
  padding: 120px 0 90px;
}

.page-testimonials .testimonial-item {
  background-color: var(--secondary-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  transition: all 0.6s ease-in-out;
}

.page-testimonials .testimonial-item:hover {
  transform: translateY(-5px);
}

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

.page-testimonials .testimonial-item .testimonial-item-author-image figure img,
.page-testimonials .testimonial-item .testimonial-item-quotes img {
  max-width: 50px;
}

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

/****************************************/
/***		 41. Faqs Page css  	  ***/
/****************************************/

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

.page-faq-accordion {
  margin-bottom: 60px;
}

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

/****************************************/
/***     42. Contact Us Page css  	  ***/
/****************************************/

.page-contact-us {
  padding: 100px 0 50px;
}

.contact-form-box,
.contact-info-box {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  overflow: hidden;
}

.contact-us-body-box {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 30px;
}

.contact-form-box {
  width: calc(62% - 15px);
  padding: 50px;
}

.contact-form .form-control {
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  color: var(--text-color);
  border: 1px solid var(--divider-color);
  background-color: transparent;
  border-radius: 10px;
  padding: 17px 20px;
  box-shadow: none;
  outline: none;
}

.contact-form .form-control::placeholder {
  color: var(--text-color);
}

.contact-form-btn {
  margin-top: 20px;
}

.contact-info-box {
  width: calc(38% - 15px);
}

.contact-info-box-header {
  padding: 40px 50px;
}

.contact-info-item {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 25px;
  padding-bottom: 25px;
}

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

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

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

.contact-info-item-content h3 {
  font-size: 16px;
}

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

.contact-info-item-content p a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.contact-info-item-content p a:hover {
  color: var(--accent-color);
}

.contact-social-links-box {
  background: var(--accent-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  padding: 12px 50px;
}

.contact-social-links-box h3 {
  font-size: 16px;
  color: var(--white-color);
}

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

.contact-social-links-box ul li a {
  width: 40px;
  height: 40px;
  color: var(--white-color);
  background: transparent;
  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;
}

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

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

.google-map {
  padding: 50px 0 100px;
}

.google-map-iframe,
.google-map-iframe iframe {
  width: 100%;
  height: 600px;
  border-radius: 20px;
}

.google-map-iframe iframe {
  transition: all 0.6s ease-in-out;
  filter: grayscale(1);
}

.google-map-iframe iframe:hover {
  filter: grayscale(0);
}

/****************************************/
/*** 	  43. 404 Error Page css      ***/
/****************************************/

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

.error-page-image {
  text-align: center;
  margin-bottom: 40px;
}

.error-page-image img {
  width: 100%;
  max-width: 520px;
}

.error-page-content {
  text-align: center;
}

.error-page-content .section-title {
  margin-bottom: 15px;
}

/****************************************/
/*** 	  44. Empty Cart Page css     ***/
/****************************************/

.empty-cart-page {
  padding: 100px 0;
}

.empty-cart-page-image {
  text-align: center;
  margin-bottom: 40px;
}

.empty-cart-page-image img {
  width: 100%;
  max-width: 520px;
}

.empty-cart-page-content {
  text-align: center;
}

.empty-cart-page-content .section-title {
  margin-bottom: 15px;
}

/****************************************/
/***       45. Responsive css         ***/
/****************************************/

@media only screen and (min-width: 769px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

@media only screen and (max-width: 1440px) {
  .intro-video {
    min-height: 700px;
  }
}

@media only screen and (max-width: 1366px) {
  .dropdown-menu {
    padding: 40px 15px;
  }

  .mega-menu-box {
    padding: 0;
  }
}

@media only screen and (max-width: 1024px) {
  .navbar {
    gap: 30px;
    padding: 20px 15px;
  }

  .header-action-box {
    width: calc(100% - 68px);
    padding: 0;
  }

  .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 {
    font-size: 18px;
    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 {
    color: var(--text-color);
    font-weight: 400;
    padding: 0;
  }

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

  .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 {
    font-size: 18px;
    color: var(--primary-color);
    padding: 0;
  }

  .mega-menu-item.big-offer-box .mega-menu-item-content h2 {
    font-size: 26px;
  }

  .mega-menu-item.big-offer-box .mega-menu-item-content h3 {
    font-size: 18px;
  }

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

  .section-content-btn .section-btn {
    margin-top: 20px;
  }

  .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 {
    min-height: 700px;
  }

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

  .product-item-image img {
    aspect-ratio: 1 / 0.87;
  }

  .intro-video-circle {
    margin-right: 20px;
  }

  .trending-product-item,
  .product-offer-item {
    width: calc(50% - 10px);
  }

  .arrivals-item.highlighted-item,
  .arrivals-item-list {
    width: 100%;
  }

  .arrivals-item-image figure img {
    aspect-ratio: 1 / 0.75;
  }

  .arrivals-item.highlighted-item .arrivals-item-image,
  .arrivals-item.highlighted-item .arrivals-item-image a,
  .arrivals-item.highlighted-item .arrivals-item-image figure,
  .arrivals-item.highlighted-item .arrivals-item-image img {
    height: auto;
  }

  .arrivals-item.highlighted-item .arrivals-item-content {
    right: 30px;
    bottom: 30px;
    left: 30px;
  }

  .best-seller-item.highlighted-item,
  .best-seller-item-list {
    width: 100%;
  }

  .best-seller-item.highlighted-item .best-seller-item-image,
  .best-seller-item.highlighted-item .best-seller-item-image a,
  .best-seller-item.highlighted-item .best-seller-item-image figure,
  .best-seller-item.highlighted-item .best-seller-item-image img {
    height: auto;
  }

  .best-seller-item-image img {
    aspect-ratio: 1 / 0.7;
  }

  .luxury-seller-item-content {
    width: 100%;
    padding: 30px;
    height: auto;
  }

  .luxury-seller-item-image {
    width: 100%;
  }

  .luxury-seller-item-image figure,
  .luxury-seller-item-image figure img {
    height: auto;
  }

  .flat-discount-content {
    margin-bottom: 30px;
  }

  .flat-discount-image {
    max-width: 605px;
    margin: 0 auto;
  }

  .stoty-item-list {
    gap: 20px;
  }

  .story-item {
    width: calc(25% - 15px);
    height: 360px;
  }

  .testimonials-image {
    max-width: 605px;
    margin: 0 auto 30px;
  }

  .footer-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .footer-newsletter-box {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .footer-copyright {
    padding: 25px 0;
    margin-top: 30px;
  }

  .best-offer-item-content-box {
    width: 100%;
    height: auto;
  }

  .best-offer-item-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .best-offer-product-list ul {
    gap: 15px;
  }

  .best-offer-product-list ul li {
    width: auto;
  }

  .approach-item {
    width: calc(50% - 10px);
  }

  .brand-logo-ticker-box {
    --gap: 30px;
  }

  .brand-logo-ticker-box .scrolling-content span {
    width: auto;
  }

  .team-item {
    width: calc(50% - 10px);
  }

  .team-item-image figure img {
    aspect-ratio: 1 / 1.03;
  }

  .faq-content-box {
    position: initial;
    margin: 0 0 30px;
  }

  .page-blog .posts-item-list .post-item {
    width: calc(50% - 15px);
  }

  .page-single-sidebar {
    margin: 0;
  }

  .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-item-list-box .product-item-list .product-item {
    width: calc(50% - 7.5px);
  }

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

  .product-single-info-content,
  .product-single-image-box {
    width: 100%;
  }

  .product-single-image-box {
    max-width: 750px;
    margin: 0 auto;
  }

  .product-single-image-item .swiper-slide figure img {
    aspect-ratio: 1 / 0.85;
  }

  .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;
  }

  .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 {
    padding: 20px;
  }

  .page-category-list ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .sidebar-cta-box {
    padding: 20px;
  }

  .sidebar-cta-title {
    max-width: 100%;
  }

  .contact-form-box,
  .contact-info-box-header {
    padding: 30px;
  }

  .contact-social-links-box {
    gap: 10px;
    padding: 12px 30px;
  }

  .contact-social-links-box ul {
    gap: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .btn-default {
    font-size: 14px;
    padding: 16px 50px 16px 16px;
  }

  .btn-default::before {
    width: 36px;
    height: 36px;
  }

  .btn-default.btn-accent {
    padding: 16px;
  }

  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;
  }

  .header-contact-info {
    gap: 10px;
  }

  .header-contact-info .icon-box {
    width: 44px;
    height: 44px;
  }

  .header-contact-info .icon-box img {
    max-width: 22px;
  }

  .header-contact-info-content {
    width: calc(100% - 54px);
  }

  .header-action-details ul {
    gap: 15px;
  }

  .header-action-details ul li button img,
  .header-action-details ul li a img {
    max-width: 20px;
  }

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

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

  .section-title .section-sub-title {
    padding: 6px 12px 6px 28px;
  }

  .section-title .section-sub-title::before {
    left: 12px;
  }

  .section-title h1 {
    font-size: 58px;
  }

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

  .section-title p {
    margin-top: 10px;
  }

  .hero {
    min-height: 600px;
    padding: 50px 0;
  }

  .hero-content-box .section-title {
    margin-bottom: 50px;
  }

  .our-categories {
    padding: 50px 0 25px;
  }

  .category-item-image-box {
    max-width: 160px;
    margin-bottom: 20px;
  }

  .category-item-info p {
    font-size: 16px;
  }

  .category-item-slider .category-pagination {
    margin-top: 30px;
  }

  .our-offers {
    padding: 25px 0;
  }

  .offer-item {
    min-height: 390px;
  }

  .offer-item-content-box {
    padding: 30px;
  }

  .offer-item-content {
    margin-bottom: 30px;
  }

  .offer-item-content h3 {
    font-size: 24px;
  }

  .our-products {
    padding: 25px 0 50px;
  }

  .product-item-header {
    margin-bottom: 15px;
  }

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

  .section-footer-text {
    margin-top: 10px;
  }

  .section-footer-text p,
  .section-footer-text ul {
    margin-bottom: 10px;
  }

  .intro-video {
    padding: 60px 0;
    min-height: 580px;
  }

  .intro-video-circle img {
    max-width: 120px;
  }

  .our-trending-products {
    padding: 50px 0;
  }

  .trending-product-item,
  .product-offer-item {
    padding: 20px;
    gap: 20px;
  }

  .trending-product-item-image img {
    aspect-ratio: 1 / 0.62;
  }

  .product-offer-item-content {
    width: calc(48% - 10px);
  }

  .product-offer-item-header-content span {
    padding: 5px 15px;
    margin: 0 0 20px -20px;
  }

  .product-offer-item-image {
    width: calc(52% - 10px);
  }

  .our-arrivals {
    padding: 50px 0;
  }

  .our-best-seller {
    padding: 50px 0;
  }

  .best-seller-item.highlighted-item .best-seller-item-body {
    padding: 10px 20px 10px 10px;
  }

  .best-seller-item.highlighted-item .best-seller-item-content h3 {
    font-size: 18px;
  }

  .luxury-seller-item {
    margin-top: 50px;
  }

  .our-flat-discount {
    padding: 50px 0;
  }

  .flat-discount-body {
    margin-top: 30px;
  }

  .flat-discount-body .countdown .counter-box span {
    font-size: 32px;
  }

  .flat-discount-body .countdown .counter-box p {
    margin-top: 10px;
  }

  .flat-discount-btn {
    margin-top: 30px;
  }

  .our-stories {
    padding: 50px 0;
  }

  .story-item {
    width: calc(50% - 10px);
  }

  .our-stories .section-footer-text {
    margin-top: 30px;
  }

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

  .testimonial-item-rating {
    margin-bottom: 20px;
  }

  .testimonial-item-author-box {
    margin-top: 30px;
    padding-top: 30px;
  }

  .testimonial-item-author {
    width: calc(100% - 80px);
  }

  .testimonial-item-quotes img {
    max-width: 60px;
  }

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

  .post-item.highlighted-post {
    height: auto;
    margin-bottom: 30px;
  }

  .post-item.highlighted-post .post-featured-image figure img,
  .post-featured-image figure img {
    aspect-ratio: 1 / 0.59;
  }

  .post-item.highlighted-post .post-item-body {
    right: 30px;
    bottom: 30px;
    left: 30px;
  }

  .posts-item-list .post-item {
    width: calc(50% - 15px);
    padding: 15px;
  }

  .posts-item-list .post-featured-image,
  .posts-item-list .post-item-body {
    width: 100%;
  }

  .posts-item-list .post-item-body {
    padding: 5px;
  }

  .main-footer {
    padding-top: 50px;
  }

  .footer-newsletter-content {
    margin-bottom: 20px;
  }

  .footer-links h2 {
    margin-bottom: 20px;
  }

  .footer-links ul li {
    margin-bottom: 10px;
  }

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

  .page-header-box h1 {
    font-size: 50px;
  }

  .our-best-offers {
    padding: 50px 0;
  }

  .best-offer-item {
    padding: 30px;
  }

  .best-offer-item-content h3 {
    font-size: 22px;
  }

  .best-offer-save-tag {
    top: -10px;
    right: -10px;
    width: 84px;
    height: 84px;
  }

  .best-offer-save-tag h3 {
    font-size: 22px;
  }

  .best-offer-product-list ul li {
    padding: 8px 15px 8px 8px;
    gap: 10px;
  }

  .best-offer-product-list ul li img {
    max-width: 44px;
  }

  .vision-mission-item-content h3 {
    font-size: 24px;
  }

  .best-offer-product-list {
    margin-top: 10px;
  }

  .vision-mission-item-boxes {
    margin-top: 50px;
  }

  .vision-mission-item-image img {
    aspect-ratio: 1 / 1.05;
  }

  .vision-mission-item-content {
    right: 25px;
    bottom: 25px;
    left: 25px;
  }

  .our-approach {
    padding: 50px 0;
  }

  .approach-title-list {
    margin-top: 30px;
  }

  .approach-title-list ul {
    gap: 15px;
  }

  .approach-title-list ul li {
    padding: 8px 14px 8px 28px;
  }

  .approach-title-list ul li::before {
    left: 14px;
    width: 6px;
    height: 6px;
  }

  .approach-item-image-box {
    margin-bottom: 20px;
  }

  .approach-item-tag {
    top: 15px;
    left: 15px;
    right: 15px;
  }

  .approach-item-tag a {
    font-size: 12px;
    padding: 6px 16px;
  }

  .our-best-seller.about-our-best-seller {
    padding: 50px 0 25px;
  }

  .our-brands {
    margin-top: 50px;
  }

  .our-brands .row.section-row {
    padding: 0 15px;
  }

  .brand-logo-ticker-box .scrolling-content span img {
    max-width: 125px;
    height: 55px;
  }

  .our-team {
    padding: 25px 0 50px;
  }

  .team-item-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

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

  .faq-accordion .accordion-header .accordion-button {
    padding: 16px 50px 16px 20px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    right: 20px;
    font-size: 22px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 16px 20px;
  }

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

  .page-blog .posts-item-list .post-item-body {
    padding: 10px;
  }

  .page-pagination {
    margin-top: 40px;
  }

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

  .post-image {
    margin-bottom: 20px;
  }

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

  .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: 16px;
  }

  .post-entry ol li,
  .post-entry ul li {
    font-size: 15px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .post-tags .tag-links a {
    padding: 12px 15px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

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

  .page-single-sidebar {
    position: initial;
    margin: 0 0 30px;
  }

  .product-category-result-pagination ul li {
    font-size: 16px;
  }

  .product-category-sorting-list .form-select {
    padding: 8px 35px 8px 12px;
    border-radius: 5px;
  }

  .product-learn-more-btn {
    margin-top: 30px;
  }

  .page-product-single {
    padding: 30px 0 25px;
  }

  .product-single-price h2,
  .product-single-title h1 {
    font-size: 26px;
  }

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

  .product-single-item-color {
    margin-top: 30px;
  }

  .qty-box {
    gap: 10px;
    padding: 10px 12px;
  }

  .product-single-action ul li a {
    padding: 10px 15px;
  }

  .product-single-action ul li a img {
    max-width: 20px;
  }

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

  .product-step-nav {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .product-step-nav ul li .nav-link {
    font-size: 16px;
  }

  .product-step-nav ul li .nav-link::before {
    bottom: -21px;
  }

  .product-tab-item-box h2 {
    font-size: 24px;
  }

  .review-form,
  .customer-review-list {
    width: 100%;
  }

  .product-tab-item-box p {
    margin: 0 0 10px;
  }

  .customer-review-item {
    margin-bottom: 30px;
  }

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

  .review-form .form-control {
    padding: 12px 15px;
  }

  .related-products {
    padding: 25px 0 50px;
  }

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

  .cart-item-image-content {
    gap: 15px;
  }

  .cart-item-info-content {
    width: calc(100% - 110px);
  }

  .cart-item-buttons {
    gap: 15px 30px;
    margin-top: 30px;
  }

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

  .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;
  }

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

  .order-summary-promocode-form .form-group .btn-default {
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

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

  .order-sidebar-item-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .order-receive-sidebar-item.order-receive-box ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .order-receive-sidebar-item ul li {
    margin-bottom: 15px;
  }

  .page-checkout {
    padding: 50px 0;
  }

  .checkout-login-box {
    margin-bottom: 30px;
  }

  .checkout-accordion-header .checkout-accordion-button {
    padding: 12px 35px 12px 15px;
  }

  .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-title h2 {
    font-size: 18px;
  }

  .checkout-bill-address-form .form-group,
  .checkout-login-form .form-group {
    margin-bottom: 20px;
  }

  .checkout-bill-address-form .form-control,
  .checkout-login-form .form-control {
    padding: 12px 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-control {
    padding: 7px 18px 7px 35px;
  }

  .coupeon-apply-btn .btn-default {
    padding: 12px 16px;
  }

  .product-total-order-title {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .product-total-order-title h3 {
    font-size: 18px;
  }

  .all-product-total,
  .product-total-item {
    margin-top: 15px;
    padding-top: 15px;
  }

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

  .page-my-account {
    padding: 50px 0;
  }

  .my-account-sidebar-item ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .my-account-sidebar-item ul li img {
    max-width: 22px;
  }

  .account-dashboard-detail-box p {
    margin-bottom: 15px;
  }

  .account-dashboard-detail-box p span {
    font-size: 18px;
  }

  .page-account-order {
    padding: 50px 0;
  }

  .account-order-button {
    margin-top: 30px;
  }

  .page-account-view-order {
    padding: 50px 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 h2 {
    font-size: 18px;
  }

  .view-order-address-item ul li {
    margin-bottom: 15px;
  }

  .page-product-download {
    padding: 50px 0;
  }

  .page-my-account-address {
    padding: 50px 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-title h2 {
    font-size: 18px;
  }

  .account-address-item-info-list ul li {
    margin-bottom: 15px;
  }

  .page-account-addresses {
    padding: 50px 0;
  }

  .page-account-details {
    padding: 50px 0;
  }

  .account-details-content-item {
    margin-bottom: 30px;
  }

  .page-account-wishlist {
    padding: 50px 0;
  }

  .wishlist-content-button {
    margin-top: 30px;
  }

  .page-login {
    padding: 50px 0;
  }

  .login-content-form-item {
    width: 100%;
  }

  .login-form-content .section-title {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .login-content-form-btn {
    margin-top: 20px;
  }

  .login-content-form-btn a {
    font-size: 18px;
  }

  .page-forgot-password {
    padding: 50px 0;
  }

  .page-privacy-policy {
    padding: 50px 0;
  }

  .sidebar-cta-box ul {
    margin: 20px 0 0 0;
    padding: 20px 0 0 0;
  }

  .privacy-policy-entry-header {
    margin-bottom: 40px;
  }

  .privacy-policy-entry-header h3 {
    margin-bottom: 15px;
  }

  .privacy-policy-entry-item {
    margin-bottom: 40px;
  }

  .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: 50px 0;
  }

  .page-refund-return-policy {
    padding: 50px 0;
  }

  .page-cancellation-policy {
    padding: 50px 0;
  }

  .page-delivery-policy {
    padding: 50px 0;
  }

  .page-testimonials {
    padding: 60px 0 30px;
  }

  .page-testimonials .testimonial-item {
    padding: 30px;
  }

  .page-faqs {
    padding: 50px 0;
  }

  .page-faq-accordion {
    margin-bottom: 40px;
  }

  .page-contact-us {
    padding: 50px 0 25px;
  }

  .contact-form-box,
  .contact-info-box {
    width: 100%;
  }

  .contact-form .form-control {
    padding: 12px 15px;
  }

  .contact-form-btn {
    margin-top: 10px;
  }

  .contact-info-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .google-map {
    padding: 25px 0 50px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 450px;
  }

  .error-page {
    padding: 50px 0px;
  }

  .error-page-image {
    margin-bottom: 20px;
  }

  .empty-cart-page {
    padding: 50px 0px;
  }

  .empty-cart-page-image {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .readmore-btn {
    padding-right: 28px;
  }

  .readmore-btn::before {
    width: 22px;
    height: 22px;
  }

  .section-title h1 {
    font-size: 36px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .navbar {
    gap: 15px;
  }

  .header-action-box {
    width: calc(100% - 53px);
  }

  .mobile-hide {
    display: none;
  }

  .header-action-details,
  .navbar-brand {
    width: auto;
  }

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

  .header-action-details ul {
    gap: 10px;
  }

  .modal-search-form {
    padding-right: 18px;
  }

  .modal-search-form .form-control {
    font-size: 16px;
    padding: 12px 18px;
  }

  .modal-search-form .modal-search-btn i {
    font-size: 20px;
  }

  .slicknav_menu ul.dropdown-menu {
    padding: 20px 15px;
  }

  .mega-menu-links-box {
    gap: 20px 15px;
  }

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

  .mega-menu-link h2 {
    font-size: 16px;
  }

  .slicknav_menu .mega-menu-link ul li a {
    font-size: 14px;
  }

  .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,
  .mega-menu-item-content h2 {
    font-size: 16px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content-box .section-title {
    margin-bottom: 30px;
  }

  .offer-item {
    width: 100%;
    min-height: 300px;
  }

  .offer-item-content-box {
    padding: 20px;
  }

  .offer-item-content {
    margin-bottom: 20px;
  }

  .offer-item-content h3 {
    font-size: 20px;
  }

  .product-item-list {
    gap: 20px 10px;
    padding: 10px 10px 5px 10px;
  }

  .product-item {
    width: calc(50% - 5px);
  }

  .product-item-image img {
    aspect-ratio: 1 / 1;
  }

  .product-item-action {
    left: 10px;
    right: 10px;
  }

  .product-item-action ul {
    gap: 5px;
  }

  .product-item-action ul li a {
    width: 30px;
    height: 30px;
  }

  .product-item-action ul li a img {
    max-width: 16px;
  }

  .product-item-body {
    padding: 0;
  }

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

  .product-item-price h3,
  .product-item-price h3 span,
  .product-item-rating i {
    font-size: 14px;
  }

  .intro-video-circle {
    text-align: left;
    margin: 30px 0 0;
  }

  .intro-video-circle img {
    max-width: 100px;
  }

  .trending-product-item,
  .product-offer-item {
    width: 100%;
  }

  .trending-product-item {
    padding: 15px;
  }

  .trending-product-item-content h3 {
    font-size: 14px;
    padding-right: 6px;
    margin-right: 6px;
  }

  .product-offer-item-header-content h3,
  .product-offer-item-body-content h3 {
    font-size: 18px;
  }

  .arrivals-item-list .arrivals-item {
    width: 100%;
  }

  .arrivals-item-image figure img {
    aspect-ratio: 1 / 0.9;
  }

  .arrivals-item.highlighted-item .arrivals-item-image img {
    aspect-ratio: 1 / 1.2;
  }

  .arrivals-item-content,
  .arrivals-item.highlighted-item .arrivals-item-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

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

  .best-seller-item-list .best-seller-item {
    width: 100%;
  }

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

  .best-seller-item-content p span {
    font-size: 14px;
  }

  .best-seller-item-body,
  .best-seller-item.highlighted-item .best-seller-item-body {
    padding: 10px;
  }

  .best-seller-item.highlighted-item .best-seller-item-content h3 {
    font-size: 16px;
  }

  .luxury-seller-item-content {
    gap: 20px;
    padding: 10px;
  }

  .luxury-seller-amenities-item {
    width: 100%;
  }

  .luxury-seller-item-list {
    padding-top: 20px;
  }

  .luxury-seller-item-list ul {
    gap: 10px;
  }

  .luxury-seller-item-list ul li {
    width: 100%;
  }

  .flat-discount-body .countdown {
    gap: 30px;
  }

  .flat-discount-body .countdown .counter-box:before {
    content: ":";
    position: absolute;
    top: 2px;
    right: -20px;
    font-size: 40px;
    color: var(--white-color);
    width: 10px;
    height: 26px;
  }

  .flat-discount-body .countdown .counter-box span {
    font-size: 26px;
  }

  .flat-discount-body .countdown .counter-box p {
    margin-top: 5px;
  }

  .story-item {
    height: 240px;
  }

  .testimonial-item-rating {
    margin-bottom: 15px;
  }

  .testimonial-item-rating i {
    font-size: 16px;
  }

  .testimonial-item-author-box {
    margin-top: 20px;
    padding-top: 20px;
  }

  .testimonial-item-author {
    width: calc(100% - 70px);
  }

  .testimonial-item-author-image figure img {
    max-width: 50px;
  }

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

  .testimonial-item-quotes img {
    max-width: 50px;
  }

  .post-item.highlighted-post .post-item-body {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

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

  .post-item-meta ul {
    gap: 10px 30px;
  }

  .post-item-meta ul li::before {
    right: -18px;
  }

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

  .post-item.highlighted-post .post-featured-image figure img {
    aspect-ratio: 1 / 1.02;
  }

  .posts-item-list .post-item {
    width: 100%;
  }

  .footer-logo {
    width: 100%;
    text-align: left;
  }

  .footer-contact-item-list {
    width: 100%;
    justify-content: left;
  }

  .footer-contact-item {
    gap: 10px;
  }

  .footer-contact-item .icon-box {
    width: 44px;
    height: 44px;
  }

  .footer-contact-item .icon-box img {
    max-width: 22px;
  }

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

  .footer-social-links {
    order: 3;
    width: 100%;
  }

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

  .footer-links h2 {
    margin-bottom: 15px;
  }

  .footer-payment-options ul {
    justify-content: center;
    gap: 10px;
  }

  .footer-payment-options ul li a {
    max-width: 40px;
  }

  .footer-copyright {
    padding: 15px 0;
  }

  .footer-copyright-box {
    flex-direction: column-reverse;
    justify-content: center;
  }

  .page-header-box h1 {
    font-size: 36px;
  }

  .best-offer-item {
    padding: 20px;
  }

  .best-offer-item-content h3 {
    font-size: 20px;
  }

  .best-offer-item-image {
    max-width: 250px;
  }

  .best-offer-save-tag h3 {
    font-size: 20px;
  }

  .best-offer-product-list ul {
    gap: 10px;
  }

  .best-offer-product-list ul li {
    padding: 5px 10px 5px 5px;
    gap: 8px;
  }

  .best-offer-product-list ul li img {
    max-width: 40px;
  }

  .vision-mission-item {
    width: 100%;
  }

  .vision-mission-item-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .vision-mission-item-content h3 {
    font-size: 20px;
  }

  .approach-title-list ul {
    gap: 10px;
  }

  .approach-title-list ul li {
    padding: 7px 10px 7px 24px;
    font-size: 12px;
  }

  .approach-title-list ul li::before {
    left: 10px;
  }

  .approach-item {
    width: 100%;
  }

  .brand-logo-ticker-box {
    --gap: 20px;
  }

  .brand-logo-ticker-box .scrolling-content span img {
    max-width: 105px;
    height: 45px;
  }

  .team-item {
    width: 100%;
  }

  .faq-accordion .accordion-item {
    border-radius: 12px;
  }

  .faq-accordion .accordion-header .accordion-button {
    padding: 12px 42px 12px 15px;
    font-size: 15px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    right: 15px;
    font-size: 20px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 12px 15px;
  }

  .page-blog .posts-item-list .post-item {
    width: 100%;
  }

  .post-single-meta ol li,
  .post-single-meta ol li i {
    font-size: 15px;
  }

  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    padding: 65px 20px 20px 20px;
  }

  .post-entry blockquote p {
    font-size: 14px;
  }

  .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: 24px;
  }

  .tag-links {
    font-size: 16px;
  }

  .page-single-sidebar .product-category-filter-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .product-category-result-info {
    width: 100%;
    justify-content: space-between;
  }

  .product-category-sorting-list .form-select {
    min-width: auto;
  }

  .product-item-list-box .product-item-list {
    gap: 20px 10px;
  }

  .product-item-list-box .product-item-list .product-item {
    width: calc(50% - 5px);
  }

  .product-single-breadcrumb-list ol {
    gap: 10px 30px;
  }

  .product-single-breadcrumb-list ol li {
    font-size: 14px;
  }

  .product-single-breadcrumb-list .breadcrumb li::before {
    right: -20px;
    width: 12px;
    height: 12px;
  }

  .product-single-price h2,
  .product-single-title h1 {
    font-size: 22px;
  }

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

  .product-single-item-color h3 {
    margin-bottom: 10px;
  }

  .product-single-content-body,
  .product-single-payment-method ul {
    gap: 10px;
  }

  .qty-box {
    gap: 5px;
    padding: 9px 10px;
  }

  .qty-btn {
    font-size: 26px;
  }

  .product-single-action ul {
    gap: 10px;
  }

  .product-single-action ul li a {
    padding: 10px;
  }

  .product-single-content-footer,
  .product-single-payment-method {
    margin-top: 20px;
    padding-top: 20px;
  }

  .product-single-payment-method ul li a {
    max-width: 40px;
  }

  .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: 14px;
  }

  .product-step-nav ul li .nav-link::before {
    display: none;
  }

  .product-tab-item-box h2 {
    font-size: 18px;
  }

  .customer-review-item {
    align-items: start;
    gap: 10px;
  }

  .customer-review-item .icon-box img {
    max-width: 50px;
  }

  .customer-review-item-body {
    width: calc(100% - 60px);
  }

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

  .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%;
    font-size: 14px;
    padding: 15px 10px;
  }

  .cart-item-header {
    display: none;
  }

  .cart-item-image-content,
  .cart-item-quantity-total {
    width: 100%;
  }

  .cart-item-quantity-total {
    justify-content: left;
  }

  .cart-item-image {
    max-width: 75px;
  }

  .cart-item-info-content {
    width: calc(100% - 95px);
  }

  .cart-item-title,
  .cart-item-price {
    max-width: 100%;
    width: 100%;
  }

  .cart-item-subtotal {
    width: auto;
  }

  .interested-products-box .product-item-list .product-item {
    width: calc(50% - 5px);
  }

  .order-summary-content-box {
    padding: 5px;
  }

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

  .order-receive-sidebar {
    padding: 20px;
  }

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

  .order-sidebar-item-title {
    font-size: 16px;
  }

  .order-receive-sidebar-item ul li {
    margin-bottom: 10px;
  }

  .order-receive-content-list ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .order-receive-content-list ul li span {
    width: auto;
  }

  .checkout-accordion-header .checkout-accordion-button {
    font-size: 14px;
  }

  .checkout-bill-address-form .form-group label,
  .checkout-login-form .form-group label {
    font-size: 14px;
  }

  .checkout-form-checkbox.different-address-note {
    margin-top: 10px;
  }

  .product-total-order-box {
    padding: 5px;
  }

  .coupeon-accordion-header .coupeon-accordion-button {
    font-size: 14px;
  }

  .coupeon-apply-form .form-group {
    min-width: 160px;
  }

  .coupeon-apply-form .form-control {
    padding: 5px 12px;
    background-image: none;
  }

  .coupeon-apply-btn .btn-default {
    font-size: 12px;
    padding: 10px 12px;
  }

  .order-payment-info-item p {
    font-size: 14px;
  }

  .my-account-sidebar-item {
    padding: 20px;
  }

  .account-dashboard-detail-box p span {
    font-size: 16px;
  }

  .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: 13px 10px 13px 0;
  }

  .account-order-table-box table tr td .btn-default {
    padding: 8px 20px;
  }

  .view-order-product-info-box .cart-item-header {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .view-order-product-info-box .cart-item-header span {
    font-size: 15px;
  }

  .view-order-product-info-box .product-header-tag {
    width: calc(54% - 6.67px);
  }

  .view-order-product-info-box .quantity-header-tag,
  .view-order-product-info-box .subtotal-header-tag {
    width: calc(23% - 6.67px);
    text-align: center;
  }

  .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;
  }

  ul.view-order-product-info-list li span {
    width: 40%;
  }

  .view-order-address-item {
    width: 100%;
  }

  .view-order-address-item h2 {
    font-size: 16px;
  }

  .view-order-address-item ul {
    margin-top: 15px;
    padding-top: 15px;
  }

  .view-order-address-item ul li {
    margin-bottom: 10px;
  }

  .account-address-item-title h2 {
    font-size: 16px;
  }

  .account-address-item-info-list ul li {
    margin-bottom: 10px;
  }

  .wishlist-item-header {
    display: none;
  }

  .wishlist-item {
    align-items: start;
  }

  .wishlist-item-image-content {
    width: calc(77% - 5px);
  }

  .wishlist-item-title p {
    max-width: 100%;
  }

  .wishlist-item-price {
    width: 100%;
  }

  .wishlist-item-status-action {
    flex-direction: column;
    width: calc(23% - 5px);
    align-items: end;
    text-align: end;
  }

  .wishlist-item-action {
    width: 100%;
  }

  .wishlist-item-action a i {
    font-size: 20px;
  }

  .login-content-form-btn a {
    font-size: 16px;
  }

  .sidebar-cta-box h2 {
    font-size: 18px;
  }

  .sidebar-cta-box ul li {
    margin-bottom: 10px;
  }

  .privacy-policy-entry-header h3 {
    font-size: 18px;
  }

  .privacy-policy-entry-item {
    margin-bottom: 30px;
  }

  .privacy-policy-entry-item .section-title {
    margin-bottom: 20px;
  }

  .privacy-policy-entry-item-content-box h3 {
    font-size: 18px;
  }

  .page-testimonials .testimonial-item {
    padding: 20px;
  }

  .contact-form-box,
  .contact-info-box-header {
    padding: 20px;
  }

  .contact-social-links-box {
    padding: 12px 20px;
  }

  .contact-social-links-box ul li a {
    width: 36px;
    height: 36px;
  }

  .contact-social-links-box ul li a i {
    font-size: 16px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 350px;
  }
}

/* Why RyKA Compact Glass Cards */
.why-ryka-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.why-ryka-card {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 18px 20px;
  min-height: 95px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: all 0.3s ease;
}

.why-ryka-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.13);
}

.why-ryka-card-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-color);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);

  font-size: 17px;
}

.why-ryka-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--black-color);
}

.why-ryka-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.7;
  color: var(--black-color);
}

@media (max-width: 575px) {
  .why-ryka-cards {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   RyKA Services Section
========================================= */

.ryka-services-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.ryka-services-section .section-title h3 {
  color: rgba(25, 25, 25, 0.55);
}

.ryka-services-section .section-title h2 {
  color: #171717;
}

/* ================================
   Services Grid
================================ */

.ryka-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ================================
   Light Glass Card
================================ */

.ryka-service-card {
  position: relative;
  min-height: 300px;
  padding: 28px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: rgba(255, 255, 255, 0.78);

  border: 1px solid rgba(255, 255, 255, 0.65);

  border-radius: 20px;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 15px 40px rgba(70, 50, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
}

/* Subtle Highlight */

.ryka-service-card::before {
  content: "";
  position: absolute;

  top: 0;
  left: 15%;
  right: 15%;

  height: 1px;

  background: rgba(255, 255, 255, 0.9);

  opacity: 0.8;
}

.ryka-service-card:hover {
  transform: translateY(-8px);

  background: rgba(255, 255, 255, 0.92);

  border-color: rgba(255, 255, 255, 0.9);

  box-shadow:
    0 22px 50px rgba(70, 50, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ryka-service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ryka-service-number {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;

  color: rgba(25, 25, 25, 0.4);
}

.ryka-service-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(244, 197, 66, 0.25);

  border: 1px solid rgba(60, 45, 0, 0.12);

  color: #171717;

  font-size: 18px;

  transition: all 0.3s ease;
}

.ryka-service-card:hover .ryka-service-icon {
  background: rgba(244, 197, 66, 0.45);

  transform: rotate(-4deg);
}

.ryka-service-content h3 {
  margin-bottom: 12px;

  color: #171717;

  font-size: 21px;
  line-height: 1.3;
}

.ryka-service-content p {
  margin: 0;

  color: rgba(25, 25, 25, 0.62);

  font-size: 14px;
  line-height: 1.7;
}

@media only screen and (max-width: 991px) {
  .ryka-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .ryka-service-card {
    min-height: 280px;
    padding: 22px;
  }

  .ryka-service-content h3 {
    font-size: 18px;
  }

  .ryka-service-content p {
    font-size: 13px;
  }
}

@media only screen and (max-width: 575px) {
  .ryka-services-section {
    padding: 60px 0;
  }

  .ryka-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 35px;
  }

  .ryka-service-card {
    min-height: 255px;
    padding: 18px;
    border-radius: 16px;
  }

  .ryka-service-number {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .ryka-service-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 14px;
  }

  .ryka-service-content h3 {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.3;
  }

  .ryka-service-content p {
    font-size: 11px;
    line-height: 1.55;
  }
}

/* testimonials new styles */
.ryka-testimonials-section {
  padding: 50px 0;
  overflow: hidden;
}

.ryka-testimonials-slider {
  margin-top: 55px;
}

.ryka-testimonials-swiper {
  width: 100%;
  overflow: hidden;
}

.ryka-testimonials-swiper .swiper-slide {
  height: auto;
}

.ryka-testimonial-card {
  height: 100%;
  min-height: 285px;
  padding: 30px;

  display: flex;
  flex-direction: column;

  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ryka-testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #d8d8d8;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.ryka-testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ryka-testimonial-rating {
  display: flex;
  gap: 4px;
}

.ryka-testimonial-rating i {
  color: #b08a52;
  font-size: 11px;
}

.ryka-testimonial-quote {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #f5f3ef;

  color: #8d7048;
  font-size: 13px;
}

.ryka-testimonial-content {
  margin-top: 28px;
}

.ryka-testimonial-content p {
  margin: 0;

  color: #444;
  font-size: 15px;
  line-height: 1.8;
}

.ryka-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-top: auto;
  padding-top: 28px;
}

.ryka-testimonial-avatar {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #171717;

  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.ryka-testimonial-author h3 {
  margin: 0 0 3px;

  color: #161616;
  font-size: 14px;
  font-weight: 600;
}

.ryka-testimonial-author p {
  margin: 0;

  color: #999;
  font-size: 11px;
}

.ryka-testimonials-pagination {
  position: relative !important;

  width: auto !important;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 5px;

  margin-top: 30px;
}

.ryka-testimonials-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;

  margin: 0 !important;

  opacity: 1;
  background: #d2d2d2;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.ryka-testimonials-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 10px;
  background: #111;
}

.ryka-testimonials-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;

  margin-top: 20px;
}

.ryka-testimonials-prev,
.ryka-testimonials-next {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid #ddd;
  border-radius: 50%;

  background: transparent;
  color: #111;

  font-size: 10px;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.ryka-testimonials-prev:hover,
.ryka-testimonials-next:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .ryka-testimonials-section {
    padding: 80px 0;
  }

  .ryka-testimonials-slider {
    margin-top: 40px;
  }

  .ryka-testimonial-card {
    min-height: 270px;
    padding: 25px;
  }
}

@media only screen and (max-width: 575px) {
  .ryka-testimonials-section {
    padding: 60px 0;
  }

  .ryka-testimonials-slider {
    margin-top: 30px;
  }

  .ryka-testimonial-card {
    min-height: 250px;
    padding: 22px;
  }

  .ryka-testimonial-content {
    margin-top: 22px;
  }

  .ryka-testimonial-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .ryka-testimonials-controls {
    margin-top: 15px;
  }
}

/* ==========================================================================
   Ryka About Page Custom Sections
   ========================================================================== */

.ryka-about-heading h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.ryka-about-heading .ryka-about-line {
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  margin-bottom: 10px;
}

.ryka-about-heading.text-center .ryka-about-line {
  margin: 0 auto 10px;
}

/* Who We Are */
.ryka-about-who-we-are {
  padding: 80px 0;
  background: #fdfaf5;
  /* Slight off-white based on image */
}

.ryka-about-who-content p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
}

.ryka-about-signature span {
  font-family: "Brush Script MT", "Comic Sans MS", cursive;
  font-size: 36px;
  color: var(--primary-color);
  opacity: 0.8;
}

.ryka-about-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
}

.ryka-about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.ryka-about-card:hover img {
  transform: scale(1.05);
}

.ryka-about-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: var(--white-color);
}

.ryka-about-card-text h3 {
  color: var(--white-color);
  font-size: 18px;
  margin-bottom: 5px;
}

.ryka-about-card-text p {
  margin: 0;
  font-size: 14px;
  color: #e0e0e0;
}

/* Capabilities */
.ryka-about-capabilities {
  padding: 80px 0;
}

.ryka-about-cap-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.ryka-about-cap-icon {
  font-size: 28px;
  color: var(--primary-color);
  margin-top: -3px;
}

.ryka-about-cap-content h4 {
  font-size: 17px;
  margin-bottom: 5px;
}

.ryka-about-cap-content p {
  font-size: 14px;
  margin: 0;
  color: var(--text-color);
  line-height: 1.5;
}

/* Process */
.ryka-about-process {
  background: #fdfaf5;
}

.ryka-about-process-timeline .ryka-about-process-line {
  position: absolute;
  top: 20px;
  left: 50px;
  width: calc(100% - 100px);
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.ryka-about-process-item {
  position: relative;
  z-index: 2;
}

.ryka-about-process-number {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
}

.ryka-about-process-item h4 {
  font-size: 17px;
  margin-bottom: 10px;
}

.ryka-about-process-item p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-color);
}

.ryka-about-btn-outline {
  display: inline-block;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
  text-decoration: none;
}

.ryka-about-btn-outline i {
  margin-left: 8px;
}

.ryka-about-btn-outline:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* Work With */
.ryka-about-work-with {
  padding: 100px 0;
  position: relative;
  background-image: url("../images/post-1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.ryka-about-work-with::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.9);
}

.ryka-about-work-with .container {
  position: relative;
  z-index: 2;
}

.ryka-about-work-item {
  padding: 20px 10px;
}

.ryka-about-work-item i {
  font-size: 45px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.ryka-about-work-item h4 {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 500;
}

/* Facility */
.ryka-about-facility p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
}

.ryka-about-facility-list {
  list-style: none;
  padding: 0;
}

.ryka-about-facility-list li {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--primary-color);
}

.ryka-about-facility-list li i {
  color: var(--accent-color);
  font-size: 20px;
}

.ryka-about-facility-grid {
  display: flex;
  gap: 15px;
}

.ryka-about-grid-main {
  flex: 1;
}

.ryka-about-grid-main img {
  height: 100%;
  object-fit: cover;
}

.ryka-about-grid-side {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.ryka-about-grid-side img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

@media (max-width: 991px) {
  .ryka-about-facility-grid {
    flex-direction: column;
  }

  .ryka-about-grid-side {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .ryka-about-grid-side {
    grid-template-columns: 1fr 1fr;
  }

  .ryka-about-who-we-are,
  .ryka-about-capabilities,
  .ryka-about-process,
  .ryka-about-facility {
    padding: 50px 0;
  }

  .ryka-about-work-with {
    padding: 60px 0;
  }
}

/* --- Ryka Service Packages Section --- */
.ryka-service-packages {
  overflow: hidden;
}

.ryka-service-packages-header {
  position: relative;
  padding-top: 15px;
}

.ryka-service-line {
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  margin-bottom: 15px;
}

.ryka-service-packages-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}

.ryka-service-packages-header p {
  font-size: 16px;
  color: var(--text-color);
  margin: 0;
}

.ryka-service-packages-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ryka-service-packages-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(235, 165, 24, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.ryka-service-packages-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.ryka-service-packages-info-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.ryka-service-packages-info-text p {
  font-size: 14px;
  color: var(--text-color);
  margin: 0;
}

/* Package Cards */
.ryka-service-package-card {
  background-color: var(--white-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ryka-service-package-img {
  position: relative;
}

.ryka-service-package-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ryka-service-package-icon {
  position: absolute;
  bottom: -25px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(235, 165, 24, 0.4);
  z-index: 2;
}

.ryka-service-package-icon i {
  color: var(--primary-color);
  font-size: 20px;
}

.ryka-service-package-content {
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ryka-service-package-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.ryka-service-package-content > span {
  font-size: 14px;
  color: var(--text-color);
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
}

.ryka-service-package-content > p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.ryka-service-package-includes {
  margin-top: auto;
  margin-bottom: 20px;
}

.ryka-service-package-includes h5 {
  font-size: 13px;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.ryka-service-package-includes p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  color: var(--primary-color);
}

.ryka-service-package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s;
  font-size: 15px;
}

.ryka-service-package-btn:hover {
  background-color: var(--primary-color);
  color: var(--accent-color);
}

.ryka-service-package-btn i {
  margin-left: 10px;
}

/* Banner */
.ryka-service-banner {
  background-color: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
}

.ryka-service-banner-left {
  position: relative;
}

.ryka-service-banner-img {
  width: 300px;
  height: 100%;
  flex-shrink: 0;
}

.ryka-service-banner-img img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.ryka-service-banner-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.ryka-service-banner-icon i {
  color: var(--primary-color);
  font-size: 24px;
}

.ryka-service-banner-text h5 {
  color: var(--accent-color);
  font-size: 16px;
  margin-bottom: 8px;
}

.ryka-service-banner-text h3 {
  color: var(--white-color);
  font-size: 28px;
  margin-bottom: 12px;
}

.ryka-service-banner-text p {
  color: #cccccc;
  font-size: 14px;
  margin: 0;
}

.ryka-service-btn-call {
  display: flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 8px;
  text-align: left;
  transition: all 0.3s;
}

.ryka-service-btn-call:hover {
  background-color: #d69512;
  color: var(--primary-color);
}

.ryka-service-btn-call i {
  font-size: 24px;
  margin-right: 15px;
}

.ryka-service-btn-call span {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.ryka-service-btn-call strong {
  display: block;
  font-size: 18px;
}

.ryka-service-banner-divider {
  color: #888;
  font-size: 14px;
}

.ryka-service-btn-callback {
  display: inline-flex;
  align-items: center;
  border: 1px solid #444;
  color: var(--white-color);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  background-color: transparent;
}

.ryka-service-btn-callback:hover {
  background-color: #333;
  color: var(--white-color);
}

/* Responsive */
@media (max-width: 991px) {
  .ryka-service-packages-info {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .ryka-service-banner-img {
    display: none !important;
  }

  .ryka-service-banner-text {
    margin-left: 0 !important;
    padding: 30px !important;
  }
}

@media (max-width: 767px) {
  .ryka-service-packages-header h2 {
    font-size: 28px;
  }

  .ryka-service-banner-text h3 {
    font-size: 22px;
  }
}

/* Blog Detail Section */
.ryka-blog-detail-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.ryka-blog-detail-header {
  margin-bottom: 40px;
}

.ryka-blog-detail-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.ryka-blog-detail-title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.ryka-blog-detail-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.ryka-blog-detail-subtitle {
  font-size: 18px;
  color: var(--text-color);
  line-height: 1.6;
  max-width: 600px;
}

.ryka-blog-detail-share {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ryka-blog-detail-share > span {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

.ryka-blog-detail-social {
  display: flex;
  gap: 10px;
}

.ryka-blog-detail-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--divider-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.ryka-blog-detail-social a:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white-color);
}

.ryka-blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-color);
  flex-wrap: wrap;
}

.ryka-blog-detail-meta .dot {
  font-size: 18px;
  line-height: 0;
}

.ryka-blog-detail-meta i {
  margin-right: 5px;
}

/* Main Content */
.ryka-blog-detail-main-img {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.ryka-blog-detail-main-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ryka-blog-detail-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 30px;
}

.ryka-blog-detail-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.ryka-blog-detail-tip {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: 12px;
  margin: 30px 0;
}

.ryka-blog-detail-tip-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ryka-blog-detail-tip-icon i {
  font-size: 24px;
  color: var(--white-color);
}

.ryka-blog-detail-tip-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-color);
  align-self: center;
}

.ryka-blog-detail-gallery {
  margin: 30px 0;
  row-gap: 20px;
}

.ryka-blog-detail-gallery-img {
  border-radius: 12px;
  margin-bottom: 15px;
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.ryka-blog-detail-gallery-caption {
  display: block;
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
}

.ryka-blog-detail-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.ryka-blog-detail-cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ryka-blog-detail-cta-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.ryka-blog-detail-cta-text {
  flex-grow: 1;
}

.ryka-blog-detail-cta-text h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 10px;
}

.ryka-blog-detail-cta-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  line-height: 1.5;
}

.ryka-blog-detail-cta-btn {
  flex-shrink: 0;
}

.ryka-blog-detail-cta-btn .btn-default {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  line-height: 1.4;
}

.ryka-blog-detail-cta-btn .btn-default::before,
.ryka-blog-detail-cta-btn .btn-default::after {
  display: none;
}

.ryka-blog-detail-cta-btn .btn-default span {
  font-weight: 700;
  font-size: 16px;
}

.ryka-blog-detail-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--divider-color);
}

.ryka-blog-detail-tags i {
  color: var(--primary-color);
}

.ryka-blog-detail-tags strong {
  color: var(--primary-color);
  margin-right: 5px;
}

.ryka-blog-detail-tags a {
  display: inline-block;
  padding: 6px 15px;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.ryka-blog-detail-tags a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.ryka-blog-detail-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.ryka-blog-detail-nav-box {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 250px;
  padding: 20px;
  background-color: var(--secondary-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.ryka-blog-detail-nav-box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ryka-blog-detail-nav-box img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.ryka-blog-detail-nav-info {
  display: flex;
  flex-direction: column;
}

.ryka-blog-detail-nav-label {
  font-size: 13px;
  color: var(--text-color);
  margin-bottom: 5px;
}

.ryka-blog-detail-nav-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3px;
}

.ryka-blog-detail-nav-desc {
  font-size: 13px;
  color: var(--text-color);
}

.ryka-blog-detail-author {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background-color: var(--secondary-color);
  border-radius: 12px;
}

.ryka-blog-detail-author-avatar {
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ryka-blog-detail-author-avatar i {
  font-size: 32px;
  color: var(--primary-color);
}

.ryka-blog-detail-author-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.ryka-blog-detail-author-info p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 15px;
}

.ryka-blog-detail-author-social {
  display: flex;
  gap: 12px;
}

.ryka-blog-detail-author-social a {
  color: var(--primary-color);
  font-size: 16px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--divider-color);
}

.ryka-blog-detail-author-social a:hover {
  color: var(--white-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/* Sidebar */
.ryka-blog-detail-sidebar {
  padding-left: 20px;
}

.ryka-blog-detail-toc {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.ryka-blog-detail-toc h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.ryka-blog-detail-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ryka-blog-detail-toc ul li {
  margin-bottom: 15px;
}

.ryka-blog-detail-toc ul li:last-child {
  margin-bottom: 0;
}

.ryka-blog-detail-toc ul li a {
  font-size: 15px;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.ryka-blog-detail-toc ul li a:hover {
  color: var(--accent-color);
}

.ryka-blog-detail-popular {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--divider-color);
  margin-bottom: 30px;
}

.ryka-blog-detail-popular h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.ryka-blog-detail-popular-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.ryka-blog-detail-popular-item:last-child {
  margin-bottom: 0;
}

.ryka-blog-detail-popular-item img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.ryka-blog-detail-popular-info {
  display: flex;
  flex-direction: column;
}

.ryka-blog-detail-popular-info a {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.4;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.ryka-blog-detail-popular-info a:hover {
  color: var(--accent-color);
}

.ryka-blog-detail-popular-info span {
  font-size: 12px;
  color: var(--text-color);
}

.ryka-blog-detail-sidebar-cta {
  background-color: var(--primary-color);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
}

.ryka-blog-detail-sidebar-cta h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white-color);
  line-height: 1.3;
  margin-bottom: 15px;
}

.ryka-text-accent {
  color: var(--accent-color);
}

.ryka-blog-detail-sidebar-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.6;
}

.ryka-blog-detail-sidebar-cta .btn-default {
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 8px;
  padding: 15px 25px;
  width: 100%;
}

.ryka-blog-detail-sidebar-cta .btn-default::before,
.ryka-blog-detail-sidebar-cta .btn-default::after {
  display: none;
}

/* Responsive */
@media (max-width: 991px) {
  .ryka-blog-detail-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }

  .ryka-blog-detail-title {
    font-size: 36px;
  }

  .ryka-blog-detail-cta-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .ryka-blog-detail-meta-row {
    flex-direction: column;
  }

  .ryka-blog-detail-navigation {
    flex-direction: column;
  }

  .ryka-blog-detail-title {
    font-size: 28px;
  }

  .ryka-blog-detail-gallery {
    flex-direction: column;
  }

  .ryka-blog-detail-gallery > div {
    width: 100%;
    max-width: 100%;
  }

  .ryka-blog-detail-gallery-img {
    height: auto;
  }
}

/* ==========================================================================
   Ryka Contact Page Redesign CSS
   ========================================================================== */

.ryka-contact-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.ryka-contact-header {
  margin-bottom: 40px;
  position: relative;
}

.ryka-contact-header::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.ryka-contact-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.ryka-contact-header p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Form Styles */
.ryka-contact-form-wrap {
  padding-right: 40px;
  position: relative;
}

/* Border separator between form and info */
@media (min-width: 992px) {
  .ryka-contact-form-wrap::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--divider-color);
  }
}

.ryka-contact-input {
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  padding: 18px 20px;
  font-size: 15px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.ryka-contact-input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.ryka-contact-input::placeholder {
  color: var(--text-color);
}

.ryka-contact-select-wrap,
.ryka-contact-textarea-wrap {
  position: relative;
}

.ryka-contact-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-top: 35px;
  /* space for label */
  padding-bottom: 10px;
  height: auto;
}

.ryka-contact-select-label,
.ryka-contact-textarea-label {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 12px;
  color: var(--text-color);
  font-weight: 500;
}

.ryka-contact-textarea-wrap textarea {
  padding-top: 35px;
  resize: vertical;
}

.ryka-contact-select-wrap i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--primary-color);
  pointer-events: none;
}

.ryka-contact-btn {
  width: 100%;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
  border-radius: 8px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ryka-contact-btn:hover {
  background-color: var(--primary-color);
  color: var(--accent-color);
}

.ryka-contact-btn i {
  font-size: 18px;
}

/* Info Styles */
.ryka-contact-info-wrap {
  padding-left: 40px;
}

.ryka-contact-info-content {
  display: flex;
  gap: 30px;
}

.ryka-contact-info-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ryka-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--divider-color);
}

.ryka-contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ryka-contact-icon {
  width: 45px;
  height: 45px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ryka-contact-icon i,
.ryka-contact-icon img {
  font-size: 18px;
  color: var(--primary-color);
  max-width: 20px;
}

.ryka-contact-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.ryka-contact-text p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.ryka-contact-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.ryka-contact-social-icons a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.ryka-contact-social-icons a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.ryka-contact-promo-card {
  background-color: var(--secondary-color);
  border-radius: 12px;
  padding: 30px;
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.ryka-contact-promo-icon {
  margin-bottom: 20px;
}

.ryka-contact-promo-icon i {
  font-size: 40px;
  color: var(--primary-color);
}

.ryka-contact-promo-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.ryka-contact-promo-card p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 25px;
}

.ryka-contact-promo-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.ryka-contact-promo-btn:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

/* Map Section */
.ryka-contact-map-section {
  position: relative;
  width: 100%;
  height: 500px;
  margin-top: 50px;
}

.ryka-contact-map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ryka-contact-map-iframe iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) opacity(0.8);
}

.ryka-contact-map-section .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.ryka-contact-map-card {
  background-color: var(--white-color);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  width: 320px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ryka-contact-map-icon {
  width: 45px;
  height: 45px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ryka-contact-map-icon i {
  font-size: 18px;
  color: var(--primary-color);
}

.ryka-contact-map-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.ryka-contact-map-text h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.ryka-contact-map-text p {
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.ryka-contact-map-btn {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--accent-color);
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.ryka-contact-map-btn:hover {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  color: var(--primary-color);
}

/* Features Section */
.ryka-contact-features-section {
  padding: 60px 0;
  background-color: var(--white-color);
  border-bottom: 1px solid var(--divider-color);
}

.ryka-contact-features-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.ryka-contact-feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 250px;
  padding-right: 30px;
  border-right: 1px solid var(--divider-color);
}

.ryka-contact-feature-item:last-child {
  border-right: none;
  padding-right: 0;
}

.ryka-contact-feature-icon {
  position: relative;
}

.ryka-contact-feature-icon i {
  font-size: 40px;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
}

.ryka-contact-feature-icon::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -10px;
  width: 25px;
  height: 25px;
  background-color: var(--accent-color);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.3;
}

.ryka-contact-feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.ryka-contact-feature-text p {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .ryka-contact-info-content {
    flex-direction: column;
  }

  .ryka-contact-promo-card {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }

  .ryka-contact-promo-btn {
    margin-top: 0;
  }

  .ryka-contact-promo-icon {
    margin-bottom: 0;
  }

  .ryka-contact-promo-card p {
    margin-bottom: 0;
  }

  .ryka-contact-promo-card h3 {
    margin-bottom: 5px;
  }
}

@media (max-width: 991px) {
  .ryka-contact-form-wrap {
    padding-right: 0;
    margin-bottom: 60px;
  }

  .ryka-contact-info-wrap {
    padding-left: 0;
  }

  .ryka-contact-feature-item {
    border-right: none;
    padding-right: 0;
    min-width: 45%;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .ryka-contact-promo-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .ryka-contact-feature-item {
    min-width: 100%;
  }

  .ryka-contact-map-card {
    width: 100%;
    margin: 0 15px;
  }
}

/* =========================================================
   PRODUCT DETAIL
========================================================= */

.product-detail-content {
  padding-left: 30px;
}

/* Category */
.product-detail-category {
  margin-bottom: 12px;
}

.product-detail-category span {
  display: inline-block;
  padding: 6px 10px;
  background: var(--accent-color);
  color: var(--black-color);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Title */
.product-detail-title {
  margin-bottom: 20px;
}

.product-detail-title h1 {
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 1.1em;
}

.product-detail-title p {
  max-width: 520px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6em;
}

/* Price */
.product-detail-price {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 24px;
}

.product-detail-price h2 {
  margin-bottom: 5px;
  font-size: 28px;
}

.product-detail-price span {
  font-size: 12px;
}

/* Options */
.product-detail-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-option-group h3 {
  margin-bottom: 9px;
  font-size: 13px;
}

/* Size */
.product-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-size-options input,
.product-finish-options input {
  position: absolute;
  opacity: 0;
}

.product-size-options label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid #dedede;
  border-radius: 4px;
  background: var(--white-color);
  color: var(--primary-color);
  font-size: 12px;
  cursor: pointer;
}

.product-size-options label:hover,
.product-size-options input:checked + label {
  border-color: var(--accent-color);
}

.product-size-options input:checked + label {
  background: #fffaf0;
}

/* Finish */
.product-finish-options {
  display: flex;
  align-items: center;
  gap: 15px;
}

.finish-swatch {
  width: 23px;
  height: 23px;
  display: block;
  border-radius: 50%;
  cursor: pointer;
}

.finish-dark {
  background: #593016;
}

.finish-walnut {
  background: #7a4624;
}

.finish-brown {
  background: #8c542d;
}

.finish-natural {
  background: #b58b63;
}

.product-finish-options input:checked + .finish-swatch {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
}

/* Quantity */
.product-quantity-box {
  display: inline-flex;
  height: 40px;
  border: 1px solid #dedede;
  border-radius: 4px;
  overflow: hidden;
  background: var(--white-color);
}

.quantity-btn {
  width: 40px;
  border: 0;
  background: transparent;
  color: var(--primary-color);
  font-size: 17px;
  cursor: pointer;
}

.quantity-btn:hover {
  background: var(--secondary-color);
}

.quantity-input {
  width: 40px;
  border: 0;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  text-align: center;
  color: var(--primary-color);
  outline: 0;
}

/* Buttons */
.product-detail-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.product-detail-buttons a {
  min-height: 46px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.product-customize-btn {
  border: 1px solid #ccc;
  background: var(--white-color);
  color: var(--primary-color);
}

.product-customize-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* =========================================================
   FEATURES
========================================================= */

.product-detail-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  padding: 20px 10px;
  border-radius: 4px;
}

.product-feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 5px 8px;
  border-right: 1px solid rgba(22, 22, 22, 0.1);
}

.product-feature-item:last-child {
  border-right: 0;
}

.product-feature-item > i {
  font-size: 19px;
  color: var(--primary-color);
}

.product-feature-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.product-feature-item strong,
.product-feature-item span {
  font-size: 10px;
  line-height: 1.2em;
}

.product-feature-item strong {
  color: var(--primary-color);
}

.product-feature-item span {
  color: var(--text-color);
}

/* =========================================================
   CONSULTATION CTA
========================================================= */

.product-consultation-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 15px;
  padding: 18px;
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 5px;
}

.product-consultation-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--secondary-color);
}

.product-consultation-icon i {
  font-size: 20px;
  color: var(--primary-color);
}

.product-consultation-content {
  flex: 1;
}

.product-consultation-content strong {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 1.3em;
  color: var(--primary-color);
}

.product-consultation-content p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5em;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
  .product-detail-content {
    padding-left: 15px;
  }

  .product-detail-title h1 {
    font-size: 36px;
  }

  .product-feature-item {
    padding: 5px 4px;
  }

  .product-feature-item > i {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .product-detail-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .product-detail-title h1 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .product-consultation-box {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .product-consultation-content {
    min-width: calc(100% - 65px);
  }

  .product-consultation-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .product-detail-title h1 {
    font-size: 30px;
  }

  .product-detail-buttons {
    grid-template-columns: 1fr;
  }

  .product-detail-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 0;
  }

  .product-feature-item:nth-child(2) {
    border-right: 0;
  }

  .product-feature-item:nth-child(1),
  .product-feature-item:nth-child(2) {
    padding-bottom: 10px;
  }

  .product-feature-item:nth-child(3),
  .product-feature-item:nth-child(4) {
    padding-top: 10px;
  }
}

/* =========================================================
   PROJECT DETAIL
========================================================= */

.ryka-project-single {
  padding: 30px 0 100px;
  background: #fafafa;
}

.ryka-project-breadcrumb {
  margin-bottom: 25px;
}

.ryka-project-breadcrumb .breadcrumb {
  margin: 0;
}

.ryka-project-breadcrumb .breadcrumb-item {
  font-size: 12px;
  color: #777;
}

.ryka-project-breadcrumb .breadcrumb-item a {
  color: #777;
}

.ryka-project-breadcrumb .breadcrumb-item.active {
  color: #222;
}

/* =========================================================
   HERO
========================================================= */

.ryka-project-hero {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 40px;
  align-items: start;
}

/* =========================================================
   GALLERY
========================================================= */

.ryka-project-gallery {
  min-width: 0;
}

.ryka-project-main-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.ryka-project-main-slider .swiper-slide {
  width: 100%;
}

.ryka-project-main-slider figure {
  height: 500px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}

.ryka-project-main-slider img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ryka-project-status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 9px 15px;

  border-radius: 30px;

  background: #111;
  color: #fff;

  font-size: 11px;
  font-weight: 600;
}

.ryka-project-status i {
  color: #ffc107;
}

.ryka-gallery-prev,
.ryka-gallery-next {
  position: absolute;
  top: 50%;
  z-index: 5;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.45);
  color: #fff;

  transform: translateY(-50%);
  cursor: pointer;

  transition: 0.3s ease;
}

.ryka-gallery-prev {
  left: 15px;
}

.ryka-gallery-next {
  right: 15px;
}

.ryka-gallery-prev:hover,
.ryka-gallery-next:hover {
  background: #111;
}

.ryka-project-thumb-slider {
  margin-top: 14px;
}

.ryka-project-thumb-slider .swiper-slide {
  width: 82px !important;
  height: 62px;
  cursor: pointer;
  opacity: 0.65;
}

.ryka-project-thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
}

.ryka-project-thumb-slider figure {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid transparent;
}

.ryka-project-thumb-slider .swiper-slide-thumb-active figure {
  border-color: #f5b400;
}

.ryka-project-thumb-slider img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =========================================================
   PROJECT INFO
========================================================= */

.ryka-project-info {
  padding-top: 5px;
}

.ryka-project-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 18px;

  color: #9b7300;

  font-size: 11px;
  font-weight: 600;
}

.ryka-project-label i {
  color: #e4ab00;
}

.ryka-project-info h1 {
  margin: 0 0 18px;

  color: #111;

  font-size: 38px;
  font-weight: 600;
  line-height: 1.15;
}

.ryka-project-intro {
  margin: 0 0 28px;

  color: #666;

  font-size: 14px;
  line-height: 1.8;
}

/* =========================================================
   PROJECT META
========================================================= */

.ryka-project-meta {
  border-top: 1px solid #e5e5e5;
}

.ryka-project-meta-item {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 15px 0;

  border-bottom: 1px solid #e5e5e5;
}

.ryka-project-meta-icon {
  width: 35px;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 8px;

  background: #fff6d8;
  color: #b17d00;

  font-size: 13px;
}

.ryka-project-meta-item div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ryka-project-meta-item span {
  color: #777;
  font-size: 10px;
}

.ryka-project-meta-item strong {
  color: #222;
  font-size: 13px;
  font-weight: 600;
}

/* =========================================================
   ACTIONS
========================================================= */

.ryka-project-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;

  margin-top: 25px;
}

.ryka-project-actions .btn-default {
  width: 100%;
  justify-content: center;
}

.ryka-project-download {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 48px;

  border: 1px solid #222;
  border-radius: 4px;

  color: #222;

  font-size: 12px;
  font-weight: 600;

  transition: 0.3s ease;
}

.ryka-project-download:hover {
  background: #111;
  color: #fff;
}

/* =========================================================
   HIGHLIGHTS
========================================================= */

.ryka-project-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  margin-top: 45px;

  background: #fff;

  border: 1px solid #e7e7e7;
  border-radius: 10px;

  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
}

.ryka-project-highlight {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 25px 22px;

  border-right: 1px solid #e8e8e8;
}

.ryka-project-highlight:last-child {
  border-right: 0;
}

.ryka-highlight-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  color: #b58200;

  font-size: 18px;
}

.ryka-project-highlight h3 {
  margin: 0 0 4px;

  color: #222;

  font-size: 13px;
  font-weight: 600;
}

.ryka-project-highlight p {
  margin: 0;

  color: #777;

  font-size: 10px;
}

/* =========================================================
   DETAILS
========================================================= */

.ryka-project-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;

  margin-top: 70px;
}

.ryka-project-section-title {
  margin-bottom: 25px;
}

.ryka-project-section-title span {
  position: relative;

  display: block;

  margin-bottom: 9px;

  color: #a77a00;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.ryka-project-section-title h2 {
  position: relative;

  margin: 0;

  padding-bottom: 12px;

  color: #171717;

  font-size: 25px;
  font-weight: 600;
}

.ryka-project-section-title h2::after {
  content: "";

  position: absolute;
  bottom: 0;
  left: 0;

  width: 35px;
  height: 2px;

  background: #eab000;
}

.ryka-project-details-table {
  border-top: 1px solid #e5e5e5;
}

.ryka-detail-row {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 20px;

  padding: 11px 0;

  border-bottom: 1px solid #e8e8e8;
}

.ryka-detail-row span {
  color: #777;
  font-size: 11px;
}

.ryka-detail-row strong {
  color: #222;
  font-size: 11px;
  font-weight: 500;
}

.ryka-project-description {
  margin: 0 0 25px;

  color: #666;

  font-size: 13px;
  line-height: 1.8;
}

/* =========================================================
   PROJECT FEATURES
========================================================= */

.ryka-project-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ryka-project-feature {
  display: flex;
  gap: 12px;

  padding: 18px;

  background: #fff;

  border: 1px solid #ededed;
  border-radius: 8px;
}

.ryka-feature-icon {
  width: 35px;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 7px;

  background: #fff8df;
  color: #a87800;

  font-size: 13px;
}

.ryka-project-feature h3 {
  margin: 0 0 5px;

  color: #222;

  font-size: 12px;
  font-weight: 600;
}

.ryka-project-feature p {
  margin: 0;

  color: #777;

  font-size: 10px;
  line-height: 1.5;
}

.ryka-furniture-delivered {
  margin-top: 70px;

  padding: 40px;

  background: #fff;

  border: 1px solid #e8e8e8;
  border-radius: 10px;
}

.ryka-delivered-header {
  margin-bottom: 30px;
}

.ryka-delivered-header .text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.ryka-delivered-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 25px;
}

.ryka-delivered-categories button {
  padding: 8px 18px;

  border: 0;
  border-radius: 30px;

  background: transparent;
  color: #555;

  font-size: 11px;

  cursor: pointer;

  transition: 0.3s ease;
}

.ryka-delivered-categories button:hover,
.ryka-delivered-categories button.active {
  background: #f7bd16;
  color: #111;
}

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

.ryka-delivered-item {
  text-align: center;
}

.ryka-delivered-item figure {
  height: 145px;

  margin: 0 0 10px;

  overflow: hidden;

  border-radius: 7px;
}

.ryka-delivered-item img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.4s ease;
}

.ryka-delivered-item:hover img {
  transform: scale(1.04);
}

.ryka-delivered-item h3 {
  margin: 0;

  color: #222;

  font-size: 12px;
  font-weight: 600;
}

.ryka-project-cta {
  display: flex;
  align-items: center;
  gap: 20px;

  margin-top: 45px;
  padding: 25px 30px;

  border-radius: 12px;

  color: var(--black-color);
}

.ryka-project-cta-icon {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #f5b400;

  color: #272727;

  font-size: 20px;
}

.ryka-project-cta-content {
  flex: 1;
}

.ryka-project-cta-content h2 {
  margin: 0 0 5px;

  color: var(--black-color);

  font-size: 19px;
}

.ryka-project-cta-content p {
  margin: 0;

  color: var(--black-color);

  font-size: 11px;
}

.ryka-project-cta-contact {
  display: flex;
  gap: 30px;
}

.ryka-project-cta-contact div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ryka-project-cta-contact span {
  color: var(--black-color);
  font-size: 10px;
}

.ryka-project-cta-contact strong {
  color: var(--black-color);
  font-size: 12px;
}

.ryka-project-cta .btn-default {
  flex-shrink: 0;
}

@media only screen and (max-width: 1199px) {
  .ryka-project-hero {
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
  }

  .ryka-project-main-slider figure {
    height: 440px;
  }

  .ryka-project-info h1 {
    font-size: 32px;
  }

  .ryka-project-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .ryka-project-highlight:nth-child(2) {
    border-right: 0;
  }

  .ryka-project-highlight:nth-child(-n + 2) {
    border-bottom: 1px solid #e8e8e8;
  }

  .ryka-delivered-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ryka-project-cta {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 767px) {
  .ryka-project-single {
    padding: 20px 0 60px;
  }

  .ryka-project-breadcrumb {
    margin-bottom: 18px;
  }

  .ryka-project-breadcrumb .breadcrumb-item {
    font-size: 10px;
  }

  .ryka-project-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ryka-project-main-slider figure {
    height: 320px;
    border-radius: 12px;
  }

  .ryka-project-main-slider {
    border-radius: 12px;
  }

  .ryka-project-thumb-slider .swiper-slide {
    width: 65px !important;
    height: 52px;
  }

  .ryka-project-info h1 {
    font-size: 27px;
    line-height: 1.2;
  }

  .ryka-project-intro {
    font-size: 12px;
  }

  .ryka-project-meta-item {
    padding: 12px 0;
  }

  .ryka-project-highlights {
    grid-template-columns: 1fr 1fr;

    margin-top: 30px;
  }

  .ryka-project-highlight {
    padding: 17px 12px;
    gap: 8px;
  }

  .ryka-project-highlight:nth-child(2) {
    border-right: 0;
  }

  .ryka-project-highlight:nth-child(3) {
    border-right: 1px solid #e8e8e8;
    border-bottom: 0;
  }

  .ryka-project-highlight:nth-child(4) {
    border-bottom: 0;
  }

  .ryka-highlight-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .ryka-project-highlight h3 {
    font-size: 10px;
  }

  .ryka-project-highlight p {
    font-size: 8px;
  }

  .ryka-project-details {
    grid-template-columns: 1fr;
    gap: 45px;

    margin-top: 50px;
  }

  .ryka-project-section-title h2 {
    font-size: 22px;
  }

  .ryka-detail-row {
    grid-template-columns: 105px 1fr;
    gap: 10px;
  }

  .ryka-detail-row span,
  .ryka-detail-row strong {
    font-size: 10px;
  }

  .ryka-project-features {
    grid-template-columns: 1fr 1fr;
  }

  .ryka-project-feature {
    padding: 12px;
  }

  .ryka-furniture-delivered {
    margin-top: 50px;
    padding: 25px 15px;
  }

  .ryka-delivered-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
  }

  .ryka-delivered-item figure {
    height: 110px;
  }

  .ryka-delivered-item h3 {
    font-size: 10px;
  }

  .ryka-delivered-categories {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 5px;
  }

  .ryka-delivered-categories button {
    flex-shrink: 0;
    padding: 7px 13px;
    font-size: 9px;
  }

  .ryka-project-cta {
    align-items: flex-start;
    flex-direction: column;

    padding: 25px 20px;
  }

  .ryka-project-cta-contact {
    flex-direction: column;
    gap: 12px;
  }

  .ryka-project-cta .btn-default {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Package Details Page Styles
   ========================================================================== */

.ryka-package-details-hero {
  background-color: var(--primary-color);
  padding: 60px 0 0 0;
  color: var(--white-color);
}

.ryka-package-details-hero-content {
  padding-bottom: 60px;
}

.ryka-package-details-hero .breadcrumb {
  margin-bottom: 20px;
  background: transparent;
  padding: 0;
}

.ryka-package-details-hero .breadcrumb-item,
.ryka-package-details-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
}

.ryka-package-details-hero .breadcrumb-item.active {
  color: var(--white-color);
}

.ryka-package-details-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
  content: ">";
}

.ryka-package-details-hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
  color: var(--white-color);
}

.ryka-package-details-hero h1 .text-accent {
  color: var(--accent-color);
}

.ryka-package-details-hero .subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.ryka-package-details-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.ryka-package-details-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.ryka-package-details-features .feature-item .icon {
  color: var(--accent-color);
  font-size: 24px;
  line-height: 1;
}

.ryka-package-details-features .feature-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 5px;
}

.ryka-package-details-features .feature-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.ryka-package-details-price-box {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ryka-package-details-price-box .price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 5px;
}

.ryka-package-details-price-box .price-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 5px;
}

.ryka-package-details-price-box .price-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 25px;
}

.ryka-package-details-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.ryka-package-details-btn-primary {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.ryka-package-details-btn-primary:hover {
  background-color: #d19213;
  color: var(--primary-color);
}

.ryka-package-details-btn-outline {
  background-color: transparent;
  color: var(--white-color);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.ryka-package-details-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
}

.ryka-package-details-btn-outline i {
  color: var(--accent-color);
}

.ryka-package-details-hero-image {
  height: 100%;
  position: relative;
  border-top-left-radius: 40px;
  overflow: hidden;
  margin-right: -15px;
}

.ryka-package-details-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 40px;
}

@media (max-width: 991px) {
  .ryka-package-details-hero-image {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-right: 0;
    margin-top: 30px;
  }

  .ryka-package-details-hero-image img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .ryka-package-details-hero h1 {
    font-size: 40px;
  }
}

.ryka-package-details-stats {
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ryka-package-details-stats .stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 30px 15px;
}

.ryka-package-details-stats .stat-item .icon {
  font-size: 32px;
  color: var(--accent-color);
}

.ryka-package-details-stats .stat-item .text h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  line-height: 1;
}

.ryka-package-details-stats .stat-item .text p {
  font-size: 14px;
  color: var(--white-color);
  margin-bottom: 0;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .ryka-package-details-stats .stat-item {
    padding: 20px 10px;
    flex-direction: column;
    text-align: center;
  }
}

.ryka-package-details-included {
  background-color: var(--bg-color);
  padding: 80px 0;
}

.ryka-package-details-included h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.ryka-package-details-included p {
  font-size: 16px;
  color: var(--text-color);
}

.ryka-package-details-included .included-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.ryka-package-details-included .included-item {
  text-align: center;
  width: calc(20% - 16px);
  margin-bottom: 20px;
}

.ryka-package-details-included .included-item i {
  font-size: 36px;
  color: var(--text-color);
  margin-bottom: 15px;
  display: block;
  transition: color 0.3s ease;
}

.ryka-package-details-included .included-item:hover i {
  color: var(--accent-color);
}

.ryka-package-details-included .included-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  display: block;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .ryka-package-details-included .included-item {
    width: calc(33.33% - 14px);
  }
}

@media (max-width: 575px) {
  .ryka-package-details-included .included-item {
    width: calc(50% - 10px);
  }
}

.ryka-package-details-furniture {
  padding: 0 0 80px 0;
  background-color: var(--bg-color);
}

.ryka-package-details-furniture .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.ryka-package-details-furniture .section-title .line {
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0 auto;
}

.ryka-package-details-furniture .furniture-card {
  background: var(--white-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.ryka-package-details-furniture .furniture-card:hover {
  transform: translateY(-5px);
}

.ryka-package-details-furniture .furniture-card-img {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}

.ryka-package-details-furniture .furniture-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ryka-package-details-furniture .furniture-card-body {
  padding: 20px;
}

.ryka-package-details-furniture .furniture-card-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.ryka-package-details-furniture .furniture-card-body p {
  font-size: 13px;
  color: var(--text-color);
  margin-bottom: 15px;
}

.ryka-package-details-furniture .furniture-card-body .unit-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  padding: 4px 10px;
  border-radius: 4px;
}

.row-cols-lg-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

@media (max-width: 991px) {
  .row-cols-md-3 > * {
    width: 33.333333%;
  }
}

@media (max-width: 767px) {
  .row-cols-sm-2 > * {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .row-cols-1 > * {
    width: 100%;
  }
}

.ryka-package-details-highlights {
  background-color: var(--primary-color);
  padding: 80px 0;
  color: var(--white-color);
}

.ryka-package-details-highlights h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 30px;
}

.ryka-package-details-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.ryka-package-details-highlights-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.ryka-package-details-highlights-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--accent-color);
  font-size: 18px;
}

.ryka-package-details-highlights .customizable-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 50px 40px;
  z-index: 1;
}

.ryka-package-details-highlights .customizable-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/post-1.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.ryka-package-details-highlights .customizable-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
  z-index: -1;
}

.ryka-package-details-highlights .customizable-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 15px;
}

.ryka-package-details-highlights .customizable-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 80%;
}

@media (max-width: 991px) {
  .ryka-package-details-highlights .customizable-card {
    padding: 40px 30px;
    margin-top: 30px;
  }

  .ryka-package-details-highlights .customizable-card p {
    max-width: 100%;
  }
}

.ryka-package-details-cta {
  background-color: var(--accent-color);
  padding: 50px 0;
  position: relative;
  z-index: 10;
}

.ryka-package-details-cta h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.ryka-package-details-cta p {
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 0;
  max-width: 80%;
}

.ryka-package-details-cta-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-end;
}

.ryka-package-details-cta-contacts .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ryka-package-details-cta-contacts .contact-item i {
  font-size: 32px;
  color: var(--primary-color);
}

.ryka-package-details-cta-contacts .contact-item .text span {
  display: block;
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 3px;
}

.ryka-package-details-cta-contacts .contact-item .text h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

@media (max-width: 991px) {
  .ryka-package-details-cta-contacts {
    justify-content: flex-start;
    margin-top: 30px;
  }

  .ryka-package-details-cta p {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .ryka-package-details-cta-contacts {
    flex-direction: column;
    gap: 20px;
  }
}

/* --- New Ryka Header Styles --- */
.new-ryka-header-wrapper {
  position: sticky;
  top: -44px;
  z-index: 1000;
  font-family: var(--default-font), sans-serif;
  width: 100%;
  transition: box-shadow 0.3s ease;
}

.new-ryka-header-wrapper.is-sticky {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  /* On desktop, the bottom nav protrudes from the wrapper. 
     Move the shadow and add a solid blocker to prevent scrolling content from showing through the sides. */
  .new-ryka-header-wrapper {
    box-shadow: none !important;
  }

  .new-ryka-header-bottom::before {
    content: "";
    position: absolute;
    top: 25px;
    /* Start exactly below the dark green overlap */
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    /* Match the page background */
    z-index: -1;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);  */
  }
}

/* Topbar */
.new-ryka-header-topbar {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 10px 0;
  font-size: 14px;
  height: 44px;
  overflow: hidden;
}

.new-ryka-header-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mobile Slider for Email & Phone */
.topbar-mobile-slider {
  height: 24px;
  overflow: hidden;
  position: relative;
  align-items: flex-start;
}

.topbar-mobile-slider .slider-wrapper {
  display: flex;
  flex-direction: column;
  animation: topbarSlideTicker 6s infinite ease-in-out;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.topbar-mobile-slider a {
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white-color);
  text-decoration: none;
  font-size: 13px;
  transform: translateZ(0);
}

.topbar-mobile-slider i {
  color: var(--accent-color);
}

@keyframes topbarSlideTicker {
  0%,
  40% {
    transform: translateY(0);
  }

  50%,
  90% {
    transform: translateY(-24px);
  }

  100% {
    transform: translateY(0);
  }
}

.new-ryka-header-topbar-left a {
  color: var(--white-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.new-ryka-header-topbar-left a:hover {
  color: var(--accent-color);
}

.new-ryka-header-topbar-left i {
  color: var(--accent-color);
}

.new-ryka-header-topbar-right {
  display: flex;
  gap: 15px;
}

.new-ryka-header-topbar-right a {
  color: var(--white-color);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-ryka-header-topbar-right a:hover {
  color: var(--accent-color);
}

/* Main Section */
.new-ryka-header-main {
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
  padding: 1px 0 20px 0;
  /* Extra padding at bottom for bottom-navbar overlap */
}

/* Orange wavy background effect left side */
.new-ryka-header-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background: var(--accent-color);
  border-radius: 0 0 150px 0;
  z-index: 0;
}

.new-ryka-header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  gap: 20px;
}

.new-ryka-header-logo {
  padding: 15px 30px;
}

.new-ryka-header-logo img {
  max-height: 50px;
}

/* Search Bar */
.new-ryka-header-search {
  flex: 1;
  max-width: 600px;
}

.new-ryka-header-search form {
  display: flex;
  align-items: center;
  background: var(--white-color);
  border-radius: 50px;
  padding: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.new-ryka-header-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 20px;
  font-size: 15px;
  outline: none;
  color: var(--text-color);
}

.new-ryka-header-search button {
  background-color: var(--black-color);
  color: var(--accent-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.3s,
    background-color 0.3s;
}

.new-ryka-header-search button:hover {
  transform: scale(1.05);
  background-color: var(--primary-color);
}

/* Actions (Icons) */
.new-ryka-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.new-ryka-header-icon-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-color);
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  text-decoration: none;
}

.new-ryka-header-icon-link:hover {
  background-color: var(--black-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.new-ryka-header-hamburger {
  background: var(--accent-color);
  color: var(--white-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Bottom Navbar */
.new-ryka-header-bottom {
  margin-top: -25px;
  /* Pull it up into the main section */
  margin-bottom: -45px;
  /* Remove unwanted space below */
  position: relative;
  z-index: 2;
}

.new-ryka-header-bottom-inner {
  background: var(--white-color);
  border-radius: 12px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.new-ryka-header-nav ul li a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  transition: color 0.3s;
}

.new-ryka-header-nav ul li a i {
  color: var(--text-color);
  font-size: 16px;
  transition: color 0.3s;
}

.new-ryka-header-nav ul li a:hover,
.new-ryka-header-nav ul li a.active {
  color: var(--accent-color);
}

.new-ryka-header-nav ul li a:hover i,
.new-ryka-header-nav ul li a.active i {
  color: var(--accent-color);
}

.new-ryka-header-btn {
  background-color: var(--accent-color);
  color: var(--black-color);
  border: 2px solid var(--accent-color);
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.new-ryka-header-btn:hover {
  background-color: var(--accent-color);
  color: var(--black-color);
  transform: translateY(-2px);
}

/* Mobile Sidebar */
.new-ryka-header-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  /* fallback */
  height: 100dvh;
  /* accounts for mobile browser UI */
  background: rgba(255, 255, 255, 0.98);
  /* Less transparent for readability */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10500;
  /* Ensuring it sits above any other overlapping headers */
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.new-ryka-header-sidebar.active {
  transform: translateX(0);
}

.new-ryka-header-sidebar-header {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.new-ryka-header-sidebar-header img {
  max-height: 45px;
}

.new-ryka-header-sidebar-close {
  background: var(--secondary-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.new-ryka-header-sidebar-close:hover {
  background: var(--accent-color);
  color: var(--white-color);
  transform: rotate(90deg);
}

.new-ryka-header-sidebar-nav {
  padding: 30px 20px;
  flex: 1;
}

.new-ryka-header-sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.new-ryka-header-sidebar-nav ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 20px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.new-ryka-header-sidebar-nav ul li a i {
  color: var(--accent-color);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(207, 139, 7, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.new-ryka-header-sidebar-nav ul li a:hover,
.new-ryka-header-sidebar-nav ul li a.active {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.new-ryka-header-sidebar-nav ul li a:hover i,
.new-ryka-header-sidebar-nav ul li a.active i {
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.2);
}

.new-ryka-header-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 10450;
  /* Sits just below the sidebar (10500) */
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.new-ryka-header-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .new-ryka-header-wrapper {
    margin-bottom: -30px;
  }

  .new-ryka-header-topbar-left {
    display: none;
  }

  .new-ryka-header-topbar-inner {
    justify-content: space-between;
  }

  .new-ryka-header-search {
    display: none;
  }

  .new-ryka-header-whatsapp-icon {
    display: none !important;
  }

  .new-ryka-header-main::before {
    display: none;
  }

  .new-ryka-header-logo {
    padding: 0;
    box-shadow: none;
    background: transparent;
  }

  .new-ryka-header-icon-link,
  .new-ryka-header-hamburger {
    background: transparent;
    color: #000;
    box-shadow: none;
    width: auto;
    height: auto;
    padding: 0;
  }

  .new-ryka-header-main {
    padding: 15px 0;
    background: var(--accent-color);
  }

  #whatsapp-header-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 575px) {
  .new-ryka-header-logo img {
    max-height: 40px;
  }
}

/* banner */
.hero-mobile {
  display: none !important;
}

.hero-desktop {
  display: block !important;
}

@media (max-width: 767px) {
  .hero-desktop {
    display: none !important;
  }

  .hero-mobile {
    display: block !important;
  }
}

/* services slider */
.ryka-package-slider {
  position: relative;
  overflow: hidden;
}

.ryka-package-swiper {
  width: 100%;
  overflow: hidden;
}

.ryka-package-swiper .swiper-slide {
  height: auto;
}

.ryka-service-package-card {
  height: 100%;
}

.ryka-product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.ryka-product-price .old-price {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 14px;
}

.ryka-product-price .current-price {
  font-weight: 600;
  font-size: 17px;
}

/* ================================================================
   OUR DESIGNS NAV DROPDOWN  (Desktop Mega-Menu)
   ================================================================ */

/* Wrapper li — sets positioning context */
.new-ryka-has-dropdown {
  position: static !important;
}

/* The trigger link gets a chevron and cursor */
.new-ryka-dropdown-trigger {
  cursor: pointer;
  position: relative;
  user-select: none;
}

.new-ryka-dropdown-arrow {
  font-size: 11px !important;
  transition: transform 0.3s ease;
  color: var(--text-color) !important;
}

.new-ryka-has-dropdown.dropdown-open .new-ryka-dropdown-arrow {
  transform: rotate(180deg);
  color: var(--accent-color) !important;
}

/* The dropdown panel — position:fixed so no ancestor overflow:hidden clips it.
   JS sets the correct top value via getBoundingClientRect each time it opens.
   Default state: display:none (zero dimensions, truly invisible). */
.new-ryka-designs-dropdown {
  display: none;
  position: fixed;
  top: 0;
  /* overridden by JS on each open */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(780px, 90vw);
  background: #ffffff;
  border-radius: 20px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.12),
    0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  overflow: hidden;
}

/* Open state — JS adds display:block before adding this class */
.new-ryka-designs-dropdown.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Inner padding */
.new-ryka-designs-dropdown-inner {
  padding: 28px 28px 20px;
}

/* ---- Dropdown Header Row ---- */
.new-ryka-dropdown-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.07);
}

.new-ryka-dropdown-header-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.new-ryka-dropdown-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.new-ryka-dropdown-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.2;
}

.new-ryka-dropdown-all-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  padding: 7px 16px;
  border: 1.5px solid var(--accent-color);
  border-radius: 50px;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.new-ryka-dropdown-all-link:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-1px);
}

/* ---- Category Cards Grid ---- */
.new-ryka-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.new-ryka-dropdown-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}

.new-ryka-dropdown-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
}

.new-ryka-dropdown-card-img {
  position: relative;
  width: 100%;
  padding-top: 100%;
  /* 1:1 square */
  overflow: hidden;
}

.new-ryka-dropdown-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.new-ryka-dropdown-card:hover .new-ryka-dropdown-card-img img {
  transform: scale(1.08);
}

.new-ryka-dropdown-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(25, 25, 50, 0.72) 0%,
    rgba(25, 25, 50, 0.1) 55%,
    transparent 100%
  );
  transition: background 0.3s ease;
}

.new-ryka-dropdown-card:hover .new-ryka-dropdown-card-overlay {
  background: linear-gradient(
    to top,
    rgba(207, 139, 7, 0.82) 0%,
    rgba(207, 139, 7, 0.15) 60%,
    transparent 100%
  );
}

.new-ryka-dropdown-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.new-ryka-dropdown-card-content i {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.new-ryka-dropdown-card:hover .new-ryka-dropdown-card-content i {
  color: #fff;
  transform: scale(1.15);
}

.new-ryka-dropdown-card-content span {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ---- Dropdown Footer (All Categories CTA) ---- */
.new-ryka-dropdown-footer {
  padding-top: 16px;
  border-top: 1.5px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.new-ryka-dropdown-all-categories {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #fffaf0 100%);
  border-radius: 50px;
  border: 2px solid var(--accent-color);
  transition: all 0.28s ease;
  letter-spacing: 0.3px;
}

.new-ryka-dropdown-all-categories:hover {
  background: linear-gradient(135deg, var(--accent-color) 0%, #e6a320 100%);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 139, 7, 0.35);
}

.new-ryka-dropdown-all-categories i:last-child {
  font-size: 16px;
  transition: transform 0.25s ease;
}

.new-ryka-dropdown-all-categories:hover i:last-child {
  transform: translateX(4px);
}

/* ================================================================
   MOBILE SIDEBAR ACCORDION (Our Designs Sub-menu)
   ================================================================ */

.new-ryka-sidebar-has-dropdown {
  display: flex;
  flex-direction: column;
}

.new-ryka-sidebar-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.new-ryka-sidebar-dropdown-trigger a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  flex: 1;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
}

.new-ryka-sidebar-dropdown-trigger a i {
  color: var(--accent-color);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(207, 139, 7, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.new-ryka-sidebar-dropdown-trigger:hover,
.new-ryka-sidebar-dropdown-trigger:has(a.active) {
  background: var(--primary-color);
}

.new-ryka-sidebar-dropdown-trigger:has(a.active) {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.new-ryka-sidebar-dropdown-trigger:hover a,
.new-ryka-sidebar-dropdown-trigger:has(a.active) a {
  color: var(--white-color);
}

.new-ryka-sidebar-dropdown-trigger:hover a i,
.new-ryka-sidebar-dropdown-trigger:has(a.active) a i {
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.2);
}

.new-ryka-sidebar-dropdown-trigger:hover .new-ryka-sidebar-accordion-btn,
.new-ryka-sidebar-dropdown-trigger:has(a.active)
  .new-ryka-sidebar-accordion-btn {
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.2);
}

/* Accordion toggle button */
.new-ryka-sidebar-accordion-btn {
  background: rgba(207, 139, 7, 0.1);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 13px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-left: 8px;
}

.new-ryka-sidebar-accordion-btn:hover {
  background: var(--accent-color);
  color: #fff;
}

.new-ryka-sidebar-accordion-btn i {
  transition: transform 0.3s ease;
}

.new-ryka-sidebar-accordion-btn.rotated i {
  transform: rotate(180deg);
}

/* Animated sub-nav body */
.new-ryka-sidebar-dropdown-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 0 0 20px;
}

.new-ryka-sidebar-dropdown-body.is-open {
  max-height: 400px;
}

/* Sub-nav list */
.new-ryka-sidebar-sub-nav {
  list-style: none !important;
  padding: 8px 0 8px 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  border-left: 2px solid rgba(207, 139, 7, 0.25);
  margin-left: 15px !important;
}

.new-ryka-sidebar-sub-nav li a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 9px 14px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--text-color) !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  transition: all 0.25s ease !important;
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
}

.new-ryka-sidebar-sub-nav li a i {
  font-size: 12px !important;
  color: var(--accent-color) !important;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
}

.new-ryka-sidebar-sub-nav li a:hover {
  background: rgba(207, 139, 7, 0.08) !important;
  color: var(--accent-color) !important;
  transform: translateX(4px) !important;
  box-shadow: none !important;
}

/* ================================================================
   DROPDOWN: z-index for the bottom bar (do NOT add margins here)
   ================================================================ */
.new-ryka-header-bottom {
  z-index: 200;
}

/* ================================================================
   OUR PACKAGES NAV DROPDOWN  (Desktop)
   ================================================================ */

/* Panel — same position:fixed + display:none pattern as designs dropdown */
.new-ryka-packages-dropdown {
  display: none;
  position: fixed;
  top: 0;
  /* set by JS on each open */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(680px, 90vw);
  background: #ffffff;
  border-radius: 20px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.12),
    0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  overflow: hidden;
}

.new-ryka-packages-dropdown.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* ---- Package List (2-column grid of rows) ---- */
.new-ryka-pkg-dropdown-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

/* Each package row */
.new-ryka-pkg-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  background: #fafafa;
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  min-width: 0;
  /* prevent flex overflow */
}

.new-ryka-pkg-dropdown-item:hover {
  background: linear-gradient(
    135deg,
    rgba(207, 139, 7, 0.06) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border-color: rgba(207, 139, 7, 0.35);
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(207, 139, 7, 0.12);
}

/* Thumbnail */
.new-ryka-pkg-dropdown-thumb {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(207, 139, 7, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-ryka-pkg-dropdown-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.new-ryka-pkg-dropdown-item:hover .new-ryka-pkg-dropdown-thumb img {
  transform: scale(1.1);
}

.new-ryka-pkg-dropdown-thumb--empty {
  font-size: 20px;
  color: var(--accent-color);
}

/* Text info */
.new-ryka-pkg-dropdown-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.new-ryka-pkg-dropdown-info strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.new-ryka-pkg-dropdown-item:hover .new-ryka-pkg-dropdown-info strong {
  color: var(--accent-color);
}

.new-ryka-pkg-dropdown-type {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-color);
  opacity: 0.6;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.new-ryka-pkg-dropdown-type i {
  font-size: 10px;
}

/* Badge */
.new-ryka-pkg-dropdown-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--accent-color), #e6a320);
  padding: 2px 7px;
  border-radius: 50px;
  margin-bottom: 1px;
}

/* Trailing chevron */
.new-ryka-pkg-dropdown-arrow {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.new-ryka-pkg-dropdown-item:hover .new-ryka-pkg-dropdown-arrow {
  color: var(--accent-color);
  transform: translateX(3px);
}

/* ---- Responsive: single column on narrow viewports ---- */
@media (max-width: 768px) {
  .new-ryka-pkg-dropdown-list {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   GLOBAL SEARCH OVERLAY & AUTOCOMPLETE 
   ================================================================ */
#new-ryka-header-search-container {
  /* Default state: sits inline in the flex header */
  position: relative;
  transition: all 0.3s ease;
}

/* Overlay Backdrop */
.new-ryka-search-overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* FOCUSED / ACTIVE MODAL STATE */
body.search-is-active .new-ryka-header-main {
  z-index: 99999 !important;
}

#new-ryka-header-search-container.is-focused {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: none !important;
  /* Overrides native max-width to span full screen */
  z-index: 10400;
  /* above header */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
  /* space from top */
}

#new-ryka-header-search-container.is-focused .new-ryka-search-overlay-bg {
  opacity: 1;
  visibility: visible;
}

#new-ryka-header-search-container.is-focused #new-ryka-search-form {
  width: min(800px, 90vw);
  background: #ffffff;
  border-radius: 50px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
  z-index: 1;
  /* above backdrop */
}

#new-ryka-header-search-container.is-focused .new-ryka-search-suggestions {
  /* Position absolute relative to the fixed container */
  position: absolute;
  top: 175px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: min(800px, 90vw);
}

#new-ryka-header-search-container.is-focused
  .new-ryka-search-suggestions.is-open {
  transform: translateX(-50%) translateY(0);
}

#new-ryka-header-search-container.is-focused .new-ryka-search-close-btn {
  display: flex !important;
}

#new-ryka-header-search-container.is-focused #new-ryka-search-btn {
  display: none;
  /* Hide magnifying glass in overlay to make room for close/spinner */
}

/* ---------------------------------------------------------------- */

#new-ryka-search-form {
  position: relative;
  display: flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.new-ryka-search-spinner {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: 16px;
}

.new-ryka-search-close-btn {
  background: transparent;
  color: var(--text-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition:
    transform 0.3s,
    background 0.3s;
}

.new-ryka-search-close-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: rotate(90deg);
}

.new-ryka-search-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  min-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10000;
  max-height: calc(100vh - 220px);
  overflow-y: auto;
}

.new-ryka-search-suggestions.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.new-ryka-search-suggestions::-webkit-scrollbar {
  width: 6px;
}

.new-ryka-search-suggestions::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.new-ryka-search-empty {
  padding: 30px 20px;
  text-align: center;
  color: var(--text-color);
  font-size: 15px;
  opacity: 0.7;
}

/* Individual Search Result Row */
.new-ryka-search-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.25s ease;
}

.new-ryka-search-item:last-child {
  border-bottom: none;
}

.new-ryka-search-item:hover {
  background: #fdfbf7;
}

.new-ryka-search-thumb {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(207, 139, 7, 0.08);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--accent-color);
  font-size: 18px;
}

.new-ryka-search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-ryka-search-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.new-ryka-search-info strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new-ryka-search-info span {
  font-size: 12px;
  color: var(--text-color);
  opacity: 0.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new-ryka-search-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.search-badge-product {
  background: rgba(43, 92, 114, 0.1);
  /* Primary color */
  color: var(--primary-color);
}

.search-badge-category {
  background: rgba(207, 139, 7, 0.1);
  /* Accent color */
  color: #000000;
}

.search-badge-package {
  background: rgba(100, 100, 100, 0.1);
  color: #555;
}

/* ================================================================
   MOBILE RESPONSIVENESS FOR SEARCH OVERLAY
   ================================================================ */
@media (max-width: 768px) {
  #new-ryka-header-search-container.is-focused {
    padding-top: 50px;
  }

  #new-ryka-header-search-container.is-focused #new-ryka-search-form {
    width: 92vw;
    transform: scale(1);
    /* Disable scale to avoid overflowing the screen width */
  }

  #new-ryka-header-search-container.is-focused .new-ryka-search-suggestions {
    width: 92vw;
    top: 110px;
    /* Pull suggestions higher to match the unscaled form */
    max-height: calc(100vh - 130px);
    /* Tighter bound on mobile */
  }

  .new-ryka-search-item {
    padding: 12px 14px;
    gap: 12px;
  }

  .new-ryka-search-thumb {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    font-size: 14px;
  }

  .new-ryka-search-info strong {
    font-size: 13px;
  }

  .new-ryka-search-info span {
    font-size: 11px;
  }
}

/* ================================================================
   MOBILE RESPONSIVENESS FOR SIDEBAR (EXTRA SMALL SCREENS)
   ================================================================ */
@media (max-width: 480px) {
  .new-ryka-header-sidebar-nav {
    padding: 20px 15px;
    /* Reduce outer padding */
  }

  .new-ryka-header-sidebar-header {
    padding: 15px 20px;
  }

  .new-ryka-header-sidebar-nav ul {
    gap: 6px;
    /* Tighter gap between links */
  }

  .new-ryka-header-sidebar-nav ul li a {
    padding: 12px 15px;
    /* Smaller tap targets but still accessible */
    font-size: 15px;
    gap: 12px;
  }

  .new-ryka-header-sidebar-nav ul li a i {
    width: 28px;
    height: 28px;
    font-size: 14px;
    /* Slightly smaller icons */
  }
}

/* ================================================================
   MOBILE RESPONSIVENESS FOR HEADER (ULTRA SMALL SCREENS)
   ================================================================ */
@media (max-width: 400px) {
  /* Prevent horizontal overflow on screens like iPhone SE / Galaxy Fold */
  .new-ryka-header-actions {
    gap: 8px !important;
  }

  .new-ryka-header-icon-link,
  .new-ryka-header-hamburger {
    width: 36px !important;
    height: 36px !important;
    /* font-size: 16px !important; */
  }

  .new-ryka-header-logo img {
    /* max-height: 28px !important; */
    max-width: 90px;
    object-fit: contain;
  }
}

/* ================================================================
   RYKA CUSTOM FOOTER
   ================================================================ */
.ryka-footer-wrapper {
  background-color: var(--primary-color, #161616);
  /* Premium black */
  color: #a0a0a0;
  padding-top: 60px;
  padding-bottom: 20px;
  font-family: var(--default-font, "OPPOSans", sans-serif);
}

.ryka-footer-top-box {
  background-color: var(--accent-color, #eba518);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

/* Add a subtle wave or line pattern background to the top box as seen in the design */
.ryka-footer-top-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 10% 90%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.ryka-footer-top-left {
  flex: 0 0 auto;
  max-width: 250px;
}

.ryka-footer-logo img {
  max-width: 100%;
  height: auto;
  filter: brightness(0);
}

.ryka-footer-top-divider {
  width: 1px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.15);
  flex: 0 0 auto;
}

.ryka-footer-top-right {
  flex: 1 1 auto;
}

.ryka-footer-top-title {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ryka-footer-top-desc {
  color: #222;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 800px;
}

.ryka-footer-socials {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.ryka-footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.ryka-footer-socials a:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-3px);
}

.ryka-footer-nav-section {
  padding-bottom: 40px;
}

.ryka-footer-col {
  margin-bottom: 30px;
}

.ryka-footer-heading {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-bottom: 12px;
}

.ryka-footer-heading i {
  color: var(--accent-color, #eba518);
  font-size: 20px;
}

.ryka-footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color, #eba518);
}

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

.ryka-footer-list li {
  margin-bottom: 12px;
}

.ryka-footer-list li a {
  color: #a0a0a0;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ryka-footer-list li a i {
  color: var(--accent-color, #eba518);
  font-size: 12px;
  transition: transform 0.3s ease;
}

.ryka-footer-list li a:hover {
  color: var(--accent-color, #eba518);
  padding-left: 5px;
}

.ryka-footer-list li a:hover i {
  transform: translateX(3px);
}

.ryka-footer-contact-info {
  color: #a0a0a0;
  font-size: 15px;
}

.ryka-footer-contact-desc {
  margin-bottom: 20px;
  line-height: 1.6;
}

.ryka-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ryka-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.ryka-footer-contact-list li i {
  color: var(--accent-color, #eba518);
  font-size: 16px;
  margin-top: 3px;
}

.ryka-footer-contact-list li a,
.ryka-footer-contact-list li span {
  color: #e0e0e0;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.ryka-footer-contact-list li a:hover {
  color: var(--accent-color, #eba518);
}

.ryka-footer-bottom-line {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.ryka-footer-copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 14px;
  color: #888;
}

.ryka-footer-copyright-left,
.ryka-footer-copyright-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ryka-footer-copyright-left i {
  color: var(--accent-color, #eba518);
  font-size: 16px;
}

.ryka-footer-copyright-right i {
  color: var(--accent-color, #eba518);
  font-size: 16px;
}

.ryka-footer-copyright-right a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.ryka-footer-copyright-right a:hover {
  color: var(--accent-color, #eba518);
}

/* Responsiveness */
@media (max-width: 991px) {
  .ryka-footer-top-box {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 30px 20px;
  }

  .ryka-footer-top-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .ryka-footer-socials {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .ryka-footer-copyright {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .ryka-footer-copyright-left,
  .ryka-footer-copyright-right {
    justify-content: center;
  }

  .ryka-footer-top-title {
    font-size: 20px;
  }
}

/* Footer Accordion Responsive Styles */
.ryka-footer-accordion-icon {
  display: none;
  /* Hide icon on desktop by default */
  color: #a0a0a0;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.ryka-footer-accordion-header span {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 767px) {
  .ryka-footer-heading {
    cursor: pointer;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .ryka-footer-heading::after {
    display: none;
    /* Hide the underline on mobile */
  }

  .ryka-footer-accordion-icon {
    display: block;
    /* Show icon on mobile */
  }

  .ryka-footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .ryka-footer-accordion-item.active .ryka-footer-accordion-icon {
    transform: rotate(180deg);
  }

  .ryka-footer-accordion-item.active .ryka-footer-accordion-content {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .ryka-footer-col {
    margin-bottom: 0;
    /* Reset bottom margin on mobile */
  }
}

/* ================================================================
   RYKA BOTTOM NAVIGATION (MOBILE)
   ================================================================ */
.ryka-bottom-nav-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-color, #ffffff);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  z-index: 999;
  padding: 0 10px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.ryka-bottom-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 70px;
}

.ryka-bottom-nav-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.ryka-bottom-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  gap: 5px;
  position: relative;
  transition: color 0.3s ease;
  height: 100%;
}

.ryka-bottom-nav-link i {
  font-size: 20px;
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    color 0.3s ease;
}

.ryka-bottom-nav-link span {
  transition: font-weight 0.3s ease;
}

/* Active State for normal links */
.ryka-bottom-nav-link.active {
  color: var(--primary-color, #161616);
}

.ryka-bottom-nav-link.active i {
  color: var(--primary-color, #161616);
  transform: translateY(-2px);
}

.ryka-bottom-nav-link.active span {
  font-weight: 600;
}

/* Center Prominent Link */
.ryka-bottom-nav-center-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ryka-bottom-nav-center-link {
  position: relative;
  top: -15px;
  /* Offset to pop out */
  padding: 0;
  /* Override padding */
}

.ryka-bottom-nav-center-bg {
  width: 56px;
  height: 56px;
  background-color: var(--accent-color, #eba518);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(235, 165, 24, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ryka-bottom-nav-center-bg i {
  color: var(--white-color, #ffffff) !important;
  font-size: 22px;
  transform: none !important;
}

.ryka-bottom-nav-center-link:hover .ryka-bottom-nav-center-bg {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(235, 165, 24, 0.5);
}

.ryka-bottom-nav-center-link.active .ryka-bottom-nav-center-bg {
  transform: scale(1.05);
  background-color: var(--primary-color, #161616);
  box-shadow: 0 4px 10px rgba(22, 22, 22, 0.4);
}

/* Hide on larger screens */
@media (min-width: 768px) {
  .ryka-bottom-nav-container {
    display: none !important;
  }
}

/* ================================================================
   RYKA ABOUT WHO WE ARE (BENTO GRID MOBILE)
   ================================================================ */
@media (max-width: 767px) {
  .ryka-about-who-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 180px;
    gap: 12px;
    margin: 0;
  }

  .ryka-about-who-cards > div {
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding: 0;
  }

  .ryka-about-who-cards > div:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .ryka-about-who-cards > div:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .ryka-about-who-cards > div:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .ryka-about-card {
    height: 100%;
  }

  .ryka-about-card-text {
    padding: 15px 12px 12px;
  }

  .ryka-about-card-text h3 {
    font-size: 15px;
  }

  .ryka-about-card-text p {
    font-size: 12px;
  }
}

/* ================================================================
   MODERN PROCESS SECTION
   ================================================================ */
.ryka-modern-process {
  background-color: var(--secondary-color, #f8f5ef);
  overflow: hidden;
}

.ryka-process-card {
  background: var(--white-color, #ffffff);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  z-index: 1;
}

.ryka-process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color, #161616);
  z-index: -1;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ryka-process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ryka-process-card:hover::before {
  transform: translateY(0);
}

.process-step-number {
  position: absolute;
  top: -15px;
  right: 10px;
  font-size: 100px;
  font-weight: 900;
  color: var(--accent-color, #eba518);
  opacity: 0.1;
  line-height: 1;
  transition: all 0.4s ease;
  z-index: -1;
}

.ryka-process-card:hover .process-step-number {
  opacity: 0.2;
  top: -5px;
}

.process-icon {
  width: 60px;
  height: 60px;
  background: rgba(235, 165, 24, 0.1);
  color: var(--accent-color, #eba518);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.ryka-process-card:hover .process-icon {
  background: var(--accent-color, #eba518);
  color: var(--white-color, #ffffff);
  transform: scale(1.1);
}

.process-card-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color, #161616);
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.process-card-content p {
  color: var(--text-color, #585858);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
  transition: all 0.4s ease;
}

.ryka-process-card:hover .process-card-content h4,
.ryka-process-card:hover .process-card-content p {
  color: var(--white-color, #ffffff);
}

/* Mobile adjustments for modern process section */
@media (max-width: 767px) {
  .ryka-modern-process .row {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
  }

  .ryka-process-card {
    padding: 20px 15px;
    border-radius: 15px;
  }

  .process-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
    margin-bottom: 15px;
  }

  .process-card-content h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .process-card-content p {
    font-size: 12px;
    line-height: 1.4;
  }

  .process-step-number {
    font-size: 60px;
    top: -5px;
    right: 5px;
  }

  .ryka-process-card:hover .process-step-number {
    top: -2px;
  }
}

/* Mobile adjustments for who we work with section (CSS Slider) */
@media (max-width: 767px) {
  .ryka-about-work-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    justify-content: flex-start !important;
  }

  .ryka-about-work-row::-webkit-scrollbar {
    height: 4px;
  }

  .ryka-about-work-row::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
  }

  .ryka-about-work-row::-webkit-scrollbar-thumb {
    background: var(--accent-color, #eba518);
    border-radius: 4px;
  }

  .ryka-about-work-row > div {
    flex: 0 0 65%;
    max-width: 65%;
    scroll-snap-align: center;
  }
}

/* ========================================================
   Reviews Section – Product Single Page
   ======================================================== */

/* Avatar initial circle (replaces author photo) */
.review-avatar-initial {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--white-color);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Rating summary bar */
.review-summary-bar {
  background: var(--secondary-color);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.review-summary-score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.review-big-score {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary-color);
}

.review-stars-display i {
  color: var(--accent-color);
  font-size: 18px;
}

.review-count-label {
  font-size: 13px;
  color: var(--text-color);
}

/* Flash messages */
.review-flash {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.review-flash-success {
  background: #e9f7ef;
  color: #1e7e46;
  border: 1px solid #a9dfbf;
}

.review-flash-error {
  background: #fdf3f3;
  color: #c0392b;
  border: 1px solid #f5c6cb;
}

/* Empty state */
.review-empty-state {
  text-align: center;
  padding: 32px 20px;
  color: var(--text-color);
}

.review-empty-state i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: block;
}

.review-empty-state p {
  font-size: 15px;
  margin: 0;
}

/* ── Star picker in review form ── */
.review-rating-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.review-star-picker {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 6px;
}

.review-star-picker .review-star {
  font-size: 32px;
  cursor: pointer;
  color: #d0d0d0;
  transition:
    color 0.15s,
    transform 0.1s;
  line-height: 1;
  user-select: none;
}

.review-star-picker .review-star.active,
.review-star-picker .review-star.hover {
  color: var(--accent-color);
}

.review-star-picker .review-star:hover {
  transform: scale(1.15);
}

.review-rating-hint {
  display: block;
  font-size: 12px;
  color: var(--text-color);
  margin-top: 2px;
  transition: color 0.2s;
}

/* ================================================================
   PACKAGE DETAILS PAGE  –  package-details.ejs
   ================================================================ */

/* ── Shared helpers ── */
.pkg-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.25;
  margin: 10px 0 24px;
}

.pkg-title-accent {
  color: var(--accent-color);
}

.pkg-badge {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

/* ── Error state ── */
.pkg-error-state {
  text-align: center;
  padding: 100px 20px;
  color: var(--text-color);
}

.pkg-error-state i {
  font-size: 56px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.pkg-error-state h2 {
  margin-bottom: 24px;
}

/* ================================================================
   HERO
   ================================================================ */
.pkg-hero {
  padding: 70px 0 60px;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--bg-color) 60%
  );
  overflow: hidden;
}

/* Breadcrumb */
.pkg-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 18px;
  font-size: 13px;
}

.pkg-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--accent-color);
}

.pkg-breadcrumb .breadcrumb-item a {
  color: var(--text-color);
  transition: color 0.3s;
}

.pkg-breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.pkg-breadcrumb .breadcrumb-item.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* Title & subtitle */
.pkg-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1.15;
  margin-bottom: 16px;
}

.pkg-hero-subtitle {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

/* Trust row */
.pkg-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.pkg-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--divider-color);
  border-radius: 12px;
  padding: 12px 16px;
  flex: 1 1 140px;
  min-width: 140px;
  transition: box-shadow 0.3s;
}

.pkg-trust-item:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

.pkg-trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(235, 165, 24, 0.1);
  color: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pkg-trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

.pkg-trust-item span {
  font-size: 11px;
  color: var(--text-color);
}

/* Price box */
.pkg-price-box {
  background: #fff;
  border: 1px solid var(--divider-color);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.pkg-price-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.pkg-price-main {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
}

.pkg-price-old {
  font-size: 15px;
  color: var(--text-color);
  text-decoration: line-through;
  opacity: 0.7;
}

.pkg-price-note {
  font-size: 12px;
  color: var(--text-color);
  margin: 6px 0 20px;
}

.pkg-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pkg-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 26px;
}

.pkg-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 22px;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.pkg-btn-outline:hover {
  background: var(--primary-color);
  color: var(--accent-color);
  text-decoration: none;
}

/* Hero image */
.pkg-hero-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.pkg-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.pkg-swiper-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.pkg-swiper .swiper-pagination {
  bottom: 12px;
}

.pkg-swiper .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

/* ================================================================
   STATS BANNER
   ================================================================ */
.pkg-stats {
  background: var(--accent-color);
  padding: 0;
}

.pkg-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}

.pkg-stat-item:last-child {
  border-right: none;
}

.pkg-stat-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.pkg-stat-icon {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.pkg-stat-number {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 4px;
  line-height: 1;
}

.pkg-stat-label {
  font-size: 12px;
  color: var(--primary-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ================================================================
   ABOUT / DESCRIPTION
   ================================================================ */
.pkg-about {
  padding: 80px 0;
  background: var(--bg-color);
}

.pkg-about-text {
  font-size: 16px;
  line-height: 1.9;
  text-align: justify;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

/* ================================================================
   HIGHLIGHTS
   ================================================================ */
.pkg-highlights-section {
  padding: 80px 0;
  background: var(--secondary-color);
}

.pkg-rooms-covered {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 28px;
}

.pkg-rooms-covered i {
  color: var(--accent-color);
  margin-right: 8px;
}

.pkg-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pkg-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.pkg-highlight-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.pkg-highlight-item i {
  color: var(--accent-color);
  margin-top: 1px;
  flex-shrink: 0;
  font-size: 15px;
}

/* ================================================================
   FURNITURE GRID
   ================================================================ */
.pkg-furniture-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.pkg-furniture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.pkg-furniture-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--divider-color);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.pkg-furniture-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}

.pkg-furniture-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.pkg-furniture-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pkg-furniture-card:hover .pkg-furniture-card-img img {
  transform: scale(1.06);
}

.pkg-furniture-qty {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent-color);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  padding: 3px 10px;
}

.pkg-furniture-card-body {
  padding: 14px;
}

.pkg-furniture-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
  line-height: 1.3;
}

.pkg-furniture-card-note {
  font-size: 11px;
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 6px;
}

.pkg-furniture-view {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  transition: gap 0.2s;
}

.pkg-furniture-card:hover .pkg-furniture-view {
  gap: 8px;
}

/* ================================================================
   CUSTOMIZATION CARD
   ================================================================ */
.pkg-customize-section {
  padding: 60px 0;
  border-bottom: 1px solid black;
}

.pkg-customize-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.pkg-customize-card-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--black-color);
  margin-bottom: 12px;
}

.pkg-customize-card-content p {
  font-size: 15px;
  color: var(--black-color);
  line-height: 1.7;
  margin: 0;
}

.pkg-customize-card-action {
  flex-shrink: 0;
}

/* ================================================================
   ADDITIONAL RICH TEXT
   ================================================================ */
.pkg-additional-content {
  padding: 70px 0;
  background: var(--secondary-color);
}

.pkg-rich-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-color);
}

.pkg-rich-text h2,
.pkg-rich-text h3,
.pkg-rich-text h4 {
  color: var(--primary-color);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.pkg-rich-text ul,
.pkg-rich-text ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.pkg-rich-text li {
  margin-bottom: 6px;
}

/* ================================================================
   CTA STRIP
   ================================================================ */
.pkg-cta-strip {
  padding: 70px 0;
  background: var(--bg-color);
}

.pkg-cta-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.pkg-cta-subtitle {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
}

.pkg-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.pkg-contact-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--divider-color);
  border-radius: 14px;
  padding: 16px 22px;
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
  flex: 1 1 200px;
  max-width: 260px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.pkg-contact-chip:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  text-decoration: none;
  color: var(--primary-color);
}

.pkg-contact-chip-whatsapp {
  border-color: #25d366;
}

.pkg-contact-chip-whatsapp:hover {
  background: #25d366;
  color: #fff;
}

.pkg-contact-chip-whatsapp:hover .pkg-contact-chip-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.pkg-contact-chip-icon {
  width: 46px;
  height: 46px;
  background: rgba(235, 165, 24, 0.1);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.pkg-contact-chip-whatsapp .pkg-contact-chip-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.pkg-contact-chip-text span {
  display: block;
  font-size: 11px;
  color: var(--text-color);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pkg-contact-chip-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: inherit;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet (≤ 991px) */
@media (max-width: 991px) {
  .pkg-hero {
    padding: 50px 0 40px;
  }

  .pkg-hero-img,
  .pkg-swiper-img {
    height: 360px;
  }

  .pkg-highlights-list {
    grid-template-columns: 1fr;
  }

  .pkg-contact-row {
    justify-content: flex-start;
  }

  .pkg-contact-chip {
    max-width: 100%;
  }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
  .pkg-hero {
    padding: 36px 0 32px;
  }

  .pkg-hero-title {
    font-size: 1.8rem;
  }

  .pkg-hero-img,
  .pkg-swiper-img {
    height: 260px;
  }

  .pkg-trust-row {
    gap: 10px;
  }

  .pkg-trust-item {
    flex: 1 1 calc(50% - 5px);
    min-width: 130px;
    padding: 10px 12px;
  }

  .pkg-trust-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .pkg-trust-item strong {
    font-size: 12px;
  }

  .pkg-trust-item span {
    font-size: 10px;
  }

  .pkg-price-box {
    padding: 18px 18px;
  }

  .pkg-price-main {
    font-size: 1.7rem;
  }

  .pkg-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .pkg-btn-primary,
  .pkg-btn-outline {
    justify-content: center;
  }

  .pkg-stats {
    padding: 0;
  }

  .pkg-stat-item {
    padding: 24px 10px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .pkg-stat-item:last-child {
    border-bottom: none;
  }

  .col-6.col-md-3 .pkg-stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
  }

  .col-6.col-md-3:nth-child(2) .pkg-stat-item {
    border-right: none;
  }

  .col-6.col-md-3:nth-child(3) .pkg-stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .pkg-about {
    padding: 50px 0;
  }

  .pkg-highlights-section {
    padding: 50px 0;
  }

  .pkg-furniture-section {
    padding: 50px 0;
  }

  .pkg-furniture-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pkg-furniture-card-title {
    font-size: 12px;
  }

  .pkg-customize-section {
    padding: 40px 0;
  }

  .pkg-customize-card {
    flex-direction: column;
    text-align: center;
  }

  .pkg-customize-card-content h3 {
    font-size: 1.4rem;
  }

  .pkg-cta-strip {
    padding: 50px 0;
  }

  .pkg-contact-row {
    justify-content: stretch;
    flex-direction: column;
  }

  .pkg-contact-chip {
    max-width: 100%;
  }

  .pkg-section-title {
    font-size: 1.5rem;
  }
}

/* Very small screens (≤ 380px) */
@media (max-width: 380px) {
  .pkg-furniture-grid {
    grid-template-columns: 1fr;
  }

  .pkg-trust-item {
    flex: 1 1 100%;
  }
}

.yellow-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 55px 60px;
}

.yellow-cta-content {
  max-width: 750px;
}

.yellow-cta-content h3 {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -1px;
  color: #171717;
}

.yellow-cta-content p {
  margin: 0;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.7;
  color: #292929;
}

.yellow-cta-action {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #171717;
}

.yellow-cta-action i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 20, 20, 0.35);
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.3s ease;
}

.yellow-cta-action:hover i {
  transform: translateX(5px);
  background: #171717;
  color: #fff;
}

/* Tablet */
@media (max-width: 991px) {
  .yellow-section {
    padding: 60px 0;
  }

  .yellow-cta-card {
    padding: 45px;
    gap: 35px;
  }

  .yellow-cta-content h3 {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .yellow-section {
    padding: 45px 0;
  }

  .yellow-cta-card {
    display: block;
    padding: 35px 28px;
    border-radius: 18px;
  }

  .yellow-cta-content h3 {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .yellow-cta-content p {
    font-size: 15px;
    line-height: 1.65;
  }

  .yellow-cta-action {
    margin-top: 30px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .yellow-cta-card {
    padding: 30px 22px;
  }

  .yellow-cta-content h3 {
    font-size: 27px;
  }

  .yellow-cta-action {
    font-size: 11px;
  }

  .yellow-cta-action i {
    width: 40px;
    height: 40px;
  }
}

.customize-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #171717;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
}

.customize-link i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 20, 20, 0.35);
  border-radius: 50%;
  font-size: 14px;
  transition: all 0.3s ease;
}

.customize-link:hover {
  color: #171717;
}

.customize-link:hover i {
  transform: translateX(5px);
  background: #171717;
  color: #fff;
}
/* popup - home */
/* =====================================================
   RYKA LEAD POPUP
===================================================== */

.ryka-lead-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(5px);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

/* OPEN STATE */

.ryka-lead-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =====================================================
   MODAL
===================================================== */

.ryka-lead-modal {
  position: relative;

  width: min(900px, 100%);

  display: grid;
  grid-template-columns: 46% 54%;

  overflow: hidden;

  background: var(--bg-color);

  border-radius: 18px;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);

  transform: translateY(25px) scale(0.97);

  transition: transform 0.4s ease;
}

.ryka-lead-overlay.active .ryka-lead-modal {
  transform: translateY(0) scale(1);
}

/* =====================================================
   CLOSE BUTTON
===================================================== */

.ryka-lead-close {
  position: absolute;

  top: 16px;
  right: 16px;

  z-index: 10;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.92);

  color: var(--black-color);

  cursor: pointer;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.ryka-lead-close:hover {
  background: var(--white-color);
  transform: rotate(90deg);
}

/* =====================================================
   IMAGE SIDE
===================================================== */

.ryka-lead-image {
  position: relative;

  min-height: 520px;

  overflow: hidden;

  background: var(--primary-color);
}

.ryka-lead-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.6s ease;
}

.ryka-lead-modal:hover .ryka-lead-image img {
  transform: scale(1.03);
}

/* Dark overlay */

.ryka-lead-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 20%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

/* Image content */

.ryka-lead-image-content {
  position: absolute;

  left: 38px;
  bottom: 38px;

  z-index: 2;

  max-width: 290px;

  color: var(--white-color);
}

.ryka-lead-eyebrow {
  display: inline-block;

  margin-bottom: 14px;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 2px;

  color: var(--accent-color);
}

.ryka-lead-image-content h2 {
  margin: 0;

  font-size: clamp(30px, 3vw, 42px);

  line-height: 1.05;

  font-weight: 500;
}

.ryka-lead-line {
  display: block;

  width: 42px;
  height: 3px;

  margin: 18px 0;

  background: var(--accent-color);
}

.ryka-lead-image-content p {
  margin: 0;

  max-width: 240px;

  font-size: 14px;
  line-height: 1.6;

  color: rgba(255, 255, 255, 0.85);
}

/* =====================================================
   CONTENT SIDE
===================================================== */

.ryka-lead-content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 55px 52px;

  background: var(--secondary-color);
}

/* Logo */

.ryka-lead-logo {
  margin-bottom: 38px;

  font-size: 26px;

  letter-spacing: 7px;

  font-weight: 500;

  color: var(--primary-color);
}

.ryka-lead-logo span {
  display: block;

  margin-top: 3px;

  font-size: 7px;

  letter-spacing: 3px;

  color: var(--text-color);
}

/* Heading */

.ryka-lead-content h3 {
  margin: 0 0 12px;

  font-size: 31px;

  line-height: 1.2;

  font-weight: 600;

  color: var(--primary-color);
}

.ryka-lead-description {
  margin: 0 0 28px;

  max-width: 380px;

  font-size: 14px;

  line-height: 1.65;

  color: var(--text-color);
}

/* =====================================================
   INPUTS
===================================================== */

.ryka-input-group {
  position: relative;

  display: flex;
  align-items: center;

  height: 54px;

  margin-bottom: 13px;

  border: 1px solid rgba(22, 22, 22, 0.16);

  border-radius: 9px;

  background: rgba(255, 255, 255, 0.65);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.ryka-input-group:focus-within {
  border-color: var(--primary-color);

  box-shadow: 0 0 0 3px rgba(253, 214, 75, 0.2);
}

.ryka-input-group i {
  width: 48px;

  display: flex;
  justify-content: center;

  font-size: 17px;

  color: var(--text-color);
}

.ryka-input-group input {
  flex: 1;

  height: 100%;

  padding: 0 14px 0 0;

  border: none;
  outline: none;

  background: transparent;

  font-family: var(--default-font);

  font-size: 14px;

  color: var(--primary-color);
}

.ryka-input-group input::placeholder {
  color: #858585;
}

/* =====================================================
   SUBMIT BUTTON
===================================================== */

.ryka-lead-submit {
  width: 100%;
  height: 54px;

  margin-top: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  border: none;
  border-radius: 30px;

  background: var(--accent-color);

  color: var(--black-color);

  font-family: var(--default-font);

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ryka-lead-submit:hover {
  background: var(--accent-color-hover);

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(209, 142, 15, 0.2);
}

.ryka-lead-submit i {
  font-size: 16px;

  transition: transform 0.25s ease;
}

.ryka-lead-submit:hover i {
  transform: translateX(4px);
}

/* =====================================================
   PRIVACY
===================================================== */

.ryka-lead-privacy {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 6px;

  margin-top: 18px;

  font-size: 10px;

  color: #777;
}

.ryka-lead-privacy i {
  font-size: 12px;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {
  .ryka-lead-overlay {
    align-items: flex-end;

    padding: 0;

    background: rgba(0, 0, 0, 0.55);
  }

  .ryka-lead-modal {
    width: 100%;

    display: block;

    border-radius: 22px 22px 0 0;

    max-height: 92vh;

    overflow-y: auto;

    transform: translateY(100%);
  }

  .ryka-lead-overlay.active .ryka-lead-modal {
    transform: translateY(0);
  }

  /* Image becomes compact header */

  .ryka-lead-image {
    height: 180px;
    min-height: unset;
  }

  .ryka-lead-image-content {
    left: 24px;
    bottom: 22px;

    max-width: 230px;
  }

  .ryka-lead-eyebrow {
    margin-bottom: 8px;

    font-size: 8px;
  }

  .ryka-lead-image-content h2 {
    font-size: 25px;
  }

  .ryka-lead-line {
    width: 30px;
    height: 2px;

    margin: 10px 0;
  }

  .ryka-lead-image-content p {
    font-size: 11px;

    line-height: 1.4;
  }

  /* Content */

  .ryka-lead-content {
    padding: 28px 22px 26px;
  }

  .ryka-lead-logo {
    margin-bottom: 18px;

    font-size: 20px;

    letter-spacing: 5px;
  }

  .ryka-lead-content h3 {
    margin-bottom: 8px;

    font-size: 23px;
  }

  .ryka-lead-description {
    margin-bottom: 20px;

    font-size: 13px;
  }

  .ryka-input-group {
    height: 50px;
  }

  .ryka-lead-submit {
    height: 50px;
  }

  .desktop-only {
    display: none;
  }
}
.ryka-lead-image {
  position: relative;
  overflow: hidden;
}

.ryka-lead-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark overlay for readability */
.ryka-lead-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.05) 75%
  );
  z-index: 1;
  pointer-events: none;
}

.ryka-lead-image-content {
  position: absolute;
  left: 35px;
  bottom: 35px;
  z-index: 2;
  color: var(--accent-color);
  max-width: 80%;
}

.ryka-lead-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.ryka-lead-image-content h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.08;
  font-weight: 600;
  color: #fff;
}

.ryka-lead-line {
  display: block;
  width: 45px;
  height: 2px;
  background: var(--accent-color);
  margin: 18px 0;
}

.ryka-lead-image-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 767px) {
  .ryka-lead-image {
    display: none;
  }

  .ryka-lead-modal {
    display: block;
    width: 100%;
    border-radius: 22px 22px 0 0;
  }

  .ryka-lead-content {
    padding: 35px 24px 30px;
  }
}
/* submit modal */
/* =====================================================
   RYKA INQUIRY MODAL
===================================================== */

.ryka-inquiry-modal .modal-dialog {
  max-width: 500px;
  padding: 15px;
}

.ryka-inquiry-modal .modal-content {
  position: relative;

  padding: 38px 40px 32px;

  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 20px;

  background: var(--secondary-color);

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);

  overflow: hidden;
}

/* =====================================================
   CLOSE BUTTON
===================================================== */

.ryka-inquiry-close {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(22, 22, 22, 0.1);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.7);

  color: var(--primary-color);

  font-size: 13px;

  cursor: pointer;

  transition: all 0.25s ease;

  z-index: 5;
}

.ryka-inquiry-close:hover {
  background: var(--primary-color);
  color: var(--white-color);

  transform: rotate(90deg);
}

/* =====================================================
   HEADER
===================================================== */

.ryka-inquiry-header {
  display: flex;
  align-items: flex-start;

  gap: 16px;

  margin-bottom: 30px;

  padding-right: 30px;
}

.ryka-inquiry-icon {
  flex-shrink: 0;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: var(--accent-color);

  color: var(--primary-color);

  font-size: 17px;
}

.ryka-inquiry-eyebrow {
  display: block;

  margin-bottom: 7px;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 2px;

  color: var(--text-color);
}

.ryka-inquiry-header h2 {
  margin: 0 0 7px;

  font-size: 26px;
  line-height: 1.2;

  font-weight: 600;

  color: var(--primary-color);
}

.ryka-inquiry-header p {
  margin: 0;

  font-size: 13px;
  line-height: 1.55;

  color: var(--text-color);
}

/* =====================================================
   FORM
===================================================== */

.ryka-form-group {
  margin-bottom: 18px;
}

.ryka-form-group label {
  display: block;

  margin-bottom: 8px;

  font-size: 12px;
  font-weight: 600;

  color: var(--primary-color);
}

.ryka-input-wrapper {
  position: relative;

  display: flex;
  align-items: center;

  height: 52px;

  border: 1px solid rgba(22, 22, 22, 0.14);

  border-radius: 10px;

  background: var(--white-color);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.ryka-input-wrapper:focus-within {
  border-color: var(--primary-color);

  box-shadow: 0 0 0 3px rgba(253, 214, 75, 0.2);
}

.ryka-input-wrapper > i {
  width: 46px;

  flex-shrink: 0;

  text-align: center;

  color: #777;

  font-size: 15px;
}

.ryka-input-wrapper input {
  width: 100%;
  height: 100%;

  padding: 0 15px 0 0;

  border: none;
  outline: none;

  background: transparent;

  font-family: var(--default-font);
  font-size: 13px;

  color: var(--primary-color);
}

.ryka-input-wrapper input::placeholder {
  color: #999;
}

/* =====================================================
   PHONE PREFIX
===================================================== */

.ryka-phone-prefix {
  padding: 0 13px;

  border-right: 1px solid rgba(22, 22, 22, 0.12);

  font-size: 13px;
  font-weight: 600;

  color: var(--primary-color);
}

/* =====================================================
   TEXTAREA
===================================================== */

.ryka-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ryka-label-row span {
  font-size: 10px;

  color: #888;
}

.ryka-form-group textarea {
  width: 100%;

  padding: 13px 15px;

  resize: vertical;

  min-height: 85px;

  border: 1px solid rgba(22, 22, 22, 0.14);

  border-radius: 10px;

  outline: none;

  background: var(--white-color);

  font-family: var(--default-font);
  font-size: 13px;

  color: var(--primary-color);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.ryka-form-group textarea:focus {
  border-color: var(--primary-color);

  box-shadow: 0 0 0 3px rgba(253, 214, 75, 0.2);
}

.ryka-form-group textarea::placeholder {
  color: #999;
}

/* =====================================================
   ERROR
===================================================== */

.ryka-field-error {
  display: block;

  margin-top: 5px;

  min-height: 15px;

  font-size: 10px;

  color: var(--error-color);
}

/* =====================================================
   SUBMIT
===================================================== */

.ryka-inquiry-submit {
  width: 100%;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-top: 5px;

  border: none;
  border-radius: 10px;

  background: var(--primary-color);

  color: var(--white-color);

  font-family: var(--default-font);

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;

  transition: all 0.25s ease;
}

.ryka-inquiry-submit:hover {
  background: #292929;

  transform: translateY(-1px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.ryka-inquiry-submit > i {
  font-size: 17px;

  color: var(--accent-color);
}

.ryka-inquiry-submit:disabled {
  opacity: 0.65;

  cursor: not-allowed;

  transform: none;
}

/* =====================================================
   PRIVACY
===================================================== */

.ryka-inquiry-privacy {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 6px;

  margin-top: 16px;

  font-size: 9px;

  color: #888;
}

.ryka-inquiry-privacy i {
  font-size: 10px;
}

/* =====================================================
   BOOTSTRAP MODAL ANIMATION
===================================================== */

.ryka-inquiry-modal .modal-dialog {
  transform: translateY(15px) scale(0.97);

  transition: transform 0.3s ease;
}

.ryka-inquiry-modal.show .modal-dialog {
  transform: translateY(0) scale(1);
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575px) {
  .ryka-inquiry-modal .modal-dialog {
    width: 100%;

    margin: 0;

    padding: 10px;
  }

  .ryka-inquiry-modal .modal-content {
    padding: 30px 22px 24px;

    border-radius: 18px;
  }

  .ryka-inquiry-header {
    gap: 12px;

    margin-bottom: 24px;
  }

  .ryka-inquiry-icon {
    width: 42px;
    height: 42px;

    border-radius: 12px;

    font-size: 15px;
  }

  .ryka-inquiry-eyebrow {
    font-size: 8px;

    letter-spacing: 1.5px;
  }

  .ryka-inquiry-header h2 {
    font-size: 22px;
  }

  .ryka-inquiry-header p {
    font-size: 12px;
  }

  .ryka-form-group {
    margin-bottom: 15px;
  }

  .ryka-input-wrapper {
    height: 50px;
  }

  .ryka-inquiry-submit {
    height: 50px;
  }
}

/* Soft price unlock CTA */
.ryka-unlock-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(183, 155, 99, 0.55);
  background: rgba(183, 155, 99, 0.12);
  color: #8a7040;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.ryka-unlock-price:hover {
  background: #b79b63;
  color: #fff;
  border-color: #b79b63;
}
body.ryka-prices-unlocked .ryka-price-locked {
  display: none !important;
}
body.ryka-prices-unlocked .ryka-price-reveal[hidden] {
  display: block !important;
}
.product-detail-price .ryka-unlock-price,
.pkg-price-box .ryka-unlock-price {
  margin-top: 12px;
  padding: 10px 18px;
  font-size: 0.9rem;
}
