@font-face {
  font-family: "Urbanist";
  src: url("../fonts/Urbanist-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-variable.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
}

@font-face {
  font-family: "Schibsted Grotesk";
  src: url("../fonts/schibsted-grotesk-variable.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
}

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

:root {
  --error: #E74C3C;
  --primary: #F54E00;
  --dark-black: #1A1A1A;
  --mid-gray: #666;
  --lime-color: #CBFF46;
  --gray: #999;
  --dark-gray: #666666;
  --mist-color: #EDEBE4;
  --charcoal: #333;
  --white: #ffffff;
  --base-bg: #F5F0E8;
  --stoke: #D4D0C8;
  --dm-sans: "DM Sans", sans-serif;
  --schibsted: "Schibsted Grotesk", sans-serif;
  --bs-nav-link-font-size: 16px;
}


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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-black);
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) rgba(0, 0, 0, 0.05);
}

.cursor-pointer {
  cursor: pointer;
}

.text-theme-primary {
  color: var(--primary);
}

.text-theme-green {
  color: #00591C;
}

.text-red {
  color: var(--error);
}

.text-warning {
  color: #F39C12 !important;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-input {
  box-shadow: none !important;
  outline: 0 !important;
  border: 1px solid #999999;
}

.border-theme-primary {
  border-color: var(--primary) !important;
}

.text-black {
  color: var(--dark-black);
}

.text-theme-gray {
  color: var(--gray);
}

.text-dark-gray {
  color: var(--dark-gray);
}

.text-mist {
  color: var(--mist-color);
}

.text-stone {
  color: #D4D0C8;
}

.text-gray {
  color: var(--gray);
}

.text-mid-gray {
  color: var(--mid-gray);
}

.text-lime {
  color: var(--lime-color);
}

.text-charcoal {
  color: var(--charcoal);
}

.bg-lime {
  background: var(--lime-color);
}

.bg-light-lime {
  background: #EEFFB3;
}

.bg-theme-primary {
  background: var(--primary);
}

.bg-blush {
  background: #FFD6BF;
}

.bg-mist {
  background: var(--mist-color);
}

.bg-dark-black {
  background: var(--dark-black);
}

.bg-charcoal {
  background: var(--charcoal);
}

.bg-base {
  background: var(--base-bg);
}

.bg-light-yellow {
  background: #F9F7F3;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: clamp(16px, 2vw, 20px);
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fs-34 {
  font-size: 34px;
}


body {
  font-family: var(--dm-sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
   word-break: break-word;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--schibsted);
  line-height: 1.5;
}

h2,
.h2 {
  font-size: clamp(32px, 5vw, 60px);
}

.fs-40 {
  font-size: 40px;
}

.fs-34 {
  font-size: 34px;
}

.fs-28 {
  font-size: 28px;
}

.page-title p {
  color: var(--dark-gray);
  max-width: 630px;
  margin: 0px auto;
}

.breadcrumb-area {
  padding: 250px 0px;
  background-image: url(../images/bg/contact.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}

.breadcrumb-area.blog-brd {
  background-image: url(../images/bg/blog.webp);
}

.breadcrumb-area.post-brd {
  background-image: url(../images/bg/blog-detail.webp);
}

.breadcrumb-area.faq-brd {
  background-image: url(../images/bg/faq.webp);
}

.breadcrumb-area::before {
  content: "";
  background: linear-gradient(180deg, #1A1A1A 0%, rgba(26, 26, 26, 0.6) 72.74%);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: -1;
}

.breadcrumb-area .container {
  max-width: 850px;
}

.breadcrumb-area.post-brd .container {
  max-width: 1180px;
}

.breadcrumb-title>h1 {
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  line-height: normal;
}

.breadcrumb-title>h1>div {
  position: absolute;
  width: 42px;
  height: 130px;
  left: 168px;
  top: -82px;
  background: #CBFF46;
  transform: rotate(75.34deg);
  border-radius: 100%;
  word-break: auto-phrase;
}

.policy-brd .breadcrumb-title>h1>div {
  width: 44px;
  height: 150px;
}

.policy-brd .breadcrumb-title>h1>div>span {
  width: 122px;
  top: 60px;
  left: -40px;
}

.archive-brd .breadcrumb-title>h1>div {
  width: 44px !important;
  height: 160px !important;
}

.archive-brd .breadcrumb-title>h1>div>span {
  width: 130px !important;
  top: 70px !important;
  left: -45px !important;
  white-space: nowrap !important;
}

.breadcrumb-area.post-brd .breadcrumb-title>h1>div {
  left: 300px;
}

.breadcrumb-title>h1>div>span {
  transform: rotate(-88.66deg);
  display: block;
  position: absolute;
  top: 56px;
  left: -14px;
}

.blog-brd .breadcrumb-title>h1>div>span,
.post-brd .breadcrumb-title>h1>div>span,
.faq-brd .breadcrumb-title>h1>div>span {
  left: 0px;
}

.breadcrumb-title>p {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  margin: 0px;
}

.custom-breadcrumb {
  --bs-breadcrumb-divider: ">";
  font-size: 18px;
}

.custom-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: var(--dark-gray);
  font-size: 22px;
  font-weight: 500;
  padding: 0 8px;
  line-height: 1.2;
}

.breadcrumb-item+.breadcrumb-item {
  padding-left: 5px;
}

.custom-breadcrumb .breadcrumb-item a {
  color: var(--dark-gray);
  transition: all .3s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover,
.custom-breadcrumb .breadcrumb-item.active {
  color: var(--primary);
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.max-700 {
  max-width: 700px;
}

.max-830 {
  max-width: 830px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.p-40 {
  padding: clamp(20px, 4vw, 40px);
}

header {
  background: var(--white);
  border-bottom: 1px solid var(--stoke);
  padding: 15px 0;
}

.fw-black {
  font-weight: 900;
}

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

header .navbar-expand-lg .navbar-nav li.nav-item.active .nav-link,
header .navbar-expand-lg .navbar-nav li.nav-item:hover .nav-link {
  color: var(--primary) !important;
}

.logout-btn {
  padding: 12px 14px;
  background: #F9F7F3;
  border: 1px solid #EDEBE4;
  border-radius: 6px;
}

.author-btn {
  padding: 6px 10px;
  background: #F9F7F3;
  border: 1px solid #EDEBE4;
  border-radius: 6px;
}

.author-btn>img {
  height: 36px;
  width: 36px;
  border-radius: 100%;
  object-fit: cover;
}

.max-w-800 {
  max-width: 800px;
  width: 100%;
}

.section-spacing {
  padding: clamp(50px, 8vw, 100px) 0;
}

.p-30 {
  padding: 30px 0px;
}

.p-50 {
  padding: 50px 0px;
}

.section-cream {
  background-color: var(--base-bg);
}

.section-cream.cream-bg {
  background-image: url(../images/meal-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.btn-theme-primary,
.btn-theme-outline,
.btn-theme-outline-dark,
.btn-theme-outline-light,
.btn-theme-dark {
  background: var(--primary);
  text-decoration: none;
  color: var(--white);
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0px 14px 12px -6px rgb(245 78 0 / 15%);
  line-height: normal;
}

.btn-theme-primary,
.btn-theme-outline,
.btn-theme-outline-dark,
.btn-theme-outline-light,
.btn-theme-dark {
  position: relative;
  overflow: hidden;
  transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.btn-theme-primary::before,
.btn-theme-outline::before,
.btn-theme-outline-dark::before,
.btn-theme-outline-light::before,
.btn-theme-dark::before {
  content: "";
  position: absolute;
  top: -50%;
  width: 115%;
  height: 200%;
  transform: translateY(0) skew(25deg) scale(0);
  left: -5%;
  transition: transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;

}

.btn-theme-primary::before {
  background: #d44807;
}

.btn-theme-outline::before {
  background: var(--mist-color);
}

.btn-theme-outline-dark::before {
  background: var(--dark-black);
}

.btn-theme-outline-light::before {
  background: var(--white);
}

.btn-theme-dark::before {
  background: #000;
}

.btn-theme-primary:hover::before,
.btn-theme-outline:hover::before,
.btn-theme-outline-dark:hover::before,
.btn-theme-outline-light:hover::before,
.btn-theme-dark:hover::before {
  transform: translateY(0) skew(25deg) scale(1);
}

.btn-theme-primary:hover,
.btn-theme-outline-dark:hover,
.btn-theme-dark:hover,
.btn-theme-primary:hover span,
.btn-theme-primary:hover i,
.btn-theme-outline-dark:hover span,
.btn-theme-outline-dark:hover i,
.btn-theme-dark:hover span,
.btn-theme-dark:hover i {
  color: var(--white);
}

.btn-theme-outline:hover,
.btn-theme-outline-light:hover,
.btn-theme-outline:hover span,
.btn-theme-outline:hover i,
.btn-theme-outline-light:hover span,
.btn-theme-outline-light:hover i {
  color: var(--dark-black) !important;
}

.btn-theme-primary span,
.btn-theme-outline span,
.btn-theme-outline-dark span,
.btn-theme-outline-light span,
.btn-theme-dark span {
  position: relative;
  z-index: 2;
  letter-spacing: 1%;
  transition: color 600ms cubic-bezier(0.25, 1, 0.5, 1);
}

.alert.theme-alert {
  padding: 12px;
  background: rgba(243, 156, 18, 0.06);
  border: 1px solid rgba(243, 156, 18, 0.5);
  border-radius: 6px;
}
.alert.theme-alert.theme-dark {
    background: #252525;
}

.alert-warning {
  color: #F39C12;
}

.btn-theme-outline {
  background: transparent;
  text-decoration: none;
  box-shadow: none;
  border: 1px solid var(--mist-color);
  color: var(--mist-color);
}

.btn-theme-outline-dark {
  background: transparent;
  text-decoration: none;
  box-shadow: none;
  border: 1px solid var(--dark-black);
  color: var(--dark-black);
}

.btn-theme-outline-dark:hover {
  background: transparent;
  color: var(--white);
}

.btn-theme-dark {
  background: var(--dark-black);
  color: var(--white);
  box-shadow: none;
}

.btn-theme-dark:hover {
  background: var(--dark-black);
  color: var(--white);
}

.btn-theme-outline-light {
  background: transparent;
  text-decoration: none;
  box-shadow: none;
  border: 1px solid var(--mist-color);
  color: var(--white);
}

.btn-theme-outline-light:hover {
  background: transparent;
  color: var(--dark-black);
}

.badge-default {
  background-color: #CBFF46;
  border-radius: 100px;
  padding: 10px;
}

.theme-card {
  padding: 24px;
  border: 1px solid #EDEBE4;
  box-shadow: 0px 2px 0px #EDEBE4;
  border-radius: 6px;
}

.dlcdl-wrapper .dlcdl-intro {
  max-width: 500px;
  width: 100%;
}

.dlcdl-wrapper .dlcdl-sidebar {
  width: 310px;
}

.form-group .form-control {
  padding: 12px 12px;
  background: #FFFFFF;
  border: 1px solid #EDEBE4;
  border-radius: 6px;
  box-shadow: none;
  outline: 0;
}

.form-group .form-control[readonly] {
  background-color: #ffffff;
  color: #1a1a1a;
  font-weight: 400;
  opacity: 1;
}

.form-control::placeholder {
  color: #999999;
}

.form-group .form-control:focus {
  border-color: var(--primary);
}

/* Theme Tabs */
.theme-tab .nav-tabs {
  background-color: #333333;
  border-radius: 8px;
  padding: 6px;
}

.theme-tab .nav-tabs .nav-link {
  color: var(--stoke);
  width: 25%;
  padding: 8px 20px;
  border: 0px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s;
}

.theme-tab .nav-tabs .nav-link.active {
  background-color: var(--lime-color);
  color: var(--dark-black);
}

.payment-tabs .nav-tabs {
  gap: 12px;
}

.payment-tabs .nav-tabs .nav-link {
  padding: 16px 20px;
  background: #FFFFFF;
  border: 1px dashed #D4D0C8;
  box-shadow: 0px 2px 0px #EDEBE4;
  border-radius: 6px;
  width: calc(50% - 6px);
  font-weight: 600;
  color: #1A1A1A;
}

.payment-tabs .nav-tabs .nav-link.active {
  background: rgba(245, 78, 0, 0.06);
  border: 1px solid #F54E00;
  box-shadow: 0px 2px 4.3px rgba(0, 89, 28, 0.15);
}

/* Theme Tabs */
/* Modal CSS */
.modal-dialog .modal-content {
  padding: clamp(12px, 3vw, 24px);
}

.modal-header {
  padding: 0px 0px 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #EDEBE4;
}

.modal-header .modal-title {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: bold;
  color: #1A1A1A;
}

.modal-header .btn-close {
  background: no-repeat;
  opacity: 1;
  font-size: 24px;
  color: #999999;
  outline: 0;
  box-shadow: none;
  padding: 0px;
}

.modal-backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}

.modal-backdrop.show {
  opacity: 1;
}

/* Modal CSS */



.heighlight-line {
  height: 16px;
  background-color: var(--lime-color);
  z-index: -1;
  transform: translateY(-10px);
  border-radius: 10px;
  position: absolute;
  bottom: 5px;
  left: -20px;
  width: calc(100% + 40px);
}

.hero-section {
  background: var(--base-bg);
}

.hero-section::before {
  position: absolute;
  content: '';
  height: 60vh;
  width: 60vh;
  background: radial-gradient(circle, rgba(203, 255, 70, 0.3) 0%, rgba(203, 255, 70, 0) 70%);
  bottom: -10%;
  left: -15%;
  pointer-events: none;
  z-index: 0;
}

.hero-section::after {
  position: absolute;
  content: '';
  height: 60vh;
  width: 60vh;
  background: radial-gradient(circle, rgba(245, 78, 0, 0.15) 0%, rgba(245, 78, 0, 0) 60%);
  top: -20%;
  right: -10%;
  pointer-events: none;
  z-index: 0;
}

.hero-bottom-inner {
    position: relative;
    display: block;
    width: 100%;
}
.hero-bottom-inner img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-bottom-img {
  max-width: 1130px;
  pointer-events: none;
  margin-top: auto;
}

.hero-bottom-img::after,
.hero-bottom-img::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 40%;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
}

.hero-bottom-img::after {
  background: url('../images/hero-bottom-after.webp') no-repeat left center;
  top: 0;
  left: 0;
}

.hero-bottom-img::before {
  background: url('../images/hero-bottom-inner-before.webp') no-repeat right bottom;
  bottom: 20px;
  right: 0;
}


.hero-bottom-img .hero-bottom-inner {
  max-width: 900px;
  margin-bottom: -35%;
}

.protein-badge {
  position: absolute;
  top: 25%;
  left: 8%;
  transform: rotate(-8deg);
  border-radius: 14px;
  text-align: left;
  background: var(--dark-black);
  padding: clamp(10px, 2vw, 16px) clamp(12px, 3vw, 20px);
  animation: floatProtein 4s ease-in-out infinite;
}

.info-text {
  font-size: clamp(10px, 2vw, 14px);
  color: var(--lime-color);
  font-weight: 700;
  letter-spacing: 1px;
}

.protein-badge span {
  color: var(--white);
  font-size: clamp(14px, 4vw, 26px);
}

.fresh-badge {
  position: absolute;
  top: 21%;
  right: 17%;
  background-color: #C1FF4D;
  color: #000;
  border-radius: 20px;
  font-size: clamp(12px, 2.5vw, 16px);
  transform: rotate(-10deg);
  letter-spacing: 0.5px;
  padding: clamp(3px, 1vw, 5px) clamp(8px, 1.5vw, 12px);
  font-weight: 600;
  animation: floatFresh 3s ease-in-out infinite 1s;
}

.bowl-badge {
  padding: clamp(8px, 2vw, 14px);
  bottom: 52%;
  right: 2%;
  border-radius: 10px;
  text-align: left;
  border: 1px solid var(--stoke);
  animation: floatBowl 3.5s ease-in-out infinite 0.5s;
}

@keyframes floatProtein {

  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }

  50% {
    transform: translateY(-12px) rotate(-8deg);
  }
}

@keyframes floatFresh {

  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }

  50% {
    transform: translateY(-10px) rotate(-10deg);
  }
}

@keyframes floatBowl {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* --- Marquee Section --- */
.marquee-section {
  background-color: var(--lime-color);
  padding: 14px 0;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid var(--mid-gray);
  border-bottom: 2px solid var(--mid-gray);
  position: relative;
  z-index: 10;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  animation: scrollMarquee 30s linear infinite;
}

.marquee-item {
  font-size: clamp(14px, 3vw, 24px);
  font-weight: 900;
  color: #000;
  padding: 0 15px;
  letter-spacing: 0.5px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.ti-player-play-custom {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z' /%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z' /%3E%3C/svg%3E") no-repeat center / contain;
}

.ti-sparkle-filled {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M11.537 1.635a1 1 0 0 1 1.45.545l.1.326l1.378 5.485l5.485 1.378a1 1 0 0 1 .326 1.836l-.326 .1l-5.485 1.378l-1.378 5.485a1 1 0 0 1 -1.836 .326l-.1 -.326l-1.378 -5.485l-5.485 -1.378a1 1 0 0 1 -.326 -1.836l.326 -.1l5.485 -1.378l1.378 -5.485a1 1 0 0 1 .545 -1.45z' /%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M11.537 1.635a1 1 0 0 1 1.45.545l.1.326l1.378 5.485l5.485 1.378a1 1 0 0 1 .326 1.836l-.326 .1l-5.485 1.378l-1.378 5.485a1 1 0 0 1 -1.836 .326l-.1 -.326l-1.378 -5.485l-5.485 -1.378a1 1 0 0 1 -.326 -1.836l.326 -.1l5.485 -1.378l1.378 -5.485a1 1 0 0 1 .545 -1.45z' /%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  vertical-align: -0.125em;
}


.how-it-work {
  position: relative;
}

.how-it-work::before {
  position: absolute;
  content: '';
  height: 150px;
  width: 150px;
  background: url('../images/how-it-before.webp') no-repeat;
  bottom: 8%;
  right: 2%;
  pointer-events: none;
  z-index: 0;
  animation: floatBowl 3.5s ease-in-out infinite 0.5s;
}

.how-card,
.testo-card {
  background-color: #232222;
  border: 1px solid #383636;
  padding: clamp(15px, 3vw, 30px);
  border-radius: clamp(12px, 3vw, 24px);
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.how-card:hover {
  background: #333333;
  border-color: #555453;
}

.how-card:hover p,
.how-card:hover .how-desc {
  color: var(--mist-color);
}

.how-card .icon-56 {
  height: 56px;
  width: 56px;
  border-radius: 10px;
}

.how-card p {
  color: var(--gray);
}

.number {
  color: rgb(255 255 255 / 7%);
}

/* What We Offer Section */
.what-we-offer {
  position: relative;
}

.what-we-offer::before,
.what-we-offer::after {
  position: absolute;
  content: '';
  height: 20%;
  width: 10%;
  background: url('../images/we-offer-before.webp') no-repeat;
  bottom: 0;
  right: 1%;
  pointer-events: none;
  z-index: 0;
  animation: floatBowl 3.5s ease-in-out infinite 0.5s;
}

.what-we-offer::after {
  height: 325px;
  width: 325px;
  background: url('../images/we-offer-after.webp') no-repeat;
  top: 0;
  left: -10%;
  animation: rotateImage 15s linear infinite;
}

@keyframes rotateImage {
  0% {
    transform: rotate(0deg);
  }

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

.offer-card {
  height: 100%;
  min-height: 460px;
  border-radius: clamp(12px, 3vw, 24px);
}

.offer-card img.offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.offer-card:hover {
  box-shadow: 0px 4px 12px 0px rgb(245 78 0 / 15%);
}

.offer-card:hover img.offer-img {
  transform: scale(1.05);
}

.offer-card:hover .offer-gradient {
  opacity: 1;
}

.offer-gradient {
  background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.5) 40%, rgba(17, 17, 17, 0) 100%);
  border-radius: 20px;
  opacity: 0;
}

.offer-badge,
.things-badge {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 300;
  letter-spacing: 0.5px;
  background: var(--dark-black);
  color: var(--lime-color);
  font-weight: 500;
}

.things-badge {
  background: var(--lime-color);
  color: #333;
}

.offer-card .mt-auto {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.offer-card:hover .mt-auto {
  opacity: 1;
  transform: translateY(0);
}

/* Transformation Journey Section */
.journey-card {
  min-height: 260px;
  border-radius: clamp(12px, 3vw, 24px);
  transition: transform 0.3s ease;
  padding: clamp(15px, 3vw, 30px);
}

.journey-card:hover {
  transform: translateY(-5px) rotate(-3deg);
}

.journey-number {
  font-size: 220px;
  line-height: 1;
  right: 20px;
  top: -5px;
  user-select: none;
  font-family: "Urbanist", sans-serif;
  font-weight: bold !important;
}

.opacity-5 {
  opacity: 0.05;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-15 {
  opacity: 0.15;
}

.opacity-25 {
  opacity: 0.25;
}

.line-camp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* See Our Dishes Section */
.see-our-dishes {
  background-color: var(--dark-black);
  position: relative;
  overflow: hidden;
}

.see-our-dishes .dishes-subtitle {
  display: inline-block;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lime-color);
  background: rgba(203, 255, 70, 0.12);
  border: 1px solid rgba(203, 255, 70, 0.15);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 14px;
  margin-bottom: 0;
}

.see-our-dishes::before,
.see-our-dishes::after {
  position: absolute;
  content: '';
  height: 30%;
  width: 20%;
  background: url('../images/our-dish-before.webp') no-repeat;
  background-size: contain;
  background-position: top right;
  top: 0;
  right: 2%;
  pointer-events: none;
  z-index: 0;
  animation: floatBowl 3.5s ease-in-out infinite 0.5s;
}

.see-our-dishes::after {
  background: url('../images/our-dish-after.webp') no-repeat;
  background-size: contain;
  background-position: bottom left;
  top: unset;
  bottom: 2%;
  left: 0;
  animation: floatBowl 3.5s ease-in-out infinite 0.5s;
}

.dish-card {
  border-radius: clamp(12px, 3vw, 24px);
  overflow: hidden;
  display: block;
}

.dish-card img {
  transition: transform 0.4s ease;
}

.dish-card:has(.play-btn)::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.50);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.7);
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.dish-card:hover img {
  transform: scale(1.05);
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 6px solid var(--lime-color);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime-color);
  font-size: 28px;
  transition: all 0.3s ease;
  z-index: 2;
}

.plan-card {
  padding: clamp(20px, 4vw, 40px);
  border-radius: clamp(12px, 3vw, 24px);
  border: 1px solid #D4D0C8;
}

.meal-match-quiz h3 {
  font-size: clamp(24px, 3vw, 36px);
}

.answer-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--charcoal);
  border-color: var(--mid-gray);
  border-radius: 14px;
}

.answer-btn:hover {
  background: var(--charcoal);
  border-color: var(--mid-gray);
}

.answer-btn:focus {
  background: rgb(203 255 70 / 8%);
  border-color: var(--lime-color);
}

.answer-btn:focus i {
  color: var(--lime-color);
}

.que-box {
  border-radius: clamp(12px, 3vw, 24px);
  min-height: 450px;
  height: 100%;
  overflow: hidden;
}

.que-box .carousel,
.que-box .carousel-inner {
  height: 100%;
}

.que-box .carousel-item {
  padding: clamp(20px, 4vw, 40px);
  position: relative;
  height: 100%;
}

.meal-match-quiz {
  position: relative;
}

.meal-match-quiz::before {
  position: absolute;
  content: '';
  height: clamp(400px, 50vw, 500px);
  width: clamp(400px, 50vw, 500px);
  background: radial-gradient(circle, rgba(245, 78, 0, 0.15) 0%, rgba(245, 78, 0, 0) 60%);
  top: -18%;
  right: 2%;
  pointer-events: none;
  z-index: 0;
}

.select-plan {
  height: 70px;
}

@keyframes floatBadge {
  0% {
    transform: translateY(0px) rotate(355deg);
  }

  50% {
    transform: translateY(-6px) rotate(353deg);
  }

  100% {
    transform: translateY(0px) rotate(355deg);
  }
}

.story-line-badge {
  background: var(--lime-color);
  padding: 6px 13px;
  font-size: clamp(12px, 2vw, 16px);
  border-radius: 50px;
  font-weight: 600;
  top: 6px;
  left: 50px;
  transform: rotate(355deg);
  position: absolute;
  animation: floatBadge 3s ease-in-out infinite;
}


.year-badge {
  height: clamp(100px, 15vw, 148px);
  width: clamp(100px, 15vw, 148px);
  background: var(--dark-black);
  border: 5px solid var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -20px;
  right: -20px;
  animation: rotateImage 15s linear infinite;
}

/* Custom Tabler Icon: ti-star-filled */
.ti-star-filled::before {
  content: "" !important;
  display: inline-block !important;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8.243 7.34l-6.38 .925l-.113 .023a1 1 0 0 0 -.44 1.684l4.622 4.499l-1.09 6.355l-.013 .11a1 1 0 0 0 1.464 .944l5.706 -3l5.693 3l.1 .046a1 1 0 0 0 1.352 -1.1l-1.091 -6.355l4.624 -4.5l.078 -.085a1 1 0 0 0 -.633 -1.62l-6.38 -.926l-2.852 -5.78a1 1 0 0 0 -1.794 0l-2.853 5.78z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8.243 7.34l-6.38 .925l-.113 .023a1 1 0 0 0 -.44 1.684l4.622 4.499l-1.09 6.355l-.013 .11a1 1 0 0 0 1.464 .944l5.706 -3l5.693 3l.1 .046a1 1 0 0 0 1.352 -1.1l-1.091 -6.355l4.624 -4.5l.078 -.085a1 1 0 0 0 -.633 -1.62l-6.38 -.926l-2.852 -5.78a1 1 0 0 0 -1.794 0l-2.853 5.78z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  vertical-align: -0.125em;
}

.testimonials-section {
  position: relative;
}

.testimonials-section::before,
.testimonials-section::after {
  position: absolute;
  content: '';
  height: 150px;
  width: 150px;
  background: url('../images/how-it-before.webp') no-repeat;
  background-size: contain;
  bottom: -4%;
  right: 2%;
  pointer-events: none;
  z-index: 0;
  animation: floatBowl 3.5s ease-in-out infinite 0.5s;
}

.testimonials-section::after {
  top: 10%;
  left: 3%;
}

.testo-profile {
  height: 27px;
  width: 27px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testo-card p {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.delivery-areas .badge {
  padding: 10px;
}

.delivery-areas .badge.bg-success {
  background: #E6F8EE;
  color: #2ECC71 !important;
}

.map-logo {
  max-width: 80px;
}

.launching-soon .badge {
  border-style: dashed !important;
}

.ti-point-filled::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none' /%3E%3Cpath d='M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z' /%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none' /%3E%3Cpath d='M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z' /%3E%3C/svg%3E");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  vertical-align: -0.125em;
}

/* Custom Leaflet Map Markers */
.custom-map-icon {
  background: transparent;
  border: none;
}

.map-city-label {
  background: rgba(255, 255, 255, 0.85);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-top: -2px;
}

.kitchen-marker-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1000;
}

.kitchen-marker-pill {
  background: var(--dark-black);
  color: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.kitchen-marker-bottom {
  background: var(--primary);
  padding: 4px 6px;
  z-index: 1;
}

.kitchen-marker-bottom img {
  object-fit: contain;
}

.kitchen-pin-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  height: 34px;
  width: 34px;
  background: var(--white);
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: shadow-pulse 2s infinite;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 78, 0, 0.7);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(245, 78, 0, 0);
  }
}

.icon-46 {
  height: 46px;
  width: 46px;
  border-radius: 14px;
}

.deliver-card {
  padding: clamp(24px, 2vw, 38px);
}

.faint-map {
  max-height: 405px;
  margin-top: -75px;
  overflow: hidden;
}

.cta-section .bg-success {
  background: #00591C url(../images/cta-mask.webp) no-repeat center !important;
  background-size: cover !important;
  border-radius: clamp(20px, 4vw, 45px);
}

.insta-box {
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  position: relative;
}

.insta-box::after {
  position: absolute;
  content: '';
  inset: 0;
  background: rgb(26 26 26 / 40%);
}

.insta-text-box.insta-box::after {
  display: none;
}

.insta-box img {
  transition: transform 0.4s ease;
}

.insta-box:hover img {
  transform: scale(1.08);
}

.insta-text-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-circle {
  width: clamp(85px, 10vw, 107px);
  height: clamp(85px, 10vw, 107px);
  border: 1px solid var(--lime-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.insta-circle h4,
.insta-circle strong {
  position: absolute;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* Meal Section */
.meal-card {
  border-radius: 16px;
  border: 1px solid var(--stoke);
  overflow: hidden;
}

.meal-option input:checked+.meal-card {
  border-color: var(--primary);
}

.meal-card .meal-image {
  height: 160px;
}

.meal-image .radio-circle {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.24);
  border: 2px solid #FFFFFF;
  backdrop-filter: blur(10px);
  border-radius: 100%;
  position: absolute;
  top: 10px;
  right: 10px;
}

.meal-image .radio-circle>i {
  display: none;
}

.meal-option input:checked+.meal-card .radio-circle {
  background: #ff6b2c;
  border-color: #ff6b2c;
  color: #fff;
}

.meal-option input:checked+.meal-card .radio-circle>i {
  display: block;
}

.meal-image>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meal-image .meal-badge {
  font-size: 12px;
  padding: 4px 8px;
  background: var(--dark-black);
  color: var(--lime-color);
  box-shadow: 0px 4px 4px rgba(26, 26, 26, 0.14);
  border-radius: 100px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.meal-card .meal-content {
  padding: 11px;
}

.meal-content .meal-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--dark-black);
}

.meal-content .meal-desc {
  font-size: 12px;
  color: var(--dark-gray);
}

.meal-content .nutrition {
  border-top: 1px solid #F5F0E8;
  padding-top: 14px;
  margin-top: 14px;
}

.nutrition .nutrition-box {
  width: calc(33.33% - 3px);
  background-color: #F5F0E8;
  border-radius: 4px;
  padding: 4px;
}

.nutrition-box h6 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.nutrition-box p {
  font-size: 12px;
  font-weight: 500;
  color: var(--dark-gray);
}

.cs-protein .cp-box {
  padding: 12px 16px;
  border: 1px solid #D4D0C8;
  color: #1A1A1A;
  border-radius: 8px;
  gap: 6px;
  font-weight: 500;
}

.cs-protein .cp-box.active {
  background: rgba(245, 78, 0, 0.06) !important;
  border-color: var(--primary);
  color: var(--primary);
}

.cs-protein .cp-box>i {
  display: none;
}

.cs-protein .cp-box.active>i {
  display: block;
}

.extra-add-ons .etr-ons-item {
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid #D4D0C8;
  border-radius: 8px;
  max-width: 160px;
  min-width: 160px;
}

.etr-ons-intro>h6 {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
}

.etr-ons-intro>p {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
}

.person-counter {
  padding: 14px 14px;
  background: #FFFFFF;
  border: 1px solid #D4D0C8;
  border-radius: 100px;
  max-width: 230px;
}

.person-counter .counter-btn {
  height: 44px;
  width: 44px;
  background-color: #EDEBE4;
  border: 0px;
  font-size: 22px;
  border-radius: 100%;
}

.counter-value {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
}

.counter-label {
  color: #999999;
}

.meal-foot {
  border-top: 1px solid #EDEBE4;
  margin-top: 50px;
  padding-top: 30px;
}

.input-group>.form-control {
  padding: 10px 14px;
  background: #FFFFFF;
  border: 1px solid #EDEBE4;
  border-radius: 6px !important;
  box-shadow: none;
  outline: 0;
}

.input-group>.input-group-addon {
  color: var(--gray);
  padding: 0px;
  background: transparent;
  border: 0px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9;
}

.datepicker.datepicker-dropdown {
  width: 280px;
  border: 1px solid #EDEBE4;
  z-index: 9999 !important;
}

.datepicker table tr td.active.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active[disabled] {
  background: var(--primary) !important;
}

.datepicker.datepicker-dropdown .table-condensed {
  width: 100%;
}

.datepicker.datepicker-dropdown .table-condensed tr td,
.datepicker.datepicker-dropdown .table-condensed tr th {
  font-size: 16px;
  padding: 4px;
}

.ord-cutoff {
  padding: 12px;
  background: #F9F7F3;
  border-radius: 6px;
}

.ord-cutoff ul {
  padding-left: 18px;
  margin: 0px;
}

.ord-cutoff ul>li {
  margin-bottom: 6px;
  color: #1A1A1A;
}

.ord-cutoff ul>li::marker {
  color: #999999;
}

.ord-cutoff ul>li:last-child {
  margin-bottom: 0px;
}

.dlcdl-intro .accordion-button {
  box-shadow: none;
  outline: 0 !important;
  background: transparent;
  border-bottom: 1px solid rgb(237 235 228 / 50%);
}

.dlcdl-intro .accordion-button {
  box-shadow: none;
  outline: 0 !important;
  background: transparent;
  border-bottom: 1px solid rgb(237 235 228 / 50%);
  font-size: 14px;
  color: var(--primary);
}

.ord-cutoff .ord-cut-item {
  margin-bottom: 12px;
}

.ord-cutoff .ord-cut-item:last-child {
  margin-bottom: 0px;
}

.ordcut-budge {
  padding: 5px 10px;
  background: rgba(0, 89, 28, 0.06);
  border-radius: 100px;
  font-size: 14px;
  color: #00591C;
}

.badge.rounded-pill {
  padding: clamp(8px, 1vw, 12px) clamp(10px, 1.5vw, 14px);
}

.badge.rounded-pill.text-bg-success {
  background: rgba(46, 204, 113, 0.1) !important;
  color: #2ECC71 !important;
}

.sl-plans>div {
  margin-bottom: 8px;
}

.sl-plans>div:last-child {
  margin-bottom: 0px;
}

.dlcdl-sidebar hr {
  border-color: #EDEBE4;
  margin: 18px 0px;
  opacity: 1;
}

.meal-foot.ord-cutoff-foot {
  margin-top: 20px;
  padding-top: 20px;
  max-width: 500px;
  width: 100%;
}

.dlcdl-sidebar .position-sticky {
  top: 100px;
}

.order-smry>div {
  margin-bottom: 10px;
}

.order-smry>div:last-child {
  margin-bottom: 0px;
}

.order-smry-line {
  margin: 12px 0px !important;
  border-color: rgb(102 102 102 / 50%) !important;
}

.payment-warning {
  padding: 10px;
  background: #252525;
  border-radius: 6px;
  color: #F39C12;
}

.payment-head .etrfer-ico {
  height: 44px;
  width: 44px;
  background-color: rgb(243 156 18 / 10%);
  border-radius: 100%;
}

.payment-tabs .send-payment {
  border: 1px solid #EDEBE4;
  border-radius: 6px;
}

.send-payment .sp-head {
  padding: 20px 20px;
}

.send-payment .sp-foot {
  padding: 12px 20px;
  background: rgba(245, 78, 0, 0.04);
  border-top: 1px solid #EDEBE4;
}

.payment-tabs .how-to-pay {
  padding: 12px;
  background: rgba(0, 89, 28, 0.06);
  border-radius: 6px;
}

.how-to-pay ol {
  padding-left: 18px;
}

.how-to-pay ol>li {
  margin-bottom: 8px;
}

.how-to-pay ol>li:last-child {
  margin-bottom: 0px;
}

.how-to-pay ol>li>ul>li {
  margin-bottom: 4px;
  list-style: lower-alpha;
}

.how-to-pay ol>li>ul>li:last-child {
  margin-bottom: 0px;
}

.etrfer-card {
  padding: 16px;
  border: 1px solid #EDEBE4;
  border-radius: 6px;
}

.payment-sts .odr-status {
  padding: 16px;
  background: rgba(245, 240, 232, 0.5);
  border-radius: 6px;
}

.theme-card .sts-ico {
  height: 100px;
  width: 100px;
  background-color: #CBFF46;
  border-radius: 100%;
}

.theme-card .sts-ico.sts-error {
  background-color: #E74C3C;
}

.payment-sts {
  max-width: 600px;
  margin: 0px auto;
}

.payment-sts .acc-created {
  display: inline-block;
  padding: 5px 10px;
  background: rgba(0, 89, 28, 0.06);
  border-radius: 100px;
  font-size: 14px;
  color: #00591C;
}

.payment-sts .acc-created.acc-error {
  background-color: rgb(231 76 60 / 6%);
}

.sts-foot .btn {
  width: calc(50% - 5px);
}

.payment-sts .odr-sts {
  padding: 14px;
  background: rgba(245, 240, 232, 0.5);
  border-radius: 6px;
}

.odr-sts>div {
  margin-bottom: 14px;
}

.odr-sts>div:last-child {
  margin-bottom: 0px;
}

/* Meal Section */
/* Contact Section */
.cnt-card {
  padding: clamp(15px, 3vw, 30px);
  background: #FFFFFF;
  border: 1px dashed #D4D0C8;
  border-radius: clamp(12px, 3vw, 24px);
}

.cnt-card>.cnt-ico {
  background-color: #EEFFB3;
  border-radius: 8px;
  height: 50px;
  width: 50px;
  margin-bottom: 40px;
  font-size: 30px;
  color: #333333;
}

/* Contact Section */
/* Blog Section */
.blog-item {
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.04));
  border-radius: clamp(12px, 3vw, 24px);
  overflow: hidden;
  border: 1px solid var(--stoke);
}

.blog-media>img {
  width: 100%;
  aspect-ratio: 460 / 358;
  object-fit: cover;
  image-rendering: crisp-edges;
}

.blog-intro .blog-arrow {
  height: 54px;
  width: 54px;
  background-color: #CBFF46;
  outline: 6px solid #ffffff;
  color: #1A1A1A;
  border-radius: 100%;
  font-size: 34px;
  position: absolute;
  top: -28px;
  right: 28px;
}

.blog-item .blog-intro {
  padding: clamp(15px, 2vw, 30px);
}

.post-media>img {
  border: 1px solid #D4D0C8;
  border-radius: clamp(12px, 3vw, 24px);
}

.post-article ul {
  padding-left: 18px;
  margin: 0px;
}

.post-article ul>li {
  margin-bottom: 10px;
}

.post-article ul>li:last-child {
  margin-bottom: 0px;
}

.artical-post hr {
  opacity: 1;
  margin: 40px 0px;
  border-color: #D4D0C8;
}

.post-area .post-sidebar {
  position: sticky;
  top: 110px;
}

.related-post-card {
  border-radius: clamp(12px, 3vw, 24px);
}

.related-main>.related-post {
  border-bottom: 1px solid #EDEBE4;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.related-main>.related-post:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.related-main>.related-post>.related-thumb {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 14px;
}

/* Blog Section */
/* Full Menu */
.fl-menu-text>h1 {
  font-size: clamp(40px, 5vw, 76px);
  line-height: normal;
}

.fl-menu-media>div>img {
  border: 14px solid #F5F0E8;
  filter: drop-shadow(0px 4px 105px rgba(166, 163, 163, 0.6));
}

.badge-card.badge-top {
  padding: 12px 14px;
  border: 1px solid #D4D0C8;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.14);
  border-radius: 14px;
  position: absolute;
  top: 60px;
  left: -80px;
  line-height: normal;
  z-index: 1;
}

.badge-card.badge-right {
  padding: 12px 14px;
  background-color: #00591C;
  border: 1px solid #D4D0C8;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.14);
  border-radius: 100px;
  transform: rotate(4.5deg);
  position: absolute;
  top: -20px;
  right: -50px;
  line-height: normal;
  z-index: 1;
}

.badge-card.badge-bottom {
  padding: 12px 14px;
  background-color: #CBFF46;
  border: 1px solid #D4D0C8;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.14);
  border-radius: 100px;
  transform: rotate(-21.33deg);
  position: absolute;
  bottom: 18px;
  right: -78px;
}

.menu-wrapper>.menu-row {
  border-bottom: 1px solid #EDEBE4;
}

.menu-wrapper>.menu-row:last-child {
  border-bottom: 0px;
}

.menu-wrapper .category-box {
  padding: 0px 40px;
}

.category-wrapper .category-item {
  width: calc(20% - 7px);
  border-left: 1px solid #EDEBE4;
  padding: 30px 15px;
}

.category-item>a {
  width: 168px;
  height: 180px;
  transform: skewX(-5deg);
  box-shadow: 0px 4px 12px rgba(26, 26, 26, 0.15);
  border-radius: 20px;
  transition: all 0.3s;
  z-index: 1;
}

.category-item:hover>a {
  transform: translateY(-5px) skewX(-5deg);
}

.category-item>a::before {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.2) 61.67%, #1A1A1A 92.78%);
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.category-item>a>img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.category-item>a>span {
  position: absolute;
  bottom: 12px;
  left: 0px;
  right: 0px;
}

/* Full Menu */
/* FAQ */
.faq-sidebar .faq-nav {
  padding: 16px;
  border: 1px solid #D4D0C8;
  border-radius: 16px;
}

.faq-sidebar {
  position: sticky;
  top: 110px;
  align-self: flex-start;
  z-index: 10;
}

body.admin-bar .faq-sidebar {
  top: 142px;
}

.faq-sec {
  scroll-margin-top: 120px;
}

body.admin-bar .faq-sec {
  scroll-margin-top: 150px;
}

.faq-sec .faq-title-span {
  transition: color 0.3s ease;
}

.faq-nav>ul>li a {
  padding: 20px 12px;
  background: #ffffff;
  border-radius: 14px;
  color: #333333;
  line-height: normal;
  transition: all 0.3s;
}

.faq-nav>ul>li.active a,
.faq-nav>ul>li:hover a {
  background-color: rgb(245 78 0 / 6%);
  color: #F54E00;
}

.faq-qts {
  padding: 24px 20px;
  border-radius: clamp(12px, 3vw, 24px);
}

.faq-sec .accordion-item {
  background: transparent;
  border: 0px;
  border-bottom: 1px solid #D4D0C8;
  border-radius: 0px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.faq-sec .accordion-item:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.faq-sec .accordion-header .accordion-button {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: #1A1A1A;
  padding: 0px;
  background: transparent;
  box-shadow: none;
  outline: 0;
}

.faq-sec .accordion-body {
  padding: 0px;
  margin-top: 16px;
}

.faq-sec .accordion-body ul,
.faq-sec .accordion-body ol {
  padding-left: 18px;
}

.faq-sec .accordion-body ul>li,
.faq-sec .accordion-body ol>li {
  font-size: 16px;
  color: #999999;
  margin-bottom: 6px;
}

.faq-sec .accordion-body ul>li:last-child,
.faq-sec .accordion-body ol>li:last-child {
  margin-bottom: 0px;
}

.faq-sec .accordion-body>p {
  margin-bottom: 8px;
  font-size: 18px;
  color: #999999;
}

.faq-sec .accordion-body>p:last-child {
  margin-bottom: 0px;
}

/* FAQ */
/* Auth Section */
.auth-modal .modal-header {
  background-color: #1A1A1A;
  padding: 24px 15px;
  margin: 0px;
  border-radius: 12px 12px 0px 0px;
}

.auth-modal .modal-header .btn-close {
  height: 40px;
  width: 40px;
  background-color: rgb(51 51 51);
  backdrop-filter: blur(2px);
  border-radius: 100%;
  color: #ffffff;
  position: absolute;
  top: 12px;
  right: 12px;
  margin: 0px;
}

.auth-modal .modal-header .mh-inner {
  max-width: 360px;
  margin: 0px auto;
}

.auth-modal .modal-content {
  border: 1px solid #ffffff;
  border-radius: 12px;
}

.auth-modal .modal-body {
  padding: 24px 24px;
}

.iti--show-flags {
  width: 100%;
}

.iti__search-input {
  padding: 12px 12px 12px 30px;
  border-bottom: 1px solid #EDEBE4;
}

.auth-otp .form-control {
  padding-right: 60px;
}

.auth-otp>span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
}

/* Auth Section */

/* Dashboard CSS */
.dashboard-user {
  height: 100%;
  min-height: calc(100vh - 83px);
}

.wlc-box {
  background-image: url(../images/bg/welcome.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: clamp(20px, 4vw, 40px);
  border-radius: 16px;
}

.das-sidebar>.position-sticky {
  top: 110px;
}

.das-sidebar {
  width: 280px;
}

.das-main {
  width: calc(100% - 304px);
}

.das-sidebar .sidebar {
  padding: 16px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
}

.sidebar .das-author {
  height: 34px;
  width: 34px;
  background-color: #CBFF46;
  border-radius: 100%;
}

.das-sidebar .sidebar>.nav {
  gap: 8px;
  border-top: 1px solid #EDEBE4;
  padding-top: 16px;
  margin-top: 16px;
}

.das-sidebar .sidebar>.nav>a {
  padding: 10px 12px;
  color: #666666;
  gap: 10px;
  border-radius: 6px;
  transition: all 0.3s;
}

.das-sidebar .sidebar>.nav>a.active,
.das-sidebar .sidebar>.nav>a:hover {
  background: #FFF5F0;
  color: var(--primary);
}

.das-sidebar .sidebar>.nav>hr {
  border-color: #EDEBE4;
  opacity: 1;
  margin: 0px;
}

.help-box {
  background-color: #00591C;
  background-image: url(../images/bg/help-shape.webp);
  background-size: cover;
  background-position: center center;
  border-radius: 6px;
  padding: 24px 24px;
}

.stat-card {
  padding: 24px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid #D4D0C8;
  border-radius: 14px;
}

.stat-card>div {
  padding-left: 15px;
}

.stat-card>div::before {
  content: "";
  width: 5px;
  height: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.stat-card.card-green {
  background: linear-gradient(180deg, #D3FFE6 0%, #FFFFFF 100%);
}

.stat-card.card-green>div::before {
  background-color: #2ECC71;
}

.stat-card.card-lime {
  background: linear-gradient(180deg, #EFFFC5 0%, #FFFFFF 100%);
}

.stat-card.card-lime>div::before {
  background-color: var(--lime-color);
}

.stat-card.card-orange {
  background: linear-gradient(180deg, #FFE2D4 0%, #FFFFFF 100%);
}

.stat-card.card-orange>div::before {
  background-color: var(--primary);
}

.stat-card.card-yellow {
  background: linear-gradient(180deg, #FFE3B7 0%, #FFFFFF 100%);
}

.stat-card.card-yellow>div::before {
  background-color: #F39C12;
}

.info-card {
  border: 1px solid #EDEBE4;
  box-shadow: 0px 4px 12px #EFEFEF;
  border-radius: 14px;
}

.badge.badge-renew {
  padding: 8px 10px;
  background: rgba(0, 89, 28, 0.08);
  color: #00591C;
  border-radius: 100px;
}

.activity-card {
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.04);
  border-radius: 14px;
}

.theme-table {
  min-width: max-content;
  width: 100%;
}

.theme-table thead {
  background-color: rgb(245 240 232 / 50%);
  border-bottom: 1px solid #EAECF0;
}

.theme-table thead>tr>th {
  padding: 12px 20px;
  background: transparent;
}

.theme-table tbody>tr {
  border-bottom: 1px solid #EAECF0;
}

.theme-table tbody>tr:last-child {
  border-bottom: 0px;
}

.theme-table tbody>tr>td {
  color: #666666;
  padding: 22px 20px;
  vertical-align: middle;
  border: 0px;
}

.theme-table tbody>tr>td.text-red {
  color: #E74C3C;
}

.status-delivered {
  background: rgba(46, 204, 113, 0.12);
}

.status-scheduled {
  background-color: rgb(243 156 18 / 12%);
}

.status-preparing {
  background-color: rgb(253 126 20 / 12%);
}

.status-error {
  background-color: rgb(231 76 60 / 12%);
}

.status-refunded {
  background-color: rgb(148 60 231 / 12%);
  color: #943CE7;
}

.status-dispatched {
  background-color: rgba(0, 123, 255, 0.12);
  color: #007BFF;
}

.status-skipped {
  background-color: rgba(153, 153, 153, 0.12);
  color: #999999;
}

.activity-foot {
  padding: 14px 24px;
  border-top: 1px solid #EAECF0;
}

.form-select {
  background-image: url(../images/icon/arrow-down.svg);
  box-shadow: none !important;
  outline: 0 !important;
  border-radius: 8px;
  border-color: #DDDDDD !important;
  padding: 8px 32px 8px 8px;
}

.no-records-card {
  padding: 60px 15px;
}

.no-records-card>p {
  max-width: 340px;
}

.no-records-card>p.max-460 {
  max-width: 460px;
}

.pagination {
  gap: 6px;
}

.pagination .page-link {
  height: 32px;
  width: 32px;
  border: 1px solid #EDEBE4;
  border-radius: 8px;
  color: #1A1A1A;
  transition: all 0.3s;
}

.pagination li.page-item.active .page-link,
.pagination li.page-item:hover .page-link {
  background-color: var(--primary);
  color: var(--white);
}

.pagination li.page-item.disabled .page-link {
  border: 0px;
  background: transparent;
  color: #333333;
}

.avatar-container>img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 100%;
}

.info-pill {
  background: rgba(237, 235, 228, 0.5);
}

.logout-modal .modal-dialog {
  max-width: 400px;
}

.logout-modal .modal-dialog>.modal-content {
  padding: clamp(20px, 4vw, 40px) !important;
}

.card-title-area {
  border-bottom: 1px solid #EDEBE4;
}

.card-title-area>i {
  height: 24px;
  width: 24px;
  display: block;
  background-color: rgb(245 78 0 / 12%);
  color: #F54E00;
  border-radius: 4px;
}

.detail-row {
  border-bottom: 1px solid #EDEBE4;
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.detail-label {
  flex-shrink: 0;
  white-space: nowrap;
}

.detail-row:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.address-box {
  background-color: rgb(245 78 0 / 6%);
  border-radius: 10px;
}

.member-box {
  border: 1px solid #EDEBE4;
  border-radius: 14px;
}

.diet-badge {
  background-color: #EEFFB3;
  color: #00591C;
  border-radius: 100px;
}

.reorder-banner {
  background-image: url(../images/bg/order-shape.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 14px;
}

.progress {
  background-color: #F5F0E8;
  height: 8px;
  border-radius: 100px;
}

.progress>.progress-bar {
  background-color: #00591C;
}

.schedule-line {
  border-color: #EDEBE4;
  opacity: 1;
}

.schedule-accordion {
  gap: 12px;
}

.schedule-accordion .accordion-item {
  border: 1px solid #EDEBE4;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.04);
  border-radius: 14px;
  overflow: hidden;
}

.schedule-accordion .accordion-button {
  background: rgb(237 235 228 / 30%) !important;
  box-shadow: none;
}

.schedule-accordion .accordion-button:not(.collapsed) {
  background-color: rgb(245 78 0 / 14%) !important;
}

.schedule-accordion .schedule-item {
  border: 1px solid #EDEBE4;
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 12px;
}

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

.accordion-button::after {
  background-image: url(../images/icon/arrow-down.svg) !important;
  background-size: 18px !important;
  background-position: center center;
}

.notice-alert {
  background: rgba(243, 156, 18, 0.06);
  border: 1px solid rgba(243, 156, 18, 0.5);
  border-radius: 6px;
}

.geo-icon-box {
  height: 48px;
  width: 48px;
  background-color: #00591C;
  border-radius: 12px;
}

.address-preview-box {
  background: rgba(245, 240, 232, 0.8);
  border-radius: 6px;
}

/* Dashboard CSS */

/* Footer Section */
.footer-section {
  position: relative;
  background: url('../images/footer-bg.webp') center;
  background-size: contain;
  border-top: 1px solid var(--primary);
}

.footer-logo {
  max-width: 120px;
  height: auto;
}

.footer-title {
  font-size: clamp(40px, 6vw, 72px);
}

.footer-link {
  color: #F5F0E8;
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-link.active {
  color: var(--primary);
}

.footer-link:hover {
  color: var(--primary);
}

.footer-text {
  color: #F5F0E8;
  font-size: 16px;
}

.footer-form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  color: var(--gray);
  padding: 0.5rem 0 1rem;
  box-shadow: none !important;
}

.footer-form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.footer-form-control:focus {
  background: transparent;
  color: #fff;
  border-color: var(--primary);
}

.position-relative:focus-within .footer-submit-btn,
.wpcf7-form-control-wrap:focus-within~.footer-submit-btn,
.footer-form-control:focus~.footer-submit-btn {
  background: var(--primary) !important;
  color: #fff !important;
}

.footer-submit-btn {
  background: var(--gray);
  border: none;
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: absolute;
  right: 0;
  top: 22px;
  transform: translateY(-50%);
  z-index: 5;
}

.footer-submit-btn i {
  font-size: 16px;
  line-height: 1;
  display: inline-block;
}

.footer-submit-btn:hover {
  background: var(--lime-color);
  color: var(--dark-black);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: white;
  text-decoration: none;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary);
  color: white;
}

.social-icon.active {
  background: var(--primary);
}

.footer-bottom-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: white;
}

#footerMap {
  border-radius: 8px;
  overflow: hidden;
  height: 205px;
}

.ti-rocket-custom {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23c)'%3E%3Cpath d='M8 10.0013V13.3346C8 13.3346 10.02 12.968 10.6667 12.0013C11.3867 10.9213 10.6667 8.66797 10.6667 8.66797' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1.66699 14.3355C1.66699 14.3355 2.00033 11.8422 3.00033 11.0022C3.27424 10.7713 3.62376 10.6498 3.98181 10.6609C4.33985 10.6719 4.6812 10.8148 4.94033 11.0622C5.46699 11.5822 5.47366 12.4422 5.00033 13.0022C4.16033 14.0022 1.66699 14.3355 1.66699 14.3355Z' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6 7.99886C6.35476 7.07848 6.80147 6.19624 7.33333 5.36553C8.11012 4.12352 9.19175 3.1009 10.4753 2.39492C11.7589 1.68895 13.2018 1.32311 14.6667 1.3322C14.6667 3.14553 14.1467 6.3322 10.6667 8.66553C9.82448 9.19782 8.93114 9.64449 8 9.99886L6 7.99886Z' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.00033 7.99778H2.66699C2.66699 7.99778 3.03366 5.97778 4.00033 5.33111C5.08033 4.61111 7.33366 5.36445 7.33366 5.36445' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='c'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23c)'%3E%3Cpath d='M8 10.0013V13.3346C8 13.3346 10.02 12.968 10.6667 12.0013C11.3867 10.9213 10.6667 8.66797 10.6667 8.66797' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1.66699 14.3355C1.66699 14.3355 2.00033 11.8422 3.00033 11.0022C3.27424 10.7713 3.62376 10.6498 3.98181 10.6609C4.33985 10.6719 4.6812 10.8148 4.94033 11.0622C5.46699 11.5822 5.47366 12.4422 5.00033 13.0022C4.16033 14.0022 1.66699 14.3355 1.66699 14.3355Z' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6 7.99886C6.35476 7.07848 6.80147 6.19624 7.33333 5.36553C8.11012 4.12352 9.19175 3.1009 10.4753 2.39492C11.7589 1.68895 13.2018 1.32311 14.6667 1.3322C14.6667 3.14553 14.1467 6.3322 10.6667 8.66553C9.82448 9.19782 8.93114 9.64449 8 9.99886L6 7.99886Z' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.00033 7.99778H2.66699C2.66699 7.99778 3.03366 5.97778 4.00033 5.33111C5.08033 4.61111 7.33366 5.36445 7.33366 5.36445' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='c'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  vertical-align: -0.125em;
}


/* 404 Page  */

.rough-text {
  font-family: "Schibsted Grotesk", sans-serif;
  color: var(--dark-black);
  filter: url(#roughEdge);
  padding: 10px;
  display: inline-block;
  font-size: clamp(8rem, 20vw, 20rem);
  line-height: 1;
  z-index: 2;
  font-weight: 800;
}

.marquee-font strong {
  font-family: var(--schibsted);
  color: rgba(237, 235, 228, 0.7);
}

.maintanance-marquee strong {
  color: rgba(237, 235, 228, 0.02);
}

.clock-face img {
  max-width: clamp(150px, 25vw, 350px);
}

.bg-marquee-container {
  display: inline-block;
  white-space: nowrap;
  animation: slideBackground 80s linear infinite;
  will-change: transform;
}

@keyframes slideBackground {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.help-section {
  background: #00591C;
}

.maintain-process.progress {
  height: 16px;
  background: var(--charcoal);
  border-radius: 20px;
}

.maintain-details {
  max-width: 540px;
  width: 100%;
  margin: auto;
  position: relative;
}

.maintain-details::after,
.maintain-details::before {
  position: absolute;
  content: '';
  height: 50%;
  width: 50%;
  pointer-events: none;
  z-index: 0;
}

.maintain-details::before {
  background: url('../images/maintanance-before.webp') no-repeat center center;
  background-size: contain;
  bottom: -18%;
  right: -28%;
}

.maintain-details::after {
  background: url('../images/maintanance-after.webp') no-repeat center center;
  background-size: contain;
  top: -27%;
  left: -24%;
}

.maintain-page {
  position: relative;
  min-height: 100vh;
}

.maintain-page::after,
.maintain-page::before {
  position: absolute;
  content: '';
  pointer-events: none;
}

.maintain-page::before {
  height: 25%;
  width: 10%;
  background: url('../images/how-it-before.webp') no-repeat center center;
  background-size: contain;
  top: 20%;
  right: -5%;
  z-index: 1;
}

.maintain-page::after {
  height: 25%;
  width: 12%;
  background: url('../images/maintain-after.webp') no-repeat center center;
  background-size: contain;
  top: 10%;
  left: -5%;
}

.maintain-process .progress-bar {
  background-color: var(--lime-color);
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
  animation: progress-bar-stripes 1s linear infinite reverse, fillProgress 3s linear infinite;
}

@keyframes fillProgress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* wordpress css */

.how-desc {
  color: var(--gray);
}

.how-card.how-desc.text-stone {
  color: var(--stone-color) !important;
}

.how-desc strong {
  color: #D4D0C8;
}

.post-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark-gray);
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  font-weight: 600;
  line-height: 1.4;
  color: var(--dark-black);
  margin: 1.5rem 0 1rem;
}

.post-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-black);
}

.post-content h5 {
  font-size: 14px;
  font-weight: 500;
  margin: 1.5rem 0 .75rem;
  color: var(--dark-gray);
}


.post-content p {
  margin-bottom: 1rem;
}

.post-content img {
  width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem 0;
  border: 1px solid #D4D0C8;
  border-radius: clamp(12px, 3vw, 24px);
}

.post-content ul,
.post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.post-content li {
  margin-bottom: 10px;
}

.post-content ul>li:last-child {
  margin-bottom: 0px;
}

.post-content a {
  color: var(--primary);
  text-decoration: none;
}

/* Location Eligibility Modal Custom Styling to Match Figma Mockup */
#eligibilityModal .modal-dialog {
  max-width: 620px !important;
  /* Constrain size to match Figma card ratio */
}

#eligibilityModal .modal-content {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  overflow: hidden;
  background-color: #ffffff;
  padding: 0;
  border: 1px solid #ffffff;
  border-radius: 12px;
}

/* Modal Header */
#eligibilityModal .modal-header {
  background-color: #181818 !important;
  color: #ffffff !important;
  padding: clamp(10px, 5vw, 40px) clamp(10px, 3vw, 24px) clamp(10px, 4vw, 32px) clamp(10px, 3vw, 24px) !important;
  border: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

#eligibilityModal .modal-header img {
  height: 42px !important;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 24px !important;
}

#eligibilityModal .modal-header h2 {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.01em;
}

#eligibilityModal .modal-header p {
  font-size: 14px !important;
  color: #9CA3AF !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
  font-weight: 400;
}

/* Custom Circular Close Button */
#eligibilityModal .btn-close-custom {
  height: 40px;
  width: 40px;
  background-color: rgb(51 51 51);
  backdrop-filter: blur(2px);
  border-radius: 100%;
  color: #ffffff;
  position: absolute;
  top: 12px;
  right: 12px;
  margin: 0px;
  border: 0;
  font-size: 24px;
}

#eligibilityModal .btn-close-custom:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

#eligibilityModal .btn-close-custom:active {
  transform: scale(0.95);
}


/* Modal Body */
#eligibilityModal .modal-body {
  padding: clamp(12px, 4vw, 24px) !important;
  background-color: #ffffff !important;
}

/* City Grid */
#eligibilityModal .id-city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 0 !important;
}

/* City Buttons */
#eligibilityModal .city-select-btn {
  background-color: #ffffff !important;
  border: 1px solid #E5E7EB !important;
  color: #1F2937 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 9px;
  border-radius: 8px !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

/* Eligible marker icon */
#eligibilityModal .city-select-btn[data-eligible="true"] i {
  color: #FF5100 !important;
  font-size: 15px;
}

/* Ineligible (Dashed Border) */
#eligibilityModal .city-select-btn[data-eligible="false"] {
  border: 1.5px dashed #D1D5DB !important;
  color: #9CA3AF !important;
}

#eligibilityModal .city-select-btn[data-eligible="false"] i {
  color: #9CA3AF !important;
  font-size: 15px;
}

/* Hover States */
#eligibilityModal .city-select-btn[data-eligible="true"]:hover {
  border-color: #FF5100 !important;
  background-color: #FFF9F6 !important;
  color: #FF5100 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(255, 81, 0, 0.08);
}

#eligibilityModal .city-select-btn[data-eligible="false"]:hover {
  border-color: #9CA3AF !important;
  background-color: #F9FAFB !important;
  color: #4B5563 !important;
}

/* Active State */
#eligibilityModal .city-select-btn.active {
  border-color: #FF5100 !important;
  background-color: #FFF5F0 !important;
  color: #FF5100 !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(255, 81, 0, 0.12) !important;
  transform: translateY(0) !important;
}

/* Success Box */
#eligibility-success-box {
  background-color: #ECFDF5 !important;
  border: 1px solid #A7F3D0 !important;
  border-radius: 12px !important;
  padding: 20px !important;
  margin-top: 24px !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
  text-align: left;
}

#eligibility-success-box .text-success {
  color: #059669 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  margin-bottom: 4px !important;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

#eligibility-success-box .text-success i {
  font-size: 18px;
}

#eligibility-success-box .text-muted {
  color: #4B5563 !important;
  font-size: 13px !important;
  margin-bottom: 16px !important;
}

#eligibility-success-box .btn-confirm-city {
  background-color: #FF5100 !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.03em !important;
  padding: clamp(10px, 3vw, 14px) clamp(16px, 4vw, 24px) !important;
  border-radius: 8px !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(255, 81, 0, 0.25) !important;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

#eligibility-success-box .btn-confirm-city:hover {
  background-color: #E04700 !important;
  box-shadow: 0 6px 20px rgba(255, 81, 0, 0.35) !important;
  transform: translateY(-1px);
}

#eligibility-success-box .btn-confirm-city:active {
  transform: translateY(0);
}

/* Error Box */
#eligibility-error-box {
  background-color: #FEF2F2 !important;
  border: 1px solid #FEE2E2 !important;
  border-radius: 12px !important;
  padding: 16px !important;
  margin-top: 24px !important;
  text-align: left;
}

#eligibility-error-box div {
  color: #991B1B !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

#eligibility-error-box a {
  color: #DC2626 !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  transition: color 0.15s ease;
}

#eligibility-error-box a:hover {
  color: #991B1B !important;
}

/* Pagination Theme Styles */
.pagination-theme li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #4a5568;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: all 0.2s ease;
}

.pagination-theme li a:hover {
  background: #f7fafc;
  border-color: #cbd5e0;
}

.pagination-theme li.active a {
  background: #ff5c35;
  border-color: #ff5c35;
  color: #fff;
}

.pagination-theme li.disabled a {
  color: #a0aec0;
  pointer-events: none;
  background: #edf2f7;
  border-color: #e2e8f0;
}

tr.order-row.filtered-out {
  display: none !important;
}

/* ==========================================================================
   Legal Content & WordPress Gutenberg Block Styling (.legal-content)
   ========================================================================== */
.legal-content {
  max-width: 920px;
  margin: 0 auto;
  color: #334155;
  font-size: 16px;
  line-height: 1.8;
}

/* Headings (h2 -> h6) - Matches Figma Orange Heading Accent */
.legal-content h2,
.legal-content .wp-block-heading h2,
.legal-content h2.wp-block-heading {
  font-size: 28px;
  font-weight: 700;
  color: #0F172A;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.legal-content h3,
.legal-content .wp-block-heading h3,
.legal-content h3.wp-block-heading {
  font-size: 22px;
  font-weight: 700;
  color: #1E293B;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.legal-content h4,
.legal-content .wp-block-heading h4,
.legal-content h4.wp-block-heading {
  font-size: 18px;
  font-weight: 600;
  color: #1E293B;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.45;
}

.legal-content h5,
.legal-content .wp-block-heading h5,
.legal-content h5.wp-block-heading {
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.legal-content h6,
.legal-content .wp-block-heading h6,
.legal-content h6.wp-block-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748B;
  margin-top: 1.1rem;
  margin-bottom: 0.4rem;
}

/* Paragraphs & Text */
.legal-content p,
.legal-content .wp-block-paragraph {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 1.25rem;
}

.legal-content p strong,
.legal-content p b {
  color: #0F172A;
  font-weight: 600;
}

/* Links */
.legal-content a {
  color: #FF5E15;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.legal-content a:hover {
  color: #E04B07;
  text-decoration: none;
}

/* Lists */
.legal-content ul,
.legal-content ol,
.legal-content .wp-block-list {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content ul li,
.legal-content ol li,
.legal-content .wp-block-list li {
  margin-bottom: 0.6rem;
  line-height: 1.75;
  color: #334155;
}

.legal-content ul li::marker {
  color: #FF5E15;
}

.legal-content ol li::marker {
  color: #FF5E15;
  font-weight: 600;
}

/* Callout Box / Plain-language promise / Blockquote */
.legal-content blockquote,
.legal-content .wp-block-quote,
.legal-content .wp-block-group.has-background,
.legal-content .callout-box {
  margin: 1.75rem 0 2rem 0;
  padding: 20px 24px;
  background-color: #FFF5EE;
  border: 1px solid #FDCBBA;
  border-left: 4px solid #FF5E15;
  border-radius: 8px;
  color: #374151;
  font-size: 15.5px;
  line-height: 1.7;
}

.legal-content blockquote p:first-child strong,
.legal-content .wp-block-quote p:first-child strong {
  display: block;
  color: #C2410C;
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Legal Next Page Navigation Box */
.legal-next-box {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.legal-next-link {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #1F2937;
  border-radius: 4px;
  background-color: transparent;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.2s ease-in-out;
}

.legal-next-link:hover {
  background-color: #FFF8F5;
  border-color: #FF5E15;
  text-decoration: none !important;
}

.legal-next-link .next-label {
  color: #1F2937;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.legal-next-link .next-title {
  color: #FF5E15;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.legal-next-link .next-arrow {
  color: #FF5E15;
  font-weight: 700;
  font-size: 16px;
  margin-left: 4px;
}

/* Tables - Exact Figma Design Match */
.legal-content table,
.legal-content .wp-block-table table {
  width: 100%;
  margin-top: 1.75rem;
  margin-bottom: 2.5rem;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  background-color: #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

/* Table Header Row (ONLY thead / th with Orange Background, White Text) */
.legal-content table thead,
.legal-content table thead tr,
.legal-content table thead th,
.legal-content table th,
.legal-content .wp-block-table table thead,
.legal-content .wp-block-table table thead tr,
.legal-content .wp-block-table table thead th,
.legal-content .wp-block-table th {
  background-color: #FF5E15 !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 15.5px !important;
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid #E5E7EB;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-content table thead th:last-child,
.legal-content table th:last-child {
  border-right: none;
}

/* Table Body Cells (tbody tr td) */
.legal-content table tbody tr td,
.legal-content .wp-block-table tbody tr td {
  padding: 14px 20px;
  font-size: 14.5px;
  line-height: 1.65;
  border-bottom: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
  vertical-align: top;
}

/* First Column in Body (Topic column) - Light Tint & Bold Text */
.legal-content table tbody tr td:first-child,
.legal-content .wp-block-table tbody tr td:first-child {
  background-color: #FAF7F5 !important;
  color: #1F2937 !important;
  font-weight: 700 !important;
  width: 28%;
}

/* Second Column in Body (What you should know column) - White Background */
.legal-content table tbody tr td:nth-child(2),
.legal-content .wp-block-table tbody tr td:nth-child(2) {
  background-color: #FFFFFF !important;
  color: #374151 !important;
}

/* Remove right border on last column */
.legal-content table tbody td:last-child,
.legal-content .wp-block-table tbody td:last-child {
  border-right: none;
}

/* Remove bottom border on last row */
.legal-content table tbody tr:last-child td,
.legal-content .wp-block-table tbody tr:last-child td {
  border-bottom: none;
}

/* Buttons (Gutenberg Buttons & Theme Buttons) */
.legal-content .wp-block-button,
.legal-content .wp-block-buttons {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content .wp-block-button__link,
.legal-content button.btn,
.legal-content .btn-theme-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FF5E15;
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(255, 94, 21, 0.22);
  cursor: pointer;
}

.legal-content .wp-block-button__link:hover,
.legal-content button.btn:hover {
  background-color: #E04B07;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 94, 21, 0.32);
}

/* Separator / Divider */
.legal-content hr,
.legal-content .wp-block-separator {
  border: 0;
  height: 1px;
  background: #E2E8F0;
  margin: 2.5rem 0;
}

/* Code & Preformatted Text */
.legal-content code {
  background-color: #F1F5F9;
  color: #0F172A;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 14px;
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.legal-content pre {
  background-color: #0F172A;
  color: #F8FAFC;
  padding: 18px 22px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 1.75rem 0;
}

.legal-content pre code {
  background-color: transparent;
  color: inherit;
  padding: 0;
}

/* Responsive Scaling for Mobile Devices */
@media (max-width: 768px) {
  .legal-content {
    font-size: 15px;
    line-height: 1.7;
  }

  .legal-content h2,
  .legal-content .wp-block-heading h2,
  .legal-content h2.wp-block-heading {
    font-size: 22px;
  }

  .legal-content h3,
  .legal-content .wp-block-heading h3,
  .legal-content h3.wp-block-heading {
    font-size: 19px;
  }

  .legal-content th,
  .legal-content .wp-block-table th,
  .legal-content td,
  .legal-content .wp-block-table td {
    padding: 10px 14px;
    font-size: 14px;
  }
}

/* ── Scroll to Top Floating Button ────────────────────────────────────────── */
.fito-scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #262626;
  border: 2px solid #84cc16;
  color: #ff5722;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  outline: none;
}

.fito-scroll-top-btn i {
  color: #ff5722;
  stroke-width: 2.8;
  line-height: 1;
  font-size: 22px;
}

.fito-scroll-top-btn.show-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fito-scroll-top-btn:hover {
  background-color: #141414;
  border-color: #a3e635;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(132, 204, 22, 0.4);
}

.fito-scroll-top-btn:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .fito-scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

/* Contact Form 7 Response Output & Error Message Colors */
.wpcf7-response-output {
  font-size: 13px;
  margin-top: 10px !important;
  border-radius: 4px;
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-response-output.wpcf7-validation-errors {
  color: #ff4d4d !important;
  border-color: #ff4d4d !important;
}

.wpcf7-form.sent .wpcf7-response-output,
.wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #84cc16 !important;
  border-color: #84cc16 !important;
}

.wpcf7-not-valid-tip {
  color: #ff4d4d !important;
  font-size: 12px;
}

/* Login Modal Red Invalid Input Border & OTP Timer */
#loginModal .form-control.is-invalid {
  border-color: #ff4d4d !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 77, 77, 0.25) !important;
}

#login-otp-timer-wrap a#login-resend-btn {
  color: #00591C !important;
  text-decoration: underline !important;
  cursor: pointer;
}

#login-otp-timer-wrap a#login-resend-btn:hover {
  color: #007a27 !important;
}

/* --- Back to Top Progress --- */
.progress-wrap {
  position: fixed;
  right: 25px;
  bottom: 100px;
  height: 60px;
  width: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.2s linear;
  background-color: var(--charcoal);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.progress-wrap.active-progress {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.progress-wrap i {
  color: var(--primary);
  font-size: 30px;
  position: absolute;
}

/* Floating WhatsApp Sticky Button with Pulse Animation */
@keyframes fitoWhatsappPulse {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  50% {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.5), 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.fito-whatsapp-btn {
  position: fixed;
  right: 25px;
  bottom: 20px;
  height: 60px;
  width: 60px;
  background-color: #25D366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  animation: fitoWhatsappPulse 2.8s infinite ease-in-out;
}

.fito-whatsapp-btn:hover {
  background-color: #20ba5a;
  animation-play-state: paused;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.6);
  color: #ffffff !important;
}

.fito-whatsapp-btn i {
  font-size: 40px !important;
  line-height: 1;
}

.progress-wrap svg.progress-circle path {
  fill: none;
  stroke: var(--lime-color);
  stroke-width: 2;
  box-sizing: border-box;
  transition: all 0.2s linear;
}

/* --- Header Scroll Progress --- */
.header-scroll-progress {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 4px;
  background-color: var(--theme-primary);
  z-index: 1050;
  border-radius: 0 4px 4px 0;
  border-bottom: 2px solid var(--primary);
}

/* --- Page Loader --- */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F5F0E8 url('../images/cta-bg.webp') no-repeat bottom;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(245, 240, 232, 0.7);
  z-index: 1;
}

#page-loader.loaded {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.loader-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.atom-spinner {
  position: absolute;
  width: 100%;
  height: 100%;
}

.spinner-line {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-left: 4px solid;
  border-top: 4px solid transparent;
}

.line-1 {
  border-left-color: var(--theme-primary);
  animation: atomSpin1 1.5s linear infinite;
  transform: rotateZ(120deg) rotateX(66deg) rotateZ(0deg);
}

.line-2 {
  border-left-color: var(--lime-color);
  animation: atomSpin2 1.5s linear infinite;
  transform: rotateZ(240deg) rotateX(66deg) rotateZ(0deg);
}

.line-3 {
  border-left-color: var(--primary);
  animation: atomSpin3 1.5s linear infinite;
  transform: rotateZ(360deg) rotateX(66deg) rotateZ(0deg);
}

.loader-logo-img {
  position: absolute;
  height: 35px;
  z-index: 10;
  animation: logoPulse 1.5s ease-in-out infinite alternate;
}


.das-sidebar .sidebar {
  padding: 16px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
}

.sidebar>.sidebar-head {
  padding: 12px;
  background: #F5F0E8;
  border-radius: 10px;
}

.sidebar-acc>hr {
  border-color: #D4D0C8;
  opacity: 1;
  margin: 0px;
}

.sidebar-acc .acc-info>div {
  font-size: 14px;
  color: #333333;
}


@keyframes atomSpin1 {
  100% {
    transform: rotateZ(120deg) rotateX(66deg) rotateZ(360deg);
  }
}

@keyframes atomSpin2 {
  100% {
    transform: rotateZ(240deg) rotateX(66deg) rotateZ(360deg);
  }
}

@keyframes atomSpin3 {
  100% {
    transform: rotateZ(360deg) rotateX(66deg) rotateZ(360deg);
  }
}

@keyframes logoPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* Hide Next Delivery & Active Plan cards section */
.next-delivery-active-plan-section {
  display: none !important;
}

/* ── Figma-Matching Pagination Styles ── */
.pagination-theme {
  display: flex !important;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-theme li {
  display: inline-block;
}

.pagination-theme li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #ebe7e1;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.pagination-theme li a:hover {
  border-color: var(--primary, #f54e00);
  color: var(--primary, #f54e00);
  background: #ffffff;
}

.pagination-theme li.active a {
  background: var(--primary, #f54e00) !important;
  color: #ffffff !important;
  border-color: var(--primary, #f54e00) !important;
  box-shadow: 0px 4px 10px rgba(245, 78, 0, 0.25);
}

.pagination-theme li.disabled a {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  background: #ffffff;
  border-color: #ebe7e1;
  color: #1a1a1a;
}

.pagination-theme li.disabled a.dots,
.pagination-theme li a.dots {
  border: none !important;
  background: transparent !important;
  color: #1a1a1a !important;
  font-weight: 700;
  min-width: 24px;
  pointer-events: none;
}

