.header {
  height: var(--header-height);
  background-image: linear-gradient(0, orange, #fff);
}
.grid {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.header__navbar {
  display: flex;
  justify-content: space-between;
}

.header__navbar-list {
  list-style: none;
  padding-left: 0;
  margin-top: 4px 0 0 0;
  display: flex;
  align-items: center;
}

.header__navbar-item {
  margin: 0 8px;
  position: relative;
  min-height: 26px;
}

.header__navbar-user {
  display: flex;
  justify-items: center;
  position: relative;
}

.header__navbar-user-img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.header__navbar-user-name {
  margin-left: 4px;
  font-size: 1.4rem;
  font-weight: 400;
}

.header__navbar-user:hover .header__navbar-user-menu {
  display: block;
}

.header__navbar-user-menu {
  position: absolute;
  top: 100%;
  padding-left: 0;
  list-style: none;
  background-color: var(--white-color);
  right: 0;
  border-radius: 2px;
  width: 160px;
  z-index: 1;
  box-shadow: 0 1px 2px #e0e0e0;
  display: none;
}

.header__navbar-user-menu::after {
  content: "";
  display: block;
  position: absolute;
  top: -8px;
  right: 0;
  width: 70%;
  height: 10px;
}

.header__navbar-user-item a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.header__navbar-user-item a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

.header__navbar-user-menu::before {
  content: "";
  border-width: 14px 13px;
  border-style: solid;
  border-color: transparent transparent var(--white-color) transparent;
  position: absolute;
  right: 22px;
  top: -22px;
}

.header__navbar-user-item-separate {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.header__navbar-user-item a:hover {
  background-color: #fafafa;
}

.header__navbar-user-item a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.4rem;
  padding: 4px 16px;
  display: block;
}

.header__navbar-item--has-qr:hover .header__qr {
  display: block;
}

.header__navbar-item--has-notify:hover .header_notify {
  display: block;
}

.header__navbar-item,
.header__navbar-item-link {
  display: inline-block;
  font-size: 1.3rem;
  color: var(--black-color);
  text-decoration: none;
  font-weight: 300;
}

.header__navbar-item,
.header__navbar-item-link,
.header__navbar-icon-link {
  display: flex;
  align-items: center;
}

.header__navbar-item:hover,
.header__navbar-item-link:hover,
.header__navbar-icon-link:hover {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
}

.header__navbar-item--bold {
  font-weight: 400;
}

.header__navbar-item--separate::after {
  content: "";
  display: block;
  position: absolute;
  border-left: 1px solid black;
  height: 16px;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
}

.header__navbar-icon-link {
  color: var(--black-color);
  text-decoration: none;
}

.header__navbar-icon-link:nth-child(2) {
  margin-left: 3px;
}

.header__navbar-icon {
  font-size: 1.8rem;
  margin: 0 4px;
}

.header__navbar-title--no-pointer {
  cursor: text;
  color: var(--text-color);
}

/* QR code*/
.header__qr {
  background-color: var(--white-color);
  width: 170px;
  position: absolute;
  left: 0;
  top: 118%;
  padding: 8px;
  border-radius: 2px;
  display: none;
  animation: fadeIn ease-in 0.3s;
  z-index: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header__qr::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 20px;
  left: 0;
  top: -16px;
}

.header__qr-img {
  width: 100%;
}

.header__qr-apps {
  display: flex;
  justify-content: space-between;
}

.header_qr-download-img {
  height: 15px;
}

.header__qr-link:nth-child(1) {
  margin-left: 10px;
}

.header__qr-link:nth-child(2) {
  margin-right: 10px;
}

/* Header notification*/
.header_notify {
  position: absolute;
  top: 118%;
  right: 0;
  width: 404px;
  border: 1px solid #d3d3d3;
  background-color: var(--white-color);
  cursor: default;
  transform-origin: calc(100%-20px) top;
  animation: headerNotifyGrowth ease-in 0.2s;
  will-change: opacity, transform;
  display: none;
  z-index: 2;
}

.header_notify::before {
  content: "";
  border-width: 20px 27px;
  border-style: solid;
  border-color: transparent transparent var(--white-color) transparent;
  position: absolute;
  right: 4px;
  top: -28px;
}

.header_notify::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: -16px;
  height: 20px;
  width: 90px;
}

@keyframes headerNotifyGrowth {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.header_notify-header {
  height: 40px;
  background-color: var(--white-color);
}

.header_notify-header h3 {
  color: #999;
  margin: 0 0 0 12px;
  font-weight: 400;
  font: size 1.4rem;
  line-height: 40px;
  user-select: none;
}
.header_notify-list {
  padding-left: 0;
}
.header_notify-item {
  display: flex;
}

.header_notify-item:hover {
  background-color: #f7f7f7;
}

.header_notify-item--viewed {
  background-color: rgba(238, 75, 43, 0.08);
}

.header_notify-link {
  display: flex;
  width: 100%;
  padding: 12px;
  text-decoration: none;
}
.header_notify-img {
  width: 48px;
  object-fit: contain;
}
.header_notify-info {
  margin-left: 12px;
}
.header_notify-name {
  display: block;
  font-size: 1.4rem;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.8rem;
}

.header_notify-descriotion {
  display: block;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #756f6e;
  margin-top: 4px;
}

.header_notify-footer {
  display: flex;
}

.header_notify-footer-btn {
  text-decoration: none;
  color: var(--text-color);
  width: 100%;
  padding: 8px 0;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
}

/* Authen modal */
.auth-form {
  width: 500px;
  background-color: var(--white-color);
  border-radius: 5px;
  overflow: hidden;
}

.auth-form_container {
  padding: 0 32px;
}

.auth-form_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  margin-top: 10px;
}

.auth-form_heading {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-color);
}

.auth-form_switch-btn {
  font-size: 1.6rem;
  color: var(--primary-color);
}
/*
.auth-form_form {
}
*/
.auth-form_input {
  width: 100%;
  height: 40px;
  margin-top: 16px;
  padding: 0 12px;
  font-size: 1.4rem;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  outline: none;
}

.auth-form_input :focus {
  border-color: #888;
}

.auth-form_aside {
  margin-top: 18px;
}

.auth-form_policy-text {
  font-size: 1.2rem;
  line-height: 1.6rem;
  text-align: center;
  padding: 0 12px;
}

.auth-form_text-link {
  color: var(--primary-color);
  text-decoration: none;
}

.auth-form_controls {
  margin-top: 80px;
  display: flex;
  justify-content: flex-end;
}

.auth-form_socials {
  background-color: #f5f5f5;
  padding: 16px 36px;
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
}

.auth-form_controls-back {
  margin-right: 8px;
}

.auth-form_socials-icon {
  font-size: 1.6rem;
}

.auth-form_socials-facebook {
  color: var(--white-color);
  background-color: #3a5398;
}

.auth-form_socials-facebook.auth-form_socials-icon {
  color: var(--white-color);
}

.auth-form_socials-title {
  margin-top: 0 24px;
}

.auth-form_socials-google {
  background-color: var(--white-color);
  color: #666;
}

.auth-form_help {
  display: flex;
  justify-content: flex-end;
}

.auth-form_help-link {
  text-decoration: none;
  font-size: 1.4rem;
  color: #939393;
}

.auth-form_help-separate {
  display: block;
  border-left: 1px solid #eaeaea;
  margin: 1px 16px 0;
  height: 20px;
}

.auth-form_help-forgot {
  color: var(--primary-color);
}

/* Header with search*/
.header-with-search {
  height: var(--header-with-search-height);
  display: flex;
  align-items: center;
}

.header_logo {
  width: 200px;
}

.header__search {
  background-color: var(--white-color);
  height: 40px;
  flex: 1;
  border-radius: 2px;
  margin: 0 8px;
  display: flex;
  align-items: center;
}

.header__cart-wrap {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  cursor: pointer;
}

.header__cart-notice {
  position: absolute;
  padding: 1px 7px;
  font-size: 1.4rem;
  color: var(--primary-color);
  background-color: var(--white-color);
  line-height: 1.4rem;
  border-radius: 10px;
  border: 2px solid #ee9e2dd8;
  right: -3px;
  top: -4px;
}

.header__cart {
  width: 150px;
  text-align: center;
}

.header__cart-wrap:hover .header__cart-list {
  display: block;
}

.header__cart-list::after {
  content: "";
  position: absolute;
  right: 3px;
  top: -23px;
  border-width: 16px 20px;
  border-style: solid;
  border-color: transparent transparent var(--white-color) transparent;
  cursor: pointer;
}

.header__cart-icon {
  color: var(--white-color);
  font-size: 2.4rem;
  margin-top: 6px;
}

.header__cart-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 1px;
  background-color: var(--white-color);
  width: 320px;
  border-radius: 2px;
  box-shadow: 0 1px 3.125rem rgba(0, 0, 0, 0.2);
  display: none;
  animation: fadeIn ease-in 0.2s;
  cursor: default;
  z-index: 2;
}

.header__cart-list-item {
  padding-left: 0;
  list-style: none;
  height: 30vh;
  overflow-y: auto;
}

.header__cart-heading {
  text-align: left;
  margin: 8px 0 8px 12px;
  font-size: 1.4rem;
  color: #999;
  font-weight: 400;
}

.header__cart-item {
  display: flex;
  align-items: center;
}

.header__cart-item:hover {
  background-color: #f8f8f8;
}

.header__cart-img {
  width: 42px;
  height: 42px;
  margin: 12px;
  border: 1px solid #e8e8e8;
}

.header__cart-item-info {
  width: 100%;
  margin-right: 12px;
}

.header__cart-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__cart-item-name {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 500;
  flex: 1;
  padding-right: 16px;
  max-height: 4rem;
  overflow: hidden;
  color: var(--text-color);
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.header__cart-item-price {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary-color);
}

.header__cart-item-multiply {
  font-size: 0.9rem;
  margin: 0 4px;
  color: #757575;
}

.header__cart-item-qnt {
  font-size: 1.2rem;
  color: #757575;
}

.header__cart-item-body {
  display: flex;
  justify-content: space-between;
}

.header__cart-item-description {
  color: #757575;
  font-size: 1.2rem;
  font-weight: 300;
}

.header__cart-item-remove {
  color: var(--text-color);
  font-size: 1.4rem;
}

.header__cart-item-remove:hover {
  color: var(--primary-color);
  cursor: pointer;
}

.header__cart-view-cart {
  float: right;
  margin: 0 12px 12px 0;
}

.header__cart-view-cart:hover {
  background-color: #e3a72d;
}

.header__cart-list--no-cart {
  padding: 24px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header__cart-list--no-cart-img {
  width: 80%;
  max-width: 180px;
  margin: 0 auto;
}

.header__cart-list--no-cart .header__cart-list--no-cart-img,
.header__cart-list--no-cart .header__cart-list-no-cart-msg {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.header__cart-list-no-cart-msg {
  display: block;
  font-size: 1.6rem;
  margin-top: 12px;
  color: var(--text-color);
}

.header__search-input-wrap {
  flex: 1; /* Tăng khả năng giãn rộng */
  min-width: 200px; /* Tăng chiều rộng tối thiểu */
  height: 100%;
  position: relative;
}

.header__search-input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 1.5rem;
  color: var(--text-color);
  padding: 0 16px;
  border-radius: 2px;
}
.header__search-select {
  border-left: 1px solid #e0e0e0;
  padding-left: 16px;
  position: relative;
  cursor: pointer;
}

.header__search-select-label {
  font-size: 1.4rem;
  color: var(--text-color);
}

.header__search-select-label-icon {
  font-size: 1.4rem;
  color: #777676;
  margin: 0 16px 0 8px;
  position: relative;
  top: 1px;
}

.header_search-btn {
  background-color: var(--primary-color);
  border: none;
  height: 34px;
  width: 60px;
  border-radius: 2px;
  margin-right: 3px;
  outline: none;
}
.header_search-btn:hover {
  background-color: #ecd73c84;
  cursor: pointer;
}

.header_search-btn-icon {
  font-size: 1.4rem;
  color: var(--white-color);
}

.header__search-option {
  position: absolute;
  right: 0;
  top: calc(100% + 5px);
  width: 130px;
  list-style: none;
  box-shadow: 0 1px 2px #ccc;
  padding-left: 0;
  border-radius: 2px;
  animation: fadeIn ease-in 0.2s;
  display: none;
}

.header__search-option::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  position: absolute;
  top: -10px;
  left: 0;
}

.header__search-select:hover .header__search-option {
  display: block;
}

.header__search-option-item {
  background-color: var(--white-color);
  padding: 8px 8px;
}

.header__search-option-item:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.header__search-option-item:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
.header__search-option-item span {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-left: 8px;
}

.header__search-option-item i {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-left: 12px;
  display: none;
}

.header__search-option-item-active i {
  display: inline-block;
}

.header__search-input:focus ~ .header__search-history {
  display: block;
}

/*Search history*/
.header__search-history {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  border-radius: 2px;
  box-shadow: 0 1px 3px #999;
  display: none;
  z-index: 2;
}

.header__search-history-heading {
  margin: 6px 12px;
  font-size: 1.4rem;
  color: #999;
  font-weight: 400;
}

.header__search-history-list {
  padding-left: 0;
  list-style: none;
  margin: 6px 0 0;
}

.header__search-history-item {
  height: 38px;
  padding: 0 12px;
}

.header__search-history-item:hover {
  background-color: #fafafa;
}
.header__search-history-item a {
  text-decoration: none;
  font-size: 1.4rem;
  color: var(--text-color);
  line-height: 38px;
  display: block;
}
#slideshow {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  margin-bottom: 20px;
  padding-left: 400px;
  padding-right: 400px;
  padding-top: 30px;
  background-color: #f9f9f9;
}

#slideshow img#slide {
  width: 100%;
  height: auto;
  display: block;
}

.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 1;
}

.slideshow-btn:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

#btn-prev {
  left: 420px;
}

#btn-next {
  right: 420px;
}

/* App container */
.app_container {
  background-color: #f5f5f5;
}

.category {
  background-color: var(--white-color);
  border-radius: 2px;
}

.app__content {
  padding-top: 36px;
}

.category__heading {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-color);
  margin-top: 0;
  padding: 16px 16px 0;
  text-transform: uppercase;
}

.select-input {
  z-index: 1;
}

.category-list {
  padding: 0 0 6px 0;
  list-style: none;
}

.category-item {
  position: relative;
}

.category-item:first-child::before {
  display: none;
}

.category-item::before {
  content: "";
  border-top: 1px solid #e1e1e1;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
}

.category-item--active .category-item__link {
  color: var(--primary-color);
}

.category-item__link {
  position: relative;
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.4rem;
  padding: 6px 20px;
  display: block;
}

.category-item__link:hover {
  color: var(--primary-color);
}

/* Home sort + filter */

.home-filter {
  background-color: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 2px;
}

.home-filter__label {
  font-size: 1.4rem;
  color: #555;
  margin-right: 16px;
}

.home-filter__btn {
  margin-right: 12px;
  min-width: 90px;
}

.home-filter__page {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.home-filter__page-num {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-right: 22px;
}

.home-filter__page-current {
  color: var(--primary-color);
}

.home-filter__page-control {
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  width: 72px;
  height: 36px;
}

.home-filter__page-btn {
  flex: 1;
  background-color: var(--white-color);
  display: flex;
  text-decoration: none;
}

.home-filter__page-btn:first-child {
  border-right: 1px solid #eee;
}

.home-filter__page-icon {
  margin: auto;
  font-size: 1.2rem;
  color: #555;
}

.home-filter__page-btn-disible {
  background-color: #f9f9f9;
  cursor: default;
}

.home-filter__page-btn-disible .home-filter__page-icon {
  color: #ccc;
}

/* Product item */
.home-product {
  margin-bottom: 10px;
}

.home-product-item {
  display: block;
  text-decoration: none;
  position: relative;
  margin-top: 10px;
  background-color: var(--white-color);
  border-radius: 2px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  transition: transform ease-in 0.1s;
  will-change: transform;
}

.home-product-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.05);
}

.home-product-item__img {
  padding-top: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: cover;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.home-product-item__name {
  font-size: 1.4em;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.8rem;
  margin: 10px 10px 6px;
  height: 3.6rem;
  overflow: hidden;
  display: block;
  /* white-space: nowrap; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

.home-product-item__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.home-product-item__price-old {
  font-size: 1.4rem;
  margin-left: 10px;
  color: #666;
  text-decoration: line-through;
}

.home-product-item__price-current {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-left: 10px;
}

.home-product-item__action {
  display: flex;
  justify-content: space-between;
  margin: 6px 10px 0;
}

.home-product-item-like {
  font-size: 1.3rem;
}

i.home-product-item-like-icon-fill {
  display: none;
}

.home-product-item-like--liked .home-product-item-like-icon-fill {
  display: inline-block;
}

.home-product-item-like--liked .home-product-item-like-icon-empty {
  display: none;
}

.home-product-item-rating {
  font-size: 0.6rem;
  margin: 3px 0 0 55px;
}

.home-product-item-star--gold {
  color: var(--star-gold-color);
}

.home-product-item__sold {
  font-size: 1.2rem;
  color: var(--text-color);
}

.home-product-item__origin {
  display: flex;
  justify-content: space-between;
  margin: 5px 10px 0;
  color: #595959;
  font-size: 1.2rem;
  font-weight: 300;
}

.home-oroduct-item__favorite {
  position: absolute;
  top: 10px;
  left: -4px;
  color: var(--primary-color);
  background-color: currentColor;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5rem;
  padding-right: 4px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.home-oroduct-item__favorite span {
  color: var(--white-color);
}

.home-oroduct-item__favorite::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  border-top: 3px solid currentColor;
  border-left: 3px solid transparent;
  filter: brightness(60%);
}

.home-oroduct-item__favorite i {
  font-size: 0.9rem;
  margin: 0 2px 0 5px;
  color: var(--white-color);
}

.home-oroduct-item__sale-off-percent {
  margin-left: 10px;
  color: rgba(255, 0, 0, 0.842);
  font-size: 1.2rem;
}

.home-product__pagination {
  margin: 48px 0 32px 0;
}

.blog-section {
  margin: 80px auto;
  width: 100%;
  background-color: #f9f9f9;
}
.blog-section__title {
  text-align: center;
}
.blog-section__underline {
  height: 4px;
  background-color: #c79331;
  border: none;
  width: 5%;
  margin: 20px auto;
}
.blog-section__list {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.blog-section__item {
  width: 31%;
  padding: 10px;
}
.blog-section__item img {
  width: 100%;
}

/* Footer */
.footer {
  padding-top: 60px;
  border-top: 4px solid var(--primary-color);
}

.footer__heading {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #737373;
}

.footer__list {
  padding-left: 0;
  list-style: none;
}

.footer-item__link {
  text-decoration: none;
  font-size: 1.2rem;
  color: #666;
  padding: 2px 0;
  display: flex;
  align-items: center;
}

.footer-item__link:hover {
  color: var(--primary-color);
}

.footer-item__icon {
  font-size: 1.6rem;
  margin: -1px 8px 0 0;
}

.footer__bottom {
  background-color: #f5f5f5;
  padding: 8px 0;
  margin-top: 36px;
}

.footer__text {
  margin: 0;
  font-size: 1.4rem;
  text-align: center;
  color: #737373;
}

.category-toggle {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer-column {
    width: 33.33%;
    padding-left: 15px;
  }
  .item {
    width: 33.333%;
  }
  #banner {
    display: none;
  }
  #map {
    display: none;
  }
  #sideshow {
    display: none;
  }
  #top-left {
    display: none;
  }
  #top-right {
    float: left;
  }
}

@media (min-width: 601px) {
  .header__cart {
    padding-right: 0;
  }

  .header__cart-notice {
    right: -3px;
    top: -4px;
    transform: none;
  }
}

@media only screen and (max-width: 600px) {
  .category-toggle {
    display: block;
    position: absolute;
    top: 120px;
    left: 10px;
    z-index: 9999;
    background-color: #ffc107;
    border: none;
    padding: 10px 12px;
    font-size: 1.6rem;
    border-radius: 6px;
  }

  .category {
    display: none;
    position: fixed;
    top: 150px;
    left: 10px;
    width: 250px;
    max-width: 90vw;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    border-radius: 8px;
    padding: 20px;
  }

  .category.show {
    display: block;
  }

  .category__heading {
    display: none;
  }

  .category-item a {
    display: block;
    padding: 10px 0;
    font-size: 1.4rem;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
  }

  .grid__row {
    flex-direction: column;
    align-items: center;
  }

  .grid_column-2-4 {
    width: 100% !important;
    margin-bottom: 16px;
  }

  .home-product-item__img {
    background-size: cover;
    background-position: center;
  }

  .home-product-item__name {
    -webkit-line-clamp: 3;
    height: auto;
  }

  .home-filter {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .home-filter__sort,
  .home-filter__btn {
    width: 100%;
  }

  .home-product__pagination {
    justify-content: center;
    flex-wrap: wrap;
  }

  .header__cart,
  .header__search {
    z-index: 1000;
  }

  .header__cart-icon {
    padding-right: 10px;
  }
  .header__cart-list {
    right: 0;
    left: auto;
    width: 90vw;
    max-width: 360px;
    transform: translateX(5%);
  }

  

  #slideshow,
  #btn-prev,
  #btn-next,
  .home-filter__page,
  .blog-section,
  .qc,
  .qc-item {
    display: none;
  }

  .header__cart {
    padding-right: 18px;
  }

  .header__cart-notice {
    position: absolute;
    top: -6px;
    right: -0px;
    transform: translateX(-66%);
  }

  .footer {
    padding-top: 20px;
  }

  .footer__heading,
  .footer__text,
  .footer-item__link {
    font-size: 1.2rem;
  }

  .footer__list {
    padding-left: 10px;
  }
}

@media (max-width: 480px) {
  .order-item {
    padding: 10px;
  }

  .order-photo {
    max-width: 100px;
  }

  .order-name {
    font-size: 1em;
  }

  .order-price {
    font-size: 1.1em;
  }

  .order-action input[type="button"] {
    padding: 6px 12px;
    font-size: 0.9em;
  }
}
