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

.logo {
  width: 400px;
  height: auto;
  margin: 8px 16px 10px 10px;
}

.logo:hover {
  filter: sepia(0.3);
}

.logo2 {
  width: 420px;
  height: auto;
  filter: grayscale(0.9);
  margin-left: 20px;
}

.logo3 {
  width: 420px;
  height: auto;
  filter: grayscale(0.9);
  margin-left: 20px;
  border-bottom: solid 1px gray;
  border-left: solid 1px gray;
  border-top-right-radius: 15px;
}

.logologin {
  width: 400px;
  height: auto;
  margin: 20px 16px;
  filter: sepia(0.3);
}

nav {
  background-color: hsl(17, 37%, 96%);
  padding: 0px;
  margin: 0px;
  text-align: center;
  border-bottom: solid 5px hsl(32, 62%, 65%);
  width: 100%;
  z-index: 1000;
  position: fixed;
  top: 0;
  display: grid;
  grid-template-columns: 1fr 7fr 1fr;
}

ul.topmenu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: center;
  display: inline-block;
  margin-top: 0px;
}

li.topmenu {
  display: inline-block;
  float: none;
}

li.topmenu a {
  display: block;
  color: hsl(210, 1%, 36%);
  text-align: center;
  margin: 15px 40px 10px 20px;
  padding-bottom: 0px;
  text-decoration: none;
  font-size: 26px;
  letter-spacing: 0.15rem;
}

li.topmenu a::after {
  content: "";
  display: block;
  width: 0;
  padding-bottom: 5px;
  margin-bottom: -1px;
  border-bottom: 1px solid #000;
  transition: width 0.3s;
}

li.topmenu a:hover {
  color: hsl(159, 9%, 48%);
}

li.topmenu a:hover::after {
  width: 100%;
  padding-bottom: 5px;
  border-bottom: 1px solid hsl(159, 9%, 68%);
}

li.topmenu a.active {
  padding-bottom: 0px;
  border-bottom: 1px solid #000;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 8px;
  filter: grayscale(0.3);
  background-color: hsl(17, 37%, 92%);
  border: solid 2px hsl(32, 62%, 65%);
  aspect-ratio: 1 / 1;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  filter: grayscale(0);
  cursor: pointer;
  transform: scale(1.02);
  border: solid 6px hsl(32, 62%, 75%);
}

a.cardlink {
  margin: 0px;
  padding: 0px;
}

img.imgcard {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: block; /* This removes the inline gap */
}

.cardcontainer {
  background-color: hsl(0, 0%, 16%);
  color: hsl(46, 42%, 94%);
}

div.homegrid {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}

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

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

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(240, 240, 238, 0.9);
  overflow: hidden;
  width: 100%;
  height: 0px;
  transition: 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-item:hover .overlay {
  height: 90px;
}

.grid-item:hover img {
  /* filter: sepia(0.2); */
  cursor: pointer;
}

.overlay p {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: hsl(60, 11%, 26%);
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

/* ========== 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: grid;
  grid-template-columns: 3fr 5fr;
  gap: 30px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  background-color: hsl(60, 11%, 36%);
  color: hsl(46, 42%, 84%);
  padding: 40px;
}

div.footer {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  gap: 30px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  background-color: hsl(46, 42%, 94%);
  color: hsl(0, 0%, 16%);
  padding: 40px;
  min-height: 300px;
  padding-top: 20px;
}

p.footer {
  font-weight: 100;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-left: 30px;
  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: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-left: 30px;
  margin-right: 0px;
  margin-top: 40px;
  padding-top: 20px;
}

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

a.copyright {
  font-size: 20px;
  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: 24px;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-left: 30px;
  margin-right: 0px;
  margin-bottom: 0px;
  font-family: "Playfair Display", serif;
}

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: 100%;
  cursor: pointer;
}
.ecomblock {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 0px;
}
.ecomdesc {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  background-color: hsl(46, 42%, 84%);
  color: hsl(0, 0%, 16%);
  padding: 40px;
}

div.ecomgrid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10pox;
}

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

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

p.short {
  font-weight: 100;
  font-size: 24px;
  margin: 0px;
  padding: 0px;
  line-height: 1.7;
  letter-spacing: 1.3px;
  margin-left: 80px;
  margin-right: 80px;
}

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

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

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: 100;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 1.3px;
  margin-left: 80px;
  margin-right: 80px;
}
dl.normal > dt {
  font-weight: 400;
}

dl.normal > dt:before {
  content: "\25AA";
  margin-right: 10px;
  font-size: 20px;
  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: 20px;
}

p.tagcloud {
  margin-top: 40px;
  font-size: 24px;
  display: flex;
  gap: 1.5rem;
}

p.price {
  font-weight: 500;
  font-size: 20px;
  margin: 30px;
  padding: 10px;
  margin-top: 30px;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 1.3px;
  margin-left: 50px;
  margin-right: 80px;
  /* border-bottom: 1px solid hsl(60, 11%, 60%);
  border-top: 1px solid hsl(60, 11%, 60%); */
  border-radius: 20px;
  width: 400px;
  background-color: hsl(60, 11%, 40%);
}

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

button.buy {
  font-weight: 500;
  font-size: 20px;
  margin: 30px;
  margin-right: 0px;
  padding: 10px;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 1.3px;
  margin-left: 50px;
  margin-right: 40px;
  margin-top: 30px;
  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: 20px;
  width: 400px;
  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;
  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: 400px;
  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: 400px;
}

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: 20px;
  font-style: normal;
  line-height: 1.7;
  margin: 0px;
  padding: 0px;
  margin-left: 80px;
  margin-right: 80px;
  margin-top: 50px;
  color: hsl(46, 42%, 64%);
  list-style-type: none;
  padding-left: 0;
}

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

h1 {
  font-family: "Spectral", serif;
  font-weight: 200;
  font-size: 56px;
  margin-top: 20px;
  margin-bottom: 10px;
}

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

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: 200;
  font-size: 26px;
  margin-top: 0px;
  margin-left: 70px;
  color: hsl(46, 42%, 64%);
}
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: 50%;
  transform: translateX(-340px);
  width: 640px;
  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: 26px;
  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);
}

span.savequeen {
  font-size: 24px;
  margin: 6px 10px;
  padding-top: 5px;
  filter: grayscale(0);
}

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

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

a.markforlater:hover > span.savequeen {
  filter: grayscale(0);
}

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 {
  font-size: 16px;
  font-weight: bold;
  background: hsl(4, 43%, 46%);
  color: hsl(46, 42%, 98%);
  border: 2px solid hsl(4, 43%, 36%);
  padding: 2px 8px;
  padding-bottom: 6px;
  position: absolute;
  top: 0px;
  left: 66px;
  min-width: 16px;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
  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: 50px;
  right: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 18px;
  text-align: center;
  min-width: 500px;
  border-radius: 5pt;
  margin: 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: 20px;
  padding-top: 0px;
  display: flex;
  flex-direction: column;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: hsl(210, 1%, 36%);
  gap: 15px;
}

p.cartcontentshippingdropdown {
  padding: 0px;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 20px;
  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;
  gap: 15px;
  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 18px;
  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: 20px;
  padding: 5px;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 20px;
  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;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

div.shoppingcartleft {
  margin: 40px;
  margin-right: 15px;
  padding: 20px;
  background-color: hsl(46, 42%, 84%);
  color: hsl(210, 1%, 36%);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

div.shoppingcartright {
  margin: 40px;
  margin-left: 15px;
  padding: 20px;
  background-color: hsl(46, 42%, 84%);
  color: hsl(210, 1%, 36%);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

div.checkoutform {
  margin: 0px 30px;
  margin-left: 40px;
  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: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 0px;
}

div.checkoutformstripe {
  margin: 0px 30px;
  margin-left: 40px;
  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 80px;
}
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 20px;
  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);
}
