/* ------- VARIABLES -------- */
/* ------- MAIN INFO -------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: #5F5F5F;
  font-size: 18px;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  /* overflow-y: scroll; */
}

body {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: #5F5F5F;
  font-size: 18px;
}

body.modal-open {
  /* padding-right: 0 !important; */
  overflow: hidden !important;
}

/* ------- TITLES, TEXTS -------- */



.text-editor h1 {
  font-size: 2rem;
  font-family: "Work Sans", sans-serif;
  margin-bottom: 2rem;
  font-weight: 400!important;
  text-align: center;
}

.text-editor h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: "Unbounded", sans-serif;
  margin-bottom: 1.5rem;
  font-weight: 400!important;
}

.text-editor h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: "Unbounded", sans-serif;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.text-editor-expand h2 {
  font-size: 2rem;
  font-family: "Work Sans", sans-serif;
  margin-bottom: 1rem;
}

.text-editor-expand h2:not(:first-child) {
  margin-top: 2rem;
}

.text-editor-expand h3 {
  font-size: 1.5rem;
  font-family: "Work Sans", sans-serif;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.text-editor-expand strong {
  font-weight: 400;
}

.text-editor a,
.text-editor-expand a {
  color: black;
  text-decoration: underline;
  word-break: break-word;
  overflow-wrap: break-word;
}

.fw-600 {
  font-weight: 600;
}

.fw-500 {
  font-weight: 500;
}

.fw-400 {
  font-weight: 400;
}

.fw-200 {
  font-weight: 200;
}

.text-black {
  color: black !important;
}

.text-gray-light {
	color: #BDBDBD;
}

.text-gray {
  color: #5F5F5F !important;
}

.text-gray-darker {
  color: #7A7A79;
}

.text-danger {
  color: #c64c1c !important;
}

.text-0 {
  font-size: 0.625rem;
}

.text-1 {
  font-size: 0.75rem;
}

.text-2 {
  font-size: 0.875rem;
}

.text-3 {
  font-size: 1rem;
}

.text-4 {
  font-size: 1.125rem;
}

.text-5 {
  font-size: 1.25rem;
}

.text-6 {
  font-size: 1.375rem;
}

.text-7 {
  font-size: 1.5rem;
}

.text-8 {
  font-size: 2rem;
}

.text-9 {
  font-size: 2.5rem;
}

.text-10 {
  font-size: 3.75rem;
}

.text-11 {
  font-size: 5.3125rem;
}

.text-unbounded {
  font-family: "Unbounded", sans-serif;
}

.text-worksans {
  font-family: "Work Sans", sans-serif;
}

h1 {
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 2.5rem;
  color: black;
}

h2 {
  font-size: 2rem;
  color: black;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  color: black;
}


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

/* ------- BACKGROUNDS -------- */
.bg-neat {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bg-white {
  background-color: white;
}

.bg-black {
  background-color: black;
}

.bg-black-light {
  background-color: rgba(0, 0, 0, 0.8);
}

.bg-gray-light {
    background-color: #E5E5E5;
}

.profile-tab {
  background-color: #fff;
}

.profile-tab.active {
  background-color: #E5E5E5;
}

.bg-danger {
  background-color: #c64c1c !important;
}

/* -----  BORDERS, SHADOWS AND OTHER  ----- */
.border-black {
  border-color: black !important;
}

.border-gray-all,
.border-gray-all * {
  border-color: #BDBDBD !important;
}

.border-danger {
  border-color: #c64c1c !important;
}

.border-last-0:last-child {
  border-bottom: 0 !important;
}

.border-e-last-0:last-child {
  border-right: 0 !important;
}


/* ------- NAVBAR -------- */
.navbar-brand img {
  width: 70px;
}

.nav-item {
  margin-right: 46px;
}

.nav-link {
  font-size: 1rem;
  color: #5F5F5F;
}
.nav-link:hover, .nav-link:focus {
  color: black;
}

.modal-body .nav-item {
	list-style-type: none;
}

/* ------- HEADER -------- */
.header-landing {
  /* min-height: 100vh; */
}

/* .header-landing .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroBgZoom 7s linear forwards;
}

@keyframes heroBgZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
} */

.header-full {
  min-height: 100vh;
}

.overlay-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.1) 100%
    );   
    z-index: 1;
    pointer-events: none;
    border-radius: inherit; /* Optional, if you use rounded corners */
    height: 100%;
}

.overlay-dark > * {
    position: relative;
    z-index: 2;
}

/* ------- FOOTER -------- */
.footer-link {
  font-size: 0.875rem;
  margin-bottom: 12px;
}
.footer-link a {
  color: black;
}

.footer-brand img {
  width: 100px;
}

/* ------- BUTTONS -------- */
.btn {
  min-width: 110px;
  padding: 9px 34px;
  font-size: 0.9rem;
  border-radius: 50rem;
}

.btn-sm {
  min-width: 90px;
  padding: 2px 19px;
  font-size: 0.875rem;
}

.btn-xs {
  min-width: 70px;
  padding: 0px 12px;
  font-size: 0.75rem;
}

.btn-white {
  background-color: white;
  color: #5F5F5F;
  transition-duration: 0.3s;
}
.btn-white:hover {
  background-color: white;
  color: black;
  transition-duration: 0.3s;
}

.btn-black {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  transition-duration: 0.3s;
}
.btn-black:hover {
  background-color: black;
  color: white;
  transition-duration: 0.3s;
}

.btn-outline {
  border: 1px solid black;
  transition-duration: 0.3s;
}
.btn-outline:hover {
  background-color: black;
  color: white;
  transition-duration: 0.3s;
}

.btn-outline-gray {
  border-color: #BDBDBD;
  color: #5F5F5F;
}

.btn-close {
  width: auto;
}

.button-style-none {
  border: none !important;
  background: transparent !important;
}

button:active {
  outline: none !important;
  border: none !important;
}

button:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* ------- TABS -------- */
.tab {
  min-width: 100px;
  padding: 6px 20px;
  font-size: 0.875rem;
  color: black;
  border-radius: 50rem;
  border: 1px solid black;
  margin-bottom: 10px;
  text-align: center;
  transition-duration: 0.3s;
  cursor: pointer;
}
.tab:hover {
  background-color: black;
  color: white;
  transition-duration: 0.3s;
}
.tab.tab-active {
  background-color: black;
  color: white;
}

/* ------- FILTERS & SORTING -------- */
.filter-select {
  color: black;
  text-transform: uppercase;
  font-size: 0.875rem;
  cursor: pointer;
}

.tag {
  background-color: rgba(0, 0, 0, 0.0705882353);
  padding: 2px 16px;
  font-size: 0.875rem;
  border-radius: 50rem;
  display: flex;
  align-items: center;
}
.tag .close {
  margin-left: 10px;
}
.tag .close:hover {
  cursor: pointer;
}
.tag .close:hover path {
  stroke: black;
  transition-duration: 0.3s;
}

.sort-select {
  font-size: 0.875rem;
  cursor: pointer;
}
.sort-select:hover {
  color: black;
  transition-duration: 0.3s;
}
.sort-select:hover path {
  stroke: black;
}

.price-slider {
	position: relative;
	width: 100%;
	height: 24px;
	margin-top: 10px;
}

/* Base invisible range lines */
.price-slider input[type="range"] {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 24px;
	margin: 0;
	padding: 0;
	background: none;
	pointer-events: none;
	-webkit-appearance: none;
	appearance: none;
	border: none;
}

/* Remove Safari's default inner border */
.price-slider input::-webkit-slider-runnable-track {
	background: none;
	border: none;
}

.price-slider input::-moz-range-track {
	background: none;
	border: none;
}

/* Handles */
.price-slider input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #000;
	cursor: pointer;
	pointer-events: auto;
	position: relative;
	z-index: 3;
	/* margin-top: -7px;  */
}

.price-slider input::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #000;
	cursor: pointer;
	pointer-events: auto;
	position: relative;
	z-index: 3;
}

/* The full gray track underneath */
.price-slider-track {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 4px;
	background: #d0d0d0;
	border-radius: 3px;
	z-index: 1;
}

/* The black active fill */
.price-slider-track::after {
	content: "";
	position: absolute;
	top: 0;
	left: var(--start, 0%);
	width: calc(var(--end, 100%) - var(--start, 0%));
	height: 100%;
	background: #000;
	border-radius: 3px;
	z-index: 2;
}


/* ------- FORMS -------- */
.form-control {
  border-color: black;
  border-radius: 10px;
}

.form-input {
  position: relative;
  width: 100%;
  margin-bottom: 0.75rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 18px;
  font-size: 1rem;
  border: 1px solid #BDBDBD;
  outline: none;
  border-radius: 10px;
}

input:focus,
select:focus,
textarea:focus {
  border: 1px solid black;
}

select {
  appearance: none; /* Hide default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white url("data:image/svg+xml,%3Csvg width='14' height='7' viewBox='0 0 14 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 0.500185L7 6.50018L1 0.500183' stroke='%235F5F5F' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 20px center;
}

.input-with-label {
  padding: 16px 18px 10px 18px;
}

.label-sm {
  position: absolute;
  left: 18px;
  top: 14px;
  color: #aaa;
  font-size: 1rem;
  transition: 0.2s ease all;
  pointer-events: none;
  background: white;
  padding: 0 4px;
}

input:not(:-moz-placeholder-shown) + label,
textarea:not(:-moz-placeholder-shown) + label,
select:not(:-moz-placeholder-shown) + label {
  top: -8px;
  font-size: 0.75rem;
  color: #333;
}

input:focus + label,
input:not(:placeholder-shown) + label,
textarea:focus + label,
textarea:not(:placeholder-shown) + label,
select:focus + label,
select:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 0.75rem;
  color: #333;
}

.form-check-input[type=radio],
.form-check-input[type=checkbox] {
  border-radius: 4px;
  padding: unset;
}

.form-check-input[type=radio]:active,
.form-check-input[type=checkbox]:active {
  outline: none !important;
  border: none !important;
}

.form-check-input[type=radio]:focus,
.form-check-input[type=checkbox]:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.form-check-input:checked[type=radio],
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.4783L5.8148 9L11 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-color: black;
  border-color: black;
}

.form-check-label {
  font-size: 1rem !important;
}

.form-check * {
  cursor: pointer;
}

select {
  cursor: pointer!important;
}

input {
  cursor: text !important;
}

input[type=submit] {
  cursor: pointer!important;
}

::-moz-placeholder {
  color: black !important;
}

::placeholder {
  color: black !important;
}

:-ms-input-placeholder {
  color: black !important;
}

::-ms-input-placeholder {
  color: black !important;
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-text-fill-color: #000 !important;
  color: #000 !important;
  background-color: white !important;
  background: white !important;
  transition: background-color 5000s ease-in-out 0s;
}

.input-number {
  width: 60px;
  text-align: center;
  border: 0px;
  padding: 0;
}
.input-number::-webkit-outer-spin-button, .input-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

.input-select {
  width: 200px;
  margin-bottom: 0;
}

.custom-select-wrapper select {
  color: transparent;
  text-shadow: 0 0 0 #0000; /* Transparent text shadow as fallback */
  z-index: 1;
  position: relative;
  cursor: pointer;
}

/* Keep the label styled as usual */
.custom-selected-display {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    padding: 12px 20px;
    margin-top: 2px;
    pointer-events: none;
    z-index: 2;
    color: black;
    width: calc(100% - 48px); /* Leave space for dropdown arrow */
}

.custom-selected-display span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.custom-selected-display img {
  width: 24px;
  height: 24px;
}

.custom-dropdown {
  display: none;
  position: absolute;
  width: 100%;
  background: white;
  border: 1px solid #BDBDBD;
  border-radius: 10px;
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  top: calc(100% + 8px);
}

.custom-dropdown .custom-option {
  padding: 12px 24px;
  border-bottom: 1px solid #BDBDBD;
  display: flex;
  align-items: center;
}

.custom-dropdown .custom-option:hover {
  background: #BDBDBD;
}

.custom-dropdown .custom-option,
.custom-dropdown .custom-option * {
  cursor: pointer!important;
}

.custom-dropdown img {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.custom-select-wrapper label {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0); /* stays in original position */
  transition: all 0.2s ease;
}

.custom-select-wrapper.has-value label {
  opacity: 1;
  pointer-events: auto;
}

/* Checkout pickup/locker selects: keep the field label visible even when
   only the placeholder is shown (no value yet). */
.custom-select-wrapper.always-label label {
  opacity: 1;
  pointer-events: auto;
}

/* ...and render the placeholder text muted, like a real input placeholder,
   so it clearly reads as "not selected yet". */
.custom-select-wrapper.always-label:not(.has-value) .custom-selected-display {
  color: #999;
}

.custom-search-wrapper {
  padding: 8px 12px;
  border-bottom: 1px solid #BDBDBD;
  background: white;
  position: sticky;
  top: 0;
  z-index: 10;
}

.custom-search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    cursor: text;
}

.custom-search-input:focus {
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}

.custom-option-group-label {
    padding: 8px 24px;
    background: #f5f5f5;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.with-search .custom-option {
    display: flex; /* Ensure proper display for filtering */
}

input[readonly]:focus {
  border: 1px solid #BDBDBD;
}

input[readonly] {
  background-color: #F5F5F5;
  pointer-events: none;
  user-select: none;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border: 1px solid #dc3545;
}

.delivery-option .delivery-extra {
    max-height: 0;
    opacity: 0;
    transition: none;
    pointer-events: none;
}

.delivery-option.selected .delivery-extra {
    max-height: 800px;
    opacity: 1;
    pointer-events: auto;
    transition: max-height 0.3s, opacity 0.2s;
}

.delivery-option,
.delivery-option .form-check *,
.payment-option,
.payment-option .form-check * {
    cursor: pointer;
}

.delivery-option.selected,
.delivery-option.selected .form-check *,
.payment-option.selected,
.payment-option.selected .form-check * {
    cursor: default;
}



/* ------- ACCORDIONS -------- */
.accordion-item {
  margin-top: 20px;
}

.accordion-button {
  font-size: 1.125rem;
  color: #5F5F5F;
  padding-left: 0;
}
.accordion-button::after {
  padding-left: 30px;
}

.accordion-body {
  padding: 18px 0px 36px 0px;
  color: #5F5F5F;
}

.accordion * {
  border-color: #BDBDBD;
}

.accordion-button:not(.collapsed) {
  color: initial;
  background-color: initial;
  box-shadow: initial;
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 1px solid #BDBDBD;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../img/arrow-down.svg");
}


/* ------- TOASTS -------- */

#profile-toast {
  transition: opacity 0.5s;
  opacity: 1;
  background-color: #F5F5F5;
  max-width: 260px;
  z-index: 9999;
}
#profile-toast.toast-hide {
  opacity: 0;
  pointer-events: none;
}

/* ------- POSITIONING -------- */
.anchor {
  padding-top: 100px;
  margin-top: -100px;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-55 {
  width: 55%;
}

.w-600 {
  width: 600px !important;
}

.w-800 {
    width: 800px !important;
}

.mt-n1 {
  margin-top: -1px;
}

.my-sec,
.my-sec-lg {
  margin-top: 70px;
  margin-bottom: 70px;
}

.mt-sec,
.mt-sec-lg {
  margin-top: 70px;
}

.mb-sec,
.mb-sec-lg {
  margin-bottom: 70px;
}

.pb-sec,
.pb-sec-lg {
  padding-bottom: 70px;
}

.py-sec,
.py-sec-lg {
  padding-top: 70px;
  padding-bottom: 70px;
}

.py-header {
  padding-top: 120px;
  padding-bottom: 120px;
}

.mb-n1 {
  margin-bottom: -1px;
}

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

.z-n1 {
  z-index: -1;
}

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

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.op-1 {
  opacity: 1;
}

.ratio-3x2 {
  --bs-aspect-ratio: 66.7%;
}

.d-flex > img,
.d-flex > svg {
  flex-shrink: 0;
}

.mb-title {
  margin-bottom: 36px;
}

.max-h-70 {
  max-height: 70vh;
}

.overflow-scroll {
  overflow: scroll;
}

.v-center {
  top: 50%;
  transform: translateY(-50%);
}

.scrollable-hidden-scrollbar {
  overflow-y: scroll; /* Enables scrolling */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.scrollable-hidden-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.product-img-container:hover .tastemap-overlay,
.product-img-container:focus-within .tastemap-overlay {
    opacity: 1;
    pointer-events: auto; /* Make overlay interactive when shown */
}

.container-lg {
  padding-left: 0px;
  padding-right: 0px;
}

.parallax-image {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;         /* or 'contain' if you want zero cropping */
  background-position: center;
  background-attachment: fixed;   /* parallax effect */
}

@media (max-width: 768px) {
  .parallax-image {
      height: 50vh;
      background-attachment: scroll; /* disable parallax on mobile for Safari */
  }
}

/* Safari iOS specific fix */
@supports (-webkit-touch-callout: none) {
  .parallax-image {
      background-attachment: scroll;
  }
}

/* ------- ACTIONS -------- */
.pointer {
  cursor: pointer;
}

a,
a:hover {
  text-decoration: none;
}

.a-gray {
  color: #5F5F5F;
  transition-duration: 0.3s;
}
.a-gray:hover {
  color: black;
  transition-duration: 0.3s;
}



/* ------- OTHER -------- */
.cart-counter {
  position: absolute;
  font-size: 0.7rem;
  top: -14px;
}

.swiper-button-next-header,
.swiper-button-prev-header {
  width: 53px;
  height: 53px;
  top: unset;
  bottom: 0;
}
.swiper-button-next-header:after,
.swiper-button-prev-header:after {
  content: "";
}

.swiper-button-prev-header {
  transform: rotate(180deg);
  left: auto;
  right: 70px;
}

.swiper-button-next-header {
  left: auto;
  right: 0px;
}

.gallerySwiper {
  height: 250px;
}

.gallerySwiper .swiper-wrapper {
    display: inline-flex !important;
}

.gallerySwiper .swiper-slide {
  background: #ddd;
   width: auto !important;
    display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.gallerySwiper .swiper-slide img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  fill: none;
}

.swiper-button-next-gallery,
.swiper-button-prev-gallery {
  width: 35px !important;
  height: 35px !important;
}
.swiper-button-next-gallery:after,
.swiper-button-prev-gallery:after {
  content: "" !important;
}

.swiper-button-prev-gallery {
  transform: rotate(180deg);
}

.fav-button path {
  fill: transparent;
  transition-duration: 0.3s;
}
.fav-button:hover path {
  stroke: black;
  fill: black;
  transition-duration: 0.3s;
}
.fav-button.active path {
  stroke: black;
  fill: black;
  transition-duration: 0.3s;
}

/* Pulse animation for fav button */
.fav-button.pulse {
  animation: fav-pulse-in 0.4s cubic-bezier(.42,0,.58,1);
}

.fav-button.active.pulse {
  animation: fav-pulse-out 0.4s cubic-bezier(.42,0,.58,1);
}

@keyframes fav-pulse-out {
  0% { transform: scale(1); }
  30% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

@keyframes fav-pulse-in {
  0% { transform: scale(1); }
  30% { transform: scale(0.7); }
  100% { transform: scale(1); }
}


.scroll-up-button rect {
  fill: white;
  transition-duration: 0.3s;
}
.scroll-up-button path {
  transition-duration: 0.3s;
}
.scroll-up-button:hover rect {
  stroke: black;
  fill: black;
  transition-duration: 0.3s;
}
.scroll-up-button:hover path {
  stroke: white;
  transition-duration: 0.3s;
}

.test-card {
  background-color: transparent;
  color: black;
  transition-duration: 0.3s;
}
.test-card path {
  transition-duration: 0.3s;
}
.test-card circle {
  transition-duration: 0.3s;
}
.test-card hr {
  background-color: black;
  opacity: 1;
  transition-duration: 0.3s;
}
.test-card h3 {
  transition-duration: 0.3s;
}
.test-card svg {
  max-width: 100%;
}
.test-card:hover * {
  color: white;
  transition-duration: 0.3s;
}
.test-card:hover {
  background-color: black;
  transition-duration: 0.3s;
}
.test-card:hover path {
  fill: black;
  stroke: white;
  transition-duration: 0.3s;
}
.test-card:hover circle {
  stroke: white;
  transition-duration: 0.3s;
}
.test-card:hover hr {
  background-color: white;
  transition-duration: 0.3s;
}


.test-progress-bar {
  width: calc(100% - 65px);
}

.progress-item {
  position: relative;
  width: 16.67%;
  height: 2.5px;
  background-color: #C6C1BE;
  opacity: 0.6;
  overflow: hidden;
}

.progress-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: black;
  transition: width 0.3s ease;
}

.progress-item.progress-item-active::before {
  width: 100%;
}


.out-of-stock-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: white;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.out-of-stock-badge {
  font-size: 0.875rem;
  color: black;
  border-radius: 50rem;
  background-color: #E5E5E5;
  padding: 2px 19px;
  margin-top: 2px;
}

.latest-badge {
  font-size: 0.875rem;
  color: black;
  border-radius: 50rem;
  background-color: #f3bc3a;
  padding: 2px 19px;
  margin-top: 2px;
}

.featured-badge {
  font-size: 0.875rem;
  color: white;
  border-radius: 50rem;
  background-color: black;
  padding: 2px 19px;
  margin-top: 2px;
}

.decaf-badge {
  font-size: 0.875rem;
  color: black;
  border-radius: 50rem;
  background-color: #ba8b57;
  padding: 2px 19px;
  margin-top: 2px;
}

.custom-ul {
  list-style: none;
  padding-left: 0;
}

.custom-ul li {
  background: url("../img/Checkbox.svg") no-repeat left top 3px;
  background-size: 20px 20px;
  padding-left: 34px;
  margin-bottom: 16px;
}

.list-group-item {
  padding: 20px 0px;
}

.grad-bottom {
  background: #ffffff;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 100%);
}

.img-secondary {
  opacity: 0;
  transition-duration: 0.3s;
}
.img-secondary:hover {
  opacity: 1;
  transition-duration: 0.3s;
}

.btn-outline-like {
  min-width: 150px;
  padding: 12px 36px;
  font-size: 1.125rem;
  border-radius: 50rem;
  border: 1px solid black;
  color: black;
}

.breadcrumbs {
  font-size: 0.75rem;
}

.breadcrumbs a {
  color: #5F5F5F;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: black;
  text-decoration: underline;
  transition-duration: 0.3s;
}

.breadcrumbs span {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

/* Remove left margin from the first span */
.breadcrumbs span:first-of-type {
  margin-left: 0;
}


.step {
  width: 60px;
  height: 60px;
  border-radius: 200px;
  border: 1px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  padding-right: 6px;
  font-size: 1.25rem;
}

.step-active {
  background-color: black;
  color: white;
}

.step-line {
  width: 40px;
  margin-left: 9px;
  margin-right: 9px;
}

.subscription-option {
  width: 100%;
  border: 1px solid black;
  border-radius: 1rem;
  background-color: white;
  /* font-size: 2rem; */
  font-family: "Unbounded", sans-serif;
  text-align: center;
  color: black;
}
.subscription-option:hover {
  background-color: black;
  color: white;
  transition-duration: 0.3s;
  cursor: pointer;
}
.subscription-option.active {
  background-color: black;
  color: white;
  transition-duration: 0.3s;
}

.content-list a {
    color: #5F5F5F;
    text-decoration: none;
}

.content-list a .content-list-item {
    padding: 15px 0px;
    border-bottom: 1px solid #BDBDBD;
}

.content-list a:hover {
    color: black;
    transition-duration: 0.3s;
}

.content-list a:last-child .content-list-item {
    border-bottom: 0;
}

.text-editor:first-child {
  margin-top: 0px !important;
}

.text-editor.text-justify p,
.expand-text.text-justify p,
.text-editor.text-justify li,
.text-expand.text-justify li {
  text-align: justify !important;
}

.offcanvas {
  color: #5F5F5F;
}

.expand-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease;
}

.expand-text.expanded {
  -webkit-line-clamp: unset;
  display: block;
}

.expand-text-read-more-btn {
  margin-top: 10px;
  cursor: pointer;
  color: black;
  font-weight: 500;
  text-decoration: underline;
}

.reward-circle {
	width: 85px;
	height: 85px;
	border-radius: 200px;
	flex-shrink: 0;
	color: black;
}

.step-circle {
	width: 70px;
	height: 70px;
	border-radius: 200px;
	flex-shrink: 0;
	color: black;
}




/* ------- QUERIES -------- */
@media (max-width: 992px) {
  .border-mob-0 {
    border: 0 !important;
  }
  .border-bottom-mob-0 {
    border-bottom: 0 !important;
  }
  .border-bottom-mob {
    border-bottom: 1px solid #BDBDBD !important;
  }
  .border-bottom-mob:last-child {
    border-bottom: 0 !important;
  }
	.border-list-first-last-mob:first-child {
		border-top: 1px solid #BDBDBD !important;
	}
	.border-list-first-last-mob:last-child {
		border-bottom: 1px solid #BDBDBD !important;
	}
	.border-end-mob-0 {
		border-right: 0 !important;
	}
	.px-0-mob {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
}
@media (min-width: 768px) {
  .w-md-50 {
    width: 50%;
  }

  .nav-item {
    margin-right: 10px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg {
    max-width: 86%;
    padding-left: 0px;
    padding-right: 0px;
  }
  .position-lg-absolute {
    position: absolute;
  }
  .col-lg-of-5 {
    flex: 0 0 20% !important;
    max-width: 20% !important;
  }

  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-30 {
    width: 30%;
  }
  .w-lg-50 {
    width: 50%;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-60 {
    width: 60%;
  }
  .w-lg-40 {
    width: 40%;
  }

  .nav-item {
    margin-right: 15px;
  }
 
  .w-lg-auto {
    width: auto !important;
  }
  .my-sec {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .my-sec-lg {
    margin-top: 160px;
    margin-bottom: 160px;
  }
  .mt-sec {
    margin-top: 120px;
  }
  .mt-sec-lg {
    margin-top: 160px;
  }
  .mb-sec {
    margin-bottom: 120px;
  }
  .mb-sec-lg {
    margin-bottom: 160px;
  }
  .pb-sec {
    padding-bottom: 120px;
  }
  .pb-sec-lg {
    padding-bottom: 160px;
  }
  .mb-title-lg-lg {
	margin-bottom: 80px !important;	
  }
  .py-sec {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .py-sec-lg {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .my-lg-sec {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .mb-lg-sec {
    margin-bottom: 120px !important;
  }
  h1 {
    font-size: 3.75rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  .text-editor h1 {
    font-size: 2.5rem;
    text-align: left;
  }

  .text-lg-1 {
    font-size: 0.75rem;
  }
  .text-lg-2 {
    font-size: 0.875rem;
  }
  .text-lg-3 {
    font-size: 1rem;
  }
  .text-lg-4 {
    font-size: 1.125rem;
  }
  .text-lg-5 {
    font-size: 1.25rem;
  }
  .text-lg-6 {
    font-size: 1.375rem;
  }
  .text-lg-7 {
    font-size: 1.5rem;
  }
  .text-lg-8 {
    font-size: 2rem;
  }
  .text-lg-9 {
    font-size: 2.5rem;
  }
  .text-lg-10 {
    font-size: 3.75rem;
  }
  .text-lg-11 {
    font-size: 4.5rem;
  }
  .btn {
    /* font-size: 1.125rem; */
    font-size: 1rem;
    min-width: 160px;
    /* padding: 12px 42px; */
    padding: 10px 36px;
    min-width: 110px;
  }
  .btn-xs {
    min-width: 70px;
    padding: 0px 12px;
    font-size: 0.75rem;
  }
  .btn-sm,
  .btn-lg-sm {
    min-width: 90px;
    padding: 2px 19px;
    font-size: 0.875rem;
  }
  .navbar-brand img {
    width: 100px;
  }
  .breadcrumbs {
    font-size: 0.875rem;
  }
  .tab {
    min-width: 150px;
    padding: 12px 50px;
    font-size: 1.125rem;
    margin-bottom: 0px;
  }
  .accordion-body {
    padding: 18px 80px 36px 0px;
    color: #5F5F5F;
  }
  .accordion-button {
    font-size: 1.375rem;
  }
  .form-input {
    margin-bottom: 1.5rem;
  }
  .input-select {
    margin-bottom: 0;
  }
  .border-bottom-lg-0 {
    border-bottom: 0 !important;
  }

  .profile-tab {
    background-color: #E5E5E5;
  }
  .profile-tab.active {
    background-color: #fff;
  }

  .subscription-option {
    /* font-size: 2.5rem; */
  }
  /* .step {
    width: 75px;
    height: 75px;
  } */
  .step-line {
    width: 70px;
  }
	.reward-circle {
		width: 100px;
		height: 100px;
	}
	.radius-first-last-pill-lg:first-child > a div {
	  border-bottom-left-radius: var(--bs-border-radius-pill);
	  border-top-left-radius: var(--bs-border-radius-pill);
	}

	.radius-first-last-pill-lg:last-child > a div {
	  border-bottom-right-radius: var(--bs-border-radius-pill);
	  border-top-right-radius: var(--bs-border-radius-pill);
	}
}

@media (min-width: 1200px) {
  .w-xl-30 {
    width: 30%;
  }

  .nav-item {
    margin-right: 46px;
  }
}

@media (min-width: 1600px) {
  .container,
  .container-lg {
    width: 80%;
    max-width: 1600px;
  }

 .text-lg-11 {
    font-size: 5.3125rem;
  }
}

@media (min-width: 1800px) {
  .container,
  .container-lg {
    max-width: 1600px;
  }

 .text-lg-11 {
    font-size: 5.3125rem;
  }
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.1);
  height: 4px;
  position: relative;
}

.swiper-pagination-progressbar-fill {
  background: #007aff;
  height: 100%;
  width: 0;
  animation: progressAnim linear forwards;
}

@keyframes progressAnim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.swiper-progress-bar {
  padding-top: 3px;
  margin-left: 10px;
  position: relative;
  width: 100%;
  display: block;
  z-index: 1;
  height: 2px;
}

.swiper-progress-bar .slide_progress-bar {
  position: absolute;
  height: 2px;
  background: rgba(204, 184, 184, 0.337254902);
  width: auto;
  clear: both;
  opacity: 0;
  left: 0;
  right: 0;
}

.swiper-progress-bar .slide_progress-bar:after {
  position: absolute;
  top: 0;
  left: 0;
  background: #CCB8B8;
  height: 100%;
  width: 0;
  content: "";
  transition: 0.1s width linear;
}

.swiper-progress-bar.active .slide_progress-bar {
  opacity: 1;
}

.swiper-progress-bar.animate .slide_progress-bar:after {
  transition: width linear;
  transition-delay: unset;
  width: 100%;
  transition-duration: 5s;
}/*# sourceMappingURL=style.css.map */

#nsl-redirect-overlay-title,
#nsl-redirect-overlay-text {
  display: none;
}