:root {
  --primary-color: #fdc300;
  --primary-color-hover: #f9edad;
  --surface-primary: #fffaeb;
  --secondary-color: #f9edad;
  --secondary-color-hover: #fdc300;
  --success-color: #006618;
  --info-color: #0b76a0;
  --info-hover-color: #03506e;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --light-color: #ffc000;
  --dark:#042433;
  --dark-color: #000;
  --white: #fff;
  --black: #000;
 --primary-clicked: #1c1c1c;
 --primary-focus: #9747ff;

}
/* 
html, body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
} */

body {
  font-size: 16px;
  font-weight: normal;
  /* background-color: var(--surface-primary); */
  color: var(--black);
  position: relative;
  /* height: 100%;
  min-height: calc(100dvh - 25px); */
}
@media (forced-colors: active) {
  .button {
    background: var(--white);
    color: var(--black);
  }
}
@media (forced-colors: active) {
  .focusable-element:focus {
    outline: 2px solid var(--light-color);
  }
}
input:focus,
button:focus,
.btn:focus {
  outline: 4px solid var(--light-color) !important;
  outline-offset: 2px;
  box-shadow: 0px 5px 0px 0px #000000 !important;
}

input,
button,
select,
a {
 cursor: pointer;
}

a {
  text-decoration: none;
  color: var(--black);
}
a:focus {
  outline: 4px solid var(--light-color);
  outline-offset: 2px;
  box-shadow: 0 0 5px rgba(255, 192, 0, 0.5);
}
.form-control:focus {
  outline: 4px solid var(--light-color);
  outline-offset: 2px;
  box-shadow: 0 0 5px rgba(255, 192, 0, 0.5);
}
.App {
  max-width: 360px;
  margin: 0 auto;
  background: var(--surface-primary);
}

@media (max-width: 600px) {
  .App {
    max-width: 100%;
  }

  .modal-dialog {
    max-width: 100% !important;
  }
}

h1,h2,h3,h4,h5,h6 {
  font-family: "Atkinson Hyperlegible", serif !important;
  font-weight: bold;
  margin: 0;
}

p,
dl,
dt,
dd,
label {
  font-family: "Atkinson Hyperlegible", serif !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 27px !important;
  margin: 0;
}

dt {
  font-weight: 600 !important;
}

h1 {
  font-size: 42px;
  font-weight: bold;
  line-height: 55px;
  margin: 0;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 47px;
  margin: 0;
}

h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 39px;
  margin: 0 !important;
}

h4{
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
  margin: 0;
}

h5 {
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  margin: 0;
}

p{
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin: 0;
}

label p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.btn-primary {
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  text-align: center;
  text-decoration: none;
  background-color: var(--primary-color);
  color: var(--black);
  border-radius: 5px;
  border: 2px solid var(--dark-color);
  box-shadow: 0px 5px 0px 0px #000000;
}

.btn-primary:focus,
.btn-primary:hover,
.btn-primary:active{
  background-color: var(--primary-color-hover) !important;
  color: var(--black) !important;
  outline-offset: 2px;
  border: 2px solid var(--dark-color);
  box-shadow: 0px 5px 0px 0px #000000 !important;
  /* border: none; */
}
.btn-default {
  font-size: 22px;
  font-weight: bold;
  width: 100%;
  padding: 8px 14px;
  background: var(--white);
  color: var(--black);
  border: 4px solid var(--dark-color);
}
.btn-default:hover {
  background-color: var(--white) !important;
  color: ar(--black);
  border: 4px solid var(--dark-color);
}
.btn-default:focus {
  outline: 4px solid var(--light-color);
  outline-offset: 2px;
  box-shadow: 0 0 5px rgba(255, 192, 0, 0.5);
}
.category {
  display: flex;
  flex-direction: unset;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  /* display: grid; */
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 16px;
  /* gap: 10px; */
  width: 100%;
  margin-bottom: 32px;
}
.category .btn-category {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  height: 152px;
  width: 152px;
  max-width: 170px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  padding: 6px 16px;
  background-color: var(--surface-primary);
  color: var(--black);
  border-radius: 5px;
  border: 2px solid var(--dark-color);
  box-shadow: 0px 5px 0px 0px #000000;
}

@media (max-width: 369.96px) {
  h1 {
    font-size: 36px;
    line-height: 48px;
  }

  h2 {
    font-size: 30px;
    line-height: 40px;
  }

  h3 {
    font-size: 24px;
    line-height: 32px;
  }

  h4 {
    font-size: 20px;
    line-height: 28px;
  }

  h5 {
    font-size: 18px;
    line-height: 26px;
  }

  .category .btn-category {
    height: 135px;
    width: 135px;
  }
}

.btn-store {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  padding: 6px 16px;
  height: 85px;
  background: var(--secondary-color);
  color: var(--black);
  border: 2px solid var(--dark-color);
  border-radius: 6px;
  box-shadow: 0px 5px 0px 0px #000000;

}

.category .btn-category:hover,
.btn-store:hover {
  background-color: var(--secondary-color-hover);
  color: var(--black);
}
.btn-back {
  margin-top: 20px;
  font-size: 32px;
  font-weight: bold;
  width: 100%;
  padding: 12px 20px;
  background: var(--white);
  color: var(--black);
  border: 4px solid var(--dark-color);
}
.btn-back:hover {
  background-color: var(--white);
  color: var(--black);
  border: 4px solid var(--dark-color);
}
.btn-info,
.btn-danger {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  padding: 11px 16px;
  background-color: var(--primary-color);
  color: var(--black);
  border-radius: 5px;
  border: 2px solid var(--dark-color);
  box-shadow: 0px 5px 0px 0px #000000;
}
.btn-info:hover,
.btn-info:active,
.btn-info:focus,
.btn-danger:hover,
.btn-danger:active,
.btn-danger:focus {
  background: var(--primary-color-hover) !important;
  color: var(--black) !important;
  border: 2px solid var(--dark-color) !important;
  outline-offset: 2px;
}
.btn-success {
  font-size: 18px;
  font-weight: bold;
  padding: 11px 16px;
  background: var(--primary-color);
  color: var(--black);
  border: 2px solid var(--dark-color);
  border-radius: 5px;
  box-shadow: 0px 5px 0px 0px #000000;
}
.btn-success:hover {
  background: var(--primary-color-hover) !important;
  color: var(--black) !important;
  border: 2px solid var(--dark-color) !important;
  outline-offset: 2px;
}
select {
  &:not([multiple]) {
    appearance: none;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAKCAYAAAC0VX7mAAAABGdBTUEAALGPC/xhBQAAAG9JREFUKBWt0rsNgDAMBFCstGnjediMsBnzpHdtOCQkPvkYwkmWXPheZWLmqKrT8EOIaHYisnjvafPGHhNYSik6IL3ogcHawR70jF3AL+gde4Bv0ByWBS1oCSuCNbSGodcM/jSEoBjszYLlAJAVWwH660DHksNTUgAAAABJRU5ErkJggg==");
    background-position: right 10px center;
    background-size: 10px 6px;
    background-repeat: no-repeat;
  }
}
/* app min css */

.home-section {
  display: flex;
  flex-direction: column;
  padding: 0;
  background-color: transparent;
  /* color: #000; */
}
.home-section p {
  font-size: 1.25em;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 0;
}
.home-section-content {
  width: 100%;
  margin-bottom: 34px;
}
.home-section-content p {
  margin-bottom: 0;
}
.home-section-content span {
  font-size: 36px !important;
  font-weight: 900 !important;
  font-family: 'Atkinson Hyperlegible', serif !important;
  line-height: 54px !important;
}
.home-section-content .heading {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #000;
  margin-bottom: 29px;
  font-size: 26px;
  font-weight: bold;
}
.home-section-content .heading i {
  font-size: 19px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  text-align: center;
}
.home-section-content .btn-category img {
  width: 53px;
  height: 53px;
  /* margin-right: 10px; */
}

.home-section-description {
  margin-top: 32px;
  margin-bottom: 32px;
}

.category-wrappers {
  padding: 20px 0;
  padding-top: 0;
}

.category-wrappers h2 {
  margin-bottom: 20px;
}

.home-section-description ul,
.home-section-description ol {
  margin-top: 32px;
  margin-bottom: 32px;
  padding-left: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

/* home min css */

.header {
  color: var(--black);
  text-align: center;
  position: relative;
}
.header nav {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.header nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  margin: 0;
  width: 100%;
}
.header nav ul li {
  background-color: var( --secondary-color);
  /* border-left: 4px solid #fcc000; */
  border: 2px solid var(--dark-color);
  box-shadow: 0px 5px 0px 0px #000000;
  border-radius: 0 0 6px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.header nav ul li .menu:hover {
  background-color: var( --secondary-color-hover );
  text-decoration: none;
}

.header nav ul li .menu.clicked {
  background-color: var( --primary-clicked );
}
header nav ul li:first-child {
  border-left: 2px solid var(--dark-color);
}
.header nav li .menu {
  color: #000;
  text-decoration: none;
  background-color: var( --secondary-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 27px;
  display: flex;
  padding: 7px;
  flex-direction: column;
  width: 100%;
  flex: 1;
  height: 100%;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

.menu-home {
  flex: 2;
}
.header nav .menu span {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
.header nav .menu input {
  padding: 5px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.header nav button.menu {
  border: none;
}
.header .input-search {
  max-height: 50px;
  position: absolute;
  bottom: -40px;
  width: 100%;
  right: 0;
}
.header .input-search input {
  padding: 10px;
  width: 100%;
  font-size: 16px;
  border-radius: 4px;
  border: 4px solid var(--dark-color);
}

/* header min css */

.menu {
  display: flex;
  flex-direction: column;
  padding: 32px 20px;
  /* background-color: #f2f2f2; */
  color: #000;
}

header .description-search {
  padding: 12px;
}

header .search-box {
  position: relative;
}

header .search-box .search-button {
  position: absolute;
  right: 0;
  top: 10px;
  background: transparent;
  border: 0;
}

/* Menu.min.css */

.fashion {
  padding: 0;
  background-color: transparent;
  color: #000;
}
.fashion .category {
  margin-bottom: 34px;
  margin-top: 12px;
}
.fashion p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 0;
}
.fashion .btn-category {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  height: 135px;
  width: 135px;
  max-width: 170px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  padding: 6px 16px;
  background-color: var(--surface-primary);
  color: var(--black);
  border-radius: 5px;
  border: 2px solid var(--dark-color);
  box-shadow: 0px 5px 0px 0px #000000;
}
/* Fashion.min.css */

.cart-list {
  background: var(--surface-primary);
  padding: 0;
  padding-bottom: 32px;
}
.cart-list .product {
  padding: 25px 0;
  /* margin-bottom: 20px; */
  border:0;
}
.cart-list .product .img-wrap img {
  width: 100%;
  border: 2px solid var(--dark-color);
}
.cart-list .product .table {
  border-bottom: 2px solid var(--dark-color);
}
.cart-list .product .table-row {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.cart-list .product .table .td {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  width: 105px;
}

.cart-list .product .td {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  width: 105px;
}

.cart-list .product .td-text {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.cart-list .btn-primary {
  width: 100%;
  height: 64px;
  /* margin-top: 20px; */
}

/* cartlist.min.css/ */

.how-it-works-page {
  background: var(--surface-primary);
  padding: 0;
  color: var(--black);
}

.how-it-works-page ol {
  padding-left: 20px;
  margin-top: 20px;
}

/* howitworks */

.product-wrapper {
  background-color: var(--surface-primary);
  /* padding: 32px 0; */
  padding: 0;
  position: relative;
}

.cart {
  background-color: var(--surface-primary);
  /* position: sticky; */
  position: unset;
  top: 0;
}
.cart button {
  background-color: var(--surface-primary);
}

.product-details {
  background-color: var(--surface-primary);
  padding: 0;
}

.product-details .details {
  display: flex;
  flex-direction: column;
}

.product-details .quantity-input {
  border: 4px solid var(--dark-color);
  background: var(--white);
  font-size: 27px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  margin-left: 10px;
}
.product-details .quantity-input input {
  width: 41px;
  height: 41px;
  border: none;
  background: rgba(0, 0, 0, 0);
}
.product-details .quantity-input input:focus {
  outline: none;
}
.product-details .quantity-input:focus-within {
  outline: 4px solid var(--light-color);
}
.product-details .product-info .btn-primary {
  width: 100%;
  height: 55px;
  margin-bottom: 35px;
}
.heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
  border-bottom: 2px solid #000;
  margin-bottom: 29px;
  font-size: 24px;
  font-weight: bold;
}
.heading i {
  font-size: 19px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  text-align: center;
}
.sub-heading {
  font-size: 16px;
  font-weight: 800;
}
.product-details button,
.product-details select,
.product-details [role="button"] {
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}
.product-details button:focus,
.product-details select:focus,
.product-details [role="button"]:focus {
  border: 4px solid var(--light-color);
  box-shadow: 0 0 5px rgba(255, 192, 0, 0.5);
}
.product-details select:focus {
  outline: none;
}
.product-details .heading:focus {
  /* border: 4px solid var(--light-color); */
  box-shadow: 0 0 5px rgba(255, 192, 0, 0.5);
}

/* ProductDetails.min.css */

.product-list {
  background-color: #f2f2f2;
  padding: 32px 20px;
}
.product-list span {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 0;
}
.filter-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.filter {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  text-align: center;
  text-decoration: none;
  background-color: var(--primary-color);
  color: var(--black);
  border-radius: 5px;
  border: 2px solid var(--dark-color);
  box-shadow: 0px 5px 0px 0px #000000;
}

.filter:hover {
  background-color: var(--primary-color-hover);
}
.filter:after {
  content: none;
}
.filter:focus {
  border: 2px solid var(--dark-color);
  box-shadow: 0px 5px 0px 0px #000000;
  outline: 0;
}
.product {
  background: var(--surface-primary);
  margin-top: 0;
  padding: 20px 0;
}
.product .details {
  /* padding: 0 20px; */
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cart h2 {
  border-bottom: 2px solid #a6a7a8;
}
.product .product-title > div {
  max-height: unset !important;
}

.product .product-image > div {
  display: flex;
  justify-content: center;
}

.product-title h3 {
  font-size: 24px !important;
  font-weight: bold !important;
  line-height: 36px;
  margin-bottom: 5px !important;
  white-space: unset !important;
}

/* ProductList.min.css */

body {
  /* font-family: "Inter", sans-serif; */
  font-family: "Atkinson Hyperlegible", serif !important;
}

a:hover {
  color: var(--black);
}

.App {
  position: relative;
  min-height: 100vh;
  /* margin-top: 85px; */
  margin-bottom: 91px;
}

.main {
  flex: 1;
  padding: 32px 20px;
  padding-bottom: 0;
  background-color: var(--surface-primary);
  color: #000;
  /* min-height: 100dvh; */
}
details {
  summary {
    list-style: none;
    &::-webkit-details-marker,
    &::marker {
      display: none;
      visibility: hidden;
      position: absolute;
      color: transparent;
      height: 0;
    }

    &:focus {
      outline: 4px solid var(--light-color);
    }
  }

  &[open] {
    /* padding-bottom: 20px; */
    /* border: 2px solid var(--dark-color); */
    /* background: var(--white); */
    border: 0;
    background: transparent;

    i.la-angle-down {
      transform: rotate(180deg);
    }

    i.la-caret-down {
      transform: rotate(180deg);
    }

    .fa-caret-down {
      transform: rotate(180deg);
    }
  }
}

.product-description .description,
.rating,
.size-chart,
.image-list {
  border: 2px solid var(--black);
  background: var(--white);
  border-radius: 0 0 5px 5px;
  /* padding: 32px 16px; */

  button,
  span,
  p,
  label {
    font-size: 18px !important;
    line-height: 27px !important;
  }

  .reviews-wrapper {
    padding: 32px 16px;
    margin-top: 0 !important;
  }
}

.size-chart table tr td:first-child {
  padding-left: 10px !important;
}

.reviews-container {
  border: 0 !important;
  margin-top: 0 !important;
  padding: 32px 16px !important;

  /* General Styling */
  li {
    background: var(--surface-primary);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 16px;
    margin-bottom: 15px;
    border: 1px solid #e5e5e5;
    max-width: 500px;
    font-family: Arial, sans-serif;

    /* Review Meta Data */
    ul {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 10px;
    }

    ul li {
      background: var(--secondary-color);
      padding: 6px 10px !important;
      border-radius: 5px;
      font-size: 18px !important;
      color: var(--black);
      list-style: none;
    }
  }

  /* Header Styling */
  div:has(> [data-testid="stars"]) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    margin-top: 0 !important;

  }

  /* Star Rating */
  [data-testid="stars"] {
    display: flex;
    gap: 2px;
  }

  [data-testid="stars"] label svg {
    fill: #f7b731 !important; /* Gold color for stars */
    width: 18px;
    height: 18px;
  }

  /* Date Styling */
  time {
    font-size: 18px !important;
    color: var(--black) !important;
    line-height: 27px !important;
    font-family: 'Atkinson Hyperlegible', serif !important;
  }

  /* Review Content */
  /* .b3c078 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
  } */

  /* "Show More" Button */
  button {
    background: var(--primary-color) !important;
    color: var(--black) !important;
    border: 2px solid var(--dark-color);
    box-shadow: 0px 5px 0px 0px #000000 !important;
    border-radius: 5px;
    padding: 10px 20px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 27px !important;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    margin-top: 10px !important;
    margin-bottom: 10px !important;

    &:hover {
      background: var(--primary-color-hover) !important;
      box-shadow: 0px 5px 0px 0px #000000 !important;
      transform: translateY(2px);
      border: 2px solid var(--dark-color);
      color: var(--black) !important;
    }
  }

}

.product-description .description .b39f93 {
  padding: 32px 16px;
}

.details-accordion .tooltip {
  opacity: 1;
  position: static;
}

#imageList ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  button {
    border: 0;
  }
}

.cart a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
}

.select-wrapper {
  margin-bottom: 20px;
  position: relative;
}

.select-wrapper label {
  /* position: absolute;
  top: -2px;
  left: -2px;
  bottom: -2px;
  right: -2px;
  z-index: 0;
  clip: unset;
  width: auto;
  height: auto;
  opacity: 0; */
  /* visibility: hidden; */
  font-size: 22px;
  font-weight: 700;
}

.select-wrapper.dropdown {
  margin-bottom: 0;
}

.select-wrapper select {
  font-size: 22px !important;
  font-weight: bold;
  width: 100% !important;
  padding: 8px 14px !important;
  background-color: var(--white) !important;
  color: var(--black) !important;
  border: 2px solid var(--dark-color) !important;
  box-shadow: 0px 5px 0px 0px #000000 !important;
  border-radius: 5px;
  opacity: 1 !important;
  visibility: visible !important;
}

.select-wrapper input {
  font-size: 22px !important;
  font-weight: bold;
  width: 100% !important;
  padding: 8px 14px !important;
  background-color: var(--white) !important;
  color: var(--black) !important;
  border: 4px solid var(--dark-color) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#imgTagWrapperIdWrapperforpage,
#imgTagWrapperId {
  div {
    height: auto !important;
    margin: 20px 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  img {
    height: auto;
    max-width: 100% !important;
    margin: 0 auto;
    display: inline-flex;
    border: 2px solid var(--black) !important;
    border-radius: 5px !important;
  }
}

.product-image img {
  border: 2px solid var(--black);
  border-radius: 5px;
}

.imgTagWrapper {
  position: relative;
  .sr-only {
    width: 100%;
    height: 100%;
  }
}

.product-price {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  gap: 5px;
  align-items: center;
  margin-top: 16px;
}


.product-price h2 {
  font-family: "Atkinson Hyperlegible", serif !important;
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  margin-bottom: 5px !important;
  white-space: unset !important;
}

.product-price p {
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 33px !important;
}

.product-price p span{
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 33px !important;
}

.price-now h2 {
  margin-bottom: 0 !important;
}

.price-now h2 span {
  font-size: 36px !important;
  font-weight: bold;
  line-height: 54px;
}

.product-view-button {
  margin-top: 32px;
  background-color: var(--primary-color);
  color: var(--black);
  padding: 16px !important;
  font-size: 18px !important;
  line-height: calc( 27 / 18 ) !important;
  font-weight: 700 !important;
  text-align: center;
  text-decoration: none;
  border-radius: 5px !important;
  border: 2px solid var(--dark-color);
  box-shadow: rgb(0, 0, 0) 0px 5px 0px 0px !important;
  width: 100% !important;
  margin-bottom: 30px !important;
}

.product-view-button:hover {
  background-color: var(--primary-color-hover);
}



.product-price-then {
  display: flex;
  align-items: center;
  gap: 10px;

  h3 {
    font-weight: 400;
  }
}
#addToCartButtonforpage input,
#addToCartButtonforpage button,
#addToCart input,
#addToCart button {
  display: inline-block;
  padding: 10px 20px !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  text-align: center;
  text-decoration: none;
  background-color: var(--primary-color);
  color: var(--black);
  border-radius: 5px;
  border: 2px solid var(--dark-color);
  box-shadow: rgb(0, 0, 0) 0px 5px 0px 0px;
  width: 100% !important;
  margin-bottom: 30px !important;
  position: static !important;
  opacity: 1 !important;
}

.description {
  font-size: 14px;

  hr {
    display: none;
  }

  h1 {
    font-size: 1.5em;
  }

  h1,
  h2,
  h3,
  li {
    margin-bottom: 10px;
  }
}

#cartTitleWrapper  {
  /* font-size: 1.5em; */
  font-size: 24px;
  line-height: 36px;
  font-weight: bold;
}

#cartImgWrapper {
  div {
    height: auto !important;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  img {
    height: auto;
    max-width: 100% !important;
    margin: 0 auto;
    display: inline-flex;
    border: 2px solid var(--black);
  }
}

#cartItemQuantity {
  input {
    border: 0;
    padding: 0;
    width: 100%;
  }
}

#decreaseQuantity:hover,
#increaseQuantity:hover {
   background: var(--primary-color-hover);
}

.cart-summary-wrapper {
  background: var(--primary-color);
  padding: 40px 20px;
}

.cart-summary#cartSummary {
  font-size: 32px;
  font-weight: 700;
  line-height: 54px;
  margin-bottom: 20px;
}

.cart-summary .btn-primary {
  width: 100%;
  margin-top: 32px;
}

.cart-summary button {
  padding: 16px !important;
  font-size: 18px !important;
  font-family: "Atkinson Hyperlegible", serif !important;
  font-weight: 700;
  line-height: 27px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin-top: 32px !important;
  background-color: var(--primary-color) !important;
  color: var(--black) !important;
  border-radius: 5px;
  border: 2px solid var(--dark-color) !important;
  box-shadow: 0px 5px 0px 0px #000000 !important;
}

.cart-summary button:hover,
.cart-summary button:focus,
.cart-summary button:active {
  background-color: var(--primary-color-hover) !important;
  color: var(--black) !important;
  border: 2px solid var(--dark-color) !important;
  box-shadow: 0px 5px 0px 0px #000000 !important;
}

.select-wrapper select {
  opacity: 1 !important;
  position: static !important;
  margin: 0 !important;
}

.select-wrapper input {
  opacity: 1 !important;
  position: static !important;
  margin: 0 !important;
}

.skip-to-main {
  position: absolute;
  /* top: -1.25rem; Initially hidden off-screen */
  text-decoration: none;
  background-color: var(--primary-color);
  color: var(--black);
  transition: top 0.3s ease; /* Smooth transition */
}

.skip-to-main:focus,
.skip-to-main:focus-visible,
.skip-to-main:focus-within {
  border: 0.0625rem solid var(--white); /* Corrected border */
  border-radius: var(--border-radius);
  top: 0; /* Visible on focus/hover */
  padding: var(--button-gap);
  z-index: 1000;
  width: 100%;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color); /* Ensure background is visible */
}

/* Visually Hidden Class for Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Navigation Styles */
nav a.menu-link:hover,
nav button.menu-button:hover,
nav a.menu-link:focus,
nav button.menu-button:focus {
  text-decoration: underline;
}

/* Description (Search Form) Styles */
nav .description {
  /* margin-top: 10px; */
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
  background-color: var(--black);
  padding: 10px;
  width: 100%;
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: var(--light-color);
}

.description[hidden] {
  display: none;
}

.description.active {
  display: block;
  max-height: 500px; /* Adjust based on content */
  opacity: 1;

}

body:has(.description.active) main {
  /* margin-top: 40px; */
  margin-top: 0;
  /* min-height: calc(100vh - 123px);
  background-color: var(--surface-primary); */
}

.description [hidden] {
  display: none !important;
}

.description form {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 20px;
}

.description #search-input {
  width: 100%;
}

.description form input[type="search"] {
  width: 100%;
  padding: 8px 16px;
  font-size: 18px;
  border-radius: 5px;
  color: var(--black);
  border-radius: 5px;
  border: 2px solid var(--dark-color);
  box-shadow: 0px 5px 0px 0px #000000;
}

.description form .btn-search {
  margin-top: 0;
  padding: 8px 16px;
  background: var(--primary-color);
  color: var(--black);
  border-radius: 5px;
  border: 2px solid var(--dark-color);
  box-shadow: 0px 5px 0px 0px #000000;
  cursor: pointer;
}

.btn-search:hover,
.btn-search:focus {
  background-color: var(--light-color);
}

#search-button input,
#search-button button {
  background-color: var(--light-color);
  color: var(--black);
  border-radius: 4px;
  cursor: pointer;
}

#search-button input:hover,
#search-button input:focus,
#search-button button:hover,
#search-button button:focus {
  background-color: var(--light-color);
}

.accordion-wrapper {
  margin-bottom: 1rem;
}

.accordion-button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-content {
  padding: 1rem;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-top: none;
}

.accordion-content[hidden] {
  display: none;
}

i {
  font-size: 1.5rem;
}

/* Optional styling for expanded state */
[aria-expanded="true"] .accordion-button {
  color: #007bff;
}

/* #search-form {
      display: none;
  }
  
  .search-box {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
  }
  
  .search-box summary {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      font-size: 21px;
  
      &:focus {
          outline: 3px solid var(--light-color);
          outline-offset: -5px;
      }
  
  }
  
  header nav li a:focus-within {
      outline-offset: -5px;
  }
  
  .search-box[open] {
      padding: 0;
  }
  
  .search-box[open] #search-form {
      opacity: 1;
      max-height: fit-content;
      display: block;
  } */

.puis-label-popover-hover {
  display: none;
}

.product .s-image-square-aspect {
  display: flex;
  justify-content: center;
}

.product .s-image-square-aspect img {
  width: 100%;
  height: auto;
}

/* .product .a-price [aria-hidden="true"] {
    display: none;
  } */

.cart-list .product .title {
  font-size: 24px !important;
  line-height: 36px;
  font-weight: 700 !important;
}

.cart-list .product .table .td .td-text {
  font-size: 18px !important;
  font-weight: 400 !important;
  margin: 0;
  padding: 0;
}

.cart-list .table-row:last-child {
  margin-bottom: 20px;
}

.cart-list .product .table .td {
  position: relative;
}
.cart-list .product .table .td .sr-only {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  font-size: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.a-price-symbol {
  font-size: 70%;
}

.breadcrumb-wrapper {
  white-space: nowrap;

  .sr-only {
    width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

#cartLinkView {
  /* margin-top: -20px; */
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
  transform: translateY(-20px);
}

#imageList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#imageList .imgSwatch {
  width: 100px !important;
  min-width: 100px !important;
  height: auto !important;
}

#imageList div:has(.imgSwatch) {
  position: relative;
  display: inline-flex;
}

#imageList div:has(.imgSwatch) .sr-only {
  width: 100% !important;
  height: auto !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-list .product .table {
  border-bottom: none;
}

.quantity-wrapper {
  /* max-width: 136px; */
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid var(--dark-color); */
  border: 2px solid var(--dark-color) !important;
  box-shadow: 0px 5px 0px 0px #000000;
  border-radius: 5px;
}

.quantity-wrapper input {
  height: 46px;
  width: 46px;
  padding: 6px !important;
  border: none;
  border-left: 2px solid #000 !important;
  border-right: 2px solid #000 !important;
  text-align: center;
}

.quantity-wrapper button {
  background-color: var(--primary-color) !important;
  color: var(--black) !important;
  border: none !important;
  text-align: center;
  font-size: 18px !important;
  padding: 6px !important;
}

.quantity-wrapper button:hover {
  background-color: var(--primary-color-hover) !important;
}

/* checkout page */

.form-wrapper {
  /* padding: 32px 20px; */
  padding: 0;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: var(--surface-primary);
}

.checkout-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.checkout-form .form-group label {
  font-size: 22px;
  font-weight: bold;
}

.checkout-form .form-group input {
  padding: 8px 14px !important;
  font-size: 20px !important;
  font-family: "Atkinson Hyperlegible", serif !important;
  margin: 0 !important;
  height: 50px !important;
  font-weight: bold;
  width: 100% !important;
  border-radius: 5px !important;
  border: 2px solid var(--dark-color) !important;
  box-shadow: 0px 5px 0px 0px #000000 !important;
}

.checkout-form .form-group input:active {
  background: var(--white) !important;
}

.checkout-form .form-group select {
  padding: 8px 14px;
  font-size: 22px;
  font-weight: bold;
  border: 2px solid var(--dark-color);
  box-shadow: 0px 5px 0px 0px #000000;
}

.checkout-form .form-group#continueBtn {
  margin-top: 32px !important;
}

.checkout-form .form-group button {
  margin: 0 !important;
  padding: 16px !important;
  font-size: 20px !important;
  font-family: "Atkinson Hyperlegible", serif !important;
  font-weight: bold;
  border: 2px solid var(--dark-color) !important;
  border-radius: 5px;
  background-color: var(--primary-color) !important;
  box-shadow: 0px 5px 0px 0px #000000 !important;
  color: var(--black) !important;
}

.checkout-form .form-group button:hover,
.checkout-form .form-group button:focus,
.checkout-form .form-group button:active {
  background-color: var(--primary-color-hover) !important;
  color: var(--black) !important;
  border: 2px solid var(--dark-color) !important;
  box-shadow: 0px 5px 0px 0px #000000 !important;
}

.productlist .product-price {
  font-size: 20px;
  font-weight: 500;
}

.sticky-footer {
  background: var(--secondary-color);
  position: sticky;
  bottom: 5px;
  left: 0;
  width: 100%;
  /* padding-bottom: env(safe-area-inset-bottom); */
  z-index: 1;
}

.sticky-footer nav {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.sticky-footer nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  margin: 0;
  width: 100%;
}
.sticky-footer nav ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  border: 2px solid var(--dark-color);
  box-shadow: 0px 5px 0px 0px #000000;
  border-radius: 0 0 6px 6px;
}

.sticky-footer nav ul li .menu:hover {
  background-color: var(--secondary-color-hover);
  text-decoration: none;
  color: var(--black);
}

.sticky-footer nav .menu {
  text-decoration: none;
  background: var(--secondary-color);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  padding: 12px;
  flex-direction: column;
  width: 100%;
  flex: 1;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.menu-home {
    flex: 2;
}
.sticky-footer nav .menu span {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
.sticky-footer nav .menu input {
  padding: 5px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.sticky-footer nav button.menu {
  border: none;
}
.sticky-footer .input-search {
  max-height: 50px;
  position: absolute;
  bottom: -40px;
  width: 100%;
  right: 0;
}
.sticky-footer .input-search input {
  padding: 10px;
  width: 100%;
  font-size: 16px;
  border-radius: 4px;
  border: 4px solid var(--dark-color);
}

.stores-wrapper {
  padding: 40px 0 8px 0;
}

.stores-wrapper .stores {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 0;
}

.stores-wrapper .title p {
  margin-top: 32px;
}

.footer {
  background-color: var( --primary-clicked );
  color: var(--primary-color);
  padding: 40px 20px;
}

.footer .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 32px;
}

.footer .footer-content ul {
  padding-left: 0;
  margin-bottom: 0;
}

.footer .footer-content ul li {
  list-style: none;
  margin-bottom: 16px;
}

.footer .footer-content ul li a {
  text-decoration: none;
  color: var(--primary-color);
  &:hover {
    text-decoration: underline;
  }
}

/* for search */

.search-overlay {
  background: #fffaeb;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  border-radius: 5px;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.search-overlay form {
  width: 100%;
  /* padding-top: 40px; */
  display: flex;
  gap: 32px;
  justify-content: space-between;
  flex-direction: column;
}

.search-overlay form label {
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
}

.search-overlay .search-input {
  display: flex;
  width: 100%;
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 5px;
  color: var(--black);
  border-radius: 5px;
  border: 2px solid var(--dark-color);
  box-shadow: 0px 5px 0px 0px #000000;
}

.search-overlay input[type="search"] {
  width: 100%;
  border: 0;
  background: transparent;
}

.btn-search {
  margin-top: 32px;
  width: 100%;
  padding: 16px;
  font-size: 18px;
  background: var(--primary-color);
  color: var(--black);
  border-radius: 5px;
  border: 2px solid var(--dark-color);
  box-shadow: 0px 5px 0px 0px #000000;
}

.close-search {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  background: black;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  padding: 0;
}

/* Prevent clicking on elements outside the search overlay */
body.no-scroll {
  overflow: hidden; /* Prevent scrolling */
  pointer-events: none; /* Disable interactions */
}

/* Allow interactions only inside the search overlay */
.search-overlay {
  pointer-events: auto;
}

.product-price {
  display: flex;
  justify-content: space-between;
}
.product-btn {
  /* display: flex;
  margin-top: 32px; */
  width: 100%;
}

details {
  margin-bottom: 32px;
  /* border: 2px solid var(--dark-color);
  background: var(--white); */
}

details summary {
  display: flex;
  align-items: center;
  padding: 16px;
  background: var(--primary-color);
  border: 2px solid var(--dark-color);
  border-radius: 5px;
  /* margin-top: 20px; */
  box-shadow: 0px 5px 0px 0px #000000;
}

.heading {
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.search-main {
  min-height: calc( 100vh - 102px );
}

.modal-open {
  padding-right: 0 !important;
}

.modal-dialog {
  max-width: 390px;
  margin: 60px auto;
  margin-bottom: 0;
}

.modal-content {
  background: var(--surface-primary);
  border: 0;
  border-top: 4px solid var(--black);
  border-radius: 5px;
  min-height: calc(100vh - 60px);

  h3 {
    margin-bottom: 32px;
  }
}

.modal-header {
  padding-top: 40px;

  .btn-close {
    background: var(--black);
    color: var(--white);
    opacity: 1;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    font-size: 24px;
    position: absolute;
    top: 20px;
    right: 20px;
  }
}

.modal-footer {
  padding-bottom: 40px;

  .btn {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 32px;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    background: var(--primary-color);
    color: var(--black);
    border-radius: 5px;
    border: 2px solid var(--dark-color);
    box-shadow: 0px 5px 0px 0px #000000;
  }
}

.modal-header,
.modal-footer {
  border-bottom: 0;
  border-top: 0;
}

.filter-list {
  margin-top: 16px;
}

/* FOR MENU */
.menu-list, .nav-container, .submenu {
  display: none; /* Initially hidden */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  border: 2px solid #000;
  min-height: calc(100vh - 140px);
  max-height: calc(100vh - 140px);
  overflow: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  ul {
    list-style-type: none;
    padding: 0;
    padding-left: 0 !important;
    margin: 0;
  }

  &:focus {
    outline: 4px solid var(--light-color) !important;
    outline-offset: 2px;
    box-shadow: 0px 5px 0px 0px #000000 !important;
  }
}

.active {
  display: block !important; /* Show when active */
}

.back-home {
  border: none;
  text-align: left;
  border-bottom: 2px solid black;
  width: 100%;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  cursor: pointer;
  background: var(--dark-color);
  color: var(--light-color);

  &:focus {
    outline: 4px solid var(--light-color) !important;
    outline-offset: 2px;
    box-shadow: 0px 5px 0px 0px #000000 !important;
  }
}

.nav-item {
  border: none;
  border-bottom: 2px solid black;
  width: 100%;
  padding: 16px 20px;
  background: var(--primary-color);
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  display: flex;
  cursor: pointer;

  &:hover {
    background: var(--primary-color-hover);
  }

  a {
    color: var(--black);
    text-decoration: none;
    width: 100%;

    &:hover {
      color: var(--black);
    }
  }

  &:focus {
    outline: 4px solid var(--primary-focus) !important;
    outline-offset: 0;
    box-shadow: 0px 5px 0px 0px var(--primary-focus) !important;
  }
}

.nav-item:has(a) {
  padding: 0;

  a {
    padding: 16px 20px;
    width: 100%;

    &:focus {
      outline: 4px solid var(--primary-focus) !important;
      outline-offset: 0;
      box-shadow: 0px 5px 0px 0px var(--primary-focus) !important;
    }
  }
}

.back-to {
  border-bottom: 2px solid black;
  padding: 16px 20px;
  background: var(--surface-primary);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  cursor: pointer;

  img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }

  &:focus {
    outline: 4px solid var(--light-color) !important;
    outline-offset: 2px;
    box-shadow: 0px 5px 0px 0px #000000 !important;
  }
}

.nav-title {
  border-bottom: 2px solid black;
  padding: 16px 20px;
  background: var(--primary-color);
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  display: flex;
  font-weight: 700;
  background: var(--surface-primary);

  &:focus {
    outline: 4px solid var(--light-color) !important;
    outline-offset: 2px;
    box-shadow: 0px 5px 0px 0px #000000 !important;
  }
}

.favorite-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;

  &:focus {
    border: 0 !important;
    box-shadow: none !important;
  }
}

.favorite-button:has(svg.filled) path {
  fill: var(--primary-color);
}

/* When the button is clicked, toggle a class */
.favorite-button.active svg {
  fill: var(--primary-color);
}


/* FAQ */
.faq-page {
  section {
    padding: 20px 0;
  }
}

/* Privacy */
.privacy-page {
  section {
    padding: 20px 0;
  }
}

/* Setting */
.setting-page {
  section {
    padding: 20px 0;
  }
}

.btn-footer {
  color: var(--primary-color);
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;

  &:hover {
    color: var(--primary-color-hover);
    text-decoration: underline;
  }

  &:focus {
    outline: 4px solid var(--primary-focus) !important;
  }
}


