@charset "UTF-8";
/*-- Reset styles  -- */
/* Inter font is loaded via wp_enqueue_style() in functions.php (with preconnect
   resource hints) instead of @import here, so it isn't a render-blocking,
   serially-fetched request inside this stylesheet. */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* -- Common elements -- */
html {
  scroll-behavior: smooth;
  margin-right: 0 !important;
}

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

body {
  font-family: "Lora", sans-serif;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: normal;
  color: #362c25;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
  transition: all 0.6s ease;
}

.container {
  max-width: 1260px;
  padding: 0;
}

/* -- form style -- */
select,
textarea,
input[type=text],
input[type=password],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=datetime],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color] {
  font-family: "Lora", sans-serif;
  border: 1px solid #dddddd;
  outline: 0;
  box-shadow: none;
  font-size: 14px;
  line-height: 24px;
  border-radius: 6px;
  padding: 9px 18px;
  width: 100%;
  background: #ffffff;
  color: #362c25;
  font-weight: normal;
}
select:focus,
textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=datetime]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus {
  border-color: #dddddd;
}
select::-moz-placeholder, textarea::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=color]::-moz-placeholder {
  color: #362c25;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
select::placeholder,
textarea::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=time]::placeholder,
input[type=week]::placeholder,
input[type=datetime]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=color]::placeholder {
  color: #362c25;
  transition: all 0.3s ease;
}

select {
  cursor: pointer;
}

textarea {
  min-height: 120px;
  resize: none;
}

/* -- Placeholder color -- */
::-webkit-input-placeholder {
  color: #362c25;
}

:-moz-placeholder {
  color: #362c25;
}

::-moz-placeholder {
  color: #362c25;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #362c25;
}

/* -- Typography setting -- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", sans-serif;
  text-rendering: optimizeLegibility;
  color: #362c25;
  font-weight: bold;
  line-height: 1;
}

h1 {
  font-size: 45px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

b,
strong {
  font-weight: bolder;
}

video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  color: #362c25;
}
a:focus, a:hover {
  transition: all 0.3s ease;
  text-decoration: none;
  outline: 0;
}

label {
  font-weight: bold;
}

.link {
  transition: all 0.3s ease;
}
.link:hover {
  color: #dab761;
}

.border-line {
  border: 1px solid #dddddd;
}

.border-line-black {
  border: 1px solid #362c25;
}

.border-line-bottom {
  border-bottom: 1px solid #333;
}

.no-line {
  border: 0 !important;
}

/* -- radius --*/
.radius-8 {
  border-radius: 8px;
}

.radius-24 {
  border-radius: 24px;
}

.radius-32 {
  border-radius: 32px;
}

.radius-56 {
  border-radius: 56px;
}

.rounded-full {
  border-radius: 999px;
}

.overflow-hidden {
  overflow: hidden;
}

.none {
  display: none;
}

.padding-y {
  padding-top: 100px;
  padding-bottom: 100px;
}

.padding-top {
  padding-top: 100px;
}

.padding-bottom {
  padding-bottom: 100px;
}

.padding-x {
  padding-left: 30px;
  padding-right: 30px;
}

.padding-left {
  padding-left: 30px;
}

.padding-right {
  padding-right: 30px;
}

/* -- text-size -- */
.text-size-1 {
  font-size: 12px;
}

.text-size-2 {
  font-size: 14px;
}

.text-size-3 {
  font-size: 16px;
}

.text-size-4 {
  font-size: 18px;
}

.text-size-5 {
  font-size: 20px;
}

.text-size-6 {
  font-size: 24px;
}

.text-size-7 {
  font-size: 28px;
}

.text-size-8 {
  font-size: 32px;
}

.text-size-9 {
  font-size: 38px;
}

.text-size-10 {
  font-size: 40px;
}

.text-size-11 {
  font-size: 48px;
}

.text-size-12 {
  font-size: 56px;
}

.text-size-13 {
  font-size: 64px;
}

.text-size-14 {
  font-size: 96px;
}

.logo {
  width: 100px;
}

.h-100 {
  height: 100% !important;
}

/*-- main styles  -- */
body.admin-bar header.sc-header-section {
  top: 32px !important; /* Adjust for the WP admin bar height */
}

@media screen and (max-width: 782px) {
  body.admin-bar header.sc-header-section {
    top: 46px !important; /* Adjust for the WP admin bar height */
  }
}
body.page-id-6 header,
body.page-id-6 footer {
  display: none;
}

#page-loader {
  position: fixed;
  inset: 0;
  background: #dbcbba;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #dbcbba;
  border-top: 3px solid #362c25;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.blur-box {
  backdrop-filter: blur(16px);
}

.parallax-wrapper {
  width: 100%;
  overflow: hidden;
}

/* Marquee */
.sc-marquee__track {
  min-width: auto !important;
  width: -moz-max-content !important;
  width: max-content !important;
  will-change: transform;
  transition: 0s !important;
}

.sc-marquee__track > * {
  flex: none;
  white-space: nowrap;
}

/******************* HEADER START *******************/
/* Start Softiconic Header & Light header */
header.sc-header-section {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 60px;
  background-color: rgba(237, 229, 224, 0.7);
  backdrop-filter: blur(16px);
  transition: top 0.6s, background 0.4s, box-shadow 0.4s, padding 0.3s;
  transition: 0.4s all;
  border-bottom: 0.8px solid rgba(219, 203, 186, 0.6);
}
@media only screen and (max-width: 1400px) {
  header.sc-header-section {
    padding: 15px 20px;
  }
}
header.sc-header-section .header-logo {
  position: relative;
  width: 30%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  header.sc-header-section .header-logo {
    justify-content: flex-start;
    width: auto;
  }
}
header.sc-header-section .my-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
header.sc-header-section .my-account:hover {
  color: #dab761;
}
header.sc-header-section.sticky {
  position: fixed !important;
  top: 0px;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.063);
  animation: 0.95s ease 0s normal forwards 1 running stickyAnimation;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running stickyAnimation;
}

@keyframes stickyAnimation {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
/* Softiconic menu css that applies to all section */
header.sc-header-section .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.sc-header-section .header-main .header-right {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  header.sc-header-section .header-main .header-right {
    width: auto;
  }
}

/* Start desktop menu */
.sc-desktop-menu {
  width: 35%;
  font-family: "Jost", sans-serif;
}
@media only screen and (max-width: 991px) {
  .sc-desktop-menu {
    width: auto;
  }
}
.sc-desktop-menu ul.box-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  gap: 40px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sc-desktop-menu ul.box-nav li.menu-item {
  position: relative;
}
.sc-desktop-menu ul.box-nav li.menu-item a.item-link {
  color: rgba(54, 44, 37, 0.6980392157);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 0px;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.68px;
}
.sc-desktop-menu ul.box-nav li.menu-item a.item-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 12px;
}
.sc-desktop-menu ul.box-nav li.menu-item a.item-link:before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  background-color: #362c25;
  width: 0%;
  height: 1px;
  transition: all 0.6s ease;
  opacity: 0;
  visibility: hidden;
  font-size: 20px;
}
.sc-desktop-menu ul.box-nav li.menu-item:hover > a.item-link, .sc-desktop-menu ul.box-nav li.menu-item.current-menu-item > a.item-link {
  color: #362c25;
}
.sc-desktop-menu ul.box-nav li.menu-item:hover > a.item-link:before, .sc-desktop-menu ul.box-nav li.menu-item.current-menu-item > a.item-link:before {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
.sc-desktop-menu ul.box-nav li.menu-item:hover > a.item-link i {
  transform: rotate(180deg);
}
.sc-desktop-menu ul.box-nav li.menu-item > ul.sub-menu {
  left: 0px;
  top: 40px;
}
.sc-desktop-menu ul.box-nav li.menu-item ul.sub-menu {
  position: absolute;
  width: 250px;
  padding: 15px 0px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
  background-color: #ffffff;
  box-shadow: 0px 14px 28px 0px rgba(6, 23, 106, 0.0784313725);
}
.sc-desktop-menu ul.box-nav li.menu-item ul.sub-menu li {
  padding: 8px 10px;
  position: relative;
}
.sc-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > a.item-link, .sc-desktop-menu ul.box-nav li.menu-item ul.sub-menu li.current-menu-item > a.item-link {
  color: #362c25;
}
.sc-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > a.item-link:before, .sc-desktop-menu ul.box-nav li.menu-item ul.sub-menu li.current-menu-item > a.item-link:before {
  opacity: 1;
  visibility: visible;
  height: 15px;
}
.sc-desktop-menu ul.box-nav li.menu-item ul.sub-menu li a.item-link {
  padding: 0px 15px;
  display: block;
  color: rgba(54, 44, 37, 0.6980392157);
  position: relative;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  letter-spacing: 1.68px;
}
.sc-desktop-menu ul.box-nav li.menu-item ul.sub-menu li a.item-link i {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-desktop-menu ul.box-nav li.menu-item ul.sub-menu li a.item-link:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  background-color: #362c25;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  height: 0px;
  width: 4px;
}
.sc-desktop-menu ul.box-nav li.menu-item ul.sub-menu li > ul.sub-menu {
  left: 220px;
  top: 0;
}
.sc-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > a.item-link i {
  transform: rotate(180deg);
}
.sc-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > ul.sub-menu {
  left: 250px;
  opacity: 1;
  visibility: visible;
}
.sc-desktop-menu ul.box-nav li.menu-item:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
}

/* Start mobile menu */
.sc-mobile-menu {
  width: 350px;
  max-width: 100%;
  min-height: 100dvh;
  height: 100%;
  background-color: rgba(237, 229, 224, 0.7);
  backdrop-filter: blur(16px);
  position: fixed;
  left: 0%;
  transform: translateX(-110%);
  top: 0;
  padding: 20px 20px;
  box-shadow: 0px 0px 5px 0px rgba(6, 23, 106, 0.0784313725);
  transition: all 0.6s ease;
  overflow-y: auto;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "Jost", sans-serif;
}
.sc-mobile-menu ul.box-nav {
  width: 100%;
  margin-top: 40px;
  list-style: none;
  padding: 0;
}
.sc-mobile-menu ul.box-nav li.menu-item {
  padding: 0px 15px;
  border-bottom: 1px solid rgba(54, 44, 37, 0.1568627451);
}
.sc-mobile-menu ul.box-nav li.menu-item:hover > a.item-link, .sc-mobile-menu ul.box-nav li.menu-item.current-menu-item > a.item-link {
  color: #362c25;
}
.sc-mobile-menu ul.box-nav li.menu-item a.item-link {
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(54, 44, 37, 0.6980392157);
  transition: all 0.3s ease;
  gap: 5px;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
}
.sc-mobile-menu ul.box-nav li.menu-item a.item-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: rotate(-90deg);
}
.sc-mobile-menu ul.box-nav li.menu-item a.item-link.link-active i {
  transform: rotate(0deg);
}
.sc-mobile-menu ul.box-nav li.menu-item ul.sub-menu {
  padding-bottom: 10px;
  list-style: none;
}
.sc-mobile-menu ul.box-nav li.menu-item ul.sub-menu li {
  padding: 0px 10px;
}
.sc-mobile-menu ul.box-nav li.menu-item ul.sub-menu li:last-child {
  border-bottom: none;
}
.sc-mobile-menu ul.box-nav li.menu-item ul.sub-menu li:hover > a.item-link, .sc-mobile-menu ul.box-nav li.menu-item ul.sub-menu li.current-menu-item > a.item-link {
  color: #362c25;
  opacity: 0.6;
}
.sc-mobile-menu ul.box-nav li.menu-item ul.sub-menu li a.item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
  color: #362c25;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
}
.sc-mobile-menu ul.box-nav li.menu-item ul.sub-menu li a.item-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}
.sc-mobile-menu ul.box-nav li.menu-item ul.sub-menu li a.item-link.link-active i {
  transform: rotate(0deg);
}
.sc-mobile-menu .mobile-menu-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sc-mobile-menu .mobile-menu-middle,
.sc-mobile-menu .mobile-menu-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 25px;
  flex-direction: column;
}
.sc-mobile-menu .mobile-menu-bottom {
  flex: 1;
  justify-content: flex-end;
}
.sc-mobile-menu .mobile-menu-bottom .sc-btn {
  width: 100%;
}
.sc-mobile-menu.show {
  transform: translateX(0%);
}

.sc-mobile-menu-bar {
  cursor: pointer;
  display: none;
}
.sc-mobile-menu-bar i {
  font-size: 26px;
  color: #362c25;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-bar-close {
  cursor: pointer;
}
.mobile-menu-bar-close i {
  font-size: 24px;
  color: #362c25;
}
.mobile-menu-bar-close:hover i {
  color: #dab761;
}

/* Header Search */
.sc-search-bar {
  transition: padding 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.sc-search-bar i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(54, 44, 37, 0.6980392157);
}

.sc-search-box {
  position: absolute;
  background: #ffffff;
  inset: 0;
  padding: 20px 60px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
  z-index: 99;
}
@media only screen and (max-width: 1400px) {
  .sc-search-box {
    padding: 20px;
  }
}
.sc-search-box form {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.sc-search-box form input[type=text] {
  color: #362c25;
  padding: 0;
  cursor: pointer;
  font-size: 16px;
  border: none;
  height: 100%;
}
.sc-search-box .sc-search-close {
  cursor: pointer;
}
.sc-search-box .sc-search-close i {
  color: #001180;
  font-size: 24px;
  transition: all 0.3s ease;
}
.sc-search-box.active-search {
  opacity: 1;
  visibility: visible;
}

/* Cart */
.sc-bag {
  transition: padding 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.sc-bag svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(54, 44, 37, 0.6980392157);
}

/******************* HEADER END *******************/
/* Button */
.sc-btn {
  display: inline-flex;
  height: 46px;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  border-radius: 30px;
  border: 1px solid;
  background-color: #362c25;
  border-color: #362c25;
  color: #dab761;
  padding: 0px 20px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}
.sc-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
}
.sc-btn:hover {
  color: #362c25;
  border-color: #dab761;
  background-color: #dab761;
}
.sc-btn:hover i {
  transform: rotate(0deg);
}
.sc-btn.color-btn {
  color: #362c25;
  border-color: #dab761;
  background-color: #dab761;
}
.sc-btn.color-btn:hover {
  background-color: #362c25;
  border-color: #362c25;
  color: #dab761;
}

.sc-elementor-btn a {
  position: relative;
  z-index: 1;
}
.sc-elementor-btn a:before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  background-color: #ede5e0;
  z-index: -1;
  transition: all 0.3s ease;
}
.sc-elementor-btn a:hover {
  color: #362c25 !important;
  fill: #362c25 !important;
}
.sc-elementor-btn a:hover:before {
  transform: scaleX(1);
}
.sc-elementor-btn.outline-black a:before, .sc-elementor-btn.fill a:before {
  background-color: #362c25;
}
.sc-elementor-btn.outline-black a:hover, .sc-elementor-btn.fill a:hover {
  color: #ede5e0 !important;
  fill: #ede5e0 !important;
  border-color: #362c25 !important;
  background-color: transparent !important;
}

/* ------------------- Cooming soon Section ------------------- */
.sc-subscribe-form .wsf-fields {
  display: flex;
  align-items: center;
  background-color: #e5dfd9;
  border-radius: 50px;
  padding: 6px;
  position: relative;
  width: 100%;
  max-width: 600px;
}
.sc-subscribe-form .wsf-field-wrapper {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
  position: static;
}
.sc-subscribe-form #wsf-1-field-8 {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #362c25;
  font-size: 16px;
  padding: 13px 20px;
  width: 100%;
}
.sc-subscribe-form #wsf-1-field-8::-moz-placeholder {
  color: #a8998f !important;
  opacity: 1 !important;
}
.sc-subscribe-form #wsf-1-field-8::placeholder {
  color: #a8998f !important;
  opacity: 1 !important;
}
.sc-subscribe-form #wsf-1-field-8:focus {
  outline: none;
  box-shadow: none;
}
.sc-subscribe-form #wsf-1-field-10.wsf-button {
  background-color: #c99d62;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  color: #faf5ef;
  cursor: pointer;
  font-weight: 600;
  padding: 13px 28px;
  white-space: nowrap;
  transition: all 0.3s ease;
  width: auto;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.sc-subscribe-form #wsf-1-field-10.wsf-button:hover {
  background-color: #c49363;
}
.sc-subscribe-form #wsf-1-field-10.wsf-button:focus {
  outline: none;
  box-shadow: none;
}
.sc-subscribe-form .wsf-invalid-feedback {
  position: absolute;
  bottom: -25px;
  left: 20px;
  font-size: 12px;
}

/* ------------------- Footer Section ------------------- */
footer.sc-footer-section {
  font-family: "Jost", sans-serif;
  background: #362c25;
  padding: 100px 20px 50px 20px;
}
footer.sc-footer-section .footer-top {
  padding: 0px 0px 80px 0px;
  border-bottom: 1px solid #343434;
}
footer.sc-footer-section .footer-top .row {
  row-gap: 40px;
}
footer.sc-footer-section .footer-top .footer-item h4 {
  font-size: 12px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: rgba(237, 229, 224, 0.4);
  letter-spacing: 2.2px;
}
footer.sc-footer-section .footer-top .footer-item a,
footer.sc-footer-section .footer-top .footer-item p {
  color: rgba(237, 229, 224, 0.6);
}
footer.sc-footer-section .footer-top .footer-item ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
footer.sc-footer-section .footer-top .footer-item ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
footer.sc-footer-section .footer-top .footer-item ul li i {
  transition: all 0.3s ease;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(237, 229, 224, 0.4);
}
footer.sc-footer-section .footer-top .footer-item ul li a {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
footer.sc-footer-section .footer-top .footer-item ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer.sc-footer-section .footer-top .footer-item ul li a:hover {
  color: #ede5e0;
  opacity: 1;
}
footer.sc-footer-section .footer-top .footer-item ul li a:hover i {
  color: #ede5e0;
}
footer.sc-footer-section .footer-top .footer-item ul li p {
  font-size: 14px;
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
}
footer.sc-footer-section .footer-top .footer-item ul li p i {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer.sc-footer-section .footer-top .footer-item p {
  font-size: 14px;
  margin-bottom: 30px;
}
footer.sc-footer-section .footer-top .footer-item .follow-us {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
footer.sc-footer-section .footer-top .footer-item .follow-us h5 {
  font-size: 14px;
  color: rgba(237, 229, 224, 0.5019607843);
  letter-spacing: 1px;
}
footer.sc-footer-section .footer-top .footer-item .follow-us ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-direction: row;
}
footer.sc-footer-section .footer-top .footer-item .follow-us ul li a {
  font-size: 22px;
}
footer.sc-footer-section .footer-top .footer-item .follow-us ul li a:hover {
  color: #dab761;
}
footer.sc-footer-section .footer-top .description {
  margin-top: 25px;
}
footer.sc-footer-section .footer-top .description p {
  max-width: 250px;
  color: rgba(237, 229, 224, 0.5019607843);
}
footer.sc-footer-section .footer-bottom {
  padding-top: 50px;
}
footer.sc-footer-section .footer-bottom .row {
  row-gap: 15px;
}
footer.sc-footer-section .footer-bottom .copyright {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
footer.sc-footer-section .footer-bottom p {
  color: rgba(237, 229, 224, 0.3019607843);
  font-size: 14px;
}
footer.sc-footer-section .footer-bottom p a {
  color: rgba(237, 229, 224, 0.3019607843);
  font-size: 14px;
}
footer.sc-footer-section .footer-bottom p a:hover {
  color: #ede5e0;
  text-decoration: underline;
}
footer.sc-footer-section .footer-bottom ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  list-style: none;
  padding: 0;
}
footer.sc-footer-section .footer-bottom ul li {
  position: relative;
  padding-right: 15px;
}
footer.sc-footer-section .footer-bottom ul li a {
  color: rgba(237, 229, 224, 0.3019607843);
  font-size: 14px;
}
footer.sc-footer-section .footer-bottom ul li a:hover {
  color: #ede5e0;
}

/* ----------------- Blog Page -----------------*/
.archive-title {
  margin-bottom: 40px;
}

.sc-blog-container .row {
  row-gap: 25px;
}

.sc-blog-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
}
.sc-blog-item .featured-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.sc-blog-item .featured-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.sc-blog-item .featured-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.sc-blog-item h3 {
  margin: 25px 25px 15px;
}
.sc-blog-item h3 a {
  color: #362c25;
  text-decoration: none;
}
.sc-blog-item h3 a:hover {
  color: #dab761;
}
.sc-blog-item .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0 25px 15px;
  color: #546881;
  font-size: 14px;
}
.sc-blog-item .post-meta a {
  color: inherit;
  text-decoration: none;
}
.sc-blog-item .post-meta a:hover {
  color: #dab761;
}
.sc-blog-item .post-content {
  margin: 0 25px 25px;
  color: #546881;
  line-height: 1.7;
}
.sc-blog-item .post-content p {
  margin: 0;
}
.sc-blog-item .sc-btn {
  align-self: flex-start;
  margin: auto 25px 25px;
}
.sc-blog-item:hover .featured-image img {
  transform: scale(1.05);
}

/* --------------- Blog Single -----------------*/
.sc-blog-single-container {
  background: #ffffff;
}

.sc-single-blog-section .row {
  row-gap: 50px;
}
.sc-single-blog-section .back-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #362c25;
  font-weight: 600;
}
.sc-single-blog-section .back-btn:hover {
  color: #362c25;
}
.sc-single-blog-section .back-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-single-blog-section .post-meta {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.sc-single-blog-section .post-meta .inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.sc-single-blog-section .post-meta span.category {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
}
.sc-single-blog-section .post-meta span.category a {
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.082);
  color: #362c25;
}
.sc-single-blog-section .post-meta span.category a:hover {
  color: #ffffff;
  background-color: #362c25;
}
.sc-single-blog-section .post-meta a {
  font-weight: 500;
  color: #362c25;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sc-single-blog-section .post-meta a img {
  border-radius: 50%;
  margin-right: 7px;
}
.sc-single-blog-section .post-meta a i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-single-blog-section .post-meta .date a {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.603);
}
.sc-single-blog-section h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .sc-single-blog-section h1 {
    font-size: 31px;
  }
}
.sc-single-blog-section .blog-thumbnail {
  height: 550px;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 10px;
}
@media only screen and (max-width: 991px) {
  .sc-single-blog-section .blog-thumbnail {
    height: 450px;
  }
}
.sc-single-blog-section .blog-thumbnail .simpleParallax {
  height: 100%;
}
.sc-single-blog-section .blog-thumbnail .image {
  height: 100%;
}
.sc-single-blog-section .blog-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sc-single-blog-section .sc-details {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.sc-single-blog-section .sc-details p {
  line-height: 1.6em;
}
.sc-single-blog-section .sc-details h2,
.sc-single-blog-section .sc-details h3 {
  margin: 13px 0px;
  font-size: 30px;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .sc-single-blog-section .sc-details h2,
  .sc-single-blog-section .sc-details h3 {
    font-size: 22px;
  }
}
.sc-single-blog-section .sc-details h4 {
  font-size: 14px;
}
.sc-single-blog-section .sc-details h5 {
  font-size: 20px;
}
.sc-single-blog-section .sc-details h5 {
  font-size: 16px;
}
.sc-single-blog-section .sc-details h4,
.sc-single-blog-section .sc-details h5,
.sc-single-blog-section .sc-details h6 {
  margin: 10px 0px;
  font-weight: 700;
}
.sc-single-blog-section .sc-details ul,
.sc-single-blog-section .sc-details ol {
  padding-left: 20px;
}
.sc-single-blog-section .sc-details ul li,
.sc-single-blog-section .sc-details ol li {
  line-height: 1.6em;
}
.sc-single-blog-section .sc-details ul li {
  list-style: disc;
}
.sc-single-blog-section .sc-details ol li {
  list-style: decimal;
}
.sc-single-blog-section .sc-details figure {
  border-radius: 30px;
  overflow: hidden;
}
.sc-single-blog-section .sc-details .wp-block-columns {
  margin-top: 25px;
  margin-bottom: 10px;
}
.sc-single-blog-section .sc-details .wp-block-image {
  height: 450px;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .sc-single-blog-section .sc-details .wp-block-image {
    height: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .sc-single-blog-section .sc-details .wp-block-image {
    height: 400px;
  }
}
.sc-single-blog-section .sc-details .wp-block-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 35%;
     object-position: 100% 35%;
}
.sc-single-blog-section .sc-details blockquote {
  background: #f5f5f5;
  padding: 40px 60px;
  text-align: center;
  border: none;
  margin: 20px 0px 0px 0px;
  border-left: 10px solid #362c25;
  border-radius: 30px;
}
.sc-single-blog-section .sc-details blockquote p {
  color: #362c25;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6em;
}
@media only screen and (max-width: 991px) {
  .sc-single-blog-section .sc-details blockquote p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .sc-single-blog-section .sc-details blockquote p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .sc-single-blog-section .sc-details blockquote {
    padding: 30px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .sc-single-blog-section .sc-details blockquote {
    padding: 20px 20px;
  }
}
.sc-single-blog-section .sc-details a:hover {
  color: #dab761;
}
.sc-single-blog-section .sc-sidebar {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  position: sticky;
  top: 150px;
}
@media only screen and (max-width: 991px) {
  .sc-single-blog-section .sc-sidebar {
    row-gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .sc-single-blog-section .sc-sidebar {
    row-gap: 20px;
  }
}
.sc-single-blog-section .sc-sidebar h2,
.sc-single-blog-section .sc-sidebar h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
}
@media only screen and (max-width: 991px) {
  .sc-single-blog-section .sc-sidebar h2,
  .sc-single-blog-section .sc-sidebar h4 {
    font-size: 20px;
  }
}
.sc-single-blog-section .sc-sidebar .widget {
  padding: 20px 17px;
  box-shadow: -25px 13px 50px 0px rgba(0, 0, 0, 0.02);
  background-color: #fbfbfb;
  border: 1px solid #dddddd;
  border-radius: 10px;
}
@media only screen and (max-width: 991px) {
  .sc-single-blog-section .sc-sidebar .widget {
    padding: 18px 15px;
  }
}
.sc-single-blog-section .sc-sidebar .widget_categories ul,
.sc-single-blog-section .sc-sidebar .widget_archive ul {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.sc-single-blog-section .sc-sidebar .widget_categories ul li,
.sc-single-blog-section .sc-sidebar .widget_archive ul li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  line-height: 1.6em;
  font-size: 14px;
  font-weight: 500;
}
.sc-single-blog-section .sc-sidebar .widget_categories ul li a,
.sc-single-blog-section .sc-sidebar .widget_archive ul li a {
  position: relative;
}
.sc-single-blog-section .sc-sidebar .widget_categories ul li a:hover,
.sc-single-blog-section .sc-sidebar .widget_archive ul li a:hover {
  color: #362c25;
}
.sc-single-blog-section .sc-sidebar .widget_recent_entries ul {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.sc-single-blog-section .sc-sidebar .widget_recent_entries ul li {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  font-size: 15px;
}
.sc-single-blog-section .sc-sidebar .widget_recent_entries ul li a {
  font-weight: 500;
}
.sc-single-blog-section .sc-sidebar .widget_recent_entries ul li a:hover {
  color: #362c25;
}
.sc-single-blog-section .sc-sidebar .widget_recent_entries ul li span {
  color: #b6b6b6;
}
.sc-single-blog-section .sc-sidebar .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sc-single-blog-section .sc-sidebar .tagcloud a {
  background-color: #f5f5f5;
  padding: 3px 8px;
  font-size: 12px !important;
  border-radius: 20px;
}
.sc-single-blog-section .sc-sidebar .tagcloud a:hover {
  background-color: #362c25;
  color: #ffffff;
}
.sc-single-blog-section .sc-sidebar label.wp-block-search__label {
  margin-bottom: 10px;
}
.sc-single-blog-section .sc-sidebar .search-form {
  display: flex;
  gap: 10px;
}
.sc-single-blog-section .sc-sidebar .search-form label {
  width: 100%;
}
.sc-single-blog-section .sc-sidebar .search-form input[type=submit] {
  height: 44px;
  padding: 5px 20px;
  border: 1px solid #362c25;
  background-color: #362c25;
  color: #dab761;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.sc-single-blog-section .sc-sidebar .search-form input[type=submit]:hover {
  border-color: #dab761;
  background-color: #dab761;
  color: #ffffff;
}

/*-- woocommerce  -- */
body.woocommerce-page .content-area {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 20px;
}
body.woocommerce-page .woocommerce-breadcrumb {
  margin-bottom: 30px;
}
body.woocommerce-page .woocommerce-breadcrumb a {
  color: #362c25 !important;
  font-weight: 600;
}
body.woocommerce-page.woocommerce-cart main, body.woocommerce-page.woocommerce-checkout main, body.woocommerce-page.woocommerce-account main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 20px;
}
body.woocommerce-page.woocommerce-lost-password main {
  padding: 60px 20px;
}
body.woocommerce-page.single-product .content-area, body.woocommerce-page.woocommerce-shop .content-area {
  max-width: 100%;
  margin: 0 auto;
  padding: 0px;
}
body.woocommerce-page.single-product .cartryn-woocommerce-breadcrumb, body.woocommerce-page.woocommerce-shop .cartryn-woocommerce-breadcrumb {
  background-color: #f5f5f5;
  padding: 20px 20px;
}
body.woocommerce-page.single-product .cartryn-woocommerce-breadcrumb .woocommerce-breadcrumb, body.woocommerce-page.woocommerce-shop .cartryn-woocommerce-breadcrumb .woocommerce-breadcrumb {
  margin-bottom: 0px;
}

body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title {
  margin-bottom: 40px;
}

.woocommerce-info,
.woocommerce-message {
  border-top-color: #dab761;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 20px 12px 50px;
  gap: 10px;
}
@media only screen and (max-width: 575px) {
  .woocommerce-info,
  .woocommerce-message {
    flex-direction: column;
    align-items: flex-start;
  }
}
.woocommerce-info::before,
.woocommerce-message::before {
  color: #dab761;
  top: 24px;
}
@media only screen and (max-width: 575px) {
  .woocommerce-info::before,
  .woocommerce-message::before {
    top: 12px;
  }
}
.woocommerce-info::after,
.woocommerce-message::after {
  display: none;
}
.woocommerce-info .button,
.woocommerce-message .button {
  order: 2;
  text-align: center;
}

.woocommerce-info {
  border-top-color: #dab761;
}
.woocommerce-info::before {
  color: #dab761;
}

/* Button Styles */
.added_to_cart.wc-forward,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
  background-color: #362c25;
  color: #dab761;
  border: 1px solid #362c25;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 20px !important;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 46px;
}
.added_to_cart.wc-forward:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover {
  background-color: #dab761;
  color: #ffffff;
  border-color: #dab761;
}

/* checkout & add to cart btn */
.checkout.wc-forward,
.added_to_cart.wc-forward {
  background-color: #dab761 !important;
  color: #ffffff !important;
  border: 1px solid #dab761 !important;
}
.checkout.wc-forward:hover,
.added_to_cart.wc-forward:hover {
  background-color: #362c25 !important;
  color: #dab761 !important;
  border-color: #362c25 !important;
}

/* disbaled btn */
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled]:hover {
  background-color: #362c25;
  border-color: #362c25;
  color: #dab761;
}

.woocommerce {
  /* price */
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
  color: #362c25;
  margin-bottom: 15px;
}
@media only screen and (max-width: 460px) {
  .woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
    margin-bottom: 0px;
  }
}
.woocommerce ul.products li.product .price del {
  opacity: 0.5;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none;
}
.woocommerce {
  /* Title */
}
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  .woocommerce ul.products li.product .woocommerce-loop-category__title,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce ul.products li.product h3 {
    font-size: 18px;
  }
}
.woocommerce {
  /* Sidebar Cart */
}
.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  width: 40px;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  color: #362c25;
  font-size: 20px;
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  text-decoration: none;
}

/* Mini cart sidebar */
.woocommerce-mini-cart__buttons {
  margin-top: 10px;
}

/* 
============================
            Shop 
============================
*/
.woocommerce .products ul,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 1400px) {
  .woocommerce .products ul,
  .woocommerce ul.products {
    gap: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .woocommerce .products ul,
  .woocommerce ul.products {
    gap: 15px;
  }
}
.woocommerce .products ul:before,
.woocommerce ul.products:before {
  display: none;
}
.woocommerce .products ul li.cartryn-product-card.product,
.woocommerce ul.products li.cartryn-product-card.product {
  float: inherit !important;
  margin: 0 !important;
  width: 100% !important;
  padding: 10px !important;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0px 4px 30px rgba(6, 23, 106, 0.0784313725);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.woocommerce .products ul li.cartryn-product-card.product .cartryn-product-image-wrap,
.woocommerce ul.products li.cartryn-product-card.product .cartryn-product-image-wrap {
  position: relative;
}
.woocommerce .products ul li.cartryn-product-card.product .cartryn-product-image-wrap a,
.woocommerce ul.products li.cartryn-product-card.product .cartryn-product-image-wrap a {
  background: #f5f5f5;
  border-radius: 6px;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.woocommerce .products ul li.cartryn-product-card.product .cartryn-product-image-wrap a img,
.woocommerce ul.products li.cartryn-product-card.product .cartryn-product-image-wrap a img {
  width: 100%;
  height: 100%;
  transition: all 0.6s ease;
  margin: 0px;
  -o-object-fit: cover;
     object-fit: cover;
}
.woocommerce .products ul li.cartryn-product-card.product .cartryn-product-content,
.woocommerce ul.products li.cartryn-product-card.product .cartryn-product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.woocommerce .products ul li.cartryn-product-card.product .cartryn-product-content .cartryn-product-actions,
.woocommerce ul.products li.cartryn-product-card.product .cartryn-product-content .cartryn-product-actions {
  flex: 1;
  display: flex;
  width: 100%;
  gap: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.woocommerce .products ul li.cartryn-product-card.product .cartryn-product-content .cartryn-product-actions a,
.woocommerce ul.products li.cartryn-product-card.product .cartryn-product-content .cartryn-product-actions a {
  flex: 1;
}
.woocommerce .products ul li.cartryn-product-card.product .button,
.woocommerce ul.products li.cartryn-product-card.product .button {
  text-align: center;
}
.woocommerce .products ul li.cartryn-product-card.product:hover .cartryn-product-image-wrap img,
.woocommerce ul.products li.cartryn-product-card.product:hover .cartryn-product-image-wrap img {
  transform: scale(1.05);
}
.woocommerce .products ul.shop-view-grid,
.woocommerce ul.products.shop-view-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 575px) {
  .woocommerce .products ul.shop-view-grid,
  .woocommerce ul.products.shop-view-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media only screen and (max-width: 460px) {
  .woocommerce .products ul.shop-view-grid,
  .woocommerce ul.products.shop-view-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.woocommerce .products ul.shop-view-grid.columns-6,
.woocommerce ul.products.shop-view-grid.columns-6 {
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}
@media only screen and (max-width: 1200px) {
  .woocommerce .products ul.shop-view-grid.columns-6,
  .woocommerce ul.products.shop-view-grid.columns-6 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .woocommerce .products ul.shop-view-grid.columns-6,
  .woocommerce ul.products.shop-view-grid.columns-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.woocommerce .products ul.shop-view-grid.columns-5,
.woocommerce ul.products.shop-view-grid.columns-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
@media only screen and (max-width: 1200px) {
  .woocommerce .products ul.shop-view-grid.columns-5,
  .woocommerce ul.products.shop-view-grid.columns-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .woocommerce .products ul.shop-view-grid.columns-5,
  .woocommerce ul.products.shop-view-grid.columns-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.woocommerce .products ul.shop-view-grid.columns-4,
.woocommerce ul.products.shop-view-grid.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 1024px) {
  .woocommerce .products ul.shop-view-grid.columns-4,
  .woocommerce ul.products.shop-view-grid.columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.woocommerce .products ul.shop-view-grid.columns-3,
.woocommerce ul.products.shop-view-grid.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.woocommerce .products ul.shop-view-grid.columns-2,
.woocommerce ul.products.shop-view-grid.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.woocommerce .products ul.shop-view-grid.columns-1,
.woocommerce ul.products.shop-view-grid.columns-1 {
  grid-template-columns: repeat(1, 1fr);
}
@media only screen and (max-width: 575px) {
  .woocommerce .products ul.shop-view-list,
  .woocommerce ul.products.shop-view-list {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
@media only screen and (min-width: 461px) {
  .woocommerce .products ul.shop-view-list li.cartryn-product-card.product,
  .woocommerce ul.products.shop-view-list li.cartryn-product-card.product {
    flex-direction: row;
    gap: 20px;
  }
}
@media only screen and (min-width: 461px) {
  .woocommerce .products ul.shop-view-list li.cartryn-product-card.product .cartryn-product-image-wrap,
  .woocommerce ul.products.shop-view-list li.cartryn-product-card.product .cartryn-product-image-wrap {
    width: 25%;
  }
}
@media only screen and (min-width: 461px) {
  .woocommerce .products ul.shop-view-list li.cartryn-product-card.product .cartryn-product-content,
  .woocommerce ul.products.shop-view-list li.cartryn-product-card.product .cartryn-product-content {
    width: 75%;
    padding-bottom: 8px;
  }
}
@media only screen and (min-width: 461px) {
  .woocommerce .products ul.shop-view-list li.cartryn-product-card.product .cartryn-product-content .cartryn-product-actions,
  .woocommerce ul.products.shop-view-list li.cartryn-product-card.product .cartryn-product-content .cartryn-product-actions {
    width: auto;
  }
  .woocommerce .products ul.shop-view-list li.cartryn-product-card.product .cartryn-product-content .cartryn-product-actions a,
  .woocommerce ul.products.shop-view-list li.cartryn-product-card.product .cartryn-product-content .cartryn-product-actions a {
    width: auto;
    flex: auto;
  }
}
@media only screen and (min-width: 576px) {
  .woocommerce .products ul.shop-view-list li.cartryn-product-card.product .cartryn-product-content .cartryn-product-actions a,
  .woocommerce ul.products.shop-view-list li.cartryn-product-card.product .cartryn-product-content .cartryn-product-actions a {
    width: 150px;
  }
}

.woocommerce span.onsale {
  width: 40px;
  height: 40px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  background: #dab761;
  color: #ffffff;
}

/* --- Shop Toolbar Layout Fix --- */
.cartryn-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 15px;
  position: relative;
}
.cartryn-shop-toolbar .woocommerce-result-count {
  margin: 0;
  font-size: 14px;
  color: #dbcbba;
}
.cartryn-shop-toolbar .woocommerce-ordering {
  margin: 0;
}
.cartryn-shop-toolbar .cartryn-toolbar-right {
  display: flex;
  align-items: center;
  gap: 25px;
  /* --- Grid / List Switcher UI --- */
}
.cartryn-shop-toolbar .cartryn-toolbar-right .cartryn-view-mode-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cartryn-shop-toolbar .cartryn-toolbar-right .cartryn-view-mode-toggle .view-mode-btn {
  background: #f5f5f5;
  border: 1px solid #dddddd;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  cursor: pointer;
  color: #362c25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.cartryn-shop-toolbar .cartryn-toolbar-right .cartryn-view-mode-toggle .view-mode-btn svg {
  width: 20px;
  height: 20px;
}
.cartryn-shop-toolbar .cartryn-toolbar-right .cartryn-view-mode-toggle .view-mode-btn.active, .cartryn-shop-toolbar .cartryn-toolbar-right .cartryn-view-mode-toggle .view-mode-btn:hover {
  background: #362c25;
  color: #dab761;
  border-color: #362c25;
}

/* shop parent inner */
.cartryn-shop-wrapper {
  padding: 60px 20px;
}
.cartryn-shop-wrapper .content-area {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 1200px) {
  .cartryn-shop-wrapper .content-area {
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .cartryn-shop-wrapper .content-area {
    flex-direction: column !important;
  }
}
.cartryn-shop-wrapper .content-area aside {
  width: 22%;
  padding-right: 10px;
}
@media only screen and (max-width: 767px) {
  .cartryn-shop-wrapper .content-area aside {
    width: 100% !important;
    padding-right: 0px;
  }
}
.cartryn-shop-wrapper .content-area main {
  width: 78%;
}
@media only screen and (max-width: 767px) {
  .cartryn-shop-wrapper .content-area main {
    width: 100% !important;
  }
}
.cartryn-shop-wrapper.cartryn-sidebar-left .content-area {
  flex-direction: row-reverse;
}
.cartryn-shop-wrapper.cartryn-sidebar-none main {
  width: 100%;
}

/* Pagiantion */
.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 5px;
  border: none;
}
.woocommerce nav.woocommerce-pagination ul li .page-numbers {
  background-color: #362c25;
  color: #dab761;
  border-color: #362c25;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.woocommerce nav.woocommerce-pagination ul li .page-numbers.current {
  background-color: #dab761;
  border-color: #dab761;
}

/* 
============================
        Sidebar
============================
*/
aside.widget-area {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
aside.widget-area .widgettitle {
  line-height: 1.2em;
  font-size: 20px;
  margin-bottom: 15px;
}
aside.widget-area .product-categories,
aside.widget-area .tagcloud,
aside.widget-area .product_list_widget {
  background-color: #f5f5f5;
  padding: 20px;
}
aside.widget-area .product-categories a,
aside.widget-area .tagcloud a,
aside.widget-area .product_list_widget a {
  font-size: 14px !important;
}
aside.widget-area .product-categories a:hover,
aside.widget-area .tagcloud a:hover,
aside.widget-area .product_list_widget a:hover {
  color: #dab761;
}
aside.widget-area .product-categories {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
aside.widget-area .product-categories li {
  position: relative;
  padding-left: 22px;
}
aside.widget-area .product-categories li:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 3px;
  width: 20px;
  height: 20px;
  background-image: url("../assets/svg/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: 15px;
}
aside.widget-area .product-categories li.cat-parent {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
aside.widget-area .product-categories li.cat-parent ul {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
aside.widget-area .product-categories li.cat-parent ul li {
  position: relative;
  display: flex;
  gap: 5px;
  padding: 0;
}
aside.widget-area .product-categories li.cat-parent ul li:before {
  content: "-";
  display: inline-block;
  background-image: none;
  width: auto;
  height: auto;
  position: static;
}
aside.widget-area .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
aside.widget-area .tagcloud a {
  padding: 2px 5px;
  background-color: #ffffff;
  border-radius: 4px;
}
aside.widget-area .tagcloud a:hover {
  background-color: #dab761;
  color: #362c25;
}
aside.widget-area .product_list_widget {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
aside.widget-area .product_list_widget li {
  border-radius: 4px;
  padding: 10px;
  background-color: #ffffff;
  font-size: 14px;
}
aside.widget-area .product_list_widget li del {
  opacity: 0.5;
  margin-top: 5px;
  display: inline-block;
}
aside.widget-area .product_list_widget li ins {
  text-decoration: none;
  font-weight: 700;
}
aside.widget-area .product_list_widget .reviewer {
  font-size: 12px !important;
}
aside.widget-area .widget_shopping_cart_content .cart_list li {
  padding: 10px;
}

.woocommerce-product-search {
  position: relative;
}
.woocommerce-product-search button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  border: none;
  background: transparent;
  font-size: 14px;
}

body.single-product aside.widget-area,
body.woocommerce-shop aside.widget-area {
  position: sticky;
  top: 20vh;
  z-index: 2;
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d1d1d1 transparent;
}
body.single-product aside.widget-area::-webkit-scrollbar,
body.woocommerce-shop aside.widget-area::-webkit-scrollbar {
  width: 5px;
}
body.single-product aside.widget-area::-webkit-scrollbar-track,
body.woocommerce-shop aside.widget-area::-webkit-scrollbar-track {
  background: transparent;
}
body.single-product aside.widget-area::-webkit-scrollbar-thumb,
body.woocommerce-shop aside.widget-area::-webkit-scrollbar-thumb {
  background: #d1d1d1;
  border-radius: 10px;
}
body.single-product aside.widget-area::-webkit-scrollbar-thumb:hover,
body.woocommerce-shop aside.widget-area::-webkit-scrollbar-thumb:hover {
  background: #999;
}
@media only screen and (max-width: 767px) {
  body.single-product aside.widget-area,
  body.woocommerce-shop aside.widget-area {
    width: 100% !important;
    position: static;
    top: inherit;
    z-index: 1;
    height: 100%;
  }
}

body.single-product aside.widget-area {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 20px;
}

/* 
============================
        Single Product 
============================
*/
h1.woocommerce-products-header__title.page-title,
.woocommerce div.product .product_title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  h1.woocommerce-products-header__title.page-title,
  .woocommerce div.product .product_title {
    font-size: 24px;
  }
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs:before {
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background-color: #362c25;
  border: none;
  margin: 0;
  padding: 0;
  border-radius: 0px;
  transition: all 0.3s ease;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:before, .woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 11px 20px;
  color: #dab761;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover, .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background-color: #dab761;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover a, .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #362c25;
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
  margin-bottom: 20px;
  font-size: 24px;
}
.woocommerce div.product .woocommerce-tabs .panel h3,
.woocommerce div.product .woocommerce-tabs .panel h4,
.woocommerce div.product .woocommerce-tabs .panel h5,
.woocommerce div.product .woocommerce-tabs .panel h6 {
  margin-bottom: 10px;
  padding: 15px 0px 10px 0px;
}
.woocommerce div.product .woocommerce-tabs .panel h3 {
  font-size: 22px;
}
.woocommerce div.product .woocommerce-tabs .panel h4 {
  font-size: 20px;
}
.woocommerce div.product .woocommerce-tabs .panel h5 {
  font-size: 18px;
}
.woocommerce div.product .woocommerce-tabs .panel h6 {
  font-size: 16px;
}
.woocommerce div.product .woocommerce-tabs .panel p {
  margin-bottom: 10px;
}
.woocommerce div.product .woocommerce-tabs .panel > div {
  margin-bottom: 15px;
}
.woocommerce div.product .woocommerce-tabs .panel ul,
.woocommerce div.product .woocommerce-tabs .panel ol {
  padding-left: 15px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.woocommerce div.product .woocommerce-tabs .panel blockquote {
  font-weight: 700;
  max-width: 90%;
  margin: 20px auto;
  padding-left: 30px;
  position: relative;
}
.woocommerce div.product .woocommerce-tabs .panel blockquote:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 85%;
  background-color: #362c25;
}
.woocommerce div.product form.cart {
  margin-top: 20px;
}
.woocommerce div.product form.cart .variations select {
  min-width: auto;
  width: auto;
  margin: 4px 10px;
}
.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
  vertical-align: middle;
}
.woocommerce div.product form.cart .woocommerce-variation-description p {
  margin-bottom: 10px;
}
.woocommerce div.product form.cart .woocommerce-variation.single_variation {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}
.woocommerce div.product div.summary .product_title {
  margin-bottom: 0px;
}
.woocommerce div.product div.summary .woocommerce-product-details__short-description,
.woocommerce div.product div.summary .price {
  margin-top: 20px;
}
.woocommerce div.product div.summary .woocommerce-product-details__short-description {
  color: #575757;
}
.woocommerce div.product .product_meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #999;
  margin-top: 20px;
  font-size: 14px;
  gap: 5px;
}
.woocommerce div.product .product_meta span span {
  color: #362c25;
  font-weight: 500;
}
.woocommerce div.product .product_meta a {
  color: #362c25;
  font-weight: 500;
}
.woocommerce div.product .product_meta a:hover {
  color: #dab761;
}
.woocommerce .quantity .qty {
  width: 46px;
  height: 46px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .stock {
  color: #1ed007;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .out-of-stock {
  color: #dab761;
}
.woocommerce #review_form #respond .comment-reply-title {
  margin-bottom: 8px;
  display: inline-block;
}
.woocommerce #review_form #respond .comment-form-rating label,
.woocommerce #review_form #respond .comment-form-comment label {
  margin-bottom: 10px;
}
.woocommerce .flex-viewport {
  height: 600px !important;
}
@media only screen and (max-width: 1200px) {
  .woocommerce .flex-viewport {
    height: 500px !important;
  }
}
@media only screen and (max-width: 1024px) {
  .woocommerce .flex-viewport {
    height: 400px !important;
  }
}
@media only screen and (max-width: 575px) {
  .woocommerce .flex-viewport {
    height: 320px !important;
  }
}
.woocommerce .flex-viewport .woocommerce-product-gallery__image,
.woocommerce .flex-viewport .woocommerce-product-gallery__wrapper {
  height: 100%;
}
.woocommerce .flex-viewport .woocommerce-product-gallery__image a,
.woocommerce .flex-viewport .woocommerce-product-gallery__image img,
.woocommerce .flex-viewport .woocommerce-product-gallery__wrapper a,
.woocommerce .flex-viewport .woocommerce-product-gallery__wrapper img {
  height: 100% !important;
}
.woocommerce .flex-viewport .woocommerce-product-gallery__image img,
.woocommerce .flex-viewport .woocommerce-product-gallery__wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
}
.woocommerce div.images .flex-control-thumbs li {
  width: 20% !important;
}

.up-sells.upsells,
.related.products {
  padding-top: 60px;
}
.up-sells.upsells h2,
.related.products h2 {
  margin-bottom: 30px;
}

@media only screen and (max-width: 1024px) {
  .pswp__preloader {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -22px;
  }
}
/* 
============================
        Cart Page
============================
*/
:root :where(.wp-element-button, .wp-block-button__link) {
  background-color: #362c25;
  color: #dab761;
  transition: all 0.3s ease !important;
  border: 1px solid #362c25;
  border-radius: 4px;
}
:root :where(.wp-element-button, .wp-block-button__link):hover {
  background-color: #dab761;
  color: #ffffff;
  border-color: #dab761;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  padding: 10px 0px !important;
}

.wc-block-cart__main.wp-block-woocommerce-cart-items-block {
  overflow-x: auto;
}

@media only screen and (max-width: 699px) {
  .wc-block-cart__sidebar {
    margin-bottom: 0px !important;
  }
}
/* Empty cart */
.wp-block-woocommerce-empty-cart-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.editor-styles-wrapper .wc-block-cart__empty-cart__title,
.wc-block-cart__empty-cart__title {
  font-size: 20px;
}

.wc-block-grid.wc-block-product-new {
  margin-top: 20px;
}

/* Cart products */
.wc-block-grid__products {
  display: grid !important;
  gap: 20px;
  margin: 0;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 575px) {
  .wc-block-grid__products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media only screen and (max-width: 460px) {
  .wc-block-grid__products {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.wc-block-grid__products.columns-6 {
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}
@media only screen and (max-width: 1200px) {
  .wc-block-grid__products.columns-6 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .wc-block-grid__products.columns-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.wc-block-grid__products.columns-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
@media only screen and (max-width: 1200px) {
  .wc-block-grid__products.columns-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .wc-block-grid__products.columns-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.wc-block-grid__products.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 1024px) {
  .wc-block-grid__products.columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.wc-block-grid__products.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.wc-block-grid__products.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.wc-block-grid__products.columns-1 {
  grid-template-columns: repeat(1, 1fr);
}

.wc-block-grid__product {
  float: inherit !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: auto !important;
  padding: 10px !important;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0px 4px 30px rgba(6, 23, 106, 0.0784313725);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  list-style: none !important;
  border: none !important;
  text-align: left !important;
}
.wc-block-grid__product .wc-block-grid__product-image {
  position: relative;
  background: #f5f5f5;
  border-radius: 6px;
  display: block;
  overflow: hidden;
  width: 100%;
  margin-bottom: 5px !important;
}
.wc-block-grid__product .wc-block-grid__product-image img {
  width: 100%;
  height: 100%;
  margin: 0px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.6s ease;
}
.wc-block-grid__product .wc-block-grid__product-onsale {
  position: absolute !important;
  top: -10px !important;
  right: -10px !important;
  z-index: 2 !important;
  background: #dab761 !important;
  color: #ffffff !important;
  width: 40px !important;
  height: 40px;
  line-height: 1;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  border: none !important;
  border-radius: 50% !important;
  text-transform: capitalize !important;
}
.wc-block-grid__product .wc-block-grid__product-link {
  text-decoration: none;
}
.wc-block-grid__product .wc-block-grid__product-title {
  margin-bottom: 5px !important;
  font-size: 20px;
  font-weight: 600;
}
.wc-block-grid__product .wc-block-grid__product-price {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0px !important;
  margin-bottom: 10px !important;
  font-size: 14px;
  color: #362c25;
}
.wc-block-grid__product .wc-block-grid__product-price del {
  opacity: 0.5;
  margin-right: 6px;
}
.wc-block-grid__product .wc-block-grid__product-price ins {
  text-decoration: none;
  font-weight: 600;
}
.wc-block-grid__product .wc-block-grid__product-rating {
  margin: 0px 0px 10px 0px !important;
}
.wc-block-grid__product .wc-block-grid__product-rating .star-rating {
  margin: 0px !important;
}
.wc-block-grid__product .wc-block-grid__product-add-to-cart {
  flex: 1;
  width: 100%;
  margin: 0px !important;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.wc-block-grid__product .wc-block-grid__product-add-to-cart .wp-block-button__link {
  flex: 1;
  padding: 8px 14px;
  font-size: 14px !important;
  height: 46px;
  font-weight: 600;
  border-radius: 30px;
  align-items: center;
}
.wc-block-grid__product:hover .wc-block-grid__product-image img {
  transform: scale(1.05);
}

/* 
============================
        Account Page
============================
*/
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 20%;
  background: #f5f5f5;
  padding: 20px 20px;
}
@media only screen and (max-width: 1400px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 23%;
  }
}
@media only screen and (max-width: 768px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 40%;
  }
}
@media only screen and (max-width: 575px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100%;
  }
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 18px;
  max-width: 100%;
  background-color: #ffffff;
  color: #362c25;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a[aria-current=page], .woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  color: #dab761;
  transform: translateY(-2px);
}
.woocommerce-account .woocommerce-MyAccount-content {
  width: 70%;
  padding: 60px 20px;
}
@media only screen and (max-width: 1400px) {
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 72%;
  }
}
@media only screen and (max-width: 768px) {
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
  margin-top: 30px;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title:before, .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title:after {
  display: none;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title h2 {
  font-size: 24px;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a {
  padding: 9px 18px;
  background-color: #f5f5f5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title a:hover {
  color: #dab761;
}
@media only screen and (max-width: 768px) {
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address.col-2 {
    margin-top: 30px;
  }
}
.woocommerce-account .woocommerce-MyAccount-content form h2 {
  font-size: 24px;
  margin-bottom: 15px;
}
.woocommerce-account .woocommerce-MyAccount-content form .select2-selection--single,
.woocommerce-account .woocommerce-MyAccount-content form textarea,
.woocommerce-account .woocommerce-MyAccount-content form input[type=text],
.woocommerce-account .woocommerce-MyAccount-content form input[type=password],
.woocommerce-account .woocommerce-MyAccount-content form input[type=date],
.woocommerce-account .woocommerce-MyAccount-content form input[type=month],
.woocommerce-account .woocommerce-MyAccount-content form input[type=time],
.woocommerce-account .woocommerce-MyAccount-content form input[type=week],
.woocommerce-account .woocommerce-MyAccount-content form input[type=datetime],
.woocommerce-account .woocommerce-MyAccount-content form input[type=number],
.woocommerce-account .woocommerce-MyAccount-content form input[type=email],
.woocommerce-account .woocommerce-MyAccount-content form input[type=url],
.woocommerce-account .woocommerce-MyAccount-content form input[type=search],
.woocommerce-account .woocommerce-MyAccount-content form input[type=tel],
.woocommerce-account .woocommerce-MyAccount-content form input[type=color] {
  border: 1px solid #dddddd;
  outline: 0;
  box-shadow: none;
  font-size: 14px;
  line-height: 24px;
  border-radius: 6px;
  padding: 9px 18px;
  width: 100%;
  background: #ffffff;
  color: #362c25;
  font-weight: normal;
}
.woocommerce-account .woocommerce-MyAccount-content form .select2-selection--single:focus,
.woocommerce-account .woocommerce-MyAccount-content form textarea:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type=text]:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type=password]:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type=date]:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type=month]:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type=time]:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type=week]:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type=datetime]:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type=number]:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type=email]:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type=url]:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type=search]:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type=tel]:focus,
.woocommerce-account .woocommerce-MyAccount-content form input[type=color]:focus {
  border-color: #dddddd;
}
.woocommerce-account .woocommerce-MyAccount-content form .select2-selection--single::-moz-placeholder, .woocommerce-account .woocommerce-MyAccount-content form textarea::-moz-placeholder, .woocommerce-account .woocommerce-MyAccount-content form input[type=text]::-moz-placeholder, .woocommerce-account .woocommerce-MyAccount-content form input[type=password]::-moz-placeholder, .woocommerce-account .woocommerce-MyAccount-content form input[type=date]::-moz-placeholder, .woocommerce-account .woocommerce-MyAccount-content form input[type=month]::-moz-placeholder, .woocommerce-account .woocommerce-MyAccount-content form input[type=time]::-moz-placeholder, .woocommerce-account .woocommerce-MyAccount-content form input[type=week]::-moz-placeholder, .woocommerce-account .woocommerce-MyAccount-content form input[type=datetime]::-moz-placeholder, .woocommerce-account .woocommerce-MyAccount-content form input[type=number]::-moz-placeholder, .woocommerce-account .woocommerce-MyAccount-content form input[type=email]::-moz-placeholder, .woocommerce-account .woocommerce-MyAccount-content form input[type=url]::-moz-placeholder, .woocommerce-account .woocommerce-MyAccount-content form input[type=search]::-moz-placeholder, .woocommerce-account .woocommerce-MyAccount-content form input[type=tel]::-moz-placeholder, .woocommerce-account .woocommerce-MyAccount-content form input[type=color]::-moz-placeholder {
  color: #362c25;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.woocommerce-account .woocommerce-MyAccount-content form .select2-selection--single::placeholder,
.woocommerce-account .woocommerce-MyAccount-content form textarea::placeholder,
.woocommerce-account .woocommerce-MyAccount-content form input[type=text]::placeholder,
.woocommerce-account .woocommerce-MyAccount-content form input[type=password]::placeholder,
.woocommerce-account .woocommerce-MyAccount-content form input[type=date]::placeholder,
.woocommerce-account .woocommerce-MyAccount-content form input[type=month]::placeholder,
.woocommerce-account .woocommerce-MyAccount-content form input[type=time]::placeholder,
.woocommerce-account .woocommerce-MyAccount-content form input[type=week]::placeholder,
.woocommerce-account .woocommerce-MyAccount-content form input[type=datetime]::placeholder,
.woocommerce-account .woocommerce-MyAccount-content form input[type=number]::placeholder,
.woocommerce-account .woocommerce-MyAccount-content form input[type=email]::placeholder,
.woocommerce-account .woocommerce-MyAccount-content form input[type=url]::placeholder,
.woocommerce-account .woocommerce-MyAccount-content form input[type=search]::placeholder,
.woocommerce-account .woocommerce-MyAccount-content form input[type=tel]::placeholder,
.woocommerce-account .woocommerce-MyAccount-content form input[type=color]::placeholder {
  color: #362c25;
  transition: all 0.3s ease;
}
.woocommerce-account .woocommerce-MyAccount-content form .select2-selection__rendered {
  padding-left: 0;
}
.woocommerce-account .woocommerce-MyAccount-content form em {
  font-size: 14px;
}
.woocommerce-account .woocommerce-MyAccount-content form fieldset {
  margin-top: 25px;
  margin-bottom: 25px;
}
.woocommerce-account .woocommerce-MyAccount-content form fieldset legend {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

#customer_login .woocommerce-form-login .woocommerce-form-login__rememberme {
  position: relative;
  top: 9px;
}
#customer_login .woocommerce-privacy-policy-text {
  margin-bottom: 10px;
}
#customer_login .woocommerce-form-login__submit,
#customer_login .woocommerce-form-register__submit {
  min-width: 120px;
}

/* Woocommerce form input style */
.woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
  border: 1px solid #dddddd;
  outline: 0;
  box-shadow: none;
  font-size: 14px;
  line-height: 24px;
  border-radius: 6px;
  padding: 9px 18px;
  width: 100%;
  background: #ffffff;
  color: #362c25;
  font-weight: normal;
}
.woocommerce form .form-row .input-text:focus,
.woocommerce form .form-row select:focus {
  border-color: #dddddd;
}
.woocommerce form .form-row .input-text::-moz-placeholder, .woocommerce form .form-row select::-moz-placeholder {
  color: #362c25;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.woocommerce form .form-row .input-text::placeholder,
.woocommerce form .form-row select::placeholder {
  color: #362c25;
  transition: all 0.3s ease;
}

.woocommerce-address-fields__field-wrapper {
  margin-bottom: 25px;
}

@media only screen and (min-width: 700px) {
  .wc-block-checkout__sidebar {
    top: 170px !important;
  }
}
/*-- WordPress core (accessibility, alignment/captions/galleries, pagination) -- */
/*
============================
    Accessibility
============================
*/
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link.screen-reader-text:focus {
  background-color: #362c25;
  border-radius: 0 0 6px 0;
  clip: auto !important;
  clip-path: none;
  color: #dab761;
  display: block;
  font-size: 14px;
  font-weight: 600;
  height: auto;
  left: 0;
  line-height: normal;
  padding: 14px 20px;
  text-decoration: none;
  top: 0;
  width: auto;
  z-index: 100000;
}

/*
============================
    Classic editor alignment & captions
    (still used by older content, pasted content, and some plugins)
============================
*/
.alignleft {
  float: left;
  margin: 0 25px 20px 0;
}

.alignright {
  float: right;
  margin: 0 0 20px 25px;
}

.aligncenter {
  display: block;
  margin: 0 auto 20px;
}

.alignnone {
  margin: 0 0 20px 0;
}

img.alignleft,
img.alignright,
img.aligncenter,
img.alignnone {
  height: auto;
  border-radius: 8px;
}

.wp-caption {
  max-width: 100%;
  margin-bottom: 20px;
}
.wp-caption img {
  display: block;
  border-radius: 8px;
}
.wp-caption .wp-caption-text {
  margin-top: 8px;
  font-size: 13px;
  color: #8c8f9a;
  text-align: center;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.gallery .gallery-item {
  margin: 0;
  flex: 1 1 calc(33.333% - 10px);
}
.gallery .gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.gallery .gallery-caption {
  margin-top: 6px;
  font-size: 12px;
  color: #8c8f9a;
  text-align: center;
}

/*
============================
    Generic content elements (default WordPress output that isn't
    already covered by a more specific page/section style — blockquote,
    table, hr — for the areas that print the_content() directly)
============================
*/
.site-content blockquote {
  position: relative;
  margin: 25px 0;
  padding: 20px 25px;
  border-left: 3px solid #dab761;
  background-color: #f5f5f5;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6em;
}
.site-content blockquote p:last-child {
  margin-bottom: 0;
}
.site-content blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
}
.site-content table:not(.wp-calendar-table) {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}
.site-content table:not(.wp-calendar-table) th,
.site-content table:not(.wp-calendar-table) td {
  padding: 10px 15px;
  border: 1px solid #dddddd;
  text-align: left;
  font-size: 14px;
}
.site-content table:not(.wp-calendar-table) th {
  background-color: #f5f5f5;
  font-weight: 700;
}
.site-content hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #dddddd;
}
.site-content code,
.site-content kbd,
.site-content pre {
  font-family: monospace;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.site-content code,
.site-content kbd {
  padding: 2px 6px;
  font-size: 13px;
}
.site-content pre {
  padding: 15px 20px;
  overflow-x: auto;
  margin-bottom: 20px;
}
.site-content pre code {
  padding: 0;
  background: none;
}

/*
============================
    Default blog pagination (the_posts_pagination on the
    archive/category/tag/author/search/index templates)
============================
*/
.pagination,
.navigation.pagination {
  margin-top: 20px;
}
.pagination .nav-links,
.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pagination .page-numbers,
.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 30px;
  border: 1px solid #dddddd;
  font-size: 14px;
  font-weight: 600;
  color: #362c25;
  transition: all 0.3s ease;
}
.pagination .page-numbers.dots,
.navigation.pagination .page-numbers.dots {
  border: none;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover,
.navigation.pagination .page-numbers.current,
.navigation.pagination .page-numbers:hover {
  background-color: #362c25;
  border-color: #362c25;
  color: #dab761;
}

/*-- default sidebar widgets -- */
/*
============================
    Default sidebar widgets
    (category/tag/taxonomy/author/search archives,
    left/right sidebar page templates, WooCommerce shop sidebar)
============================
*/
aside.widget-area .widget {
  padding: 20px 17px;
  background-color: #fbfbfb;
  border: 1px solid #dddddd;
  border-radius: 10px;
  box-shadow: -25px 13px 50px 0px rgba(0, 0, 0, 0.02);
}
@media only screen and (max-width: 991px) {
  aside.widget-area .widget {
    padding: 18px 15px;
  }
}
aside.widget-area .widgettitle,
aside.widget-area .widget-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
}
aside.widget-area {
  /* Search widget */
}
aside.widget-area .search-form {
  display: flex;
  gap: 10px;
}
aside.widget-area .search-form label {
  width: 100%;
  margin: 0;
}
aside.widget-area .search-form .search-submit {
  height: 44px;
  padding: 5px 20px;
  border: 1px solid #362c25;
  background-color: #362c25;
  color: #dab761;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
aside.widget-area .search-form .search-submit:hover {
  border-color: #dab761;
  background-color: #dab761;
  color: #ffffff;
}
aside.widget-area {
  /* Categories / Archives / Pages / Meta / Nav menu widgets */
}
aside.widget-area .widget_categories ul,
aside.widget-area .widget_archive ul,
aside.widget-area .widget_pages ul,
aside.widget-area .widget_meta ul,
aside.widget-area .widget_nav_menu ul,
aside.widget-area .widget_recent_comments ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
aside.widget-area .widget_categories ul li,
aside.widget-area .widget_archive ul li,
aside.widget-area .widget_pages ul li,
aside.widget-area .widget_meta ul li,
aside.widget-area .widget_nav_menu ul li,
aside.widget-area .widget_recent_comments ul li {
  position: relative;
  padding-left: 22px;
  line-height: 1.6em;
  font-size: 14px;
  font-weight: 500;
}
aside.widget-area .widget_categories ul li:before,
aside.widget-area .widget_archive ul li:before,
aside.widget-area .widget_pages ul li:before,
aside.widget-area .widget_meta ul li:before,
aside.widget-area .widget_nav_menu ul li:before,
aside.widget-area .widget_recent_comments ul li:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 3px;
  width: 20px;
  height: 20px;
  background-image: url("../assets/svg/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: 15px;
}
aside.widget-area .widget_categories ul li a:hover,
aside.widget-area .widget_archive ul li a:hover,
aside.widget-area .widget_pages ul li a:hover,
aside.widget-area .widget_meta ul li a:hover,
aside.widget-area .widget_nav_menu ul li a:hover,
aside.widget-area .widget_recent_comments ul li a:hover {
  color: #dab761;
}
aside.widget-area .widget_categories ul li,
aside.widget-area .widget_archive ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
aside.widget-area {
  /* Recent Posts widget */
}
aside.widget-area .widget_recent_entries ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  list-style: none;
}
aside.widget-area .widget_recent_entries ul li {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  font-size: 15px;
}
aside.widget-area .widget_recent_entries ul li a {
  font-weight: 500;
}
aside.widget-area .widget_recent_entries ul li a:hover {
  color: #dab761;
}
aside.widget-area .widget_recent_entries ul li .post-date {
  color: #8c8f9a;
  font-size: 13px;
}
aside.widget-area {
  /* Tag cloud widget */
}
aside.widget-area .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
aside.widget-area .tagcloud a {
  background-color: #f5f5f5;
  padding: 4px 12px;
  font-size: 12px !important;
  border-radius: 20px;
  transition: all 0.3s ease;
}
aside.widget-area .tagcloud a:hover {
  background-color: #362c25;
  color: #ffffff;
}
aside.widget-area {
  /* Calendar widget */
}
aside.widget-area .widget_calendar table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  font-size: 13px;
}
aside.widget-area .widget_calendar table caption {
  font-weight: 700;
  padding-bottom: 10px;
  caption-side: top;
}
aside.widget-area .widget_calendar table th {
  padding: 6px 4px;
  background-color: #f5f5f5;
  font-weight: 600;
}
aside.widget-area .widget_calendar table td {
  padding: 6px 4px;
  border: 1px solid #dddddd;
}
aside.widget-area .widget_calendar table td#today {
  background-color: #362c25;
  color: #dab761;
  font-weight: 700;
}
aside.widget-area .widget_calendar nav.wp-calendar-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
}
aside.widget-area .widget_calendar nav.wp-calendar-nav a:hover {
  color: #dab761;
}
aside.widget-area {
  /* RSS widget */
}
aside.widget-area .widget_rss ul {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  list-style: none;
}
aside.widget-area .widget_rss ul li {
  font-size: 14px;
}
aside.widget-area .widget_rss ul li a.rsswidget {
  font-weight: 600;
}
aside.widget-area .widget_rss ul li a.rsswidget:hover {
  color: #dab761;
}
aside.widget-area .widget_rss ul li .rss-date {
  display: block;
  color: #8c8f9a;
  font-size: 12px;
  margin: 4px 0;
}
aside.widget-area .widget_rss ul li cite {
  font-size: 12px;
  color: #8c8f9a;
}
aside.widget-area {
  /* Text / Custom HTML widgets */
}
aside.widget-area .widget_text,
aside.widget-area .widget_custom_html {
  font-size: 14px;
  line-height: 1.6em;
}
aside.widget-area .widget_text p,
aside.widget-area .widget_custom_html p {
  margin-bottom: 12px;
}
aside.widget-area .widget_text p:last-child,
aside.widget-area .widget_custom_html p:last-child {
  margin-bottom: 0;
}
aside.widget-area .widget_text a,
aside.widget-area .widget_custom_html a {
  text-decoration: underline;
}
aside.widget-area .widget_text a:hover,
aside.widget-area .widget_custom_html a:hover {
  color: #dab761;
}
aside.widget-area .widget_text img,
aside.widget-area .widget_custom_html img {
  border-radius: 8px;
}

/*-- comments -- */
/*
============================
    Comments (comments.php)
============================
*/
.sc-comments-wrap {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #dddddd;
}

.sc-comments .sc-comments-title {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .sc-comments .sc-comments-title {
    font-size: 20px;
  }
}
.sc-comments .sc-comments-closed {
  padding: 15px 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 8px;
  font-size: 14px;
}
.sc-comments {
  /* Comment list */
}
.sc-comments .sc-comment-list,
.sc-comments ol.children {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sc-comments .sc-comment-list {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  margin-bottom: 20px;
}
.sc-comments ol.children {
  margin-top: 25px;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
@media only screen and (max-width: 767px) {
  .sc-comments ol.children {
    padding-left: 18px;
  }
}
.sc-comments .comment-body {
  padding: 20px;
  background-color: #fbfbfb;
  border: 1px solid #dddddd;
  border-radius: 10px;
}
.sc-comments .comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.sc-comments .comment-author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sc-comments .comment-author .fn {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
}
.sc-comments .comment-author .says {
  display: none;
}
.sc-comments .comment-metadata {
  margin-bottom: 12px;
  font-size: 12px;
}
.sc-comments .comment-metadata a {
  color: #8c8f9a;
}
.sc-comments .comment-metadata a:hover {
  color: #dab761;
}
.sc-comments .comment-metadata .edit-link a {
  margin-left: 8px;
}
.sc-comments .comment-content {
  font-size: 14px;
  line-height: 1.6em;
}
.sc-comments .comment-content p:last-child {
  margin-bottom: 0;
}
.sc-comments .comment-awaiting-moderation {
  display: block;
  margin-top: 10px;
  padding: 8px 14px;
  background-color: #d2e5f6;
  border-radius: 6px;
  font-size: 12px;
  font-style: italic;
}
.sc-comments .reply {
  margin-top: 12px;
}
.sc-comments .reply .comment-reply-link {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 18px;
  border: 1px solid #362c25;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.sc-comments .reply .comment-reply-link:hover {
  background-color: #362c25;
  color: #dab761;
}
.sc-comments .pingback .comment-body,
.sc-comments .trackback .comment-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 20px;
}
.sc-comments .pingback .edit-link,
.sc-comments .trackback .edit-link {
  font-size: 12px;
}

/* Comment form */
.comment-respond {
  padding-top: 10px;
}
.comment-respond .comment-reply-title {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}
.comment-respond .comment-reply-title small {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 400;
}
.comment-respond .comment-reply-title small a {
  color: #8c8f9a;
}
.comment-respond .comment-reply-title small a:hover {
  color: #dab761;
}
.comment-respond .comment-notes,
.comment-respond .logged-in-as {
  margin-bottom: 20px;
  font-size: 13px;
  color: #8c8f9a;
}
.comment-respond .comment-notes a:hover,
.comment-respond .logged-in-as a:hover {
  color: #dab761;
}
.comment-respond .comment-form-comment,
.comment-respond .comment-form-author,
.comment-respond .comment-form-email,
.comment-respond .comment-form-url {
  margin-bottom: 18px;
}
.comment-respond .comment-form-comment label,
.comment-respond .comment-form-author label,
.comment-respond .comment-form-email label,
.comment-respond .comment-form-url label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}
.comment-respond .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
}
.comment-respond .comment-form-cookies-consent input[type=checkbox] {
  width: auto;
}
.comment-respond .comment-form-cookies-consent label {
  margin: 0;
}
.comment-respond .form-submit {
  margin: 0;
}

/*-- Responsive styles -- */
/* -- Softiconic - Media Queries -- */
@media only screen and (max-width: 1480px) {
  .padding-x {
    padding-left: 20px;
    padding-right: 20px;
  }
  .padding-left {
    padding-left: 20px;
  }
  .padding-right {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .padding-y {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .padding-top {
    padding-top: 80px;
  }
  .padding-bottom {
    padding-bottom: 80px;
  }
  .sc-desktop-menu ul.box-nav li.menu-item a.item-link {
    font-size: 12px;
  }
  .sc-desktop-menu ul.box-nav li.menu-item a.item-link ul.sub-menu li a.item-link {
    font-size: 12px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .sc-desktop-menu ul.box-nav {
    gap: 25px;
  }
  .sc-desktop-menu ul.box-nav li.menu-item ul.sub-menu {
    width: 220px;
    padding: 10px 0px;
  }
  .sc-desktop-menu ul.box-nav li.menu-item ul.sub-menu li > ul.sub-menu {
    left: 200px;
  }
  .sc-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > ul.sub-menu {
    left: 220px;
  }
}
@media only screen and (max-width: 1024px) {
  .sc-desktop-menu {
    display: none;
  }
  .sc-mobile-menu-bar {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  /*********************** FOOTER **************/
  footer.sc-footer-section {
    padding: 60px 20px 30px 20px;
  }
  footer.sc-footer-section .footer-top .footer-item h4 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 880px) {
  .padding-y {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .padding-top {
    padding-top: 60px;
  }
  .padding-bottom {
    padding-bottom: 60px;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 18px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  /*********************** FOOTER **************/
  footer.sc-footer-section {
    padding: 60px 20px 30px 20px;
  }
  footer.sc-footer-section .footer-top .footer-item h4 {
    margin-bottom: 20px;
  }
  footer.sc-footer-section .footer-bottom p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  header.sc-header-section .header-main .header-right {
    gap: 20px;
  }
  header.sc-header-section .header-main .header-right .sc-btn {
    display: none;
  }
  /*********************** FOOTER **************/
  footer.sc-footer-section {
    padding: 80px 20px 40px 20px;
  }
  footer.sc-footer-section .footer-top {
    padding-bottom: 60px;
  }
  footer.sc-footer-section .footer-top .footer-item h4 {
    margin-bottom: 20px;
  }
  footer.sc-footer-section .footer-top .footer-item .follow-us {
    gap: 20px;
    flex-wrap: wrap;
  }
  footer.sc-footer-section .footer-bottom {
    padding-top: 40px;
  }
  footer.sc-footer-section .footer-bottom .copyright p {
    font-size: 12px;
  }
  footer.sc-footer-section .footer-bottom .copyright p a {
    font-size: 12px;
  }
  footer.sc-footer-section .footer-bottom ul {
    justify-content: flex-start;
  }
  footer.sc-footer-section .footer-bottom ul li a {
    font-size: 12px;
  }
}/*# sourceMappingURL=styles.css.map */