/* ============================================================
   Payna-inspired Shop Theme — Cherry-picked & adapted
   Requires: Bootstrap 5.3, Font Awesome 6, Slick 1.8
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --sidebar-w: 94px;
  --brand-green: #206d1e;
  --text-dark: #232324;
  --text-muted: #777777;
  --bg-white: #ffffff;
  --transition-fast: .25s ease;
  --transition-med: .35s ease;
}

/* =========================================================
   1.  Sidebar Header (fixed left 94 px)
   ========================================================= */
.header-sidebar-wrap-all {
  box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
  width: var(--sidebar-w);
  background-color: var(--bg-white);
  padding: 30px 0;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.header-sidebar-wrap {
  flex-direction: column;
  align-items: center;
  display: flex;
  width: 100%;
  height: 100%;
}
.header-sidebar-wrap .sidebar-logo {
  margin: 10px 0 40px;
  display: block;
  text-align: center;
}
.header-sidebar-wrap .sidebar-logo img {
  width: 48px;
  height: auto;
}
/* Icon strip */
.sidebar-icons {
  flex-direction: column;
  align-items: center;
  display: flex;
  gap: 0;
}
.sidebar-icons .sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  position: relative;
  color: var(--text-dark);
  font-size: 18px;
  transition: color var(--transition-fast);
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
}
.sidebar-icons .sidebar-icon:hover {
  color: var(--brand-green);
}
/* Hover tooltip for sidebar icons */
.sidebar-icons .sidebar-icon[data-tooltip] {
  position: relative;
}
.sidebar-icons .sidebar-icon[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #232324;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  padding: 4px 9px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 9999;
}
.sidebar-icons .sidebar-icon[data-tooltip]:hover::after {
  opacity: 1;
}
.sidebar-icon .count-style {
  position: absolute;
  top: 2px;
  right: 0;
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 50%;
  background-color: var(--brand-green);
  color: #fff;
  font-size: 10px;
  text-align: center;
}

/* ---- Social + copyright at bottom of sidebar ---- */
.sidebar-bottom {
  margin-top: auto;
  text-align: center;
  padding: 0 8px;
}
.sidebar-bottom .social-links a {
  display: inline-block;
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 6px 8px;
  transition: color var(--transition-fast);
}
.sidebar-bottom .social-links a:hover {
  color: var(--brand-green);
}
.sidebar-bottom .copyright-text {
  font-size: 10px;
  color: #999;
  margin-top: 10px;
  text-align: center;
  line-height: 1.4;
}

/* =========================================================
   2.  Main Content Area (right of sidebar)
   ========================================================= */
.main-content-area {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
}

/* =========================================================
   3.  Search Overlay
   ========================================================= */
.search-content-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255,255,255,.95);
  text-align: center;
  transition: all var(--transition-fast);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-content-wrap.search-visible {
  visibility: visible;
  opacity: 1;
}
.search-content-wrap .search-close {
  font-size: 30px;
  position: absolute;
  top: 15%;
  right: 15%;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.search-content-wrap .search-close:hover {
  color: var(--brand-green);
}
.search-content-wrap .search-content {
  display: inline-block;
  max-width: 90%;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
  transform: scale(.9);
}
.search-content-wrap.search-visible .search-content {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.search-content-wrap .search-content p {
  font-size: 16px;
  color: var(--text-dark);
  margin: 0 0 15px;
}
.search-content-wrap .search-form {
  position: relative;
}
.search-content-wrap .search-form input {
  width: 600px;
  max-width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--text-dark);
  text-align: center;
  font-size: 24px;
  padding: 20px 40px;
  color: var(--text-dark);
  outline: none;
}
.search-content-wrap .search-form .button-search {
  position: absolute;
  top: 22px;
  right: 5px;
  border: 0;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

/* =========================================================
   4.  Body Overlays
   ========================================================= */
.body-overlay {
  background: rgba(35,35,36,.7);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  transition: all .5s ease-in-out;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  z-index: 9999;
}
.overlay-active .body-overlay {
  opacity: 1;
  visibility: visible;
}
.body-overlay-3 {
  background: rgba(35,35,36,.7);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  transition: all .5s ease-in-out;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  z-index: 9999;
}
.overlay-active-3 .body-overlay-3 {
  opacity: 1;
  visibility: visible;
}

/* =========================================================
   5.  Slide-out Cart Panel
   ========================================================= */
.sidebar-cart-active {
  position: fixed;
  top: 0;
  width: 400px;
  padding: 80px 40px 40px;
  min-height: 100vh;
  bottom: 0;
  z-index: 10000;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-fast);
  transform: translateX(200px);
  box-shadow: 0 0 87px 0 rgba(0,0,0,.09);
  background-color: var(--bg-white);
  overflow-y: auto;
}
.sidebar-cart-active.inside {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.sidebar-cart-active .cart-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 22px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.sidebar-cart-active .cart-close:hover {
  color: var(--brand-green);
}
.sidebar-cart-active .cart-content > h3 {
  font-size: 18px;
  margin: 0 0 30px;
}
.sidebar-cart-active .cart-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: calc(100vh - 380px);
  overflow-y: auto;
}
.sidebar-cart-active .single-product-cart {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f1f1;
}
.sidebar-cart-active .cart-img {
  flex: 0 0 70px;
}
.sidebar-cart-active .cart-img img {
  width: 100%;
}
.sidebar-cart-active .cart-title {
  margin-left: 15px;
  flex: 1;
}
.sidebar-cart-active .cart-title h4 {
  font-size: 14px;
  margin: 0 0 5px;
}
.sidebar-cart-active .cart-title h4 a {
  color: var(--text-dark);
}
.sidebar-cart-active .cart-title span {
  font-size: 13px;
  color: var(--text-muted);
}
.sidebar-cart-active .cart-delete {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}
.sidebar-cart-active .cart-delete a {
  font-weight: 400;
  font-size: 16px;
  color: #999;
}
.sidebar-cart-active .cart-total {
  margin: 20px 0;
}
.sidebar-cart-active .cart-total h4 {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}
.sidebar-cart-active .cart-total h4 span {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 600;
}
.sidebar-cart-active .cart-checkout-btn a {
  width: 100%;
  display: block;
  margin: 10px 0 0;
  text-align: center;
  padding: 14px 20px;
  background-color: var(--text-dark);
  color: #fff;
  text-transform: capitalize;
  font-size: 14px;
  transition: background var(--transition-fast);
}
.sidebar-cart-active .cart-checkout-btn a:first-child {
  margin-top: 0;
}
.sidebar-cart-active .cart-checkout-btn a:hover {
  background-color: var(--brand-green);
}

/* =========================================================
   6.  Login Overlay
   ========================================================= */
.login-wrap-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-out;
}
.login-wrap-active::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,.45);
  z-index: -1;
}
.login-wrap-active .header-login-content {
  position: relative;
  width: 1070px;
  max-width: 95vw;
  background-color: #fff;
  padding: 55px 45px;
  transform: scale(0.9);
  transition: transform .3s ease-out;
}
@media (min-width:992px) and (max-width:1199px) {
  .login-wrap-active .header-login-content { width: 930px; }
}
@media (min-width:768px) and (max-width:991px) {
  .login-wrap-active .header-login-content { width: 710px; }
}
@media (max-width:767px) {
  .login-wrap-active .header-login-content { width: 300px; padding: 40px 15px; }
}
@media (min-width:576px) and (max-width:767px) {
  .login-wrap-active .header-login-content { width: 520px; }
}
.login-wrap-active.inside {
  visibility: visible;
  opacity: 1;
}
.login-wrap-active.inside .header-login-content {
  transform: scale(1);
}
.login-wrap-active .login-close {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: #292929;
  font-size: 18px;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 100%;
  text-align: center;
  z-index: 1;
}
@media (max-width:767px) {
  .login-wrap-active .login-close { right: 0; }
}
.login-wrap-active .login-close i {
  line-height: 54px;
}
.login-wrap-active .login-close:hover {
  color: var(--brand-green);
}
.login-wrap-active .header-login-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px;
}
.login-wrap-active .single-login-input {
  margin: 0 0 21px;
}
.login-wrap-active .single-login-input label {
  display: block;
  margin: 0 0 8px;
}
.login-wrap-active .single-login-input input {
  height: 50px;
  width: 100%;
  border: 1px solid #cdcdcd;
  padding: 2px 20px;
  background-color: transparent;
}
.login-wrap-active .single-login-input input:focus {
  border-color: #262626;
  outline: none;
}
.login-wrap-active .login-remember {
  margin: 21px 0 6px;
}
.login-wrap-active .login-remember label {
  margin: 0;
}
.login-wrap-active .login-remember label input {
  width: auto;
  height: auto;
}
.login-wrap-active .login-submit input,
.login-wrap-active .login-submit button {
  border: none;
  padding: 11px 54px 13px;
  background-color: #262626;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.login-wrap-active .login-submit input:hover,
.login-wrap-active .login-submit button:hover {
  background: var(--brand-green);
}
.login-wrap-active .login-links {
  margin: 9px 0 0;
}
.login-wrap-active .login-links a {
  color: #777;
  font-size: 13px;
}
.login-wrap-active .login-links a:hover {
  text-decoration: underline;
  color: var(--brand-green);
}

/* =========================================================
   6b. Login Page Card (non-overlay, /login route)
   ========================================================= */
.login-page-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  padding: 40px 36px 32px;
}
.login-page-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text-dark);
}
.login-page-subtitle {
  color: var(--text-muted);
  margin: 0 0 24px;
  font-size: 14px;
}
/* Re-use the slide-out form classes in page context */
.login-page-card .single-login-input {
  margin: 0 0 18px;
}
.login-page-card .single-login-input label {
  display: block;
  margin: 0 0 6px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
}
.login-page-card .single-login-input input {
  height: 48px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2px 18px;
  background: transparent;
  font-size: 14px;
  transition: border-color var(--transition-fast);
}
.login-page-card .single-login-input input:focus {
  border-color: var(--brand-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(32,109,30,.12);
}
.login-page-card .login-remember {
  margin: 16px 0 6px;
}
.login-page-card .login-remember label {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}
.login-page-card .login-submit button {
  width: 100%;
  border: none;
  padding: 13px 24px;
  background: var(--brand-green);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.login-page-card .login-submit button:hover {
  background: #185416;
}
.login-page-card .login-links {
  margin: 12px 0 0;
  text-align: center;
}
.login-page-card .login-links a {
  color: var(--text-muted);
  font-size: 13px;
}
.login-page-card .login-links a:hover {
  color: var(--brand-green);
  text-decoration: underline;
}
.login-page-card .input-group {
  border-radius: 8px;
}
.login-page-card .input-group .input-group-text {
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-right: 0;
}
.login-page-card .input-group .form-control {
  border: 1px solid #ddd;
  height: 48px;
}
.login-page-card .captcha-image img {
  border-radius: 6px;
}

/* Info panel next to login card */
.login-info-panel {
  background: #f8faf8;
  border: 1px solid #e8efe8;
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
}
.login-info-panel h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px;
}
.login-info-panel p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}
.login-info-panel hr {
  border-color: #e0e8e0;
  margin: 20px 0;
}
.login-info-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.login-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dark);
}
.login-info-item i {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

/* =========================================================
   7.  Clickable Slide-out Menu
   ========================================================= */
.clickable-mainmenu-style5 {
  text-align: left;
  position: fixed;
  height: 100% !important;
  top: 0;
  left: 0;
  width: 400px;
  background: var(--bg-white);
  z-index: 9;
  padding: 50px;
  box-shadow: 0 0 15px 0 rgba(0,0,0,.09);
  overflow: auto;
  transform: translateX(-410px);
  transition: all 520ms ease;
}
.clickable-mainmenu-style5.open {
  margin-left: var(--sidebar-w);
  transform: translateX(0);
}
.clickable-mainmenu-style5 > nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.clickable-mainmenu-style5 > nav > ul > li {
  display: block;
  line-height: 1;
}
.clickable-mainmenu-style5 > nav > ul > li > a {
  font-size: 20px;
  display: block;
  text-transform: capitalize;
  padding: 23px 0;
  color: var(--text-dark);
  font-weight: 400;
}
.clickable-mainmenu-style5 > nav > ul > li > a:hover {
  color: var(--brand-green);
}
.clickable-mainmenu-style5 > nav > ul > li > a i {
  float: right;
  top: 2px;
  position: relative;
}
.clickable-mainmenu-style5 > nav > ul > li ul {
  list-style: none;
  padding: 14px 0 10px 29px;
  display: none;
}
.clickable-mainmenu-style5 > nav > ul > li ul li {
  padding-bottom: 22px;
}
.clickable-mainmenu-style5 > nav > ul > li ul li:last-child {
  padding-bottom: 0;
}
.clickable-mainmenu-style5 > nav > ul > li ul li a {
  display: block;
  font-size: 14px;
  color: #535353;
}
.clickable-mainmenu-style5 > nav > ul > li ul li a:hover {
  color: var(--brand-green);
}
.clickable-mainmenu-style5 > nav > ul > li ul li a i {
  float: right;
  top: -1px;
  position: relative;
}
.clickable-mainmenu-style5 > nav > ul > li ul li ul {
  padding: 25px 0 4px 29px;
}
/* Menu toggle X icon on open */
.menu-active-5 {
  position: relative;
}
.menu-active-5 i.m-close {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.menu-active-5.open i.m-close {
  opacity: 1;
}
.menu-active-5.open i.m-open {
  opacity: 0;
}

/* =========================================================
   8.  Homepage Slider (Slick full-screen)
   ========================================================= */
/* Company tagline bar — full-width, solid color
   Sits as direct child of .main-content-area, spans from sidebar edge to right */
.company-tagline-bar {
  text-align: center;
  padding: 28px 20px 18px;
  background-color: rgba(76,175,79,0.06);
}
.company-tagline-bar .tagline-text {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-green);
  letter-spacing: 0.5px;
  line-height: 1.3;
}
@media (max-width:767px) {
  .company-tagline-bar { padding: 16px 15px 10px; }
  .company-tagline-bar .tagline-text { font-size: 22px; }
}

/* Main right content area (shifts for sidebar) */
.main-sidebar-right {
  margin-left: var(--sidebar-w);
  padding: 0 0 0 110px;
}
@media (min-width:1200px) and (max-width:1365px) {
  .main-sidebar-right { padding: 0 0 0 70px; }
}
@media (min-width:992px) and (max-width:1199px) {
  .main-sidebar-right { padding: 0 0 0 50px; }
}
@media (min-width:768px) and (max-width:991px) {
  .main-sidebar-right { padding: 0 0 0 30px; margin-left: 0; }
}
@media (max-width:767px) {
  .main-sidebar-right { padding: 0 15px; margin-left: 0; }
}

.main-product-slider-area {
  position: relative;
}
.main-product-slider-active .slick-list {
  padding-right: 15%;
}
@media (max-width:767px) {
  .main-product-slider-active .slick-list { padding-right: 0; }
}
a.single-product-slider {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.single-product-slider:hover {
  text-decoration: none;
  color: inherit;
}
.single-product-slider {
  position: relative;
  height: 70vh;
  margin: 20px 10px 160px 10px;
  background-color: #f5f5f5;
  overflow: visible;
}
.single-product-slider .slider-img-link {
  display: block;
  width: 100%;
  height: 100%;
}
.single-product-slider .slider-product-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background-color: #f5f5f5;
}
/* Caption below product image — large product name + description */
.slider-product-caption {
  text-align: left;
  padding: 18px 10px 0;
}
.slider-product-caption .slider-caption-link {
  text-decoration: none;
  color: inherit;
}
.slider-product-caption .slider-caption-link:hover {
  color: var(--brand-green, #6ab04c);
}
.slider-product-caption .slider-product-title {
  font-size: 36px;
  font-weight: 800;
  color: #222;
  margin: 0 0 8px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.slider-product-caption .slider-product-desc {
  font-size: 14px;
  color: #777;
  margin: 0;
  line-height: 1.7;
  max-width: 500px;
}
@media (min-width:1200px) and (max-width:1365px) {
  .single-product-slider { margin: 20px 10px 150px 10px; }
  .slider-product-caption .slider-product-title { font-size: 30px; }
}
@media (min-width:992px) and (max-width:1199px) {
  .single-product-slider { margin: 15px 10px 140px 10px; }
  .slider-product-caption .slider-product-title { font-size: 26px; }
}
@media (min-width:768px) and (max-width:991px) {
  .single-product-slider { margin: 0 10px 130px 10px; }
  .slider-product-caption .slider-product-title { font-size: 22px; }
}
@media (max-width:767px) {
  .single-product-slider { margin: 0 0 110px 0; }
  .slider-product-caption .slider-product-title { font-size: 20px; }
  .slider-product-caption .slider-product-desc { font-size: 13px; }
}
.single-product-slider .product-slider-content {
  opacity: 0;
  visibility: hidden;
  margin: 0 0 -230px 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 450px;
  transition: all 1s ease .3s;
}
.single-product-slider.slick-current .product-slider-content {
  opacity: 1;
  visibility: visible;
  margin: 0 0 -230px 50px;
}
@media (max-width:767px) {
  .single-product-slider .product-slider-content,
  .single-product-slider.slick-current .product-slider-content {
    margin: 0 0 -210px 0;
  }
}
.single-product-slider .product-slider-content h2 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2em;
  margin: 0;
  color: var(--text-dark);
}
@media (min-width:1200px) and (max-width:1365px) {
  .single-product-slider .product-slider-content h2 { font-size: 50px; }
}
@media (min-width:992px) and (max-width:1199px) {
  .single-product-slider .product-slider-content h2 { font-size: 40px; }
}
@media (min-width:768px) and (max-width:991px) {
  .single-product-slider .product-slider-content h2 { font-size: 35px; }
}
@media (max-width:767px) {
  .single-product-slider .product-slider-content h2 { font-size: 24px; line-height: 1.1em; }
}
.single-product-slider .product-slider-content p {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
  margin: 25px 0 0;
  width: 55%;
}
@media (min-width:1200px) and (max-width:1365px) {
  .single-product-slider .product-slider-content p { width: 75%; }
}
@media (max-width:767px) {
  .single-product-slider .product-slider-content p { width: 100%; font-size: 14px; }
}
.single-product-slider .product-slider-dot-style {
  position: absolute;
  bottom: 0;
  right: 0;
}
.single-product-slider .product-slider-dot-style a {
  font-size: 80px;
  font-weight: 700;
  color: #e8e8e8;
  line-height: 1;
}
@media (max-width:767px) {
  .single-product-slider .product-slider-dot-style a { font-size: 50px; }
}
.single-product-slider .product-slider-content .slider-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: var(--text-dark);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background var(--transition-fast);
}
.single-product-slider .product-slider-content .slider-btn:hover {
  background: var(--brand-green);
}
/* Slick arrows — homepage (bottom-right of slide image) */
.main-product-slider-active {
  position: relative;
}
.main-product-slider-active .pro-slider-icon {
  background-color: rgba(0, 0, 0, 0.56);
  width: 52px;
  height: 52px;
  font-size: 20px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: all 250ms ease-out;
  cursor: pointer;
  z-index: 999;
}
@media (max-width:767px) {
  .main-product-slider-active .pro-slider-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}
.main-product-slider-active .pro-slider-icon:hover {
  background-color: var(--brand-green);
}
.main-product-slider-active .pro-slider-icon i {
  line-height: 1;
}
/* Position: vertically centered on each side of the slider */
.main-product-slider-active .pro-slider-icon.pro-slider-prev {
  top: 40%;
  transform: translateY(-50%);
  left: 10px;
  right: auto;
  bottom: auto;
}
.main-product-slider-active .pro-slider-icon.pro-slider-next {
  top: 40%;
  transform: translateY(-50%);
  right: 10px;
  left: auto;
  bottom: auto;
}
@media (max-width:767px) {
  .main-product-slider-active .pro-slider-icon.pro-slider-prev { left: 5px; }
  .main-product-slider-active .pro-slider-icon.pro-slider-next { right: 5px; }
}

/* =========================================================
   9.  Featured Products Section
   ========================================================= */
.featured-area {
  padding: 60px 30px 40px;
}
.featured-area .section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}
/* Product card */
.product-wrap {
  margin-bottom: 30px;
  position: relative;
}
.product-wrap .product-img {
  position: relative;
  overflow: hidden;
}
.product-wrap .product-img > a {
  display: block;
}
.product-wrap .product-img > a img {
  width: 100%;
  transition: transform .6s ease;
}
.product-wrap:hover .product-img > a img {
  transform: scale(1.05);
}
/* Overlay actions */
.product-wrap .product-action {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  transform: translateY(100%);
  transition: transform var(--transition-fast);
  background: rgba(255,255,255,.9);
}
.product-wrap:hover .product-action {
  transform: translateY(0);
}
.product-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--text-dark);
  color: #fff;
  font-size: 14px;
  transition: background var(--transition-fast);
}
.product-action a:hover {
  background: var(--brand-green);
}
/* Price badge */
.product-wrap .price-dec {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand-green);
  color: #fff;
  padding: 3px 10px;
  font-size: 12px;
  text-transform: uppercase;
}
/* Product text */
.product-content {
  padding-top: 15px;
  text-align: center;
}
.product-content h3 {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 6px;
}
.product-content h3 a {
  color: var(--text-dark);
}
.product-content h3 a:hover {
  color: var(--brand-green);
}
.product-content .product-price span {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
}
.product-content .product-price span.old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
  margin-right: 5px;
  font-size: 14px;
}

/* =========================================================
   10. Breadcrumb
   ========================================================= */
.breadcrumb-area {
  padding: 10px 0;
  background: #f7f7f7;
  position: relative;
}
.breadcrumb-area > .container,
.breadcrumb-area > .container-xl {
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width:767px) {
  .breadcrumb-area { padding: 14px 0; }
}
.breadcrumb-search-trigger {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-green, #6ab04c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background .25s, box-shadow .25s;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  z-index: 5;
  text-decoration: none;
}
.breadcrumb-search-trigger:hover {
  background: var(--brand-green-dark, #4a9030);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
/* Logout floating button – fixed position, always visible when logged in */
.global-logout-trigger {
  position: fixed;
  right: 68px;
  bottom: 190px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e74c3c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
  transition: background .25s, box-shadow .25s, transform .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  z-index: 99;
  text-decoration: none;
}
.global-logout-trigger:hover {
  background: #c0392b;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
  transform: scale(1.08);
}
@media (max-width:767px) {
  .global-logout-trigger {
    right: 16px;
    bottom: 180px;
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}
/* Legacy breadcrumb logout (keep but hide — replaced by global) */
.breadcrumb-logout-trigger {
  display: none !important;
}
.breadcrumb-content .breadcrumb-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 2px;
}
.breadcrumb-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.breadcrumb-content ul li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-content ul li + li::before {
  content: '/';
  color: #999;
  font-size: 13px;
}
.breadcrumb-content ul li.active {
  color: var(--brand-green, #6ab04c);
  font-weight: 600;
}
.breadcrumb-content ul li a {
  color: var(--text-dark);
}
.breadcrumb-content ul li a:hover {
  color: var(--brand-green);
}
.breadcrumb-content ul li span {
  margin-right: 4px;
}

/* =========================================================
   11.  Shop Grid / Product Listing
   ========================================================= */
.shop-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.shop-top-bar-left span {
  font-size: 14px;
  color: var(--text-muted);
}
.shop-top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.shop-short-by {
  position: relative;
}
.shop-short-by > span {
  font-size: 14px;
  cursor: pointer;
  padding: 8px 15px;
  border: 1px solid #e5e5e5;
}
.shop-short-by ul {
  list-style: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 5px 0;
  min-width: 200px;
  display: none;
  z-index: 100;
}
.shop-short-by:hover ul {
  display: block;
}
.shop-short-by ul li a {
  display: block;
  padding: 6px 15px;
  font-size: 13px;
  color: var(--text-dark);
}
.shop-short-by ul li a:hover,
.shop-short-by ul li.active a {
  color: var(--brand-green);
}

/* =========================================================
   12.  Inner page wrapper (padded content)
   ========================================================= */
.shop-inner-area {
  padding: 10px 30px 60px;
}

/* =========================================================
   13. Cart Page
   ========================================================= */
.cart-table-content table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table-content table thead > tr th {
  border-bottom: 2px solid #e5e5e5;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 10px;
  text-transform: uppercase;
}
.cart-table-content table tbody > tr td {
  border-bottom: 1px solid #eee;
  padding: 15px 10px;
  font-size: 14px;
  vertical-align: middle;
}
.cart-table-content table tbody > tr td.product-remove a {
  font-size: 18px;
  color: #999;
}
.cart-table-content table tbody > tr td.product-remove a:hover {
  color: var(--brand-green);
}
.cart-table-content table tbody > tr td.product-img {
  width: 80px;
}
.cart-table-content table tbody > tr td.product-name a {
  font-size: 14px;
  color: var(--text-dark);
}
.cart-table-content table tbody > tr td.product-price span,
.cart-table-content table tbody > tr td.product-total span {
  font-weight: 600;
}
.grand-totall {
  padding: 30px;
  border: 1px solid #e5e5e5;
  margin-top: 30px;
}
.grand-totall h5 {
  font-size: 14px;
  margin: 0 0 15px;
}
.grand-totall h5 span {
  float: right;
  font-size: 18px;
  font-weight: 600;
}
.grand-totall .total-shipping {
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}
.grand-totall a {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--text-dark);
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  transition: background var(--transition-fast);
}
.grand-totall a:hover {
  background: var(--brand-green);
}

/* =========================================================
   14.  Checkout
   ========================================================= */
.checkout-area .billing-info-wrap h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px;
}
.billing-info label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.billing-info input,
.billing-info select,
.billing-info textarea {
  width: 100%;
  border: 1px solid #e5e5e5;
  padding: 10px 15px;
  font-size: 14px;
}
.your-order-area {
  background: #f7f7f7;
  padding: 30px;
}
.your-order-area h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px;
}
.your-order-table table {
  width: 100%;
}
.your-order-table table th,
.your-order-table table td {
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 14px;
}
.place-order a,
.place-order button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: var(--text-dark);
  color: #fff;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-fast);
  margin-top: 15px;
}
.place-order a:hover,
.place-order button:hover {
  background: var(--brand-green);
}

/* =========================================================
   15. Product Details Page
   ========================================================= */
.product-details-area {
  padding: 40px 30px 60px;
}
.product-details-img img {
  width: 100%;
}
.product-details-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px;
}
.product-details-content .product-details-price span {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
}
.product-details-content .product-details-price span.old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 16px;
  margin-left: 8px;
}
.pro-details-quality {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}
.pro-details-quality .cart-plus-minus {
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e5;
}
.pro-details-quality .cart-plus-minus input {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 14px;
  padding: 8px 0;
}
.pro-details-quality .cart-plus-minus .dec,
.pro-details-quality .cart-plus-minus .inc {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  background: #f7f7f7;
}
.pro-details-quality .pro-details-cart a,
.pro-details-quality .pro-details-cart button {
  padding: 10px 25px;
  background: var(--text-dark);
  color: #fff;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.pro-details-quality .pro-details-cart a:hover,
.pro-details-quality .pro-details-cart button:hover {
  background: var(--brand-green);
}
.pro-details-meta {
  margin-top: 20px;
}
.pro-details-meta span {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--text-muted);
}
.pro-details-meta span a {
  color: var(--text-dark);
}
/* Tabs for description/reviews */
.description-review-area {
  margin-top: 50px;
}
.description-review-topbar {
  display: flex;
  gap: 20px;
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: 25px;
}
.description-review-topbar a {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 10px;
  color: var(--text-muted);
  position: relative;
}
.description-review-topbar a.active {
  color: var(--text-dark);
  border-bottom: 2px solid var(--text-dark);
}
.tab-pane p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* =========================================================
   16. Support Icons (fixed bottom-left, clear of sidebar)
   ========================================================= */
.support-lists {
  position: fixed;
  bottom: 30px;
  left: calc(var(--sidebar-w) + 12px);
  right: auto;
  top: auto;
  list-style: none;
  width: 48px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  border-radius: 24px;
  text-align: center;
  padding: 10px 0;
  z-index: 99;
}
@media (min-width:768px) and (max-width:991px) {
  .support-lists { left: 16px; width: 42px; bottom: 24px; }
}
@media (max-width:767px) {
  .support-lists { left: 12px; width: 42px; bottom: 20px; }
}
.support-lists ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.support-lists ul li {
  display: block;
}
.support-lists ul li a {
  font-size: 18px;
  height: 36px;
  line-height: 36px;
  color: var(--text-muted);
  display: block;
  transition: color 0.2s;
}
.support-lists ul li a:hover {
  color: var(--brand-green);
}
/* Floating search button — fixed top-right corner */
a.floating-search-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  color: #fff;
  background: var(--brand-green);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  display: block;
  transition: background 0.2s;
}
a.floating-search-btn:hover {
  background: #185a16;
  color: #fff;
}
.support-lists ul li a.floating-search-btn {
  color: #fff;
  background: var(--brand-green);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin: 0 auto 4px;
  font-size: 15px;
}
.support-lists ul li a.floating-search-btn:hover {
  background: #185a16;
  color: #fff;
}

/* =========================================================
   17.  Mobile Header (< 992px)
   ========================================================= */
.header-small-mobile {
  display: none;
  background: var(--bg-white);
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 9998;
}
.header-small-mobile .mobile-logo img {
  max-height: 40px;
}
.mobile-header-right-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
.mobile-header-right-wrap .sidebar-icon {
  font-size: 18px;
  color: var(--text-dark);
}
/* Mobile off-canvas menu */
.mobile-off-canvas-active {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 10001;
  padding: 20px;
  overflow-y: auto;
  transition: left var(--transition-med);
  box-shadow: 5px 0 15px rgba(0,0,0,.1);
}
.mobile-off-canvas-active.inside {
  left: 0;
}
.mobile-aside-close {
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
  cursor: pointer;
}
.mobile-menu {
  list-style: none;
  padding: 0;
}
.mobile-menu li a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-dark);
  border-bottom: 1px solid #f1f1f1;
}
.mobile-search .search-form {
  display: flex;
  margin-bottom: 20px;
}
.mobile-search .search-form input {
  flex: 1;
  border: 1px solid #e5e5e5;
  padding: 8px 12px;
  font-size: 14px;
}
.mobile-search .search-form .button-search {
  border: none;
  background: var(--text-dark);
  color: #fff;
  padding: 8px 14px;
  cursor: pointer;
}

/* =========================================================
   18.  Responsive
   ========================================================= */
@media only screen and (max-width: 991px) {
  .header-sidebar-wrap-all {
    display: none;
  }
  .header-small-mobile {
    display: block;
  }
  .main-content-area {
    margin-left: 0;
  }
  .clickable-mainmenu-style5 {
    display: none;
  }
  .sidebar-bottom {
    display: none;
  }
  .main-product-slider-active .slick-list {
    padding-right: 0;
  }
  .single-product-slider {
    height: 50vh;
    margin: 0;
  }
  .single-product-slider .product-slider-content {
    bottom: 30px;
    left: 20px;
  }
  .single-product-slider .product-slider-content h2 {
    font-size: 28px;
  }
  .featured-area {
    padding: 40px 15px 30px;
  }
  .breadcrumb-area { padding: 30px 15px; }
  .shop-inner-area { padding: 30px 15px 40px; }
  .product-details-area { padding: 30px 15px 40px; }
  .sidebar-cart-active { width: 300px; padding: 50px 20px; }
  .login-wrap-active { width: 100%; padding: 60px 30px; }
}
@media only screen and (max-width: 575px) {
  .single-product-slider { height: 40vh; }
  .single-product-slider .product-slider-content h2 { font-size: 22px; }
  .single-product-slider .product-slider-content p { display: none; }
  .product-details-content h2 { font-size: 20px; }
  .sidebar-cart-active { width: 260px; padding: 40px 15px; }
}

/* =========================================================
   19. Utility / Misc
   ========================================================= */
.bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
a { text-decoration: none; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }
.mt-30 { margin-top: 30px; }
.pt-40 { padding-top: 40px; }
.pb-40 { padding-bottom: 40px; }

/* Back-to-top */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 30px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--text-dark);
  color: #fff;
  border-radius: 50%;
  z-index: 900;
  display: none;
  text-align: center;
  font-size: 16px;
  transition: background var(--transition-fast);
}
.back-to-top:hover {
  background: var(--brand-green);
  color: #fff;
}

/* Cookie bar */
.cookie-warning {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 15px 30px;
}
.cookie-warning .alert {
  margin: 0;
}

/* =========================================================
   SHOP PAGES — Shared
   ========================================================= */
.shop-page-area {
  padding-left: 15px;
  padding-right: 15px;
}
.shop-page-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

/* =========================================================
   BOOKING DATES — Calendar Grid
   ========================================================= */
.booking-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.booking-legend-item {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #555;
}
.booking-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 6px;
  flex-shrink: 0;
}
.booking-month-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
  border-bottom: 2px solid var(--brand-green);
  display: inline-block;
  padding-bottom: 4px;
}
.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #ddd;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}
.cal-header {
  background: #444;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 4px;
  text-transform: uppercase;
}
.cal-cell {
  background: #fff;
  min-height: 90px;
  padding: 6px;
  position: relative;
}
.cal-cell.cal-empty {
  background: #f9f9f9;
}
.cal-day-num {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  display: block;
  margin-bottom: 4px;
}
.cal-cell.cal-has-event .cal-day-num {
  color: #333;
}
.cal-event {
  display: block;
  padding: 3px 6px;
  border-radius: 4px;
  margin-bottom: 3px;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  line-height: 1.3;
  transition: opacity .2s;
}
.cal-event:hover {
  opacity: .85;
  color: #fff;
  text-decoration: none;
}
.cal-event-name {
  display: block;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cal-event-qty {
  display: block;
  font-size: 10px;
  opacity: .85;
}
@media (max-width:767px) {
  .cal-cell { min-height: 60px; padding: 3px; }
  .cal-header { font-size: 10px; padding: 5px 2px; }
  .cal-event { font-size: 9px; padding: 2px 4px; }
  .cal-event-name { font-size: 9px; }
}

/* =========================================================
   LOCATIONS — Cards
   ========================================================= */
.location-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .25s;
  height: 100%;
}
.location-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.location-map {
  height: 180px;
  overflow: hidden;
  background: #f5f5f5;
}
.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ccc;
}
.location-info {
  padding: 20px;
}
.location-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.location-address,
.location-phone,
.location-email {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}
.location-phone a,
.location-email a {
  color: var(--brand-green);
  text-decoration: none;
}
.location-phone a:hover,
.location-email a:hover {
  text-decoration: underline;
}

/* ============================================================
   PRODUCT DETAIL PAGE — Payna product-details-2 styles
   ============================================================ */

/* Custom container — 95% width, capped at 1600px */
.custom-container-6 {
  width: 95%;
  margin: 0 auto;
}
@media (min-width: 1400px) {
  .custom-container-6 { max-width: 1600px; }
}

/* 60/40 Grid Columns */
.col-pro-60 {
  flex: 0 0 60%;
  max-width: 60%;
  padding-right: 15px;
  padding-left: 15px;
}
.col-pro-40 {
  flex: 0 0 40%;
  max-width: 40%;
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 991px) {
  .col-pro-60,
  .col-pro-40 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* EasyZoom core */
.easyzoom {
  position: relative;
  cursor: crosshair;
}
.easyzoom img {
  vertical-align: bottom;
  width: 100%;
}
.easyzoom.is-loading {
  cursor: progress;
}
.easyzoom.is-ready .easyzoom-flyout {
  display: block;
}
.easyzoom-flyout {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 100;
  border: 1px solid #eee;
  background: #fff;
}
.easyzoom--overlay .easyzoom-flyout {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Stacked image blocks */
.easyzoom-style {
  position: relative;
  overflow: hidden;
}
.easyzoom-style img {
  width: 100%;
  transition: transform .35s ease;
}
.easyzoom-style:hover img {
  transform: scale(1.02);
}
.easyzoom-style .product-sale {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-block;
  padding: 3px 12px;
  background: var(--brand-green, #4CAF50);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 9;
}
.easyzoom-style .easyzoom-pop-up {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #fff;
  color: #333;
  font-size: 18px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 9;
}
.easyzoom-style:hover .easyzoom-pop-up {
  opacity: 1;
  visibility: visible;
}

/* Sidebar sticky */
.sidebar-active {
  position: sticky;
  top: 120px;
  align-self: flex-start;
}
.pl-35 {
  padding-left: 35px;
}
@media (max-width: 991px) {
  .sidebar-active {
    position: static;
    margin-top: 30px;
  }
  .pl-35 {
    padding-left: 0;
  }
}

/* Product details content — quickview-content */
.quickview-content h2 {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #333;
  line-height: 1.3;
}
.quickview-ratting-review {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.quickview-ratting-review .quickview-ratting-wrap {
  display: flex;
  align-items: center;
}
.quickview-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-green, #4CAF50);
  margin: 0 0 10px;
}
.quickview-content h3 span {
  text-decoration: line-through;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  margin-right: 10px;
}
.quickview-peragraph {
  margin-bottom: 20px;
}
.quickview-peragraph p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* Cart + / - quantity */
.cart-plus-minus {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  height: 46px;
}
.cart-plus-minus .qtybutton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 100%;
  cursor: pointer;
  font-size: 12px;
  color: #666;
  background: #f7f7f7;
  border: none;
  transition: background .2s;
  user-select: none;
}
.cart-plus-minus .qtybutton:hover {
  background: #eee;
  color: #333;
}
.cart-plus-minus .cart-plus-minus-box {
  width: 50px;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  height: 100%;
  padding: 0;
  background: transparent;
  -moz-appearance: textfield;
}
.cart-plus-minus .cart-plus-minus-box::-webkit-inner-spin-button,
.cart-plus-minus .cart-plus-minus-box::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Action bar: qty + cart + wishlist */
.quickview-action-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 25px;
}
.quickview-cart button {
  display: inline-block;
  padding: 12px 28px;
  border: none;
  background: var(--brand-green, #4CAF50);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background .3s;
  border-radius: 4px;
}
.quickview-cart button:hover {
  background: #333;
}
.quickview-wishlist a,
.quickview-compare a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  font-size: 16px;
  transition: all .3s;
}
.quickview-wishlist a:hover,
.quickview-compare a:hover {
  background: var(--brand-green, #4CAF50);
  border-color: var(--brand-green, #4CAF50);
  color: #fff;
}

/* Meta: SKU, Category, Tags */
.quickview-meta {
  margin-bottom: 12px;
}
.quickview-meta span {
  display: block;
  font-size: 13px;
  color: #666;
  line-height: 2;
}
.quickview-meta span span {
  display: inline;
  color: #333;
}
.quickview-meta span a {
  color: #333;
  transition: color .2s;
}
.quickview-meta span a:hover {
  color: var(--brand-green, #4CAF50);
}

/* Social share — small circular buttons */
.default-social {
  margin-top: 20px;
}
.default-social ul {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.default-social ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #333;
  font-size: 14px;
  transition: all .3s;
}
.default-social ul li a:hover,
.default-social ul li a.facebook:hover {
  background: #3b5998;
  border-color: #3b5998;
  color: #fff;
}
.default-social ul li a.twitter:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.default-social ul li a.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

/* Description / Reviews Tabs */
.description-review-area {
  padding-bottom: 80px;
}
.description-review-topbar {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #eee;
  margin-bottom: 30px;
}
.description-review-topbar a {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .3s;
}
.description-review-topbar a:hover,
.description-review-topbar a.active {
  color: var(--brand-green, #4CAF50);
  border-bottom-color: var(--brand-green, #4CAF50);
}
.description-review-bottom .tab-pane {
  display: none;
}
.description-review-bottom .tab-pane.active {
  display: block;
}
.product-dec-content,
.about-shiping-content {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.product-dec-content p,
.about-shiping-content p {
  margin-bottom: 15px;
}

/* Related / Other Products area */
.related-product-area {
  padding-top: 80px;
  padding-bottom: 80px;
}
.bg-gray-2 {
  background: #f6f6f8;
}
.section-title-12 h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  position: relative;
  display: inline-block;
}
.section-title-12 h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--brand-green, #4CAF50);
}
.mb-50 {
  margin-bottom: 50px;
}

/* Product card — sale badge */
.product-wrap .product-img .product-sale,
.related-product-area .product-wrap .product-img .product-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-block;
  padding: 2px 10px;
  background: var(--brand-green, #4CAF50);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 9;
}

/* pb-90 helper */
.pb-90 { padding-bottom: 90px; }
.pb-100 { padding-bottom: 100px; }
.pt-100 { padding-top: 100px; }
.pb-95 { padding-bottom: 95px; }

/* Product details area responsive tweaks */
@media (max-width: 767px) {
  .quickview-content h2 { font-size: 20px; }
  .quickview-content h3 { font-size: 18px; }
  .quickview-action-wrap { gap: 8px; }
  .quickview-cart button { padding: 10px 20px; font-size: 13px; }
  .description-review-topbar a { padding: 10px 16px; font-size: 14px; }
  .section-title-12 h2 { font-size: 22px; }
  .related-product-area { padding-top: 50px; padding-bottom: 50px; }
}
@media (max-width: 575px) {
  .quickview-action-wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .quickview-cart button { width: 100%; }
  .description-review-topbar { flex-wrap: wrap; }
  .description-review-topbar a { flex: 1 1 auto; text-align: center; padding: 10px 12px; font-size: 13px; }
}

/* =========================================================
   MY ACCOUNT PAGE
   ========================================================= */

/* Account Header */
.account-header {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  padding: 24px 28px;
}
.account-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--brand-green);
  display: flex; align-items: center; justify-content: center;
}
.account-avatar img {
  width: 100%; height: 100%; object-fit: cover;
}
.avatar-initials {
  color: #fff; font-size: 22px; font-weight: 700; line-height: 1;
}
.account-name {
  font-size: 20px; font-weight: 700; color: var(--text-dark); margin: 0;
}
.account-email {
  color: var(--text-muted); font-size: 14px; margin: 2px 0 0;
}
.account-loyalty {
  display: flex; align-items: center; gap: 12px;
  background: #fdf8e8; border: 1px solid #f5e6a3;
  border-radius: 10px; padding: 12px 20px;
}
.account-loyalty i {
  font-size: 28px; color: #f5a623;
}
.loyalty-value {
  display: block; font-size: 22px; font-weight: 700; color: var(--text-dark); line-height: 1.1;
}
.loyalty-label {
  display: block; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px;
}

/* Tab Navigation */
.account-tabs {
  border-bottom: 2px solid #eee;
  gap: 4px;
  margin-bottom: 0;
}
.account-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 8px;
  transition: all .2s;
  border-radius: 0;
  background: none;
}
.account-tabs .nav-link:hover {
  color: var(--brand-green);
  border-bottom-color: rgba(32,109,30,.3);
}
.account-tabs .nav-link.active {
  color: var(--brand-green);
  border-bottom-color: var(--brand-green);
  background: none;
}
.account-tabs .nav-link i {
  font-size: 16px;
}
@media (max-width: 575px) {
  .account-tabs .nav-link { padding: 12px 12px; font-size: 13px; }
  .account-tabs .nav-link span { display: none; }
  .account-tabs .nav-link i { font-size: 20px; }
}

/* Tab Content */
.account-tab-content {
  background: transparent;
}
.account-section {
  padding: 24px 0;
}

/* Stat Cards */
.stat-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  padding: 20px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  font-size: 20px;
}
.stat-orders .stat-icon { background: #e8f5e9; color: var(--brand-green); }
.stat-spent .stat-icon { background: #e3f2fd; color: #1976d2; }
.stat-pending .stat-icon { background: #fff3e0; color: #f57c00; }
.stat-returns .stat-icon { background: #fce4ec; color: #c62828; }
.stat-loyalty .stat-icon { background: #fdf8e8; color: #f5a623; }
.stat-prepay .stat-icon  { background: #e8eaf6; color: #3949ab; }
.stat-training .stat-icon { background: #e0f2f1; color: #00695c; }
.stat-chicks .stat-icon   { background: #fff8e1; color: #f9a825; }

/* Next Collection Banner */
.next-collection-banner {
  background: linear-gradient(135deg, var(--brand-green) 0%, #2e7d32 100%);
  border-radius: 14px;
  color: #fff;
  padding: 20px 24px;
}
.next-collection-inner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.next-collection-icon {
  font-size: 36px; opacity: .85; flex-shrink: 0;
}
.next-collection-body { flex: 1; min-width: 0; }
.next-collection-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; opacity: .8; margin-bottom: 2px;
}
.next-collection-title {
  font-size: 15px; font-weight: 700; line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.next-collection-date {
  font-size: 13px; opacity: .9; margin-top: 4px;
}
.next-collection-amount {
  text-align: right; flex-shrink: 0;
}
.next-collection-value {
  display: block; font-size: 22px; font-weight: 700;
}
.next-collection-sublabel {
  display: block; font-size: 11px; opacity: .7; text-transform: uppercase; letter-spacing: .5px;
}

/* WhatsApp Status Card */
.whatsapp-status-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  padding: 16px 20px; height: 100%;
  text-decoration: none;
}
.whatsapp-status-card i {
  font-size: 28px; flex-shrink: 0;
}
.whatsapp-status-card div { min-width: 0; }
.whatsapp-status-card strong {
  display: block; font-size: 14px; color: var(--text-dark);
}
.whatsapp-status-card small {
  font-size: 12px; color: var(--text-muted); line-height: 1.3;
}
.whatsapp-status-card.linked i { color: #25d366; }
.whatsapp-status-card.not-linked i { color: #aaa; }
.whatsapp-status-card.not-linked { border: 2px dashed #ddd; }
.stat-value {
  font-size: 22px; font-weight: 700; color: var(--text-dark); line-height: 1.2;
}
.stat-label {
  font-size: 12px; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: .5px; margin-top: 2px;
}

/* Account Cards */
.account-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  overflow: hidden;
}
.account-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.account-card-header h5 {
  font-size: 16px; font-weight: 700; color: var(--text-dark); margin: 0;
}

/* Account Table */
.account-table th {
  font-size: 12px; text-transform: uppercase; letter-spacing: .5px;
  color: var(--text-muted); font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 16px;
}
.account-table td {
  padding: 14px 16px;
  font-size: 14px;
  vertical-align: middle;
  border-bottom: 1px solid #f8f8f8;
}
.account-table tbody tr:hover {
  background: #f9fdf9;
}

/* Quick Action Cards */
.quick-action-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: var(--text-dark);
  transition: all .2s;
}
.quick-action-card:hover {
  border-color: var(--brand-green);
  box-shadow: 0 4px 16px rgba(32,109,30,.1);
  color: var(--brand-green);
  text-decoration: none;
}
.quick-action-card i {
  font-size: 22px; color: var(--brand-green);
  width: 44px; height: 44px;
  background: #e8f5e9; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.quick-action-card span {
  font-weight: 600; font-size: 15px;
}

/* Account Info List */
.account-info-list {
  padding: 8px 0;
}
.info-row {
  display: flex; justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid #f8f8f8;
}
.info-row:last-child { border-bottom: none; }
.info-label {
  font-size: 14px; color: var(--text-muted); font-weight: 500;
}
.info-value {
  font-size: 14px; color: var(--text-dark); font-weight: 600;
}

/* =========================================================
   MNCEDISI CHAT
   ========================================================= */
.chat-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  overflow: hidden;
  display: flex; flex-direction: column;
  height: 600px;
}
.chat-header {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}
.chat-bot-info {
  display: flex; align-items: center; gap: 12px;
}
.chat-bot-avatar {
  width: 44px; height: 44px;
  background: var(--brand-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex; flex-direction: column; gap: 16px;
  background: #f8faf8;
}
.chat-message {
  display: flex; flex-direction: column;
  max-width: 80%;
}
.chat-message.bot {
  align-self: flex-start;
}
.chat-message.user {
  align-self: flex-end;
}
.chat-bubble {
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.chat-message.bot .chat-bubble {
  background: #fff;
  border: 1px solid #e8efe8;
  border-bottom-left-radius: 4px;
  color: var(--text-dark);
}
.chat-message.user .chat-bubble {
  background: var(--brand-green);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-bubble p { margin: 0 0 8px; }
.chat-bubble p:last-child { margin-bottom: 0; }
.chat-bubble ul { margin: 6px 0; padding-left: 20px; }
.chat-bubble ul li { margin: 4px 0; }
.chat-bubble a { color: var(--brand-green); text-decoration: underline; }
.chat-message.user .chat-bubble a { color: #c8e6c9; }
.chat-time {
  font-size: 11px; color: var(--text-muted); margin-top: 4px;
  padding: 0 4px;
}
.chat-message.user .chat-time { text-align: right; }

/* Typing indicator */
.typing-indicator .chat-bubble {
  display: flex; gap: 5px; padding: 14px 20px;
}
.typing-indicator .dot {
  width: 8px; height: 8px;
  background: #bbb;
  border-radius: 50%;
  animation: typingBounce .6s infinite ease-in-out;
}
.typing-indicator .dot:nth-child(2) { animation-delay: .15s; }
.typing-indicator .dot:nth-child(3) { animation-delay: .3s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

/* Chat input */
.chat-input-area {
  padding: 16px 20px;
  border-top: 1px solid #f0f0f0;
  background: #fff;
}
.chat-input-area .form-control {
  border-radius: 24px 0 0 24px;
  border: 1px solid #ddd;
  padding: 10px 20px;
  font-size: 14px;
}
.chat-input-area .form-control:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(32,109,30,.1);
}
.chat-input-area .btn {
  border-radius: 0 24px 24px 0;
  padding: 10px 20px;
}

@media (max-width: 767px) {
  .chat-container { height: 500px; }
  .chat-message { max-width: 90%; }
  .account-header { padding: 16px; }
  .stat-value { font-size: 18px; }
}
