@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");

* {
  box-sizing: border-box;
  font-family: "Lexend Deca", sans-serif;
}

:root {
  --color-primary: #4502c7;
}

a {
  text-decoration: none;
}

input,
select,
textarea,
button {
  outline: none;
}

body {
  margin: 0;
  background-color: #f7f7f7;
}

.container {
  width: 1184px;
  margin-left: auto;
  margin-right: auto;
}

/* Top-header */
.top-header {
  background-color: var(--color-primary);
  padding: 10px 0;
}

@media (max-width: 1199.98px) {
  .container {
    width: 960px;
  }
}

@media (max-width: 991.98px) {
  .container {
    width: 720px;
  }
}

@media (max-width: 767.98px) {
  .container {
    width: 540px;
  }
}

@media (max-width: 575.98px) {
  .container {
    width: auto;
    padding: 0 16px;
  }
}

.top-header .inner-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}

.top-header .inner-wrap .inner-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400px;
  font-size: 14px;
  color: #fffbeb;
}

.top-header .inner-wrap .inner-item i {
  font-size: 20px;
}

@media (max-width: 767.98px) {
  .top-header {
    display: none;
  }
}

/* End Top-header */

/* Header  */

.header {
  padding: 15px 0;
  background-color: #ffffff;
}

.header .inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .inner-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .inner-menu-mobile {
  display: none;
}

.header .inner-logo img {
  width: auto;
  height: 50px;
}

.header .inner-menu > ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 40px;
}

.header .inner-menu > ul > li > a {
  font-weight: 500;
  font-size: 16;
  color: #25282b;
}

.header .inner-menu > ul > li > a.active,
.header .inner-menu > ul > li > a:hover {
  color: var(--color-primary);
}

.header .inner-menu > ul > li {
  position: relative;
}

.header .inner-menu > ul > li > ul {
  position: absolute;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background-color: #ffffff;
  width: 280px;
  border-radius: 0 0 10px 10px;
  top: 100%;
  left: 0;
  z-index: 999;
  display: none;
}

.header .inner-menu > ul > li:hover > ul {
  display: inline-block;
}

.header .inner-menu > ul > li > ul > li > a {
  display: block;
  padding: 8px 22px;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-primary);
}

.header .inner-menu > ul > li > ul > li > a.active,
.header .inner-menu > ul > li > ul > li > a:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* User section */
.header .inner-user {
  margin-right: 0;
}

.header .inner-user-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header .inner-user-actions .btn-login {
  padding: 8px 20px;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header .inner-user-actions .btn-login .btn-icon {
  display: none;
}

.header .inner-user-actions .btn-login:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.header .inner-user-actions .btn-register {
  padding: 8px 20px;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header .inner-user-actions .btn-register .btn-icon {
  display: none;
}

.header .inner-user-actions .btn-register:hover {
  background-color: #3a02a0;
}

.header .inner-user-info {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.header .inner-user-info:hover {
  background-color: #f0f0f0;
}

.header .inner-user-info .user-name {
  font-weight: 500;
  font-size: 14px;
  color: #333;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header .user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
}

.header .inner-user-info:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header .user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #333;
  font-size: 14px;
  transition: background-color 0.2s;
}

.header .user-dropdown-item:hover {
  background-color: #f7f7f7;
}

.header .user-dropdown-item.logout {
  border-top: 1px solid #e5e5e5;
  color: #dc3545;
}

.header .user-dropdown-item.logout:hover {
  background-color: #fff5f5;
}

.header .user-dropdown-item i {
  width: 18px;
  text-align: center;
  color: var(--color-primary);
  font-size: 16px;
}

.header .user-dropdown-item.logout i {
  color: #dc3545;
}

/* End User section */

.header .inner-cart a {
  display: inline-flex;
  align-items: center;
}

.header .inner-cart a img {
  width: auto;
  height: 26px;
}

.header .inner-cart span {
  background-color: #ff3904;
  border-radius: 3px;
  font-weight: 400;
  font-size: 10px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 13px;
  margin-left: 1.5px;
  position: relative;
}

.header .inner-cart span::before {
  content: "\f0d9";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  color: #ff3904;
  font-size: 8px;
  position: absolute;
  top: 2.5px;
  left: -2.5px;
}

@media (max-width: 1199.98px) {
  .header .inner-menu > ul {
    gap: 32px;
  }
}

@media (max-width: 991.98px) {
  .header .inner-menu {
    /* display: none; */
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 999;
    width: 100%;
    height: 100%;
    transition: all 0.2s;
    /* su dung display:none khong them hieu ung duoc */
  }

  .header .inner-menu.active {
    /* display: block;
    position: fixed;
    top: 0; */
    left: 0;
    /* z-index: 999;
    width: 100%;
    height: 100%; */
  }

  .header .inner-menu > ul {
    width: 280px;
    height: 100%;
    background-color: white;
    flex-direction: column;
    position: relative;
    gap: 0;
  }
  .header .inner-menu > ul > li {
    display: flex;
    /* justify-content: space-between; */
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
  }
  .header .inner-menu > ul > li > a {
    flex: 1;
    padding: 10px;
  }
  .header .inner-menu > ul > li > i {
    width: 40px;
    border-left: 1px solid #ddd;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .header .inner-menu > ul > li.active > i::before {
    content: "\f0d8";
  }

  .header .inner-menu > ul > li:hover > ul {
    display: none;
  }
  .header .inner-menu > ul > li.active > ul {
    display: block;
    padding: 0px;
    position: static;
  }
  .header .inner-menu .inner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.167);
  }

  .header .inner-menu-mobile {
    display: inline-block;
    font-size: 22px;
    color: #25282b;
    background-color: transparent;
    border: 0;
    cursor: pointer;
  }

  /* Hiện icon, ẩn text trên tablet */
  .header .inner-user-actions .btn-login .btn-icon,
  .header .inner-user-actions .btn-register .btn-icon {
    display: inline-block;
    font-size: 14px;
  }

  .header .inner-user-actions .btn-login .btn-text,
  .header .inner-user-actions .btn-register .btn-text {
    display: none;
  }

  .header .inner-user-actions .btn-login,
  .header .inner-user-actions .btn-register {
    padding: 10px 12px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }

  .header .inner-logo img {
    height: 42px;
  }

  .header .inner-right {
    gap: 10px;
  }
}

@media (max-width: 767.98px) {
  .header {
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .header .inner-wrap {
    gap: 12px;
  }

  .header .inner-logo img {
    height: 36px;
  }

  .header .inner-right {
    gap: 8px;
  }

  .header .inner-user-actions {
    gap: 6px;
  }

  .header .inner-user-actions .btn-login,
  .header .inner-user-actions .btn-register {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
  }

  /* Cart responsive */
  .header .inner-cart a img {
    height: 22px;
  }

  .header .inner-cart span {
    font-size: 9px;
    width: 14px;
    height: 12px;
  }
}

@media (max-width: 575.98px) {
  .header {
    padding: 10px 0;
  }

  .header .inner-wrap {
    gap: 8px;
  }

  .header .inner-logo img {
    height: 32px;
  }

  /* Ẩn text nút, chỉ hiện icon trên mobile nhỏ */
  .header .inner-user-actions .btn-login,
  .header .inner-user-actions .btn-register {
    padding: 8px 10px;
    font-size: 11px;
  }

  /* User info responsive */
  .header .inner-user-info {
    padding: 6px 8px;
  }

  .header .inner-user-info .user-name {
    max-width: 80px;
    font-size: 13px;
  }

  .header .inner-user-info > i:first-child {
    font-size: 18px !important;
    margin-right: 4px !important;
  }

  .header .inner-user-info > i:last-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .header .inner-logo img {
    height: 30px;
  }

  /* Hiện icon, ẩn text trên mobile nhỏ */
  .header .inner-user-actions .btn-login .btn-icon,
  .header .inner-user-actions .btn-register .btn-icon {
    display: inline-block;
    font-size: 14px;
  }

  .header .inner-user-actions .btn-login .btn-text,
  .header .inner-user-actions .btn-register .btn-text {
    display: none;
  }

  .header .inner-user-actions .btn-login,
  .header .inner-user-actions .btn-register {
    padding: 10px 12px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    justify-content: center;
  }

  .header .inner-right {
    gap: 6px;
  }

  .header .inner-cart a img {
    height: 20px;
  }

  .header .inner-menu-mobile {
    font-size: 20px;
  }
}

@media (max-width: 360px) {
  .header .inner-logo img {
    height: 26px;
  }

  .header .inner-user-actions .btn-login,
  .header .inner-user-actions .btn-register {
    width: 34px;
    height: 34px;
    padding: 8px;
  }

  .header .inner-user-actions .btn-login .btn-icon,
  .header .inner-user-actions .btn-register .btn-icon {
    font-size: 12px;
  }

  .header .inner-user-actions {
    gap: 4px;
  }

  .header .inner-right {
    gap: 4px;
  }
}

/* End Header  */

/* Section-1 */
/* @keyframes showRight {
  0% {
    opacity: 0;
    transform: translateX(100px); 
    Bắt đầu từ bên phải
  }
  100% {
    opacity: 1;
    transform: translateX(0); 
    Kết thúc ở vị trí ban đầu
  }
}
@keyframes showLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px); 
    Bắt đầu từ bên trái
  }
  100% {
    opacity: 1;
    transform: translateX(0); 
    Kết thúc ở vị trí ban đầu
  }
} */

.section-1 {
  padding: 106px 0 108px 0;
  background-image: url(images/background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section-1 .inner-wrap {
  width: 768px;
  margin: 0 auto;
  /*bằng với margin left, right auto*/
}

.section-1 .inner-wrap .inner-title {
  font-weight: 700;
  font-size: 36px;
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  line-height: 125%;
  letter-spacing: 1.8px;
  animation: showRight 3s ease forwards;
  animation-delay: 0s;
}

.section-1 .inner-wrap .inner-desc {
  font-weight: 400;
  font-size: 16px;
  color: #25282b;
  line-height: 125%;
  letter-spacing: 0;
  text-align: center;
  margin-top: 0;
  margin-bottom: 30px;
}

.section-1 .inner-wrap .inner-form {
  background-color: #00000066;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  animation: showLeft 3s ease forwards;
  animation-delay: 0s;
}

.section-1 .inner-wrap .inner-form .inner-input-group {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 18px 12px;
  display: flex;
  align-items: center;
}

.section-1 .inner-wrap .inner-form .inner-box.inner-address {
  width: 100%;
}

.section-1 .inner-wrap .inner-form .inner-box.inner-user,
.section-1 .inner-wrap .inner-form .inner-box.inner-calendar {
  width: 37.5%;
}

.section-1 .inner-wrap .inner-form .inner-input-group .inner-icon {
  height: 20px;
  width: auto;
  margin-right: 14px;
}

.section-1 .inner-wrap .inner-form .inner-input-group .inner-input {
  flex: 1;
  font-size: 14px;
  font-weight: 14px;
  border: 0;
  outline: none;
}

.section-1
  .inner-wrap
  .inner-form
  .inner-input-group
  .inner-input::placeholder {
  color: #a6a6a6;
}

.section-1 .inner-wrap .inner-form .inner-input-group .inner-down {
  font-size: 10px;
  color: var(--color-primary);
}

.section-1 .inner-wrap .inner-form .inner-button {
  flex: 1;
  background-color: var(--color-primary);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
  border: 0;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
}

.section-1 .inner-wrap .inner-form .inner-button i {
  font-size: 20px;
}
.section-1 .inner-form .inner-box {
  position: relative;
}
.section-1 .inner-form .inner-box .inner-suggest {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: #fff;
  border-radius: 10px;
  padding: 16px 30px;
  display: none;
}
.section-1 .inner-form .inner-box.active .inner-suggest {
  display: block;
}
.section-1 .inner-form .inner-box .inner-suggest .inner-suggest-title {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}
.section-1 .inner-form .inner-box .inner-suggest .inner-suggest-title i {
  font-size: 17px;
}

.section-1 .inner-form .inner-box .inner-suggest .inner-suggest-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
  overflow-y: auto;
  max-height: 270px;
}
.section-1 .inner-form .inner-box .inner-suggest .inner-item {
  display: flex;
  align-items: center;
  gap: 16.5px;
  cursor: pointer;
}
.section-1 .inner-form .inner-box .inner-suggest .inner-item-image {
  width: 99px;
  height: 58px;
  border-radius: 5px;
  overflow: hidden;
}
.section-1 .inner-form .inner-box .inner-suggest .inner-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-1 .inner-form .inner-box .inner-suggest .inner-item-content {
  flex: 1;
}
.section-1 .inner-form .inner-box .inner-suggest .inner-item-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-primary);
}
.section-1 .inner-form .inner-box .inner-suggest .inner-item-desc {
  font-weight: 500;
  font-size: 12px;
  color: #a6a6a6;
}

.section-1 .inner-form .inner-box .inner-quantity {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  display: none;
}
.section-1 .inner-form .inner-box.active .inner-quantity {
  display: inline-block;
}

.section-1 .inner-form .inner-box .inner-quantity .inner-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 6px;
  border-bottom: 1px solid #ececec;
  margin-bottom: 6px;
}
.section-1 .inner-form .inner-box .inner-quantity .inner-item:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
  margin-bottom: 0px;
}
.section-1 .inner-form .inner-box .inner-quantity .inner-label {
  font-weight: 400;
  font-size: 12px;
  color: #a6a6a6;
}

.section-1 .inner-form .inner-box .inner-quantity .inner-count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-1 .inner-form .inner-box .inner-quantity .inner-down,
.section-1 .inner-form .inner-box .inner-quantity .inner-up {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 1px solid #c0c0c0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 12px;
  color: var(--color-primary);
  cursor: pointer;
}
.section-1 .inner-form .inner-box .inner-quantity .inner-down:hover,
.section-1 .inner-form .inner-box .inner-quantity .inner-up:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: white;
}
.section-1 .inner-form .inner-box .inner-quantity .inner-number {
  width: 40px;
  border: 0;
  text-align: center;
}
@media (max-width: 991.98px) {
  .section-1 .inner-wrap {
    width: 100%;
  }

  .section-1 .inner-wrap .inner-title {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  /* .section-1 .inner-wrap {
        width: 100%;
    } */

  .section-1 .inner-wrap .inner-title {
    font-size: 27px;
  }

  .section-1 .inner-wrap .inner-desc {
    font-size: 14px;
  }

  .section-1 .inner-wrap .inner-form {
    padding: 15px;
  }

  .section-1 .inner-wrap .inner-form .inner-box.inner-user,
  .section-1 .inner-wrap .inner-form .inner-box.inner-calendar {
    width: 100%;
  }

  .section-1 .inner-wrap .inner-form .inner-button {
    height: 56px;
  }
}
@media (max-width: 575.98px) {
  .section-1 .inner-form .inner-box .inner-suggest .inner-suggest-list {
    grid-template-columns: 1fr;
  }
}
/* End Section-1 */

/* Section-2 */
.section-2 {
  padding: 60px 0;
}

.section-2 .inner-wrap {
  background-color: var(--color-primary);
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px #00000040;
  padding: 32px 27px 32px 23px;
  display: flex;
  gap: 32px;
}

.section-2 .inner-wrap .inner-infor {
  width: 22%;
}

.section-2 .inner-wrap .inner-infor .inner-title {
  font-weight: 700;
  font-size: 28px;
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 10px;
  line-height: 1.5;
  text-align: center;
}

.section-2 .inner-wrap .inner-infor .inner-desc {
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 36px;
  text-align: center;
  color: #ffffff;
}

.section-2 .inner-wrap .inner-clock-title {
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 16px;
  text-align: center;
  color: #ffffff;
}

.section-2 .inner-wrap .inner-clock {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
}

.section-2 .inner-wrap .inner-clock .inner-item {
  width: 57px;
  height: 57px;
  border-radius: 10px;
  background-color: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 47px;
  flex-direction: column;
}
.section-2 .inner-wrap .inner-clock .inner-item .inner-number {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 20px;
}
.section-2 .inner-wrap .inner-clock .inner-item .inner-label {
  color: #333333;
  font-weight: 500;
  font-size: 13px;
}

.section-2 .inner-wrap .inner-discount-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
  text-align: center;
  color: #ffffff;
}

.section-2 .inner-wrap .inner-discount-price {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  color: #ffd63a;
}

.section-2 .inner-wrap .inner-discount-price .inner-unit {
  text-decoration: underline;
}

.section-2 .inner-list {
  width: calc(78% - 32px);
}

@media (max-width: 1199.98px) {
  .section-2 .inner-info {
    width: 28.5%;
  }
  .section-2 .inner-list {
    width: calc(71.5% - 32px);
  }
}

@media (max-width: 991.98px) {
  .section-2 .inner-wrap .inner-infor {
    width: calc(50% - 16px);
  }

  .section-2 .inner-wrap .inner-list {
    width: calc(50% - 16px);
  }
}

@media (max-width: 767.98px) {
  .section-2 .inner-wrap {
    flex-wrap: wrap;
  }
  .section-2 .inner-wrap .inner-infor {
    width: 100%;
  }

  .section-2 .inner-wrap .inner-list {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .section-2 {
    padding: 45px;
  }

  .section-2 .inner-wrap {
    padding: 30px 15px;
    gap: 30px;
  }

  .section-2 .inner-wrap .inner-infor .inner-title {
    margin-top: 0;
  }
}

/* End Section-2 */

/* Product-item */
.product-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 2.38px 2.38px 0px #00000040;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-item .inner-image {
  width: 100%;
  aspect-ratio: 271/237;
  margin-bottom: -15px;
  position: relative;
}

.product-item .inner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-item .inner-discount {
  background-color: #da0808;
  border-radius: 0 32px 32px 0;
  display: inline-flex;
  gap: 6px;
  padding: 3px 5px;
  color: #f9f9fa;
  font-weight: 600px;
  font-size: 11px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.product-item .inner-discount i {
  color: #ffcb06;
}

.product-item .inner-content {
  padding: 16px;
}

.product-item .inner-content .inner-title {
  font-weight: 700;
  font-size: 14px;
  text-align: start;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.4;
  height: 40px; /* 2 dòng cố định */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.product-item .inner-content .inner-title a {
  color: #25282b;
}

.product-item .inner-content .inner-title a:hover {
  color: var(--color-primary);
}

.product-item .inner-content .inner-prices {
  margin-bottom: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
}

.product-item .inner-content .inner-prices .inner-price-old {
  font-weight: 600;
  font-size: 15px;
  color: #52575c;
  text-decoration: line-through;
}

.product-item .inner-content .inner-prices .inner-price-new {
  font-weight: 700;
  font-size: 14px;
  color: #da0808;
}

.product-item .inner-content .inner-prices .inner-unit {
  text-decoration: underline;
}

.product-item .inner-content .inner-desc {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-item .inner-content .inner-desc .inner-desc-item {
  font-weight: 400;
  font-size: 11px;
  color: #8c8c8c;
  line-height: 1.25;
}

.product-item .inner-content .inner-desc .inner-desc-item b {
  font-weight: 700;
}

.product-item .inner-content .inner-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.product-item .inner-content .inner-meta .inner-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-item .inner-content .inner-meta .inner-rating .inner-stars {
  display: inline-flex;
  gap: 2px;
  color: #ffd600;
}

.product-item .inner-content .inner-meta .inner-rating .inner-number {
  font-weight: 400;
  font-size: 11px;
  color: #8c8c8c;
}

.product-item .inner-content .inner-meta .inner-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-item .inner-content .inner-meta .inner-stock .inner-label {
  font-weight: 700;
  font-size: 11px;
  color: #25282b;
}

.product-item .inner-content .inner-meta .inner-stock .inner-number {
  background-color: #da0808;
  border-radius: 10px;
  padding: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
}

/* Badge "Hết chỗ" trên product-item */
.product-item .inner-out-of-stock-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #dc3545;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.product-item .inner-out-of-stock-badge i {
  font-size: 14px;
}

/* Product-item hết chỗ - làm mờ */
.product-item.out-of-stock {
  opacity: 0.7;
  position: relative;
}

.product-item.out-of-stock::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  border-radius: 10px;
}

/* End Product-item */

/* Box-title */
/* End Box-title */
.box-title {
  font-weight: 700;
  font-size: 36px;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 30px;
  margin-top: 0px;
}

/* Section-3  */
.section-3 {
  padding-bottom: 60px;
}
.section-3 .inner-wrap .inner-item {
  aspect-ratio: 382/269;
  border-radius: 10px;
  overflow: hidden;
}

.section-3 .inner-wrap .inner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-wrapper {
  padding-bottom: 40px;
}
.section-3 .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #d9d9d9;
  opacity: 1;
}
.section-3 .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 991.98px) {
  .box-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .section-3 .inner-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575.98px) {
  .box-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .section-3 {
    margin-bottom: 45px;
  }

  .section-3 .inner-wrap {
    grid-template-columns: 1fr;
  }
}

/* End Section-3  */

/* Section-4  */
.section-4 {
  padding-bottom: 60px;
}

.section-4 .inner-wrap {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.section-4 .inner-button {
  margin-top: 30px;
  text-align: center;
}

/* End Section-4 */
/* button-outline */
.button-outline {
  border: 2px solid var(--color-primary);
  background-color: white;
  border-radius: 6px;
  padding: 13px 30px;
  display: inline-block;
  color: #4502c7;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s;
}

.button-outline:hover {
  background-color: var(--color-primary);
  color: white;
}

@media (max-width: 1199.98px) {
  .section-4 .inner-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .section-4 .inner-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .section-4 {
    padding-bottom: 45px;
  }

  .section-4 .inner-wrap {
    gap: 10px;
  }

  .product-item .inner-content {
    padding: 10px;
  }

  .product-item .inner-content .inner-meta .inner-stock {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .section-4 .inner-button {
    margin-top: 25px;
  }
}

/* End button-outline */

/* Section-5 */
.section-5 {
  padding-bottom: 60px;
}

.section-5 .inner-image {
  border-radius: 10px;
  overflow: hidden;
}

.section-5 .inner-image img {
  width: 100%;
  height: auto;
}

@media (max-width: 575.98px) {
  .section-5 {
    padding-bottom: 45px;
  }
}

/* End Section-5 */

/* Section-8 */

/* .section-8 img{
    width: 200px;
} */
.section-8 {
  padding-bottom: 60px;
}

.section-8 .inner-wrap {
  display: grid;
  grid-template-columns: 302fr 536fr 302fr;
  gap: 24px 20px;
}

.section-8 .inner-wrap .blog-item-2 {
  grid-row: span 2;
}

/* Blog-item  */
.blog-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.section-8 .inner-wrap .blog-item .inner-img {
  aspect-ratio: 302/308;
}

.section-8 .inner-wrap .blog-item .inner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-item .inner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(69, 2, 199, 0) 58.85%,
    rgba(69, 2, 199, 0.9) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  padding: 18px 24px;
}

.blog-item .inner-content .inner-date {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.blog-item .inner-content .inner-title {
  font-weight: 400;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.33;
  letter-spacing: 0.15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog-item  */

/* Blog-item2  */
.section-8 .inner-wrap .blog-item-2 {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 0px 4px 0px #00000040;
}

.section-8 .inner-wrap .blog-item-2 img {
  aspect-ratio: 536/400;
}

.section-8 .inner-wrap .blog-item-2 .inner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-8 .inner-wrap .blog-item-2 .inner-content {
  padding: 16px 24px;
}

.section-8 .inner-wrap .blog-item-2 .inner-content .inner-date {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.428;
  margin-bottom: 10px;
  letter-spacing: 0.1px;
  color: black;
}

.section-8 .inner-wrap .blog-item-2 .inner-content .inner-title {
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.64;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-8 .inner-wrap .blog-item-2 .inner-content .inner-desc {
  font-weight: 300;
  font-size: 14px;
  color: #000000;
  line-height: 1.4;
  letter-spacing: 0.15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* End Blog-item 2 */
@media (max-width: 991.98px) {
  .section-8 .inner-wrap {
    display: grid;
    grid-template-columns: 166fr 166fr;
  }

  .section-8 .inner-wrap .blog-item-2 {
    grid-row: 2 / span 1;
    grid-column: span 2;
  }
}

@media (max-width: 991.98px) {
  .section-8 .inner-wrap {
    display: grid;
    grid-template-columns: 166fr 166fr;
  }

  .section-8 .inner-wrap .blog-item-2 {
    grid-row: 2 / span 1;
    /*bat dau o dong 2 */
    grid-column: span 2;
  }
}

@media (max-width: 575.98px) {
  .section-8 {
    padding-bottom: 45px;
  }

  .section-8 .inner-wrap {
    gap: 10px;
  }

  .blog-item {
    border-radius: 10px;
  }

  .blog-item .inner-content {
    padding: 10px;
  }

  .blog-item .inner-content .inner-date {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .blog-item .inner-content .inner-title {
    font-size: 14px;
  }

  .section-8 .inner-wrap .blog-item-2 {
    border-radius: 10px;
  }

  .section-8 .inner-wrap .blog-item-2 .inner-content {
    padding: 10px;
  }

  .section-8 .inner-wrap .blog-item-2 .inner-content .inner-date {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .section-8 .inner-wrap .blog-item-2 .inner-content .inner-title {
    font-size: 18px;
  }
}

/* End Section-8 */

/* footer */
.footer {
  background-color: #ececec;
  border-radius: 40px 40px 0 0;
  padding: 60px 0 40px 0;
}

.footer .inner-top {
  background-color: var(--color-primary);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}

.footer .inner-top .inner-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #fdfdfd;
  width: 389px;
  text-transform: capitalize;
}

.footer .inner-top .inner-form {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 12px;
  flex: 1;
  display: flex;
  gap: 12px;
  position: relative;
}

.footer .inner-top .inner-form .just-validate-error-label {
  position: absolute;
  top: 104%;
  left: 12px;
  color: rgba(255, 0, 38, 0.977) !important;
}
.footer .inner-top .inner-form .just-validate-success-field {
  border-color: green;
}
.footer .inner-top .inner-form input {
  flex: 1;
  height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  border: 1px #99a2a5 solid;
  font-weight: 500;
  font-size: 14px;
}

.footer .inner-top .inner-form input::placeholder {
  color: #99a2a5;
}

.footer .inner-top .inner-form button {
  height: 48px;
  background-color: var(--color-primary);
  border-radius: 8px;
  padding: 0 23.5px;
  border: 0;
  color: #fdfdfd;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}

.footer .inner-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .inner-middle .inner-links ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer .inner-middle .inner-links ul a {
  font-weight: 500;
  font-size: 14px;
  color: #25282b;
}

.footer .inner-middle .inner-links ul a:hover {
  color: var(--color-primary);
}

.footer .inner-middle .inner-socials ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer .inner-middle .inner-socials ul a {
  font-size: 24px;
  color: #25282b;
}

.footer .inner-middle .inner-socials ul a:hover {
  color: var(--color-primary);
}

.footer .inner-bottom {
  padding-top: 40px;
  border-top: #ccd1d2 1px solid;
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.footer .inner-bottom .inner-copyright,
.footer .inner-bottom .inner-links {
  flex: 1;
}

.footer .inner-bottom .inner-copyright {
  font-weight: 500;
  font-size: 13px;
  color: #667479;
}

.footer .inner-bottom .inner-links ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.footer .inner-bottom .inner-links ul a {
  font-weight: 500;
  font-size: 13px;
  color: #667479;
}

.footer .inner-bottom .inner-links ul a:hover {
  color: var(--color-primary);
}

.footer .inner-bottom .inner-logo img {
  height: 50px;
  width: auto;
}

@media (max-width: 991.98px) {
  .footer .inner-top {
    flex-wrap: wrap;
  }

  .footer .inner-top .inner-title {
    width: 100%;
    font-size: 18px;
    text-align: center;
  }

  .footer .inner-middle {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .footer .inner-bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer .inner-bottom .inner-copyright {
    order: 2;
    flex: none;
  }

  .footer .inner-bottom .inner-logo {
    order: 0;
  }

  .footer .inner-bottom .inner-links {
    order: 1;
    flex: none;
    width: 100%;
  }

  .footer .inner-bottom .inner-links ul {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .footer .inner-middle .inner-links ul {
    flex-wrap: wrap;
    gap: 10px 25px;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .footer {
    padding: 40px 0;
    border-radius: 25px 25px 0 0;
  }

  .footer .inner-top {
    padding: 20px;
    gap: 20px;
    margin-bottom: 30px;
  }

  .footer .inner-top .inner-form {
    flex-wrap: wrap;
  }

  .footer .inner-top .inner-form button {
    font-size: 14px;
    width: 100%;
  }

  .footer .inner-middle .inner-socials ul {
    gap: 25px;
  }

  .footer .inner-bottom {
    margin-top: 30px;
    padding-top: 30px;
  }
}

/* end footer */

/* Box-context */
.box-contact {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background-color: var(--color-primary);
  box-shadow: 0px 2px 4px 0px #00000026;
  border-radius: 10px;
  padding: 12px 10px;
}

.box-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.box-contact ul a {
  color: white;
  font-size: 19px;
}

@media (max-width: 575.98px) {
  .box-contact {
    display: none;
  }
}

/* End Box-context */

/* Box-breakcumb */
.box-breakcumb {
  position: relative;
}

.box-breakcumb .inner-image {
  height: 253px;
}

.box-breakcumb .inner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-breakcumb .inner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(69, 2, 199, 0.6) 100%
  );
  padding-bottom: 20px;
}

.box-breakcumb .inner-content .inner-title {
  margin-top: 0;
  margin-bottom: 8px;
  color: white;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.375;
}

.box-breakcumb .inner-content .inner-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 5px 16px;
  flex-wrap: wrap;
}

.box-breakcumb .inner-content .inner-links ul li {
  display: inline-flex;
  gap: 16px;
  align-items: center;
}

.box-breakcumb .inner-content .inner-links ul li a {
  font-weight: 400;
  font-size: 16px;
  color: white;
  letter-spacing: 0.15;
  line-height: 1.5;
}

.box-breakcumb .inner-content .inner-links ul li i {
  color: white;
  font-size: 10px;
}

.box-breakcumb .inner-content .inner-links ul li:last-child i {
  display: none;
}

@media (max-width: 991.98px) {
  .box-breakcumb .inner-content {
    padding-bottom: 15px;
  }

  .box-breakcumb .inner-content .inner-title {
    font-size: 25px;
  }

  .box-breakcumb .inner-content .inner-links ul {
    gap: 5px 10px;
  }

  .box-breakcumb .inner-content .inner-links ul li {
    gap: 10px;
  }

  .box-breakcumb .inner-content .inner-links ul li a {
    font-size: 13px;
  }
}

@media (max-width: 991.98px) {
  .box-breakcumb .inner-content .inner-title {
    font-size: 20px;
  }

  .box-breakcumb .inner-content .inner-links ul li i {
    font-size: 8px;
  }

  .box-breakcumb .inner-content .inner-links ul li a {
    font-size: 11px;
  }
}

/* End Box-breakcumb */

/* Section-9 */
.section-9 {
  padding: 60px 0;
}

.section-9 .inner-wrap {
  display: grid;
  grid-template-columns: 279fr 882fr;
  gap: 23px;
}

.box-filter {
  background-color: #ffffff;
  box-shadow: 0px 0px 4px 0px #00000040;
  padding: 15px;
  border-radius: 10px;
}

.box-filter .inner-head {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-filter .inner-head .inner-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-primary);
}

.box-filter .inner-head i {
  color: var(--color-primary);
  font-size: 20px;
}

.box-filter .inner-body {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.box-filter .inner-body .inner-group .inner-label {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
  color: #898b8d;
  letter-spacing: 0.5px;
}

.box-filter .inner-body .inner-group select,
.box-filter .inner-body .inner-group input[type="date"] {
  width: 100%;
  height: 38px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 400;
  color: #898b8d;
  letter-spacing: 0.5px;
  border: 1px solid #898b8d;
  border-radius: 5px;
  outline: none;
}

.box-filter .inner-body .inner-group .inner-input-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.box-filter .inner-body .inner-group .inner-input-item {
  height: 38px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 400;
  color: #898b8d;
  letter-spacing: 0.5px;
  border: 1px solid #898b8d;
  border-radius: 5px;
  outline: none;
  display: flex;
  align-items: center;
}

.box-filter .inner-body .inner-group .inner-input-item .inner-input-label {
  flex: 1;
}

.box-filter .inner-body .inner-group .inner-input-item input {
  width: 45px;
  border: 0;
  color: #898b8d;
  font-size: 14px;
}

.box-filter .inner-body .inner-group .inner-button {
  width: 100%;
  height: 38px;
  border: 0;
  background-color: var(--color-primary);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500px;
  color: white;
  cursor: pointer;
}

.section-9 .inner-info {
  margin-bottom: 16px;
}

.section-9 .inner-info .inner-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 28px;
  color: var(--color-primary);
}

.section-9 .inner-info .inner-desc {
  font-weight: 400;
  font-size: 14px;
  color: #747578;
}

.section-9 .inner-info-2 {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.section-9 .inner-info-2 .inner-sort {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-9 .inner-info-2 .inner-sort .inner-label {
  font-weight: 600;
  font-size: 14px;
  color: #747578;
}

.section-9 .inner-info-2 .inner-sort .inner-item {
  background-color: transparent;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 400;
  color: #747578;
  cursor: pointer;
}

.section-9 .inner-info-2 .inner-sort .inner-item.active,
.section-9 .inner-info-2 .inner-sort .inner-item:hover {
  color: #f9313d;
}

.section-9 .inner-info-2 .inner-sort .inner-item i {
  font-size: 16px;
}

.section-9 .inner-info-2 .inner-total-item {
  font-weight: 400;
  font-size: 14px;
  color: #747578;
}

.section-9 .inner-product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Box-pagination */
.section-9 .box-pagination {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 0;
}

.section-9 .box-pagination button,
.section-9 .box-pagination a {
  border: 1px var(--color-primary) solid;
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: var(--color-primary);
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  border-right-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.section-9 .box-pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.section-9 .box-pagination span.dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  font-weight: 600;
}

.section-9 .box-pagination button.active,
.section-9 .box-pagination a:hover,
.section-9 .box-pagination button:hover:not(:disabled) {
  background-color: var(--color-primary);
  color: #f8f6eb;
}

.section-9 .box-pagination button:last-child,
.section-9 .box-pagination a:last-child {
  border-right-width: 1px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.section-9 .box-pagination button:first-child,
.section-9 .box-pagination a:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.section-9 .box-pagination button i,
.section-9 .box-pagination a i {
  font-size: 12px;
}

/* End Box-pagination */
.section-9 .inner-filter-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .section-9 .inner-left {
    display: none;
  }
  .section-9 .inner-left.active {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: block;
  }
  .section-9 .inner-left .box-filter {
    height: 100%;
    width: 280px;
    border-radius: 0;
    position: relative;
    z-index: 2;
    overflow-y: auto;
  }
  .section-9 .inner-left .inner-overlay {
    position: absolute;
    background-color: #33333348;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .section-9 .inner-wrap {
    grid-template-columns: 1fr;
  }

  .section-9 .inner-filter-mobile {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    gap: 6px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
  }

  .section-9 .inner-filter-mobile i {
    font-size: 16px;
  }

  .section-9 .inner-info-2 {
    flex-wrap: wrap;
  }

  .section-9 .inner-info-2 .inner-sort {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .section-9 .inner-product-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575.98px) {
  .section-9 {
    padding: 45px 0;
  }

  .section-9 .inner-info .inner-title {
    font-size: 24px;
  }

  .section-9 .inner-info-2 {
    gap: 10px;
  }

  .section-9 .inner-info-2 .inner-sort {
    flex-wrap: wrap;
  }

  .section-9 .inner-product-list {
    gap: 10px;
  }
}

/* End Section-9 */

/* Section-10 */
.section-10 {
  padding: 60px 0;
}

.section-10 .inner-wrap {
  display: flex;
  gap: 20px;
}
.section-10 .inner-wrap .inner-left {
  width: calc(60% - 10px);
}
.section-10 .inner-wrap .inner-right {
  width: calc(40% - 10px);
}

/* Box-image */
.box-image .inner-image-main {
  margin-bottom: 30px;
}

.box-image .inner-image-main .inner-image {
  aspect-ratio: 695/480;
  border-radius: 10px;
  overflow: hidden;
}

.box-image .inner-image-main .inner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-image .inner-image-thumb .inner-image {
  aspect-ratio: 166/129;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.box-image .inner-image-thumb .inner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* End Box-image */

/* Box-tour-detail */
.box-tour-detail {
  box-shadow: 0px 1.75px 3.51px 0px #0000001f;
  border-radius: 10px;
  padding: 24px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
}

.box-tour-detail .inner-title-main {
  font-weight: 600;
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.box-tour-detail .inner-product {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 15px;
}

.box-tour-detail .inner-product .inner-image {
  width: 132px;
  aspect-ratio: 132/98;
  border-radius: 10px;
  overflow: hidden;
}

.box-tour-detail .inner-product .inner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-tour-detail .inner-product .inner-info {
  flex: 1;
}

.box-tour-detail .inner-product .inner-info .inner-title {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.box-tour-detail .inner-product .inner-info .inner-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
}

.box-tour-detail .inner-product .inner-info .inner-rating .inner-stars {
  font-size: 15px;
  display: inline-flex;
  gap: 3px;
  color: #ffd600;
}

.box-tour-detail .inner-product .inner-info .inner-rating .inner-number {
  font-weight: 300;
  font-size: 12px;
  color: #1f1f1f;
}

.box-tour-detail .inner-meta {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.box-tour-detail .inner-meta .inner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5d5e60;
  font-weight: 400;
  font-size: 14px;
}

.box-tour-detail .inner-meta .inner-item i {
  font-size: 16px;
}

.box-tour-detail .inner-meta .inner-item .inner-hl {
  color: var(--color-primary);
}

.box-tour-detail .inner-group {
  margin-bottom: 15px;
}

.box-tour-detail .inner-group .inner-label {
  font-weight: 400;
  font-size: 14px;
  color: #5d5e60;
  margin-bottom: 5px;
}

.box-tour-detail .inner-group select {
  width: 100%;
  height: 38px;
  border: 1px solid #9ea0a3;
  border-radius: 5px;
  padding: 0 14px;
  font-weight: 400;
  font-size: 14px;
  color: #5d5e60;
}

.box-tour-detail .inner-group .inner-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.box-tour-detail .inner-group .inner-list .inner-item {
  display: flex;
  gap: 16px;
}

.box-tour-detail .inner-group .inner-list .inner-item .inner-item-label {
  width: 100px;
  font-size: 14px;
  font-weight: 400;
  color: #5d5e60;
}

.box-tour-detail .inner-group .inner-list .inner-item .inner-item-input input {
  width: 45px;
  border: 0;
  font-weight: 500;
  font-size: 14px;
  color: #898b8d;
}

.box-tour-detail .inner-group .inner-list .inner-item .inner-item-price {
  flex: 1;
  text-align: right;
  font-weight: 400;
  font-size: 16px;
  color: #898b8d;
}

.box-tour-detail
  .inner-group
  .inner-list
  .inner-item
  .inner-item-price
  .inner-hl {
  color: var(--color-primary);
}

.box-tour-detail .inner-total {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box-tour-detail .inner-total .inner-label {
  font-weight: 400;
  font-size: 16px;
  color: #5d5e60;
}

.box-tour-detail .inner-total .inner-price {
  color: #4502c7;
  font-weight: 600;
  font-size: 20px;
}

.box-tour-detail .inner-button-add-cart {
  width: 100%;
  height: 44px;
  border: 0;
  background-color: var(--color-primary);
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.box-tour-detail .inner-button-add-cart:hover:not(.disabled) {
  background-color: #3501a0;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(69, 2, 199, 0.3);
}

/* Disabled button khi tour hết chỗ */
.box-tour-detail .inner-button-add-cart.disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

.box-tour-detail .inner-button-add-cart.disabled:hover {
  background-color: #6c757d;
  transform: none;
  box-shadow: none;
}

/* Thông báo hết chỗ */
.box-tour-detail .inner-out-of-stock-message {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #856404;
  font-size: 14px;
  font-weight: 500;
}

.box-tour-detail .inner-out-of-stock-message i {
  color: #ffc107;
  font-size: 18px;
}

/* Box-tour-detail */

/* Box-tour-info */
.box-tour-info {
  margin-top: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 1.75px 3.51px 0px #0000001f;
  padding: 20px;
}

.box-tour-info .inner-title {
  font-weight: 600;
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.box-tour-info .inner-content {
  margin-bottom: 20px;
  height: 500px;
  overflow: hidden;
}
.box-tour-info.active .inner-content {
  margin-bottom: 20px;
  height: auto;
  overflow: hidden;
}

/* .box-tour-info .inner-content p {
  font-weight: 300;
  font-size: 14px;
  color: #080a12;
  margin-top: 0;
  margin-bottom: 10px;
} */

.box-tour-info .inner-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

.box-tour-info .inner-button {
  text-align: center;
  margin-top: 20px;
}

/* End Box-tour-info */

/* Box-tour-schedule */
.box-tour-schedule {
  margin-top: 30px;
}

.box-tour-schedule .inner-title-main {
  font-weight: 600;
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.box-tour-schedule .inner-list {
  display: grid;

  gap: 15px;
  position: relative;
}

/* .box-tour-schedule .inner-list .inner-line{
    background-color: var(--color-primary);
    width: 1px;
    height: 100% ;
    position: absolute;
    top: 15px ;
    left: 0;
} */
.box-tour-schedule .inner-list::before {
  background-color: var(--color-primary);
  width: 1px;
  height: 100%;
  position: absolute;
  top: 15px;
  left: 0;
  display: block;
  content: "";
}

.box-tour-schedule .inner-list .inner-item {
  margin-left: 15px;
  position: relative;
}

.box-tour-schedule .inner-list .inner-item::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  left: -19.2px;
  top: 11px;
}

.box-tour-schedule .inner-list .inner-item .inner-title {
  background-color: var(--color-primary);
  border-radius: 5px;
  padding: 8px;
  font-weight: 500;
  font-size: 14px;
  color: white;
  display: inline-block;
  margin-bottom: 10px;
}

.box-tour-schedule .inner-list .inner-item .inner-content {
  box-shadow: 0px 1.75px 3.51px 0px #0000001f;
  border-radius: 10px;
  padding: 20px;
}

/* .box-tour-schedule .inner-list .inner-item .inner-content p {
  font-weight: 300;
  font-size: 14px;
  color: #080a12;
  margin-top: 0;
  margin-bottom: 10px;
} */

.box-tour-schedule img {
  max-width: 100%;
  height: auto;
}
.box-tour-schedule .inner-list .inner-item table {
  max-width: 100%;
}
/* End Box-tour-schedule */

@media (max-width: 767.98px) {
  .section-10 .inner-wrap {
    gap: 30px;
    flex-wrap: wrap;
  }

  .section-10 .inner-wrap .inner-left {
    order: 1;
    width: 100%;
  }
  .section-10 .inner-wrap .inner-right {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .section-10 {
    padding: 45px 0;
  }

  .box-tour-detail {
    padding: 15px 15px;
  }

  .box-tour-detail .inner-title-main {
    font-size: 16px;
  }

  .box-tour-detail .inner-product .inner-image {
    width: 103px;
  }

  .box-tour-detail .inner-product .inner-info .inner-title {
    font-size: 14px;
  }

  .box-tour-detail .inner-product .inner-info .inner-rating .inner-stars {
    font-size: 12px;
  }

  .box-tour-detail .inner-product .inner-info .inner-rating .inner-number {
    font-size: 10px;
  }

  .box-tour-detail .inner-total {
    margin-bottom: 15px;
  }

  .box-image .inner-image-main {
    margin-bottom: 15px;
  }

  /* .box-image .inner-image-thumb {
    gap: 5px;
  } */

  .box-tour-info {
    padding: 15px;
  }

  .box-tour-schedule .inner-list .inner-item .inner-content {
    padding: 15px;
  }
}

/* End Section-10 */

/* Section-11 */
.section-11 {
  padding: 60px 0 30px 0;
}

.section-11 .inner-wrap {
  max-width: 902px;
  background-color: white;
  box-shadow: 0px 3.05px 3.81px 0px #00000026;
  border-radius: 18px;
  padding: 30px 20px;
  margin: 0 auto;
}

.section-11 .inner-wrap .inner-head {
  display: flex;
  margin-bottom: 25px;
  align-items: center;
  justify-content: space-between;
}

.section-11 .inner-wrap .inner-head .inner-title {
  font-weight: 600;
  font-size: 20px;
  color: var(--color-primary);
}

.section-11 .inner-wrap .inner-head .inner-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 15px;
  color: #52575c;
}

.section-11 .inner-wrap .inner-head .inner-back i {
  font-size: 12px;
}

.section-11 .inner-wrap .inner-head .inner-back:hover {
  color: var(--color-primary);
}

.section-11 .inner-wrap .inner-tour-item {
  padding-bottom: 15px;
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: 21fr 511fr 309fr;
  gap: 10px;
}

.section-11 .inner-wrap .inner-tour-item .inner-action {
  display: flex;
  flex-direction: column;
  gap: 43px;
}

.section-11 .inner-wrap .inner-tour-item .inner-action .inner-delete {
  width: 21px;
  height: 21px;
  font-size: 16px;
  color: #828282;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.section-11 .inner-wrap .inner-tour-item .inner-action .inner-delete:hover {
  color: red;
}

.section-11 .inner-wrap .inner-tour-item .inner-action .inner-check {
  width: 21px;
  height: 21px;
  accent-color: var(--color-primary);
  margin: 0;
}

.section-11 .inner-wrap .inner-tour-item .inner-product {
  display: grid;
  grid-template-columns: 178fr 318fr;
  gap: 15px;
}

.section-11 .inner-wrap .inner-tour-item .inner-product .inner-image {
  aspect-ratio: 178/149;
  overflow: hidden;
  border-radius: 8px;
}

.section-11 .inner-wrap .inner-tour-item .inner-product .inner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-11
  .inner-wrap
  .inner-tour-item
  .inner-product
  .inner-content
  .inner-title {
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-11
  .inner-wrap
  .inner-tour-item
  .inner-product
  .inner-content
  .inner-title
  a {
  color: #25282b;
  font-weight: 500;
  font-size: 16px;
}

.section-11
  .inner-wrap
  .inner-tour-item
  .inner-product
  .inner-content
  .inner-title
  a:hover {
  color: var(--color-primary);
}

.section-11
  .inner-wrap
  .inner-tour-item
  .inner-product
  .inner-content
  .inner-meta {
  display: grid;
  gap: 5px;
  font-weight: 400;
  font-size: 14px;
  color: #8c8c8c;
}

.section-11
  .inner-wrap
  .inner-tour-item
  .inner-product
  .inner-content
  .inner-meta
  b {
  font-weight: 600px;
}

.section-11 .inner-wrap .inner-tour-item .inner-quantity .inner-label {
  margin-bottom: 8px;
  text-align: right;
  font-weight: 400;
  font-size: 14px;
  color: #5d5e60;
}

.section-11 .inner-wrap .inner-tour-item .inner-quantity .inner-list {
  display: grid;
  gap: 26px;
}

.section-11
  .inner-wrap
  .inner-tour-item
  .inner-quantity
  .inner-list
  .inner-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-11
  .inner-wrap
  .inner-tour-item
  .inner-quantity
  .inner-list
  .inner-item
  .inner-item-label {
  width: 100px;
  font-weight: 400;
  font-size: 14px;
  color: #5d5e60;
}

.section-11
  .inner-wrap
  .inner-tour-item
  .inner-quantity
  .inner-list
  .inner-item
  .inner-item-input
  input {
  width: 45px;
  border: 0;
  font-weight: 500;
  font-size: 14px;
  color: #898b8d;
}

.section-11 .inner-wrap .inner-tour-item .inner-quantity .inner-item-price {
  flex: 1;
  text-align: right;
  font-weight: 400;
  font-size: 16px;
  color: #898b8d;
}

.section-11
  .inner-wrap
  .inner-tour-item
  .inner-quantity
  .inner-item-price
  .inner-hl {
  color: var(--color-primary);
}

.section-11 .inner-coupon {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.section-11 .inner-coupon form {
  width: 429px;
  display: flex;
  position: relative;
}

.section-11 .inner-coupon form .just-validate-error-label {
  position: absolute;
  top: 103%;
  left: 0;
  font-size: 14px;
}

.section-11 .inner-coupon form input {
  flex: 1;
  border: 1px solid #9ea0a3;
  border-radius: 5px 0 0px 5px;
  border-right: 0px;
  height: 40px;
  padding: 0 12px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.section-11 .inner-coupon form button {
  background-color: var(--color-primary);
  height: 40px;
  border: 0;
  border-radius: 0 5px 5px 0;
  color: #ffffff;
  padding: 0 24px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
}

.section-11 .inner-list-price {
  display: grid;
  gap: 16px;
}

.section-11 .inner-list-price .inner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-11 .inner-list-price .inner-item .inner-label {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.section-11 .inner-list-price .inner-item .inner-price {
  font-weight: 400;
  font-size: 17px;
  color: #333333;
}

.section-11 .inner-list-price .inner-item .inner-price-hl {
  font-weight: 700;
  font-size: 22px;
  color: var(--color-primary);
}
.section-11 .inner-no-data{
  color:red;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 991.98px) {
  .section-11 .inner-wrap .inner-tour-item {
    grid-template-columns: 1fr;
  }

  .section-11 .inner-wrap .inner-tour-item .inner-action {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

@media (max-width: 576.98px) {
  .section-11 {
    padding: 45px 30px;
  }

  .section-11 .inner-wrap {
    padding: 20px 15px;
  }

  .section-11 .inner-wrap .inner-tour-item {
    padding-bottom: 10px;
  }

  .section-11 .inner-wrap .inner-head .inner-title {
    font-size: 16px;
  }

  .section-11 .inner-wrap .inner-head .inner-back {
    font-size: 12px;
  }

  .section-11 .inner-wrap .inner-head .inner-back i {
    font-size: 10px;
  }

  .section-11 .inner-wrap .inner-tour-item .inner-product {
    gap: 10px;
    grid-template-columns: 118fr 185fr;
  }

  .section-11
    .inner-wrap
    .inner-tour-item
    .inner-product
    .inner-content
    .inner-title
    a {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .section-11
    .inner-wrap
    .inner-tour-item
    .inner-product
    .inner-content
    .inner-meta {
    font-size: 14px;
    gap: 3px;
  }

  .section-11 .inner-wrap .inner-tour-item .inner-quantity .inner-label {
    text-align: left;
  }

  .section-11 .inner-coupon form {
    width: 100%;
  }
}

/* End Section-11 */

/* Auth Pages (Login & Register) */
.auth-container {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.auth-wrapper {
  max-width: 1000px;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.auth-left {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
}

.auth-logo {
  margin-bottom: 30px;
}

.auth-logo img {
  height: 40px;
  width: auto;
}

.auth-content {
  flex: 1;
}

.auth-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form .form-label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.auth-form .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-form .input-wrapper i {
  position: absolute;
  left: 15px;
  color: #999;
  font-size: 16px;
  z-index: 1;
}

.auth-form .form-control {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s;
}

.auth-form .form-control:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(69, 2, 199, 0.1);
}

.auth-form .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.auth-form .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-form .form-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.auth-form .form-check-label {
  font-size: 14px;
  color: #666;
  cursor: pointer;
}

.auth-form .form-check-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 25px;
}

.auth-form .form-check-group .form-checkbox {
  margin-top: 3px;
}

.auth-form .form-check-group .form-check-label {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.auth-form .form-check-group a {
  color: var(--color-primary);
  text-decoration: underline;
}

.forgot-link {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.3s;
}

.forgot-link:hover {
  color: #3a02a0;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #3a02a0 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(69, 2, 199, 0.3);
}

.auth-footer {
  margin-top: 25px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

.auth-link {
  color: var(--color-primary);
  font-weight: 600;
  margin-left: 5px;
  transition: color 0.3s;
}

.auth-link:hover {
  color: #3a02a0;
}

.auth-right {
  background: linear-gradient(135deg, var(--color-primary) 0%, #3a02a0 100%);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.auth-hero img {
  width: 100%;
  max-width: 300px;
  margin-bottom: 30px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.auth-hero h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.auth-hero p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

@media (max-width: 991.98px) {
  .auth-wrapper {
    grid-template-columns: 1fr;
  }
  
  .auth-right {
    display: none;
  }
  
  .auth-left {
    padding: 40px 30px;
  }
}

@media (max-width: 575.98px) {
  .auth-container {
    padding: 20px 15px;
  }
  
  .auth-left {
    padding: 30px 20px;
  }
  
  .auth-title {
    font-size: 26px;
  }
  
  .auth-form .form-control {
    padding: 10px 15px 10px 40px;
  }
}

/* End Auth Pages */

/* Profile & Order History */
.profile-sidebar {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 20px;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-primary);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #3a02a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-placeholder i {
  font-size: 50px;
  color: #ffffff;
}

.profile-name {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.profile-email {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.profile-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.profile-menu .menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 8px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.profile-menu .menu-item i {
  width: 20px;
  text-align: center;
  font-size: 16px;
}

.profile-menu .menu-item:hover {
  background-color: #f7f7f7;
  color: var(--color-primary);
}

.profile-menu .menu-item.active {
  background-color: var(--color-primary);
  color: #ffffff;
}

.profile-menu .menu-item.logout {
  color: #dc3545;
  border-top: 1px solid #e5e5e5;
  margin-top: 10px;
  padding-top: 17px;
}

.profile-menu .menu-item.logout:hover {
  background-color: #fff5f5;
}

.profile-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.content-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.btn-edit, .btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-edit:hover, .btn-back:hover {
  background-color: #3a02a0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(69, 2, 199, 0.3);
}

.info-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #666;
  font-size: 14px;
}

.info-label i {
  color: var(--color-primary);
  font-size: 18px;
}

.info-value {
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge-success {
  background-color: #d4edda;
  color: #155724;
}

.badge-danger {
  background-color: #f8d7da;
  color: #721c24;
}

.badge-warning {
  background-color: #fff3cd;
  color: #856404;
}

/* Profile Form */
.profile-form {
  max-width: 600px;
}

.profile-form .form-group {
  margin-bottom: 25px;
}

.profile-form .form-label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.profile-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
}

.profile-form .form-control:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(69, 2, 199, 0.1);
}

.profile-form .form-control:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

.profile-form .form-text {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #999;
}

.profile-form textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-submit {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #3a02a0 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(69, 2, 199, 0.3);
}

.btn-cancel {
  padding: 12px 30px;
  background: #f0f0f0;
  color: #666;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-cancel:hover {
  background: #e0e0e0;
  color: #333;
}

/* Order History */
.order-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-item {
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.order-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(69, 2, 199, 0.1);
}

.order-header {
  background-color: #f7f7f7;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-code, .order-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.order-code i, .order-date i {
  color: var(--color-primary);
}

.order-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
}

.order-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-row {
  display: flex;
  gap: 10px;
  font-size: 14px;
}

.info-row .label {
  color: #666;
  min-width: 120px;
}

.info-row .value {
  color: #333;
  font-weight: 500;
}

.info-row .coupon {
  color: var(--color-primary);
  font-weight: 600;
}

.order-status {
  display: flex;
  align-items: flex-start;
}

.order-footer {
  padding: 15px 20px;
  background-color: #f7f7f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-total {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.order-total strong {
  color: var(--color-primary);
  font-size: 20px;
}

.btn-detail {
  padding: 8px 20px;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-detail:hover {
  background-color: #3a02a0;
  transform: translateY(-2px);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state i {
  font-size: 80px;
  color: #ddd;
  margin-bottom: 20px;
}

.empty-state p {
  font-size: 18px;
  color: #999;
  margin-bottom: 25px;
}

.btn-shopping {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #3a02a0 100%);
  color: #ffffff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-shopping:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(69, 2, 199, 0.3);
}

/* Auth Wrapper Single (for forgot password, OTP, reset) */
.auth-wrapper-single {
  max-width: 450px;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 50px 40px;
}

.auth-wrapper-single .auth-logo {
  text-align: center;
  margin-bottom: 30px;
}

.auth-wrapper-single .auth-content {
  text-align: center;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background-color: #fff3cd;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #856404;
}

.form-note i {
  font-size: 16px;
}

@media (max-width: 767.98px) {
  .profile-sidebar {
    margin-bottom: 20px;
    position: static;
  }
  
  .info-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .order-body {
    grid-template-columns: 1fr;
  }
  
  .order-footer {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  
  .btn-detail {
    width: 100%;
    text-align: center;
  }
}

/* End Profile & Order History */

/* Section-12 */
.section-12 {
  padding-bottom: 60px;
}

.section-12 .inner-wrap {
  max-width: 902px;
  background-color: white;
  box-shadow: 0px 3.05px 3.81px 0px #00000026;
  border-radius: 18px;
  padding: 30px 20px;
  margin: 0 auto;
}

.section-12 .inner-title-main {
  font-weight: 600;
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 25px;
}

.section-12 .inner-info {
  margin-bottom: 30px;
}

.section-12 .inner-info .inner-list-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
}

.section-12 .inner-info .inner-list-group input,
.section-12 .inner-info .inner-list-group textarea {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 400px;
  color: #25282b;
}

.section-12 .inner-info .inner-list-group input {
  height: 50px;
}

.section-12 .inner-info .inner-list-group textarea {
  height: 100px;
}

.section-12 .inner-info .inner-list-group .two-col {
  grid-column: span 2;
}

.section-12 .inner-method {
  margin-bottom: 30px;
}

.section-12 .inner-method .inner-list {
  display: grid;
  gap: 10px;
}

.section-12 .inner-method .inner-list .inner-item {
  display: flex;
  gap: 10px;
}

.section-12 .inner-method .inner-list .inner-item input {
  width: 21px;
  height: 21px;
  accent-color: var(--color-primary);
  margin: 0;
}

.section-12 .inner-method .inner-list .inner-item label {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

.section-12 .inner-method .inner-info-bank {
  margin-top: 20px;
  background-color: #f3f3f3;
  border-radius: 5px;
  padding: 15px;
  display: none;
}
.section-12 .inner-method .inner-info-bank.active {
  display: block;
}

.section-12 .inner-method .inner-info-bank .inner-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.section-12 .inner-method .inner-info-bank .inner-desc {
  display: grid;
  gap: 6px;
  font-weight: 400;
  font-size: 14px;
  color: #4f4f4f;
}

.section-12 .inner-button {
  text-align: center;
}

.section-12 .inner-button button {
  background-color: var(--color-primary);
  width: 480px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  font-weight: 600;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

@media (max-width: 575.98px) {
  .section-12 {
    padding-bottom: 45px;
  }
  .section-12 .inner-wrap {
    padding: 20px 15px;
  }
  .section-12 .inner-title-main {
    font-size: 16px;
  }
  .section-12 .inner-info .inner-list-group {
    grid-template-columns: 1fr;
  }
  .section-12 .inner-info .inner-list-group .two-col {
    grid-column: span 1;
  }
  .section-12 .inner-button button {
    width: 100%;
  }
}

/* End Section-12 */

/* ---------------------------CUSTOM------------------------------------ */
body .viewer-button {
  background-color: var(--color-primary);
}
body .viewer-button:hover {
  background-color: red;
}

body .viewer-title {
  display: none;
}
