/***** General *****/
:root {
  --primaryColor: #ee4e34; /*red*/
  --complementColor: #bbd2c8; /*green*/
  --secondaryColor: #fcedda; /*beige*/

  --textFont: "noto-sans", sans-serif;
  --titleFont: "rl-aqva", sans-serif;
}

.contact-banner h1 {
  font-family: var(--textFont) !important;
  font-weight: 700;
}

.contact-wrapper section h1 {
  font-family: var(--textFont) !important;
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--titleFont) !important;
  font-optical-sizing: auto !important;
  letter-spacing: normal !important;
}
h1 {
  font-size: 24px !important;
  line-height: 20px;
  margin: 10px 0 30px;
}
a,
p,
td,
tr,
th {
  font-family: var(--textFont) !important;
  font-optical-sizing: auto !important;
}
a {
  color: #000000;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-bold {
  font-weight: 800;
}
label {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--textFont) !important;
}
input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"] {
  background: #f5f5f5 !important;
  border: 1px solid #0000001a !important;
  box-shadow: 0px 4px 13px 1px #0000000d;
  border-radius: 15px !important;
  margin: 0 0 20px;
  height: 45px;
}
input:disabled {
  background: #f5f5f5 !important;
  opacity: 0.7;
}

input[type="radio"] {
  margin-left: 10px;
  margin-right: 6px;
  appearance: none;
  background-color: #fff;
  font: inherit;
  color: black;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid black;
  border-radius: 50%;
  transform: translateY(0.2em);
  display: grid;
  place-content: center;
}

input[type="radio"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--complementColor);
}

input[type="radio"]:checked::before {
  transform: scale(1);
}

.select-wrapper {
  position: relative;
  display: block;
  width: 100%;
}

.select-wrapper::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.select-wrapper select {
  appearance: none;
  padding-right: 2rem;
  display: block;
  width: 100%;
  background: #ffffff !important;
  border: 1px solid #000000 !important;
  border-radius: 10px !important;
  margin: 0 0 20px;
  padding: 6px 12px;
  color: #000000;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
  border: 1px solid var(--primaryColor) !important;
}
.categories-select-container {
  display: flex;
  gap: 10px;
  padding-bottom: 30px;
  padding-top: 15px;
  flex-wrap: wrap;
}

.categories-select-container label {
  margin: 10px 0;
}

label.categories-select input[type="checkbox"] {
  display: none;
}
label.categories-select span {
  padding: 8px 16px;
  border: none;
  border-radius: 10px;
  background: #f0f0f0;
  box-shadow: 0px 0px 1px 0px #00000040;
  box-shadow: 0px 2px 1px 0px #0000000d;
  color: #333333;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}
label.categories-select input[type="checkbox"]:checked + span {
  /* background: var(--secondaryColor); */
  background: var(--complementColor);
  box-shadow: 0px 0px 1px 0px #00000040;
  box-shadow: 0px 2px 1px 0px #0000000d;
  /* color: var(--primaryColor); */
  color: black;
}
.btn-primary,
.btn-secondary {
  width: 100%;
  border-radius: 50px;
  float: none !important;
  margin-left: 0 !important;
  border: none;
  padding: 12px;
  font-weight: 600 !important;
  margin-bottom: 20px;
  font-size: 16px;
}
.btn-primary,
.btn-primary:focus {
  background-color: var(--primaryColor) !important;
  color: #ffffff;
  box-shadow: none !important;
}
.btn-secondary,
.btn-secondary:focus {
  background-color: var(--secondaryColor) !important;
  color: var(--primaryColor);
  box-shadow: none !important;
}
#error-message,
.error-message {
  color: var(--primaryColor);
  font-size: 12px;
  display: block;
  margin-top: -10px;
  margin-bottom: 10px;
  font-family: var(--textFont);
}
.message-container {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
}
.message-container .error-message {
  color: var(--primaryColor);
}
.message-container .info-message {
  color: var(--complementColor);
}

/***** Login and register *****/
.login_wrapper {
  /* height: 100vh; */
  margin-top: 0 !important;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

.login_top .eezi-logo {
  position: absolute;
  width: 40%;
  height: auto;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.login_top .start-image {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}

.buttons_wrapper {
  width: 100%;
  background: #ffffff;
  padding: 30px 0px;
  height: fit-content;
}

.buttons_wrapper h1 {
  color: black;
}

.login_button,
.register_button,
.partners_button {
  width: 100%;
  text-align: center;
  padding: 0 30px;
}

.login_wrapper .bottom-section {
  /* position: absolute; */
  /* bottom: 3vh; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  padding: 0 0 5px 0;
  gap: 5px;
  /* width: calc(100% - 60px); */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.login_wrapper .bottom-section span {
  font-size: 14px;
  color: black;
}

.nav-login,
.nav-register,
.nav-partners {
  /* position: absolute; */
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  min-height: 100vh;
  background-color: #ffffff;
  /* background-color: var(--secondaryColor); */
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  padding: 30px;
  display: block;
  z-index: 999;
}

.nav-register {
  background-color: var(--secondaryColor);
}

.lost-password-container {
  padding: 30px;
}
.nav-view {
  transform: translateX(0);
}
.login_register_partners_content {
  padding-top: 30px !important;
}
.login_register_partners_content .loginPanel,
.login_register_partners_content .registerPanel,
.login_register_partners_content .partnersPanel {
  font-size: 25px;
  position: relative;
  z-index: 99;
  width: 100%;
  text-align: right;
  display: block;
}
.login_register_partners_content form {
  margin-top: -37px;
}
.login_register_partners_content .button-container {
  padding-top: 20px;
}
.below-btn-text {
  font-size: 14px;
  font-weight: 300;
  text-align: left;
}
.below-btn-text a {
  font-size: 14px;
  font-weight: 700;
  margin-right: 0px !important;
}
.above-form-text {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}
.create-password {
  padding-top: 20px;
}
.create-password p {
  font-weight: 600;
  text-align: center;
}
.lost-password {
  font-size: 16px !important;
  text-decoration: underline !important;
  font-weight: 300;
  display: block;
  text-align: center;
}
#code-input {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  justify-content: center;
}
.code-digit {
  width: 45px;
  height: 55px;
  font-size: 24px;
  text-align: center;
}
#new-code-form {
  margin-top: 0px;
}
.send-new-code {
  font-size: 16px !important;
  text-decoration: underline !important;
  font-weight: 300;
  display: block;
  margin: 0 auto;
  background: transparent;
  border: none;
}

/* .partner-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 85vh;
    overflow-y: auto;
}

.partner-items .partner-item {
    background-color: #f1f1f1;
    border-radius: 1rem;
    padding: 0.5rem;
}

.partner-items .partner-item .partner-info {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 20px;
}

.partner-items .partner-item .partner-info h2 {
    font-size: 16px;
    font-weight: 600;
    margin: 0px;
    align-self: center;
}

.partner-items .partner-item .partner-info img {
    max-width: 112px;
    max-height: 112px;
    height: 112px;
    object-fit: contain;
}

.partner-items .partner-item .partner-action {

} */

.partner-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 85vh;
  overflow-y: auto;
}

.partner-items .partner-item {
  background-color: #f1f1f1;
  border-radius: 0.6rem;
  padding: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.partner-items .partner-item .partner-info {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  flex: 1;
}

.partner-items .partner-item .partner-info h2 {
  font-size: 14px;
  font-weight: 600;
  margin: 0px;
  line-height: 1.2;
}

.partner-items .partner-item .partner-info img {
  max-width: 112px;
  max-height: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 0.3rem;
}

/* remove for original design */
.partner-items .partner-item .partner-action {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: end;
}

.partner-items .partner-item .partner-action .btn {
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  margin: 0;
  min-width: 60px;
  background-color: var(--primaryColor);
  border: none;
  color: white;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background-color 0.2s ease;
}

/***** Sliders *****/
.glide-login .slider-content {
  padding: 0px 10px;
}
.glide-login .slider-content img {
  width: 100%;
  height: auto;
  max-height: 40vh;
  border-radius: 40px;
}
.glide-login .glide__bullets {
  text-align: center;
  padding-top: 5px;
}
.glide-login .glide__bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background-color: var(--primaryColor);
  opacity: 0.2;
}
.glide-login .glide__bullet--active {
  opacity: 1;
}

.glide-start .glide__bullets {
  text-align: center;
  margin-top: -30px;
}
.glide-start .glide__bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #ffffff;
  position: relative;
}
.glide-start .glide__bullet--active {
  background-color: var(--primaryColor);
}

.slider-content {
  position: relative;
  overflow: hidden;
  height: 40vh;
}

.slider-content .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.glide-start .slider-content-overlay {
  position: relative;
  padding-top: 30px;
}

.glide-start img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.glide-start p {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}

.glide-start a {
  padding: 6px 15px;
  width: auto;
  font-size: 14px;
}
/***** Navigation *****/
.top-nav {
  position: absolute;
  top: 0;
  z-index: 99;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 15px 20px;
}
.top-nav-right {
  display: flex;
  gap: 15px;
}
.top-nav-right a {
  background: #00000080;
  box-shadow: 0px 0px 1px 0px #00000040;
  box-shadow: 0px 2px 1px 0px #0000000d;
  color: #efefef;
}
.top-nav-left {
  display: flex;
  gap: 15px;
}
.top-nav-left a {
  background: #00000080;
  box-shadow: 0px 0px 1px 0px #00000040;
  box-shadow: 0px 2px 1px 0px #0000000d;
  color: #efefef;
}

.top-nav-left a,
.top-nav-right a {
  border-radius: 50%;
  font-size: 14px;
  padding: 8px 10px 10px 10px;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*
.top-nav-left .profile-icon {
  background: #ffffffbd;
  color: #383636;
  font-weight: 600;
  text-transform: uppercase;
}
*/

.top-nav-with-title {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 12px;
}
.top-nav-with-title h1 {
  margin: 0px;
  font-family: var(--textFont) !important;
  font-weight: 700;
}
.top-nav-with-title-right i {
  background: transparent !important;
  color: #000000;
  font-size: 25px;
}

/* Campaign list */
#filter-buttons {
  display: flex;
  gap: 8px;
  overflow-x: scroll;
  scrollbar-width: none; /* För Firefox */
  -ms-overflow-style: none; /* För Internet Explorer och Edge Legacy */
  padding: 10px 0px 15px 0px;
}
#filter-buttons::-webkit-scrollbar {
  display: none; /* För Chrome, Safari och nya Edge */
}
#filter-buttons .filter-btn {
  background: #f0f0f0;
  color: #333333;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  letter-spacing: 2%;
  line-height: 16px;
}
#filter-buttons .filter-btn.active {
  background: var(--secondaryColor);
  color: var(--primaryColor);
  box-shadow: 0px 0px 1px 0px #00000040;
  box-shadow: 0px 2px 1px 0px #0000000d;
}

.tools-bar {
  padding: 15px 20px 0 20px;
}

.campaign-list h2 {
  padding-bottom: 10px;
  font-size: 24px;
  padding: 0 20px;
  /* padding: 0 0; */
}
/* .campaign-list h2::after {
  content: "";
  display: block;
  width: 45px;
  border-bottom: 2px solid var(--primaryColor);
  margin-top: 5px;
} */
.campaign-list ul {
  display: flex;
  gap: 20px;
  padding: 15px 20px;
  overflow-x: scroll;
  scrollbar-width: none; /* För Firefox */
  -ms-overflow-style: none; /* För Internet Explorer och Edge Legacy */
}
.campaign-list ul::-webkit-scrollbar {
  display: none; /* För Chrome, Safari och nya Edge */
}
.campaign-list ul li {
  list-style: none;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 0px #00000040;
  border-radius: 16px;
  min-width: 44%;
  max-width: 44%;
  /* text-align: center; */
  position: relative;
}

.new-deal:last-child.new-deal:first-child {
  max-width: 44%;
}

.campaign-list ul li.highlighted {
  background-color: var(--complementColor);
}
.campaign-list ul li .campaign-tags {
  position: absolute;
  /* top: 2px;
  right: 5px; */
  margin: -40px 0px 0px 10px;
}
.campaign-list ul li .campaign-tags .campaign-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 700;
  line-height: 13px;
  letter-spacing: 2%;
  display: inline-block;
  margin: 0;
  box-shadow: 0 0 15px 5px #00000040;
  text-transform: uppercase;
}

.campaign-list ul li .campaign-tags .campaign-tag.new {
  /* color: black; */
  /* background: #fcedda; */
  background-color: #ee4e34;
  color: white;
}

.campaign-list ul li .campaign-tags .campaign-tag.soon {
  /* background: var(--complementColor);
  color: black; */
  background-color: #ee4e34;
  color: white;
}

.campaign-list ul li .campaign-tags .campaign-tag.left {
  /* background: var(--primaryColor);
  color: white; */
  background-color: #ee4e34;
  color: white;
}

.campaign-list ul li .campaign-tags .campaign-tag.club {
  background-color: #ee4e34;
  color: white;
  font-size: 2vw;
}

.campaign-list ul li .campaign-tags .campaign-tag.always-on {
  background-color: #ee4e34;
  color: white;
}

.campaign-list ul li .campaign-img {
  width: 100%;
  min-height: 146px;
  margin: 0 auto;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.campaign-list ul li.highlighted .campaign-img {
  background: #ffffff;
}
.campaign-list ul li .campaign-img img {
  width: 100%;
  /* height: 100%; */
  min-height: 146px;
  border-radius: 16px 16px 0 0;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.campaign-list ul li .campaign-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 2%;
  padding: 10px 10px 0 10px;
  margin: 0px;
  color: black;
}
.campaign-list ul li .campaign-desc {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2%;
  font-weight: 400;
  padding: 8px 15px 8px 10px;
  margin-bottom: 5px;
  color: black;
}
.campaign-list ul li.highlighted .campaign-desc {
  color: #ffffff;
}

/* Campaign popup */
.campaign-wrapper {
  padding: 60px 20px 20px 20px;
}
.campaign-content {
  text-align: center;
}
.campaign-content h1 {
  font-family: var(--textFont) !important;
  font-weight: 700;
  line-height: 34px;
  font-size: 24px;
  letter-spacing: 2%;
  margin-bottom: 10px;
  padding-top: 5px;
  color: black;
}
.campaign-content p.campaign-desc {
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0%;
  font-weight: 400;
  color: black;
}
.campaign-content p {
  font-size: 12px;
}
.campaign-content .campaign-img {
  width: 170px;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.campaign-content .campaign-img img {
  width: 100%;
  height: auto;
}

.campaign-content .below-btn-text {
  margin-bottom: 10px;
}

/* Campaign detail page (new layout) */
.campaign-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.campaign-detail-back {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #000 !important;
  text-decoration: none;
}
.campaign-detail-title {
  font-family: var(--textFont) !important;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  text-align: center;
  flex: 1;
}
.campaign-detail-fav {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #999;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.campaign-detail-fav.is-favorite,
.campaign-detail-fav.is-favorite i {
  color: var(--primaryColor);
}
.campaign-detail-image {
  width: 100%;
  overflow: hidden;
}
.campaign-detail-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 50vh;
}
.campaign-detail-body {
  background-color: var(--secondaryColor);
  padding: 20px 20px 40px 20px;
  min-height: 50vh;
}
.campaign-detail-content {
  text-align: left;
  padding-bottom: 10px;
}
.campaign-detail-content h1 {
  font-family: var(--titleFont) !important;
  font-weight: 700;
  font-size: 24px !important;
  margin: 10px 0 5px;
  color: #000;
  line-height: 28px;
}
.campaign-detail-subtitle {
  font-size: 14px;
  line-height: 20px;
  color: var(--primaryColor);
  font-weight: 500;
  margin-bottom: 10px;
}
.campaign-detail-desc {
  max-height: 80px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.campaign-detail-desc.expanded {
  max-height: 2000px;
}
.campaign-detail-desc p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 5px;
}
.campaign-read-more {
  font-size: 13px;
  color: var(--primaryColor) !important;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 15px;
  font-weight: 500;
}
.campaign-detail-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-top: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.info-card-row {
  padding: 8px 0;
}
.info-card-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primaryColor);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  font-family: var(--textFont) !important;
}
.info-card-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
  font-family: var(--textFont) !important;
}
.info-card-divider {
  border-top: 1px solid #f0f0f0;
  margin: 4px 0;
}
.campaign-detail-cta-fixed {
  padding: 15px 0;
  text-align: center;
}
.campaign-detail-cta-fixed .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white !important;
}

.banner-small {
  width: 100%;
  height: auto;
  padding-bottom: 10px;
}

.banner-big {
  width: 100%;
  height: auto;
  padding-bottom: 10px;
}

.accordion-container {
  width: 100%;
  margin-bottom: 10px;
}
.accordion-toggle {
  background-color: #eeeeee94;
  color: #000000;
  border: none;
  padding: 16px 20px;
  text-align: left;
  width: 100%;
  font-size: 12px;
  border-radius: 15px;
  margin-bottom: 10px;
  font-family: var(--textFont);
}
.accordion-content {
  display: none;
  padding: 15px 20px;
}
.campaign-instructions {
  border-top: 1px solid #e0e0e0;
  padding: 30px 15px 30px 15px;
}
.campaign-instructions h2 {
  font-size: 28px;
  text-align: center;
  padding-bottom: 10px;
}
.instructions-step-container {
  display: flex;
  gap: 10px;
  height: 45px;
  align-items: center;
}
.instructions-step {
  background: var(--complementColor);
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-family: var(--titleFont);
}
.instructions-text {
  width: calc(100% - 50px);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 0px;
}
.instructions-divider {
  border-left: 3px dotted #000000;
  height: 20px;
  margin: 5px 0px 5px 22px;
}
.campaign-bottom {
  position: fixed;
  bottom: 0;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 40px);
  backdrop-filter: blur(10px);
  /* border-top-left-radius: 5px; */
  /* border-top-right-radius: 5px; */
  /* background-color: white; */
}

.discount-code-display {
  margin-bottom: 4px;
  text-align: start;
  width: fit-content;
  display: block;
}

.discount-code-text {
  background-color: #f8f9fa;
  border: 2px dashed #dee2e6;
  padding: 2px;
  border-radius: 8px;
  font-family: monospace;
  font-size: 10px;
  font-weight: bold;
  color: #495057;
  margin: 0 10px;
  max-width: 300px;
  word-break: break-all;
}

/* My acoount */
.my-account-banner {
  background: var(--complementColor);
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.my-account-banner .profile-icon-large {
  background: var(--primaryColor);
  color: var(--secondaryColor);
  border-radius: 50%;
  font-size: 41px;
  height: 120px;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  text-transform: uppercase;
  font-family: var(--textFont);
}
.my-account-wrapper {
  padding: 15px 20px;
}
.my-account-info {
  display: flex;
  gap: 10px;
  padding-bottom: 15px;
}
.my-account-info-left,
.my-account-info-right {
  width: 50%;
  padding: 10px;
  border-radius: 10px;
  /* background: var(--secondaryColor); */
  background: white;
}

.my-account-info-left p,
.my-account-info-right p {
  font-size: 12px;
  margin-bottom: 5px;
}
p.in-form-title {
  font-weight: 600;
  text-align: left;
  padding-top: 15px;
}
/* Chat */
.chat_wrapper {
  padding: 25px 30px;
  height: 100vh;
  background-color: var(--secondaryColor);
}
.chat_wrapper iframe {
  height: calc(100vh - 150px);
}

/* Sellers */
.sellers-banner {
  background: #f6f6f6;
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sellers-header {
  font-weight: 700;
  text-align: left;
  padding-top: 18px;
}
.sellers-info {
  display: flex;
  gap: 10px;
  padding-bottom: 15px;
}
.sellers-info-left,
.sellers-info-right {
  width: 50%;
  padding: 10px;
  border-radius: 10px;
  background: #e8e8e8;
}

.sellers-info-left p,
.sellers-info-right p {
  font-size: 12px;
  margin-bottom: 5px;
}

/* Marketing */
.marketing-banner {
  background: #f6f6f6;
  height: 30vh;
  text-align: center;
  justify-content: center;
  align-items: center;
}

#loading {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  opacity: 0.7;
  background-color: #fff;
  z-index: 99;
  text-align: center;
}

#loading-image {
  position: absolute;
  top: 40%;
  left: 50%;
  z-index: 100;
}
#loading-text {
  position: absolute;
  top: 60%;
  left: 50%;
  z-index: 100;
  font-weight: 700;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

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

.form-control:focus {
  border-color: #9ab9ad !important;
}

.nav.side-menu > li.active > a {
  background: #002d59 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.fa-angle-down {
  float: right;
}

a.fa-user {
  margin-right: 5px;
}

.fa-sign-out {
  margin-right: 5px;
}

.nav-md ul.nav.child_menu li:before {
  content: none;
}

.nav-md ul.nav.child_menu li:after {
  border-left: 1px solid #8a8a8a !important;
}

nav.side-menu > li.current-page,
.nav.side-menu > li.active {
  border-right: none !important;
}

.nav li.current-page {
  background: none !important;
}

.nav li li li.current-page {
  background: none;
}

.nav li li.current-page a {
  color: #fff;
  font-weight: 700 !important;
}

.nav.side-menu > li.active > a {
  text-shadow: rgba(0, 0, 0, 0.25) 0 -1px 0;
  background: #f3f3f3;
  -webkit-box-shadow:
    rgba(0, 0, 0, 0.25) 0 1px 0,
    inset rgba(255, 255, 255, 0.16) 0 1px 0;
  box-shadow:
    rgba(0, 0, 0, 0.25) 0 1px 0,
    inset rgba(255, 255, 255, 0.16) 0 1px 0;
}

.top_nav {
  background-color: white !important;
}

.nav.side-menu > li.current-page,
.nav.side-menu > li.active {
  border: none !important;
}

.nav.side-menu > li > a,
.nav.child_menu > li > a {
  font-weight: 300 !important;
  font-size: 15px !important;
}

.nav > li > a:hover,
.nav > li > a:focus {
  color: #fff !important;
  text-decoration: underline;
}

.nav.child_menu li:hover,
.nav.child_menu li.active {
  background-color: #002d59 !important;
}

.costum_search label {
  width: 100% !important;
}

.costum_search input {
  width: 100% !important;
  margin: 0 !important;
  border: none !important;
  border-bottom: 1px solid #e8e8e8 !important;
  border-radius: 0 !important;
  background-color: white;
  opacity: 1 !important;
}

.sorting:after {
  content: none !important;
}

.sorting_asc:after {
  content: none !important;
}

.sorting_desc:after {
  content: none !important;
}

.table-bordered {
  border: none !important;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: white;
}

.table-bordered td {
  border: none !important;
}

.table td {
  border: none !important;
}
.table th {
  border-top: none !important;
  border-left: none !important;
}

.table-bordered th {
  border: 0px !important;
  border-bottom: 1px solid #e8e8e8 !important;
}

.table tbody tr:hover {
  background-color: #9ab9ad !important;
  color: black !important;
}

tbody tr td a {
  color: black !important;
}

.tr_disabled {
  pointer-events: none;
  background-color: #d3d3d3 !important;
  opacity: 0.6;
  position: relative;
}

.tr_disabled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.costum_x_panel {
  background: none;
  border: none;
  box-shadow: none;
}

.custom_paging {
  margin-top: 2%;
}

.custom_paging a {
  background-color: white !important;
  color: #9ab9ad;
}

.custom_paging a:hover {
  color: #819d92;
}

button:focus {
  outline: none;
}
button:focus-visible {
  outline: none;
}

.x_title h2 {
  font-weight: 700;
}

/* The container */
.container_mix {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container_mix input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark_mix {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 5px;
  border: 1px solid #aaaaaa;
}

/* On mouse-over, add a grey background color */
.container_mix:hover input ~ .checkmark_mix {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container_mix input:checked ~ .checkmark_mix {
  background-color: #002d59;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark_mix:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container_mix input:checked ~ .checkmark_mix:after {
  display: block;
}

/* Style the checkmark/indicator */
.container_mix .checkmark_mix:after {
  left: 6px;
  top: 2px;
  width: 7px;
  height: 11px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.expire-banner {
  width: 100%;
  background-color: var(--primaryColor);
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
}

.expire-banner p {
  text-align: center;
  color: white;
  padding: 10px 0px;
  margin: 0px;
  font-size: 12px;
}

.expire-banner a {
  color: white;
  font-size: 12px;
  text-decoration: underline;
}

.search-input {
  background: #f5f5f5;
  border-radius: 30px;
  border: 1px solid #0000001a;
  box-shadow: 0px 4px 13px 1px #0000000d;
  height: 56px;
  width: 100%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 12px;
}

.search-input i {
  color: #86869e;
  font-size: 18px;
  flex-shrink: 0;
}

.search-input input {
  background-color: transparent !important;
  border: none !important;
  flex: 1;
  font-size: 16px;
  color: #333;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.search-input input::placeholder {
  color: #86869e;
  font-weight: 400;
}

.search-input input:focus {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

/* Bottom Nav Bar styles */
.bottom-navbar {
  position: fixed;
  bottom: 0px;
  background: var(--complementColor);
  width: 100%;
  z-index: 999;
}

.bottom-navbar .bottom-navbar-buttons {
  display: flex;
  width: 100%;
  padding-bottom: 5px;
  justify-content: space-around;
}

.bottom-navbar .bottom-navbar-buttons .navbar-button {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 25px;
}

/* Seller Bottom Nav Bar styles */
.bottom-navbar-seller {
  position: fixed;
  bottom: 0px;
  background: #f6f6f6;
  width: 100%;
  z-index: 999;
}

.bottom-navbar-seller .bottom-navbar-buttons {
  display: flex;
  width: 100%;
  padding-bottom: 5px;
  justify-content: space-around;
}

.bottom-navbar-seller .bottom-navbar-buttons .navbar-button {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 25px;
}

/* Contact us page */
.contact-banner {
  background: var(--complementColor);
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 20px;
}

.contact-banner .buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-banner .buttons a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.contact-banner .buttons a span {
  font-weight: 700;
  font-size: 14px;
  line-height: 12px;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 15px 20px;
  gap: 20px;
  /* height: clamp(200px, 65vh, 800px); */
  height: fit-content;
  padding-bottom: 100px;
  overflow-y: auto;
}

.contact-wrapper section ul {
  list-style-type: none;
  padding-left: 0;
}

.contact-wrapper section ul li {
  margin-bottom: 10px;
}

.contact-wrapper section ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.contact-wrapper section ul li span {
  font-weight: 700;
  font-size: 14px;
  line-height: 12px;
}

/* App icons */

.ai-chat_white {
  background: url(../../img/ai-chat_vit.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.ai-chat_black {
  background: url(../../img/ai-chat_svart.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.user_white {
  background: url(../../img/anvandare_orange.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.user_white_filled {
  background: url(../../img/anvandare_fylld_orange.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.bottom-navbar .bottom-navbar-buttons .active i {
  filter: brightness(0) saturate(100%) invert(34%) sepia(71%) saturate(1657%)
    hue-rotate(342deg) brightness(97%) contrast(88%);
}

.bottom-navbar-seller .bottom-navbar-buttons .active i {
  filter: brightness(0) saturate(100%) invert(34%) sepia(71%) saturate(1657%)
    hue-rotate(342deg) brightness(97%) contrast(88%);
}

.deal_white {
  background: url(../../img/erbjudanden_orange.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.deal_white_filled {
  background: url(../../img/erbjudanden_fylld_orange.png) no-repeat center
    center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.chat_white {
  background: url(../../img/kommunikation_orange.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.chat_white_filled {
  background: url(../../img/kommunikation_fylld_orange.png) no-repeat center
    center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.deal_blue {
  background: url(../../img/erbjudanden_fylld_bla.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.ai-chat_beige_filled {
  background: url(../../img/ai-chat_fylld_beige.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.communication_beige_filled {
  background: url(../../img/kommunikation_fylld_beige.png) no-repeat center
    center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.kommunikation_bla {
  background: url(../../img/kommunikation_bla.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.ai-chat_bla {
  background: url(../../img/ai-chat_bla.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.heart_blue {
  background: url(../../img/hjarta_bla.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.e_blue {
  background: url(../../img/e_bla.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.user_blue {
  background: url(../../img/anvandare_bla.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.www_blue {
  background: url(../../img/www_bla.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.spec_blue {
  background: url(../../img/spec_bla.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.sales_white {
  background: url(../../img/sales_vit.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.sales_black {
  background: url(../../img/sales_black.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.sellers_white {
  background: url(../../img/sellers_vit.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.sellers_black {
  background: url(../../img/sellers_black.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.marketing_white {
  background: url(../../img/marketing_vit.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.marketing_black {
  background: url(../../img/marketing_black.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}
.roles_white {
  background: url(../../img/icon_roles.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.roles_black {
  background: url(../../img/byte_svart.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.partner_fylld_bla {
  background: url(../../img/partner_fylld_bla.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.kategorier_bla {
  background: url(../../img/kategorier_bla.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.kategorier_bla_line {
  background: url(../../img/kategorier_bla_line.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.erbjudande_bla_line {
  background: url(../../img/erbjudanden_bla_line.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.partner_bla_line {
  background: url(../../img/partner_bla_line.png) no-repeat center center !important;
  background-size: contain !important;
  width: 30px !important;
  height: 30px !important;
  display: inline-block !important;
}

.filter_svart {
  background: url(../../img/filter_svart.png) no-repeat center center !important;
  background-size: contain !important;
  width: 25px !important;
  height: 25px !important;
  display: inline-block !important;
}

.bakat_svart {
  background: url(../../img/bakat_svart.png) no-repeat center center !important;
  background-size: contain !important;
  width: 20px !important;
  height: 20px !important;
  display: inline-block !important;
  margin-top: 20px;
}

.app-header {
  font-family: var(--textFont) !important;
  font-optical-sizing: auto !important;
  letter-spacing: normal !important;
  color: black !important;
  font-weight: bold !important;
}

/*
   Favorite heart button
    */
.favorite-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 15;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.15s ease,
    background 0.15s ease;
  padding: 0;
}

.favorite-btn:active {
  transform: scale(0.9);
}

.favorite-btn i {
  font-size: 16px;
  color: #999;
  transition: color 0.15s ease;
}

.favorite-btn.is-favorite i {
  color: var(--primaryColor);
}

.is-favorite i {
  color: var(--primaryColor);
}

/*
   "Visa fler" button
    */
.show-more-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #fff;
  color: #222;
  border: none;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.show-more-btn:hover {
  background: #f5f5f5;
  border-color: #bbb;
}

/*
   Partner logos block
    */
.partners-logos-block {
  padding: 24px 16px 0;
}
.partners-logos-block .app-header {
  margin-bottom: 16px;
}
.partners-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 12px;
}
.partner-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #222;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.partner-logo-item.hidden-partner {
  display: none;
}
.partner-logo-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  /* background: #f0ebe4; */
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.partner-logo-item:active .partner-logo-circle {
  transform: scale(0.95);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.partner-logo-circle img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.partner-logo-name {
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*
   Newsletter block
    */
.newsletter-block {
  padding: 20px 16px 0;
}
.newsletter-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 22px 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/*
   Campaign block
    */
.campaign-block {
  padding: 20px 0px;
}
.campaign-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 22px 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/*
   Info block: Rörelse & gemenskap
    */
.info-block-rorelse {
  padding: 20px 16px 24px;
}
.info-block-card {
  background: #b9d4c9;
  border-radius: 20px;
  overflow: hidden;
}
.info-block-img-wrap {
  width: 100%;
  overflow: hidden;
}
.info-block-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.info-block-text {
  padding: 20px 22px 24px;
}

/***** Login Redesign *****/
.login-redesign {
  background: var(--secondaryColor);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-top-section {
  text-align: center;
  padding: 40px 30px 20px;
  width: 100%;
}
.eezi-logo-centered {
  width: 120px;
  height: auto;
  margin: 0 auto 15px;
  display: block;
}
.login-headline {
  font-family: var(--titleFont) !important;
  font-size: 26px !important;
  font-weight: 700;
  color: #000;
  margin: 0 0 8px !important;
  line-height: 30px;
}
.login-subtext {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}
.login-form-section {
  width: 100%;
  padding: 0 24px 0;
}
.login-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 15px;
}
.login-card form {
  margin-top: 0 !important;
}
.login-divider {
  text-align: center;
  position: relative;
  padding: 10px 0;
}
.login-divider span {
  font-size: 14px;
  color: #999;
  background: var(--secondaryColor);
  padding: 0 15px;
  position: relative;
  z-index: 1;
  font-family: var(--textFont);
}
.login-divider::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #ddd;
}
.login-info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 15px;
  text-align: center;
}
.login-card-title {
  font-family: var(--textFont) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  color: #000;
  margin: 0 0 8px !important;
  line-height: 22px;
}
.login-card-desc {
  font-size: 14px;
  color: #666;
  margin: 0 0 15px;
  line-height: 1.4;
}
.login-outlined-btn {
  background: transparent !important;
  border: 2px solid var(--primaryColor) !important;
  color: var(--primaryColor) !important;
}

/* Input with icons */
.input-icon-wrapper {
  position: relative;
  margin-bottom: 15px;
}
.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  z-index: 2;
  pointer-events: none;
}
.input-with-icon {
  padding-left: 44px !important;
  margin-bottom: 0 !important;
}

/*  Push Notification Soft Prompt Modal  */
.push-prompt-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.push-prompt-overlay.visible {
  opacity: 1;
}
.push-prompt-modal {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px 24px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s ease;
}
.push-prompt-overlay.visible .push-prompt-modal {
  transform: translateY(0) scale(1);
}
.push-prompt-icon {
  margin-bottom: 16px;
}
.push-prompt-icon svg {
  animation: push-prompt-bell 1s ease-in-out 0.5s;
  transform-origin: top center;
}
@keyframes push-prompt-bell {
  0%,
  100% {
    transform: rotate(0);
  }
  15% {
    transform: rotate(14deg);
  }
  30% {
    transform: rotate(-12deg);
  }
  45% {
    transform: rotate(8deg);
  }
  60% {
    transform: rotate(-6deg);
  }
  75% {
    transform: rotate(3deg);
  }
  90% {
    transform: rotate(-1deg);
  }
}
.push-prompt-title {
  font-family: var(--textFont) !important;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 8px;
}
.push-prompt-text {
  font-family: var(--textFont);
  font-size: 14px;
  line-height: 21px;
  color: #555555;
  margin-bottom: 24px;
}
.push-prompt-btn {
  width: 100%;
  border-radius: 12px !important;
  font-size: 15px !important;
  padding: 14px !important;
  margin-bottom: 10px !important;
}
.push-prompt-btn:last-child {
  margin-bottom: 0 !important;
}

/* iOS: 44px padding (status bar) */
.topbar {
  padding-top: 44px !important;
}
.top-nav {
  padding: 44px 20px !important;
}

.is-ios .panel-header {
  margin-top: 25px;
}

/* Android: 12px padding */
.is-android .topbar {
  padding-top: 10px !important;
}
.is-android .top-nav {
  padding: 10px 20px !important;
}

.is-browser .topbar {
  padding-top: 10px !important;
}
.is-browser .top-nav {
  padding: 10px 20px !important;
}

/* ============================================================
   GLOBAL PAGE LOADER
   ============================================================ */
.eezi-page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(252, 237, 218, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  pointer-events: none;
}
.eezi-page-loader.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.eezi-page-loader .loader-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(238, 78, 52, 0.2);
  border-top-color: #ee4e34;
  border-radius: 50%;
  animation: eezi-spin 0.7s linear infinite;
}
@keyframes eezi-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   CAMPAIGN OVERLAY
   ============================================================ */
.campaign-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #fcedda;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
}
.campaign-overlay.open {
  transform: translateX(0);
}
.campaign-overlay.dragging {
  transition: none;
}
/* Scrim behind overlay for depth cue during swipe */
.campaign-overlay-scrim {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.campaign-overlay-scrim.visible {
  opacity: 1;
  pointer-events: auto;
}
.campaign-overlay-scrim.dragging {
  transition: none;
}
.campaign-overlay-handle {
  display: none;
}
/* Inside the overlay, keep safe-area padding for iPhone status bar */
.campaign-overlay .topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  background: #fff;
}
.campaign-overlay .top-nav {
  position: absolute;
  top: 0;
  width: 100%;
}

/* ============================================================
   ANIMATIONS & TRANSITIONS
   ============================================================ */
/* Navbar icon transitions */
.bottom-navbar .navbar-button a,
.bottom-navbar-seller .navbar-button a {
  transition: transform 0.2s ease;
}
.bottom-navbar .navbar-button a:active,
.bottom-navbar-seller .navbar-button a:active {
  transform: scale(0.85);
}
.bottom-navbar .navbar-button a.active .navbar-icon {
  animation: navIconPop 0.3s ease;
}
@keyframes navIconPop {
  0% {
    transform: scale(0.7);
    opacity: 0.5;
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Staggered fade-in for deal cards */
.deals-grid .product,
.campaign-list ul .product {
  opacity: 0;
  transform: translateY(12px);
  animation: dealFadeIn 0.35s ease forwards;
}
@keyframes dealFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Stagger the first 8 items */
.deals-grid .product:nth-child(1) {
  animation-delay: 0.03s;
}
.deals-grid .product:nth-child(2) {
  animation-delay: 0.06s;
}
.deals-grid .product:nth-child(3) {
  animation-delay: 0.09s;
}
.deals-grid .product:nth-child(4) {
  animation-delay: 0.12s;
}
.deals-grid .product:nth-child(5) {
  animation-delay: 0.15s;
}
.deals-grid .product:nth-child(6) {
  animation-delay: 0.18s;
}

/* Campaign card press/tap feedback */
.product a {
  display: block;
  transition: transform 0.15s ease;
}
.product a:active {
  transform: scale(0.97);
}

/* Button tap feedback */
.btn-primary {
  transition:
    transform 0.12s ease,
    opacity 0.12s ease;
}
.btn-primary:active {
  transform: scale(0.96);
  opacity: 0.85;
}

/* Favorite heart animation */
.favorite-btn.is-favorite i {
  animation: heartPop 0.3s ease;
  color: #ee4e34;
}
@keyframes heartPop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

/* Filter chip enter animation */
.filter-chip {
  animation: chipIn 0.2s ease;
}
@keyframes chipIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Topbar sticky blend — subtle shadow on scroll */
.topbar {
  transition: box-shadow 0.2s ease;
}
.topbar.scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

/* Smooth section header enter */
.app-header {
  animation: headerSlideIn 0.4s ease;
}
@keyframes headerSlideIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================================
   NATIVE APP FEEL
   ============================================================ */
/* Prevent overscroll bounce / pull-to-refresh in app */
html {
  overscroll-behavior-y: none;
}
body {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}
/* Allow text selection in forms and text content */
input,
textarea,
.campaign-content p,
.description,
.accordion-content p {
  user-select: text;
  -webkit-user-select: text;
}
/* Smooth scroll globally */
html {
  scroll-behavior: smooth;
}

/* Horizontal scroll lists — hide scrollbar natively */
.campaign-list ul {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.campaign-list ul::-webkit-scrollbar {
  display: none;
}

/* CTA banner subtle hover */
.cta-banner {
  transition: transform 0.2s ease;
}
.cta-banner:active {
  transform: scale(0.98);
}
