*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  background-color: hsl(60, 11%, 36%);
}

html {
  scroll-behavior: smooth;
  font-family: "Mulish", sans-serif;
  width: 100%;
  height: 100%;
  font-size: 16px;
  overflow-x: hidden;
}

#textleft,
#textright,
#textfullwidth {
  width: 100%;
  padding: 20px;
  z-index: 300;
}

.mobile-menu,
.mobile-footer {
  display: block;
}

.desktop-menu,
.desktop-footer {
  display: none;
}

.main {
  max-width: 100%;
  overflow-x: hidden;
}

.logomobile {
  width: 200px;
  height: auto;
  margin: 4px 4px 4px 4px;
}

.navmobile {
  background-color: white;
  width: 100%;
  max-width: 100%;
  z-index: 1100; /* Already correct - higher than search */
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.12);
  position: fixed;
  top: 0;
  display: grid;
  grid-template-columns: 50px 1fr 50px 60px;
  overflow: hidden;
  font-family: "Mulish", sans-serif;
}

.nav-open {
  float: left;
  padding: 6px 0px;
}
.nav-logo {
  padding: 6px 6px 6px 12px;
  padding-bottom: 0px;
  text-align: center;
}

.nav-search {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-cart {
  display: flex;
  justify-content: center;
  align-items: center;
}

.badgetop {
  display: flex; /* center the number */
  justify-content: center;
  align-items: center;
  width: 20px; /* size of the circle */
  height: 20px;
  background-color: darkolivegreen; /* circle color */
  color: antiquewhite; /* number color */
  font-size: 12px; /* smaller text to fit circle */
  font-weight: 600;
  border-radius: 50%; /* makes it a circle */
  position: absolute; /* to sit over the icon */
  top: 8px; /* adjust vertical position */
  right: 5px; /* adjust horizontal position */
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); /* subtle shadow */
  z-index: 10; /* on top of icon */
  pointer-events: none; /* so it doesn't block clicks */
}

svg.icon-search-mob {
  width: 1.4rem;
  height: 1.4rem;
}

svg.icon-cart-mob {
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 5px;
}

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

.cart-rotate {
  animation: rotate 0.3s linear; /* linear = constant smooth speed */
}

.navlistmobile {
  background-color: white;
  color: gray;
  height: 100vh;
  z-index: 1000;
  position: fixed;
  top: 0px;
  left: -120%;
  padding: 68px 0px 30px 0px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  transition: 0.5s all ease;
  line-height: 3;
  overflow-y: auto;
  overflow-x: hidden;
  width: 90vw;
}
.open {
  left: 0%;
}
.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 4px;
  box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
}

.line {
  fill: none;
  stroke: hsl(0, 0%, 49%);
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}

ul.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

li.menu {
  float: left;
}

a.mobile {
  color: hsl(0, 0%, 0%);
  text-decoration: none;
  font-family: "Mulish", sans-serif;
  font-size: 0.9rem;
  line-height: 2.2rem;
  font-weight: 400;
  padding: 10px;
}

hr.mobile {
  border: 0;
  border-top: 1px solid #e5e5e5;
  width: 70%;
  margin-left: 0;
}

h1.content {
  font-family: "Source Serif Pro", serif;
  max-width: 35em;
  line-height: 1.5;
  letter-spacing: 0.03em;
  display: block;
  font-size: 30px;
  font-weight: 100;
  font-style: italic;
}

.menu-item {
  border-bottom: 1px solid #e0e0e0;
}

.menu-item > a,
.menu-item > .menu-header {
  display: flex;
  align-items: center;
  padding: 0px 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background-color 0.3s ease;
  cursor: pointer;
  position: relative;
}

.menu-item > a:hover,
.menu-item > .menu-header:hover {
  background-color: #f0f0f0;
}

.menu-header {
  justify-content: space-between;
}

.menu-icon {
  margin-right: 10px;
  font-size: 24px;
}

.menu-header::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.menu-header.active::after {
  transform: rotate(45deg);
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f8f8f8;
}

.submenu.active {
  max-height: 600px;
}

.submenu a {
  display: flex;
  align-items: center;
  padding: 8px 20px 8px 30px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: background-color 0.3s ease, border-left-color 0.3s ease;
  border-left: 3px solid transparent;
}

.submenu a:hover {
  background-color: #e8e8e8;
  border-left-color: #666;
}

.booklabel {
  margin-right: 8px;
  font-size: 12px;
  color: #999;
}

.menu-divider {
  height: 8px;
  background-color: #e0e0e0;
}

.country-label {
  font-size: 13px;
  color: #666;
  padding: 8px 20px 8px 40px;
  background-color: #f0f0f0;
}

.searchblockmobile.active {
  position: fixed; /* Change from absolute to fixed */
  top: 68px;
  max-height: 80px;
  width: 100%;
  max-width: 100%;
  opacity: 1;
  visibility: visible;
  padding: 0px 20px;
  z-index: 999;
  pointer-events: auto; /* Add this */
}

div.searchblockmobile {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background-color: hsla(46, 42%, 95%, 0.95);
  backdrop-filter: blur(2px);
  position: sticky;
  top: 68px;
  padding: 0;
  transition: all 0.4s ease;
  max-width: 100%;
  width: 100%;
  pointer-events: none; /* Add this - prevents blocking when hidden */
}

input.topsearchmobile {
  width: 100%; /* Changed from min-width: 90vw */
  max-width: 100%; /* Added to ensure it doesn't overflow */
  margin: 10px 0px; /* Simplified margins */
  padding: 10px 45px 10px 55px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: hsl(210, 1%, 36%);
  background-color: hsla(46, 42%, 98%, 0.95);
  border: 0px solid hsl(46, 42%, 80%);
  font-size: 16px;
  line-height: 1rem;
  letter-spacing: 0.15rem;
  transition: color 0.3s;
  display: flex;
  border-radius: 0px;
  box-sizing: border-box; /* Added to include padding in width calculation */
}

input.topsearchmobile:focus {
  background-color: hsla(46, 42%, 99%, 0.95);
  outline: none; /* Remove default outline */
  border: 1px solid hsl(46, 42%, 60%);
}

input.topsearchmobile::placeholder {
  filter: grayscale(0.8);
}

.topsearch-icon {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 18px;
  filter: grayscale(0.8);
}

.topclear-icon {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
  color: hsl(210, 1%, 36%);
  transition: color 0.3s;
  padding: 12px;
  line-height: 1;
}

.topclear-icon:hover {
  color: hsl(0, 50%, 50%);
}

/* ===start page content styles=== */

.card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: hsl(17, 37%, 92%);
  filter: grayscale(0.3);
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.imgcard {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

div#contentwrapper {
  margin-top: 68px;
}

div.homegrid {
  margin-top: 68px;
  max-width: 100vw;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding-bottom: 30px;
  padding-top: 10px;
  background-color: hsl(60, 11%, 56%);
}

div.searchresultpage {
  margin-top: 130px;
}

div.detailpage {
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 4px;
}

h4 {
  font-size: 30px;
  text-align: center;
  font-weight: 200;
  margin: 0px;
}

/* ========== cookie-consent-extra styles============ */

button[data-role="necessary"] {
  /* Your styles here */
  background: #eaeff2 !important;
  border-color: #eaeff2 !important;
  color: #2c2f31 !important;
}

div.detailpage {
  padding: 0px;
}

div.ecomtop {
  display: block;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  background-color: hsl(60, 11%, 36%);
  color: hsl(46, 42%, 84%);
  padding: 5px;
}

div.footer {
  display: block;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  background-color: hsl(46, 42%, 94%);
  color: hsl(0, 0%, 16%);
  padding: 4px;
  min-height: 300px;
  max-width: 100%;
  overflow: hidden;
  padding-top: 20px;
}

p.footer {
  font-weight: 100;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-left: 5px;
  margin-right: 0px;
  margin-top: 0px;
  padding-top: 0px;
}
span.newsletter {
  font-weight: 100;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-left: 0px;
  margin-right: 20px;
  margin-top: 20px;
  padding-top: 20px;
}

p.copyright {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 20px;
  padding-top: 0px;
  text-align: center;
}

p.clink {
  font-weight: 100;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  margin-left: 10px;
  margin-right: 0px;
  margin-top: 0px;
  padding-top: 0px;
  color: hsl(32, 62%, 45%);
  text-align: center;
}

a.copyright {
  font-size: 14px;
  text-decoration: none;
  font-weight: 300;
  color: hsl(32, 62%, 35%);
}
a.copyright:hover {
  color: hsl(180, 80%, 33%);
}

a.copyright:hover > span.ico {
  color: hsl(180, 80%, 33%);
  font-weight: 500;
}

h2.footer {
  font-weight: 100;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 0px;
  font-family: "Playfair Display", serif;
  text-align: center;
}

span.grid2 {
  margin-top: 30px;
  padding-left: 180px;
}

span.grid3 {
  margin-top: 0px;
}

p.socials {
  margin-left: 60px;
  margin-right: 0px;
  padding-top: 30px;
  margin-top: 10px;
}
a.social {
  margin-right: 40px;
  text-decoration: none;
}

svg.social:hover {
  fill: hsl(180, 80%, 33%);
}

.mainimg {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 8px;
  border: solid 2px hsl(32, 62%, 65%);
  width: 90vw;
  height: auto;
  cursor: pointer;
  display: block;
  margin: 15px;
}
.ecomblock {
  padding: 0px;
}
.ecomdesc {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  background-color: hsl(46, 42%, 84%);
  color: hsl(0, 0%, 16%);
  padding: 30px 5px;
}

div.ecomgrid {
  display: block;
}

p.small {
  font-size: 18px;
  margin: 0px;
  padding: 0px;
}

p.smallright {
  font-size: 16px;
  margin: 0px;
  padding: 0px;
  text-align: center;
  font-style: normal;
  color: hsl(46, 42%, 64%);
}

p.short {
  font-family: "Spectral", serif;
  font-weight: 100;
  font-size: 18px;
  padding: 0px;
  line-height: 1.7;
  letter-spacing: 1.3px;
  margin: 7px;
}
p.shortmarginleft {
  margin-left: 30px;
}

p.lead {
  font-family: "Spectral", serif;
  font-weight: 100;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.3px;
  margin-left: 7px;
  margin-right: 7px;
}

p.normal {
  font-family: "Spectral", serif;
  font-weight: 100;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 1.3px;
  margin-left: 5px;
  margin-right: 0px;
}

p.intro2 {
  font-weight: 300;
  font-size: 18px;
  margin: 0px;
  padding: 0px;
  line-height: 1.7;
  letter-spacing: 1.3px;
  margin-left: 5px;
  margin-right: 0px;
}

p.userinfo {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 1.3px;
  margin-left: 100px;
  margin-right: 80px;
}

a.userinfo {
  font-weight: 200;
  text-decoration: none;
  color: hsl(180, 80%, 33%);
}
a.userinfo:hover {
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 8px;
}

a.normal2 {
  text-decoration: none;
  color: hsl(180, 80%, 33%);
}
a.normal2:hover {
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 8px;
}

dl.normal {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 1.3px;
  margin-top: 50px;
  margin-left: 10px;
  margin-right: 8px;
}
dl.normal > dt {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
}

dl.normal > dt:before {
  content: "\2022";
  margin-right: 10px;
  font-size: 18px;
  color: hsl(32, 62%, 55%);
}

p.shipping {
  font-weight: 100;
  font-size: 20px;
  font-style: italic;
  margin: 0px;
  padding: 0px;
  margin-left: 80px;
  margin-right: 80px;
  margin-top: 50px;
  color: hsl(46, 42%, 54%);
}

p.readmore {
  margin-top: 10px;
  font-size: 20px;
}

p.markforlater {
  margin-top: 40px;
  font-size: 16px;
}

p.tagcloud {
  max-width: 95vw;
  margin-top: 40px;
  font-size: 18px;
  text-align: center;
}
p.tagcloud a {
  display: inline-block; /* ⬅️ prevents splitting */
  white-space: nowrap; /* ⬅️ keeps text together */
}

p.price {
  font-weight: 500;
  font-size: 18px;
  margin: 30px auto 7px auto;
  padding: 10px;
  margin-top: 30px;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 1.3px;
  border-radius: 20px;
  width: 80vw;
  max-width: 420px;
  background-color: hsl(60, 11%, 40%);
  color: hsl(46, 42%, 84%);
}

span.flaggray {
  filter: grayscale(0.3);
}

button.buy {
  display: block;
  font-weight: 500;
  font-size: 20px;
  margin: 30px auto 7px auto;
  padding: 10px;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 1.3px;
  border-top: 1px solid hsl(46, 42%, 64%);
  border-bottom: 1px solid hsl(46, 42%, 64%);
  border-left: 0;
  border-right: 0;
  border-radius: 20px;
  width: 80vw;
  max-width: 420px;
  background-color: hsl(60, 11%, 40%);
  color: hsl(32, 62%, 55%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 3px 6px rgba(0, 0, 0, 0.1);
}

button.buy:hover {
  cursor: pointer;
  border-bottom: 1px solid hsl(46, 42%, 84%);
  border-top: 1px solid hsl(46, 42%, 84%);
  background-color: hsl(60, 11%, 30%);
  color: hsl(180, 80%, 43%);
  transition: transform 0.1s ease;
}

button.buy:active {
  transform: translateY(2px);
}

button.newsletter {
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin: 0px 40px;
  margin-bottom: 50px;
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid hsl(46, 42%, 64%);
  border-top: 1px solid hsl(46, 42%, 64%);
  border-left: 0px solid hsl(46, 42%, 64%);
  border-right: 0px solid hsl(46, 42%, 64%);
  border-radius: 5px;
  width: 80vw;
  background-color: hsl(60, 11%, 40%);
  color: hsl(32, 62%, 65%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 3px 6px rgba(0, 0, 0, 0.1);
}

button.newsletter:hover {
  cursor: pointer;
  border-bottom: 1px solid hsl(46, 42%, 84%);
  border-top: 1px solid hsl(46, 42%, 84%);
  background-color: hsl(60, 11%, 30%);
  color: hsl(180, 80%, 43%);
  transition: transform 0.1s ease;
}

button.newsletter:active {
  transform: translateY(2px);
}

input.newsletter {
  padding: 10px 20px;
  margin: 20px 40px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 20px;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 3px 6px rgba(0, 0, 0, 0.1);
  background-color: antiquewhite;
  width: 80vw;
}

input.newsletter:focus {
  outline: none !important;
  border: 1px solid pink;
  background-color: hsl(224, 60%, 98%);
  color: hsl(210, 1%, 36%);
}

span.tax {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.3px;
  padding-left: 20px;
  font-style: italic;
}

span.curr {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 1.3px;
  padding-left: 20px;
  font-style: normal;
}

a.normal {
  text-decoration: none;
  font-weight: 300;
  color: hsl(32, 62%, 55%);
}

a.normal:hover {
  color: #53ecec;
}

ul.shippinginfo {
  font-weight: 100;
  font-size: 16px;
  font-style: normal;
  line-height: 1.7;
  margin: 0px;
  padding: 0px;
  margin: 7px;
  margin-top: 30px;
  color: hsl(46, 42%, 64%);
  list-style-type: none;
  padding-left: 0;
}

ul.shippinginfo li::before {
  content: "\2714\FE0E";
  margin-right: 10px;
  font-size: 16px;
}

h1 {
  font-family: "Spectral", serif;
  font-weight: 200;
  font-size: 30px;
  margin: 10px 10px;
  text-align: left;
}

h3.normal {
  font-family: "Spectral", serif;
  font-weight: 200;
  font-size: 26px;
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: 10px;
  text-align: left;
}

h3.empty {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: hsl(210, 1%, 36%);
  text-decoration: none;
  font-size: 20px;
  line-height: 1.3rem;
  letter-spacing: 0.15rem;
  transition: color 0.3s;
  display: flex;
}

h1.loginmodal {
  text-align: center;
  font-size: 40px;
}

h3.period {
  font-weight: 300;
  font-size: 22px;
  margin-top: 0px;
  color: hsl(46, 42%, 64%);
  text-align: left;
  margin-left: 10px;
}
h3.period2 {
  font-weight: 200;
  font-size: 26px;
  margin-top: 0px;
  margin-left: 70px;
  color: hsl(60, 11%, 36%);
}
.header {
  display: grid;
  grid-template-columns: 3fr 14fr 1fr 1fr 1fr 1fr;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(2px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  position: sticky;
  top: 0px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #3c3c3c;
}

.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
}

.nav-item {
  position: relative;
  margin: 0 20px;
}

.nav-link {
  text-decoration: none;
  display: block;
  position: relative;
  transition: color 0.3s;
  color: hsl(210, 1%, 36%);
  text-align: center;
  margin: 0px 20px 10px 20px;
  padding-bottom: 10px;
  text-decoration: none;
  font-size: 24px;
  letter-spacing: 0.15rem;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 40px;
  transform: translateX(-340px);
  width: 800px;
  background-color: hsl(46, 42%, 84%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 2;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0px;
}

.megamenuimg {
  width: 220px;
  height: 220px;
  border-radius: 5px;
  border: solid 1px hsl(32, 62%, 65%);
  filter: sepia(0);
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.language-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

span.ico {
  margin-right: 5px;
  font-size: 45px;
  position: relative;
  top: 2px;
  color: hsl(210, 1%, 76%);
}

.nav-link:hover,
.nav-link:hover > span.ico {
  color: hsl(159, 9%, 48%);
  font-weight: 500;
}

.nav-item:hover .nav-link,
.nav-item:hover .nav-link > span.ico {
  color: hsl(159, 9%, 48%);
  font-weight: 500;
}

.nav-item:hover .mega-menu-column > h3.mega-menu-title {
  color: hsl(159, 9%, 48%);
  font-weight: 500;
}

.mega-menu-column {
  flex: 1;
  padding: 0 0px;
}

.mega-menu-item {
  list-style: none;
  margin-bottom: 10px;
}

.mega-menu-lang {
  list-style: none;
  margin-bottom: 10px;
}

.megatopborder {
  border-top: 1px solid hsl(159, 9%, 48%);
}

.mega-menu-link {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: hsl(210, 1%, 36%);
  text-decoration: none;
  font-size: 20px;
  line-height: 1.3rem;
  letter-spacing: 0.15rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 5px;
  padding: 14px 50px;
}

.mega-menu-link:hover,
.mega-menu-link:hover > span.hand {
  color: hsl(159, 9%, 38%);
  font-weight: 600;
  background-color: hsl(46, 42%, 98%);
  border-radius: 5px;
}

.active {
  background-color: hsl(46, 42%, 74%);
}

.mega-menu-country {
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  text-decoration: none;
  color: hsl(210, 1%, 46%);
  text-decoration: none;
  font-size: 18px;
  line-height: 1.3rem;
  letter-spacing: 0.15rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
  border-radius: 5px;
  padding: 14px 10px;
}

.cardsteptitle {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: hsl(169, 20%, 40%);
  background-color: hsl(46, 42%, 74%);
  text-decoration: none;
  font-size: 20px;
  line-height: 1.3rem;
  letter-spacing: 0.15rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
  border-radius: 5px;
  padding: 14px 10px;
}

span.hand {
  margin-right: 10px;
  color: hsl(46, 42%, 84%);
}

/* Utilities section - account, basket and language */
.utilities {
  display: flex;
  gap: 20px;
}

.utility-item {
  position: relative;
  cursor: pointer;
  margin-top: 32px;
}

.utility-item:hover > .utility-icon-basket,
.utility-item:hover > .utility-icon-country {
  filter: grayscale(0);
}

.utility-icon-basket {
  font-size: 30px;
  margin: 4px 40px;
  filter: grayscale(0.9);
}

.myaccount-icon {
  font-size: 30px;
  margin: 4px 30px 4px 10px;
  filter: grayscale(0.9);
}

.myaccount-icon:hover,
.mega-menu-link:hover > .myaccount-icon {
  filter: grayscale(0);
}

.savequeen::before {
  content: "\2661\FE0E";
  font-size: 18px;
  margin-right: 15px;
}

.savequeenfav::before {
  content: "\2665\FE0E";
  font-size: 18px;
  margin-right: 15px;
}

a.markforlater {
  margin-top: 20px;
  margin-bottom: 20px;
  text-decoration: none;
  font-size: 16px;
  color: hsl(180, 80%, 33%);
}

a.markforlater:hover {
  color: hsl(32, 62%, 55%);
}

a.person {
  margin-top: 20px;
  margin-bottom: 20px;
  text-decoration: none;
  font-size: 20px;
  color: hsl(180, 80%, 33%);
}

a.person:hover {
  color: hsl(32, 62%, 55%);
}

a.forgotpwform {
  margin-top: 20px;
  margin-bottom: 20px;
  text-decoration: none;
  font-size: 20px;
  color: hsl(46, 42%, 40%);
}

a.forgotpwform:hover {
  color: hsl(32, 62%, 55%);
}

.utility-icon-country {
  font-size: 30px;
  margin: 4px 40px;
  filter: grayscale(0.4);
}

/* Account dropdown styles */
.account-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  background-color: hsl(46, 42%, 84%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 280px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 2;
}

.utility-item:hover .account-dropdown {
  opacity: 1;
  visibility: visible;
}

.account-title {
  font-size: 22px;
  color: hsl(159, 9%, 48%);
  margin-bottom: 15px;
  border-bottom: 1px solid hsl(159, 9%, 48%);
  padding-bottom: 10px;
}

.account-option {
  padding: 12px 0;
  border-bottom: 1px solid hsl(46, 42%, 74%);
}

.account-option:last-child {
  border-bottom: none;
}

.account-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: hsl(210, 1%, 36%);
  font-size: 18px;
  transition: color 0.3s;
}

.account-link:hover {
  color: hsl(159, 9%, 38%);
}

.account-icon {
  margin-right: 10px;
  font-size: 20px;
}

.login-form {
  margin-top: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: hsl(210, 1%, 36%);
}

.form-group input {
  width: 100%;
  padding: 8px;
  border: 1px solid hsl(46, 42%, 74%);
  border-radius: 4px;
  background-color: hsl(46, 42%, 98%);
}

.login-button {
  background-color: hsl(159, 9%, 48%);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
  width: 100%;
}

.login-button:hover {
  background-color: hsl(159, 9%, 38%);
}

.register-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: hsl(210, 1%, 36%);
  text-decoration: none;
  font-size: 14px;
}

.register-link:hover {
  color: hsl(159, 9%, 38%);
}

.utility-item:hover .basket-dropdown {
  opacity: 1;
  visibility: visible;
}

.basket-title {
  font-size: 22px;
  color: hsl(159, 9%, 48%);
  margin-bottom: 15px;
  border-bottom: 1px solid hsl(159, 9%, 48%);
  padding-bottom: 10px;
}

.basket-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid hsl(46, 42%, 74%);
}

.basket-item-img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  margin-right: 15px;
  object-fit: cover;
}

.basket-item-details {
  flex: 1;
}

.basket-item-name {
  font-size: 16px;
  margin-bottom: 5px;
  color: hsl(210, 1%, 36%);
}

.basket-item-price {
  font-weight: bold;
  color: hsl(159, 9%, 48%);
}

.basket-item-remove {
  color: #999;
  cursor: pointer;
  padding: 5px;
  font-size: 18px;
}

.basket-item-remove:hover {
  color: #d9534f;
}

.basket-total {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid hsl(159, 9%, 48%);
  font-weight: bold;
}

.basket-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.basket-button {
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s;
}

.checkout-button {
  background-color: hsl(159, 9%, 48%);
  color: white;
  flex-grow: 2;
  margin-right: 10px;
}

.checkout-button:hover {
  background-color: hsl(159, 9%, 38%);
}

.clear-button {
  background-color: #f8f9fa;
  color: #6c757d;
  border: 1px solid #ddd;
}

.clear-button:hover {
  background-color: #e9ecef;
}

.empty-basket {
  text-align: center;
  padding: 20px 0;
  color: hsl(210, 1%, 56%);
}

/* Language selector styles */
.language-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  background-color: hsl(46, 42%, 84%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 500px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 2;
  cursor: default;
}

.basket-dropdown {
  position: absolute;
  top: 50px;
  right: -100px;
  background-color: hsl(46, 42%, 84%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 800px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 2;
  cursor: default;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.utility-item:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
}

.language-option {
  display: flex;
  align-items: center;
  padding: 8px 18px;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 5px;
}

.language-option:hover {
  background-color: hsl(46, 42%, 94%);
}

.flag {
  font-size: 20px;
  margin-right: 10px;
}

.banner {
  background-color: #5d5c55;
  padding: 20px 0;
  text-align: center;
}

ul.lang {
  margin: 0px;
  padding: 0px;
}

ul.lang2 {
  margin: 0px;
  padding: 20px;
  padding-bottom: 0px;
}

input.country {
  min-width: 350px;
  margin: 0px;
  margin-left: 30px;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: hsl(210, 1%, 36%);
  font-size: 16px;
  line-height: 1.3rem;
  letter-spacing: 0.15rem;
  transition: color 0.3s;
  display: flex;
  border-radius: 5px;
}

input.country::placeholder {
  filter: grayscale(0.8);
}

input.country2 {
  border: 0px;
  background-color: hsl(48, 41%, 88%);
}

.suggestion-item {
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  color: hsl(210, 1%, 36%);
  font-size: 18px;
  padding: 8px;
  padding-left: 20px;
  border-radius: 5px;
  cursor: pointer;
}

.suggestion-item:hover {
  background-color: hsl(46, 42%, 74%);
}

#cartcount,
#cartcount2 {
  visibility: hidden;
}

.cartcontainer {
  position: relative;
  display: inline-block;
}
.flying-img {
  position: fixed;
  position: fixed;
  will-change: transform, opacity;
  width: 665px; /* Match original image size */
  height: auto;
  z-index: 10000;
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
  pointer-events: none;
}

.basket-emoji {
  display: inline-block;
  transform-origin: center;
}

.basket-emoji.pulse-glow {
  animation: pulse 0.6s ease, glow 1s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }

  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}
.alertwarning {
  background-color: hsl(43, 77%, 90%);
  border: 1px solid hsl(43, 77%, 40%);
  color: hsl(43, 77%, 40%);
}

.alertdanger {
  background-color: hsl(360, 77%, 90%);
  border: 1px solid hsl(360, 77%, 38%);
  color: hsl(360, 77%, 38%);
}

.alertsuccess {
  background-color: hsl(84, 77%, 90%);
  border: 1px solid hsl(84, 77%, 38%);
  color: hsl(84, 77%, 38%);
}

.alertinfo {
  background-color: hsl(200, 77%, 90%);
  border: 1px solid hsl(200, 77%, 38%);
  color: hsl(200, 77%, 38%);
}

.alertmodal {
  display: none;
  position: fixed;
  z-index: 60000;
  top: 60px;
  right: 0px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 10px;
  text-align: center;
  width: 90vw;
  border-radius: 5pt;
  margin-left: 10px;
  opacity: 1;
  animation: fadeoutx 2s ease-out 2s forwards;
  box-shadow: 0 3px 6px rgb(0 0 0 / 15%), 0 2px 4px rgb(0 0 0 / 12%);
}

.showmsg {
  display: block;
}

@keyframes fadeoutx {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

div.cartcontentdropdown {
  padding: 0px;
  padding-top: 0px;
  display: flex;
  flex-direction: column;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: hsl(210, 1%, 36%);
}

p.cartcontentshippingdropdown {
  padding: 0px;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: hsl(210, 1%, 46%);
  text-align: center;
}
p.cartcontentdropdowntext {
  text-align: end;
}

div.cartcontentdropdown a {
  display: grid;
  grid-template-columns: 2fr 6fr 2fr 1fr;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  border-radius: 4px;
  padding: 5px;
  position: relative;
  background-color: hsl(46, 42%, 90%);
}

div.shipmentinfo {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  border-radius: 4px;
  position: relative;
  background-color: hsl(46, 42%, 80%);
  margin: 0px 0px;
  padding: 5px;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: hsl(210, 1%, 36%);
  border: 1px solid #ffcc00;
}

div.shipmentinfo > *:nth-child(4n + 1),
div.shipmentinfo > *:nth-child(1) {
  justify-self: center;
}

div.shipmentinfo > *:nth-child(4n + 2),
div.shipmentinfo > *:nth-child(2) {
  justify-self: stretch;
  align-self: stretch;
  padding: 15px 10px;
}
div.shipmentinfo > *:nth-child(4n + 3),
div.shipmentinfo > *:nth-child(3) {
  justify-self: end;
}
div.shipmentinfo > *:nth-child(4n),
div.shipmentinfo > *:nth-child(4) {
  justify-self: center;
}

div.carttotal {
  display: grid;
  grid-template-columns: 2fr 6fr 2fr 1fr;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  border-radius: 4px;
  position: relative;
  background-color: hsl(46, 42%, 95%);
  margin: 8px 0px;
  padding: 0px;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: hsl(210, 1%, 36%);
  border: 1px solid hsl(210, 1%, 36%);
}

div.carttotal > *:nth-child(1) {
  justify-self: center;
}
div.carttotal > *:nth-child(2) {
  justify-self: end;
  padding-right: 20px;
}
div.carttotal > *:nth-child(3) {
  justify-self: end;
}
div.carttotal > *:nth-child(4) {
  justify-self: center;
}

div#vatinfobig,
div#vatinfo {
  background-color: hsl(44, 44%, 90%);
  line-height: 1.6;
  font-weight: 300;
  border: 1px solid #ffcc00;
}

p.right {
  text-align: right;
}

div.cartcontentdropdown a:hover {
  background-color: hsl(46, 42%, 96%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

div.cartcontentdropdown a:active {
  padding-top: 10px;
  background-color: hsl(159, 9%, 78%);
}

div.cartcontentdropdown .delete-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

div.cartcontentdropdown .delete-btn:hover {
  background-color: hsl(4, 43%, 86%);
  transform: scale(1.1);
  color: hsl(46, 42%, 94%);
}

div.cartcontentdropdown .delete-btn:hover .bin {
  fill: hsl(46, 42%, 94%);
  stroke: hsl(46, 42%, 94%);
}

div.cartcontentdropdown .delete-btn svg {
  width: 18px;
  height: 18px;
  fill: hsl(210, 1%, 36%);
  stroke: hsl(210, 1%, 36%);
  transition: all 0.2s ease;
}

div.cartcontentdropdown .delete-btn {
  pointer-events: all;
}

div.cartcontentdropdown a > *:nth-child(4n + 1),
div.cartcontentdropdown a > *:nth-child(1) {
  justify-self: center;
}

div.cartcontentdropdown a > *:nth-child(4n + 2),
div.cartcontentdropdown a > *:nth-child(2) {
  justify-self: stretch;
  align-self: stretch;
  padding: 15px 10px;
}
div.cartcontentdropdown a > *:nth-child(4n + 3),
div.cartcontentdropdown a > *:nth-child(3) {
  justify-self: end;
}
div.cartcontentdropdown a > *:nth-child(4n),
div.cartcontentdropdown a > *:nth-child(4) {
  justify-self: center;
}
div.commandbtn {
  justify-self: end;
}
div.shoppingcartgrid {
  min-height: 70vh;
}

div.shoppingcartleft {
  margin: 0px;
  padding: 8px;
  background-color: hsl(46, 42%, 84%);
  color: hsl(210, 1%, 36%);
}

div.shoppingcartright {
  margin: 0px;
  padding: 8px;
  background-color: hsl(46, 42%, 84%);
  color: hsl(210, 1%, 36%);
}

body.cart {
  background-color: hsl(159, 9%, 58%);
}
img.stripe {
  margin: 10px;
  border: solid 1px #f27422;
}

#carttotaldropdowndivbig > span > img.stripe {
  width: 80px;
  height: auto;
}
span.gray {
  filter: grayscale(0.8);
  padding-right: 20px;
}

div.checkoutform {
  margin: 0px 8px;
  margin-left: 8px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: hsl(210, 1%, 36%);
  font-size: 18px;
  line-height: 1.3rem;
  letter-spacing: 0.15rem;
  display: block;
  grid-template-columns: repeat(24, 1fr);
  gap: 0px;
}

div.checkoutformstripe {
  margin: 0px 8px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: hsl(210, 1%, 36%);
  font-size: 18px;
  line-height: 1.3rem;
  letter-spacing: 0.15rem;
}

.floating-input {
  width: 100%;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  color: hsl(46, 42%, 40%);
  font-size: 18px;
  line-height: 1.3rem;
  letter-spacing: 0.15rem;
  min-height: 50px;
  margin: 0px;
  padding: 10px 20px;
  transition: color 0.3s;
  border-radius: 5px;
  background-color: hsl(46, 42%, 92%);
  border: 1px solid hsl(46, 42%, 40%);
  transition: border-color 0.2s ease-in-out;
}

.nofloating-input {
  width: 100%;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  color: hsl(46, 42%, 30%);
  font-size: 18px;
  line-height: 1.3rem;
  letter-spacing: 0.15rem;
  min-height: 50px;
  margin: 0px;
  padding: 10px 20px;
  transition: color 0.3s;
  border-radius: 5px;
  background-color: hsl(46, 42%, 92%);
  border: 1px solid hsl(46, 42%, 40%);
  transition: border-color 0.2s ease-in-out;
}

.floating-label,
.nofloating-input::placeholder {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  color: hsl(210, 1%, 36%);
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  padding: 0 0.25rem;
  font-size: 16px;
}

.floating-label-container {
  margin-top: 36px;
  position: relative;
  width: 100%;
}

.optional {
  margin-top: 20px;
}

.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label {
  top: -1.6rem;
  transform: translateY(0);
  font-size: 14px;
  left: 0px;
}

.floating-input:focus {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: hsl(210, 1%, 36%);
  font-size: 18px;
  line-height: 1.3rem;
  letter-spacing: 0.15rem;
  outline: none !important;
  border: 1px solid hsl(169, 20%, 50%);
  background-color: mintcream;
  color: hsl(169, 20%, 50%);
  box-shadow: 0 0 5px hsl(169, 20%, 60%);
  background-color: hsl(46, 42%, 96%);
}

.floating-input::placeholder {
  color: transparent;
}

div.firstname {
  grid-column: 1 / 8;
}
div.lastname {
  grid-column: 9 / 25;
}
label.iscompany {
  grid-column: 1/25;
  margin-top: 20px;
}
div.companynoneu {
  grid-column: 1 / 25;
}
div.companynoneuregistration {
  grid-column: 1 / 25;
}
div.vatcc {
  grid-column: 1/4;
  padding-right: 10px;
}
div.vat {
  grid-column: 5 / 12;
}
div.company {
  grid-column: 13 / 25;
}
div.vatmessage {
  grid-column: 1/25;
  margin-top: 10px;
  font-size: 16px;
  font-style: italic;
}

div.address {
  grid-column: 1/25;
}
div.address2 {
  grid-column: 1/13;
}
div.dial {
  grid-column: 14/17;
  padding-right: 10px;
}
div.phone {
  grid-column: 17/25;
}
div.zip {
  grid-column: 1/5;
}
div.city {
  grid-column: 6/16;
}
div.country {
  grid-column: 17/25;
}

div.email {
  grid-column: 1/12;
}
div.password {
  grid-column: 13/25;
}
div.emailvalidation {
  grid-column: 1/12;
  display: none;
  font-size: 14px;
  color: red;
  margin-top: 5px;
}
div.passwordvalidation {
  grid-column: 13/25;
  display: none;
  font-size: 14px;
  color: red;
  margin-top: 5px;
}

.password-validation.valid {
  color: #28a745;
}

.vat-loading {
  color: #28a745; /* A shade of green */
  animation: blink-animation 1.5s linear infinite;
  font-weight: 400;
}

@keyframes blink-animation {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.validation-message {
  display: none;
}

.validation-message.active {
  display: block;
}

input.valid {
  border: 2px solid hsl(107, 40%, 50%);
  background-color: hsl(107, 40%, 90%);
}

input.invalid {
  border: 2px solid red;
}

span.noneuspan {
  display: none;
}

span.euspan {
  display: none;
}

span.vatgreen {
  color: #4caf50;
  font-weight: 600;
}

span.vatred {
  color: #d9534f;
  font-weight: 600;
}
.company-toggle input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #888;
  background-color: hsl(46, 42%, 92%);
  border-radius: 6px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.company-toggle input[type="checkbox"]:checked {
  background-color: #4caf50;
  border-color: #4caf50;
}

.company-toggle input[type="checkbox"]:checked::after {
  content: "✔";
  color: white;
  position: absolute;
  top: -2px;
  left: 3px;
  font-size: 16px;
}

.company-fields {
  display: none;
}

.checkoutform:has(.company-toggle input[type="checkbox"]:checked) .company-fields {
  display: grid;
}
button.nextstep {
  font-weight: 400;
  line-height: 1.2;
  color: hsl(169, 20%, 42%);
  width: 340px;
  cursor: pointer;
  padding: 2px 5px;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: hsl(50, 100%, 54%);
  border: 1px solid hsl(50, 100%, 40%);
  font-size: 19px;
  letter-spacing: 0.05rem;
  border-radius: 0.25rem;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

button.nextstep:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

button.finalbuy {
  font-weight: 400;
  line-height: 1.2;
  color: hsl(169, 20%, 42%);
  width: 340px;
  cursor: pointer;
  padding: 2px 5px;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: hsl(50, 100%, 54%);
  border: 1px solid hsl(50, 100%, 40%);
  font-size: 19px;
  letter-spacing: 0.05rem;
  border-radius: 0.25rem;
  height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

ul#paimentoption {
  display: none;
}

img.stripelogo {
  margin-left: 10px;
}

ul.stripe {
  margin-top: 20px;
  margin-bottom: 20px;
}

button.finalbuy:hover {
  background-color: hsl(50, 100%, 64%);
}
button.finalbuy:active {
  padding-top: 6px;
}
span.cartnexticon {
  /* font-size: 28px; */
  margin-right: 8px;
  color: hsl(169, 20%, 52%);
}

/* ================================= start modal .overlay =============================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(60, 11%, 36%, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  width: 90%;
  max-width: 1100px;
  display: flex;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: hsl(0, 0%, 16%);
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  color: hsl(46, 42%, 40%);
  font-size: 22px;
}

.modal-left {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: hsl(46, 42%, 84%);
}

.modal-right {
  flex: 1;
  background: url("/img/alps.jpg") center/cover;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #666;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
}

.form-group {
  margin-bottom: 25px;
}

.login-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.forgot-password {
  text-align: center;
  margin-top: 20px;
  text-decoration: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 768px) {
  .modal {
    flex-direction: column;
    height: auto;
    max-height: 90vh;
  }

  .modal-right {
    min-height: 200px;
    order: -1;
  }

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

  .login-title {
    font-size: 1.8rem;
  }
}
.eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  filter: grayscale(0.6);
}
div.imgbig {
  margin: 60px 20px;
}
img.verybig {
  margin: 40px 0px;
}
div.searchblock {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background-color: hsla(46, 42%, 90%, 0.95);
  backdrop-filter: blur(2px);
  position: sticky;
  top: 118px;
  padding: 0 60px; /* start with no padding when hidden */
  transition: all 0.4s ease;
}

.searchblock.active {
  position: sticky;
  top: 118px;
  max-height: 250px;
  opacity: 1;
  visibility: visible;
  padding: 20px 20px;
  z-index: 999;
}
input.topsearch {
  min-width: 800px;
  margin: 0px;
  margin-left: 30px;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 10px 45px 10px 55px; /* Added right padding for clear button */
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: hsl(210, 1%, 36%);
  background-color: hsla(46, 42%, 90%, 0.95);
  border: 1px solid hsl(46, 42%, 80%);
  font-size: 16px;
  line-height: 1rem;
  letter-spacing: 0.15rem;
  transition: color 0.3s;
  display: flex;
  border-radius: 5px;
}

input.topsearch:focus {
  background-color: hsla(46, 42%, 96%, 0.95);
  outline: 2px solid hsl(46, 42%, 60%);
  outline-offset: 2px;
}

input.topsearch::placeholder {
  filter: grayscale(0.8);
}

.search-icon {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 18px;
  filter: grayscale(0.8);
}

.clear-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
  color: hsl(210, 1%, 36%);
  transition: color 0.3s;
}

.clear-icon:hover {
  color: hsl(0, 50%, 50%);
}
span.arrowup {
  display: inline-block;
  transform: rotate(-90deg);
  color: hsl(46, 42%, 40%);
  transition: color 0.2s ease, transform 0.2s ease;
}

span.arrowup:hover {
  color: hsl(180, 80%, 33%);
}

.linebreaks {
  white-space: pre-wrap;
}
