@charset "UTF-8";
.wrap-heading {
  margin-bottom: 48px; }
  .wrap-heading h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 8px; }
  .wrap-heading p {
    font-size: 16px;
    margin-bottom: 0; }

.about-line {
  padding: 24px 0; }

.section-about-form .about-form-flex {
  border-radius: 24px;
  border: 1px solid var(--shop-color-border);
  padding: 64px 80px;
  display: flex;
  gap: 84px; }
  .section-about-form .about-form-flex #btn-send-request {
    width: 100%;
    justify-content: center; }
    .section-about-form .about-form-flex #btn-send-request:disabled {
      opacity: 0.6;
      cursor: not-allowed; }
  .section-about-form .about-form-flex .about-form-left {
    flex: 1; }
    .section-about-form .about-form-flex .about-form-left .input-group {
      margin-bottom: 16px;
      position: relative; }
      .section-about-form .about-form-flex .about-form-left .input-group input, .section-about-form .about-form-flex .about-form-left .input-group textarea, .section-about-form .about-form-flex .about-form-left .input-group select {
        width: 100%;
        height: 48px;
        border-radius: 24px;
        border: 1px solid var(--shop-color-border);
        background: rgba(255, 255, 255, 0.1);
        padding: 16px 24px;
        outline: none;
        color: #fff;
        transition: all 0.3s ease; }
        .section-about-form .about-form-flex .about-form-left .input-group input::placeholder, .section-about-form .about-form-flex .about-form-left .input-group textarea::placeholder, .section-about-form .about-form-flex .about-form-left .input-group select::placeholder {
          color: #fff; }
        .section-about-form .about-form-flex .about-form-left .input-group input:focus, .section-about-form .about-form-flex .about-form-left .input-group textarea:focus, .section-about-form .about-form-flex .about-form-left .input-group select:focus {
          border-color: #FAF398;
          box-shadow: 0 0 0 2px rgba(250, 243, 152, 0.2); }
        .section-about-form .about-form-flex .about-form-left .input-group input.is-valid, .section-about-form .about-form-flex .about-form-left .input-group textarea.is-valid, .section-about-form .about-form-flex .about-form-left .input-group select.is-valid {
          border-color: #28a745;
          background: rgba(40, 167, 69, 0.1); }
          .section-about-form .about-form-flex .about-form-left .input-group input.is-valid:focus, .section-about-form .about-form-flex .about-form-left .input-group textarea.is-valid:focus, .section-about-form .about-form-flex .about-form-left .input-group select.is-valid:focus {
            border-color: #28a745;
            box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2); }
        .section-about-form .about-form-flex .about-form-left .input-group input.is-invalid, .section-about-form .about-form-flex .about-form-left .input-group textarea.is-invalid, .section-about-form .about-form-flex .about-form-left .input-group select.is-invalid {
          border-color: #dc3545;
          background: rgba(220, 53, 69, 0.1);
          animation: shake 0.5s ease-in-out; }
          .section-about-form .about-form-flex .about-form-left .input-group input.is-invalid:focus, .section-about-form .about-form-flex .about-form-left .input-group textarea.is-invalid:focus, .section-about-form .about-form-flex .about-form-left .input-group select.is-invalid:focus {
            border-color: #dc3545;
            box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2); }
      .section-about-form .about-form-flex .about-form-left .input-group select {
        color: #fff;
        height: auto;
        cursor: pointer; }
        .section-about-form .about-form-flex .about-form-left .input-group select option {
          color: #000;
          background: #fff; }
        .section-about-form .about-form-flex .about-form-left .input-group select:focus {
          border-color: #FAF398;
          box-shadow: 0 0 0 2px rgba(250, 243, 152, 0.2); }
      .section-about-form .about-form-flex .about-form-left .input-group textarea {
        height: 80px;
        resize: vertical;
        min-height: 80px; }
      .section-about-form .about-form-flex .about-form-left .input-group .field-error {
        color: #dc3545;
        font-size: 12px;
        margin-top: 4px;
        padding-left: 4px;
        display: flex;
        align-items: center;
        gap: 4px; }
        .section-about-form .about-form-flex .about-form-left .input-group .field-error::before {
          content: "⚠";
          font-size: 14px; }
  .section-about-form .about-form-flex .about-form-right {
    flex: 1;
    position: relative; }
    .section-about-form .about-form-flex .about-form-right .about-form-img {
      height: 100%;
      border-radius: 16px;
      overflow: hidden; }
      .section-about-form .about-form-flex .about-form-right .about-form-img img {
        border-radius: 16px;
        height: 100%;
        object-fit: cover; }
    .section-about-form .about-form-flex .about-form-right .about-form-content {
      position: absolute;
      bottom: 32px;
      left: 24px;
      right: 24px;
      padding: 4px 8px;
      border-radius: 44px;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(5px); }
      .section-about-form .about-form-flex .about-form-right .about-form-content .content-flex {
        position: relative; }
        .section-about-form .about-form-flex .about-form-right .about-form-content .content-flex::before {
          content: "";
          position: absolute;
          top: 0;
          left: 50%;
          transform: translateX(-50%);
          width: 1px;
          height: 100%;
          background-color: var(--shop-color-border); }
      .section-about-form .about-form-flex .about-form-right .about-form-content .about-form-content-item {
        display: flex;
        gap: 8px;
        align-items: center; }
        .section-about-form .about-form-flex .about-form-right .about-form-content .about-form-content-item .icon {
          width: 48px;
          height: 48px;
          line-height: 48px;
          background-color: var(--header-text-color);
          border-radius: 50%;
          text-align: center; }
        .section-about-form .about-form-flex .about-form-right .about-form-content .about-form-content-item .content h3 {
          font-size: 16px;
          font-weight: 500;
          line-height: 24px;
          background: transparent;
          -webkit-text-fill-color: unset;
          color: #FAF398; }

.layoutPage-about-us .section-about-introduce .aboutus-introduce-img {
  border-radius: 32px;
  border: 1px solid var(--shop-color-border);
  overflow: hidden; }

.layoutPage-about-us .section-about-introduce .aboutus-introduce-content .aboutus-introduce-title {
  font-family: var(--title-large-font);
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  margin-bottom: 0;
  padding-top: 15px; }

.layoutPage-about-us .section-about-introduce .aboutus-introduce-content .aboutus-introduce-subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 32px; }

.layoutPage-about-us .section-about-slogan img {
  object-fit: contain; }

.layoutPage-about-us .section-about-slogan .about-slogan-content {
  border-radius: 16px;
  border: 1px solid var(--shop-color-border);
  background: rgba(250, 243, 152, 0.15);
  padding: 48px 85px; }
  .layoutPage-about-us .section-about-slogan .about-slogan-content .slogan-title {
    font-size: 24px;
    font-weight: 500;
    margin: 24px 0 16px;
    background: transparent;
    -webkit-text-fill-color: unset; }
  .layoutPage-about-us .section-about-slogan .about-slogan-content p {
    font-size: 16px; }

.layoutPage-about-us .section-about-value .wrap-heading {
  margin-bottom: 32px; }
  .layoutPage-about-us .section-about-value .wrap-heading h2 {
    margin-bottom: 32px; }

.layoutPage-about-us .section-about-value .about-value-number {
  display: flex;
  gap: 24px;
  margin-bottom: 32px; }
  .layoutPage-about-us .section-about-value .about-value-number .about-value-number-item {
    flex: 1;
    border-radius: 8px;
    background: rgba(250, 243, 152, 0.15);
    padding: 16px; }
    .layoutPage-about-us .section-about-value .about-value-number .about-value-number-item .value-number-title h3 {
      font-size: 40px;
      font-weight: 500;
      line-height: 48px;
      margin-bottom: 4px; }
      .layoutPage-about-us .section-about-value .about-value-number .about-value-number-item .value-number-title h3 span {
        font-size: 16px;
        font-weight: 500;
        font-family: var(--title-font);
        padding-left: 8px;
        display: inline-block;
        line-height: normal;
        padding-bottom: 8px; }
    .layoutPage-about-us .section-about-value .about-value-number .about-value-number-item .value-number-title h4 {
      font-size: 14px;
      font-weight: 500;
      line-height: normal;
      margin-bottom: 0;
      background: transparent;
      -webkit-text-fill-color: unset; }

.layoutPage-about-us .section-about-value .about-value-content p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px; }
  .layoutPage-about-us .section-about-value .about-value-content p span {
    flex: 1; }
  .layoutPage-about-us .section-about-value .about-value-content p:not(:last-child) {
    margin-bottom: 16px; }

.layoutPage-about-us .section-about-value .about-value-img img {
  border-radius: 32px;
  border: 1px solid var(--shop-color-border);
  overflow: hidden; }

.layoutPage-about-us .section-about-marquee {
  padding: 48px 0;
  border-top: 1px solid #B88A44;
  border-bottom: 1px solid #B88A44;
  position: relative; }
  .layoutPage-about-us .section-about-marquee::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(154, 92, 35, 0.2) 0%, rgba(154, 92, 35, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.75) 100%), radial-gradient(223.72% 53.17% at 43.72% 66.21%, transparent 0%, #000 100%), linear-gradient(0deg, rgba(233, 195, 92, 0.4) 0%, rgba(233, 195, 92, 0.4) 100%);
    backdrop-filter: blur(10px);
    opacity: 0.6; }
  .layoutPage-about-us .section-about-marquee .aboutus-marquee-item span {
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    margin: 0; }
    .layoutPage-about-us .section-about-marquee .aboutus-marquee-item span::before {
      content: "";
      width: 12px;
      height: 12px;
      background: linear-gradient(270deg, #B88A44 0%, #FAF398 24.99%, #E0AA3E 64.91%, #F9F295 100%);
      border-radius: 50%;
      display: inline-block; }

.layoutPage-about-us .section-about-uses .about-uses-slide {
  margin-bottom: 48px; }
  .layoutPage-about-us .section-about-uses .about-uses-slide .slick-slide > div, .layoutPage-about-us .section-about-uses .about-uses-slide .item {
    height: 100%; }

.layoutPage-about-us .section-about-uses .about-uses-item {
  border-radius: 16px;
  background: rgba(250, 243, 152, 0.15);
  padding: 24px;
  height: 100%; }
  .layoutPage-about-us .section-about-uses .about-uses-item .about-uses-item-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    aspect-ratio: 1; }
  .layoutPage-about-us .section-about-uses .about-uses-item .about-uses-title {
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: block; }

.layoutPage-about-us .section-about-uses .about-uses-bottom-img {
  display: flex;
  gap: 24px; }
  .layoutPage-about-us .section-about-uses .about-uses-bottom-img .bottom-img {
    flex: 1; }
    .layoutPage-about-us .section-about-uses .about-uses-bottom-img .bottom-img img {
      border-radius: 16px;
      border: 1px solid var(--shop-color-border);
      overflow: hidden; }

.layoutPage-about-us .section-about-review .about-review-item {
  border-radius: 16px;
  background: rgba(250, 243, 152, 0.15);
  padding: 32px 24px; }
  .layoutPage-about-us .section-about-review .about-review-item .review-left img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    aspect-ratio: 1;
    border-radius: 80px;
    border: 1px solid var(--shop-color-border); }
  .layoutPage-about-us .section-about-review .about-review-item .review-right {
    padding-left: 12px;
    flex: 1; }
    .layoutPage-about-us .section-about-review .about-review-item .review-right .review-name {
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      margin-bottom: 4px; }
  .layoutPage-about-us .section-about-review .about-review-item .about-review-start, .layoutPage-about-us .section-about-review .about-review-item .review-content {
    margin-bottom: 24px; }
  .layoutPage-about-us .section-about-review .about-review-item .review-content {
    font-size: 16px; }

/* Modal thông báo thành công */
.form-success-modal {
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden; }
  .form-success-modal .modal-body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative; }
    .form-success-modal .modal-body::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #28a745, #20c997, #17a2b8); }
  .form-success-modal .modal-title {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.5rem; }
  .form-success-modal .text-muted {
    color: #6c757d !important;
    font-size: 0.95rem;
    line-height: 1.5; }

.success-animation .success-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #28a745;
  stroke-miterlimit: 10;
  margin: 0 auto;
  box-shadow: inset 0px 0px 0px #28a745;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both; }
  .success-animation .success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #28a745;
    stroke-miterlimit: 10;
    margin: 0 auto;
    position: relative; }
    .success-animation .success-checkmark .check-icon .icon-line {
      height: 5px;
      background-color: #28a745;
      display: block;
      border-radius: 2px;
      position: absolute;
      z-index: 10;
      animation: icon-line-tip 0.75s; }
      .success-animation .success-checkmark .check-icon .icon-line.line-tip {
        top: 46px;
        left: 14px;
        width: 25px;
        transform: rotate(45deg);
        background-color: #fff;
        z-index: 99; }
      .success-animation .success-checkmark .check-icon .icon-line.line-long {
        top: 38px;
        right: 8px;
        width: 47px;
        transform: rotate(-45deg);
        background-color: #fff;
        z-index: 99; }
    .success-animation .success-checkmark .check-icon .icon-circle {
      top: -4px;
      left: -4px;
      z-index: 10;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 4px solid #28a745;
      background-color: #28a745;
      position: absolute;
      animation: icon-circle 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
    .success-animation .success-checkmark .check-icon .icon-fix {
      top: 8px;
      width: 5px;
      left: 26px;
      z-index: 1;
      height: 85px;
      position: absolute;
      transform: rotate(-45deg);
      background-color: #f8f9fa;
      opacity: 0; }

/* Page stores */
.layout-pageStores .wrap-heading {
  margin-bottom: 24px; }

.layout-pageStores .wrapbox-info {
  border-radius: 16px;
  background: rgba(250, 243, 152, 0.15);
  padding: 24px; }

.layout-pageStores .filter-select {
  margin-bottom: 12px; }

.layout-pageStores .select-item:not(:last-child) {
  margin-bottom: 16px; }

.layout-pageStores .select-item .field-select {
  position: relative; }
  .layout-pageStores .select-item .field-select::after {
    content: '';
    position: absolute;
    top: calc(50% - 5px);
    right: 24px;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg); }

.layout-pageStores .select-item select {
  border-radius: 24px;
  border: 1px solid var(--shop-color-border);
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  width: 100%;
  outline: none; }
  .layout-pageStores .select-item select option {
    color: #000; }
  .layout-pageStores .select-item select::placeholder {
    color: #fff; }

.layout-pageStores .boxscroll {
  overflow-y: scroll;
  max-height: 330px;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  margin-right: -20px;
  padding-right: 20px;
  padding-top: 12px; }
  @media (min-width: 992px) {
    .layout-pageStores .boxscroll {
      min-height: 330px; } }
  .layout-pageStores .boxscroll::-webkit-scrollbar {
    width: 4px;
    height: 3px; }
  .layout-pageStores .boxscroll::-webkit-scrollbar-track {
    -webkit-border-radius: 2px;
    border-radius: 2px; }
  .layout-pageStores .boxscroll::-webkit-scrollbar-thumb {
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: var(--shop-color-main);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }
  .layout-pageStores .boxscroll::-webkit-scrollbar-thumb:window-inactive {
    background: var(--shop-color-main); }

.layout-pageStores #store-info .store-item {
  border-radius: 16px;
  border: 1px solid var(--shop-color-border);
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  font-size: 16px; }
  .layout-pageStores #store-info .store-item:not(:last-child) {
    margin-bottom: 16px; }
  .layout-pageStores #store-info .store-item .store--name {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #FAF398;
    background: transparent;
    -webkit-text-fill-color: unset; }
  .layout-pageStores #store-info .store-item svg {
    margin-right: 8px; }
  .layout-pageStores #store-info .store-item .store--address, .layout-pageStores #store-info .store-item .store--time, .layout-pageStores #store-info .store-item .store--hotline {
    margin-bottom: 8px;
    display: flex;
    align-items: center; }
  .layout-pageStores #store-info .store-item .store--link {
    color: #FAF398;
    text-decoration: underline; }

.layout-pageStores #boxMap iframe {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px; }

.layout-pageStores .section-store-library .store-library-item {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--shop-color-border);
  overflow: hidden; }
  .layout-pageStores .section-store-library .store-library-item img {
    border-radius: 16px; }
  .layout-pageStores .section-store-library .store-library-item .library-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(43, 43, 43, 0.5) 0%, rgba(43, 43, 43, 0.5) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center; }
    .layout-pageStores .section-store-library .store-library-item .library-overlay .library-icon {
      border-radius: 20px;
      border: 1px solid #FAF398;
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      border-radius: 50%; }
  .layout-pageStores .section-store-library .store-library-item:hover .library-overlay {
    opacity: 1;
    visibility: visible; }

/* Page Contact */
.layout-pageContact .contact-infor-item {
  border-radius: 16px;
  background: rgba(250, 243, 152, 0.15);
  padding: 24px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  .layout-pageContact .contact-infor-item .infor-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px; }

/* LAYOUT PAGE LOOKBOOKS */
.lookbook-grid {
  margin-bottom: 48px; }
  .lookbook-grid .lookbook-item-wrapper {
    margin-bottom: 24px; }
  .lookbook-grid .lookbook-item {
    position: relative;
    border-radius: 16px;
    background: rgba(250, 243, 152, 0.05);
    border: none;
    overflow: hidden;
    transition: all 0.3s ease; }
    .lookbook-grid .lookbook-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      border-color: var(--shop-color-main); }
  .lookbook-grid .lookbook-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 16px; }
    .lookbook-grid .lookbook-image img {
      object-fit: cover;
      transition: transform 0.3s ease; }
    .lookbook-grid .lookbook-image:hover img {
      transform: scale(1.05); }
  .lookbook-grid .lookbook-title {
    padding: 16px;
    text-align: center;
    margin: 0;
    background: transparent;
    font-size: 20px;
    font-weight: 500;
    -webkit-text-fill-color: unset; }

.lookbook-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5; }

.lookbook-dot {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #fff;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  z-index: 10; }
  .lookbook-dot:hover {
    transform: translate(-50%, -50%) scale(1.2);
    background: #FAF398;
    box-shadow: 0 4px 12px rgba(250, 243, 152, 0.5); }
  .lookbook-dot .dot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(250, 243, 152, 0.6);
    animation: pulse-lookbook 2s infinite; }
  .lookbook-dot .dot-number {
    position: relative;
    font-size: 0;
    font-weight: 700;
    color: #333;
    z-index: 1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    display: block; }

@keyframes pulse-lookbook {
  0% {
    transform: scale(1);
    opacity: 1; }
  50% {
    transform: scale(1.5);
    opacity: 0.5; }
  100% {
    transform: scale(2);
    opacity: 0; } }

.product-popup {
  position: absolute;
  z-index: 999;
  width: 280px;
  display: none;
  padding: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px); }
  .product-popup .product-popup-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    left: 50%;
    transform: translateX(-50%); }
    .product-popup .product-popup-arrow.arrow-bottom {
      bottom: -10px;
      border-width: 10px 10px 0 10px;
      border-color: rgba(255, 255, 255, 0.8) transparent transparent transparent; }
    .product-popup .product-popup-arrow.arrow-top {
      top: -10px;
      border-width: 0 10px 10px 10px;
      border-color: transparent transparent rgba(255, 255, 255, 0.8) transparent; }
  .product-popup .product-popup-content {
    position: relative;
    padding: 4px 8px 4px 4px; }
  .product-popup .popup-close {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    z-index: 10;
    transition: all 0.2s ease; }
    .product-popup .popup-close:hover {
      background: rgba(0, 0, 0, 0.7);
      transform: rotate(90deg); }
  .product-popup .product-popup-inner {
    display: flex;
    align-items: center;
    gap: 8px; }
  .product-popup .product-popup-image {
    flex: 0 0 48px;
    max-width: 48px; }
    .product-popup .product-popup-image img {
      width: 48px;
      height: 48px;
      object-fit: cover;
      border-radius: 8px; }
  .product-popup .product-popup-info {
    flex: 1;
    display: flex;
    flex-direction: column; }
  .product-popup .product-popup-title {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px 0;
    padding-right: 20px;
    background: transparent;
    -webkit-text-fill-color: unset;
    color: #fff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .product-popup .product-popup-price {
    font-size: 14px;
    font-weight: 500;
    color: #FAF398;
    margin-bottom: 0; }
  .product-popup .product-popup-link {
    display: inline-block;
    padding: 6px 12px;
    background: #333;
    color: #FAF398;
    text-align: center;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto; }
    .product-popup .product-popup-link:hover {
      background: #000;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); }

.lookbook-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px; }
  .lookbook-pagination .pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0; }
  .lookbook-pagination .page-item.disabled {
    pointer-events: none;
    opacity: 0.5; }
    .lookbook-pagination .page-item.disabled .page-link {
      background: transparent;
      color: #fff;
      border: none;
      padding: 0; }
  .lookbook-pagination .page-item.active .page-link {
    background: #FAF398;
    color: #000;
    border-color: #FAF398; }
  .lookbook-pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    border-radius: 50% !important;
    border: 1px solid transparent;
    background: transparent;
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease; }
    .lookbook-pagination .page-link:hover:not(.active) {
      background: #FAF398;
      border-color: #FAF398;
      color: #000; }
    .lookbook-pagination .page-link svg {
      width: 12px;
      height: 12px; }

@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@keyframes icon-line-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@keyframes icon-circle {
  0% {
    transform: scale(0); }
  50% {
    transform: scale(0.2); }
  100% {
    transform: scale(1); } }

@keyframes fill {
  0% {
    box-shadow: inset 0px 0px 0px #28a745; }
  100% {
    box-shadow: inset 0px 0px 0px 30px #28a745; } }

/* Responsive cho mobile */
@media (max-width: 576px) {
  .form-success-modal {
    margin: 20px; }
    .form-success-modal .modal-body {
      padding: 2rem 1.5rem !important; }
    .form-success-modal .success-animation .success-checkmark {
      width: 60px;
      height: 60px; }
      .form-success-modal .success-animation .success-checkmark .check-icon {
        width: 60px;
        height: 60px; }
        .form-success-modal .success-animation .success-checkmark .check-icon .icon-line.line-tip {
          top: 36px;
          left: 10px;
          width: 20px; }
        .form-success-modal .success-animation .success-checkmark .check-icon .icon-line.line-long {
          top: 28px;
          right: 6px;
          width: 37px; }
        .form-success-modal .success-animation .success-checkmark .check-icon .icon-circle {
          width: 60px;
          height: 60px; }
        .form-success-modal .success-animation .success-checkmark .check-icon .icon-fix {
          top: 6px;
          left: 20px;
          height: 65px; }
    .form-success-modal .modal-title {
      font-size: 1.25rem; } }

/* Hiệu ứng hover cho button */
.success-actions .btn {
  border-radius: 25px;
  padding: 8px 24px;
  font-weight: 500;
  transition: all 0.3s ease; }
  .success-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3); }

/*RESPONSIVE*/
@media (max-width: 991px) {
  .wrap-heading {
    margin-bottom: 20px; }
    .wrap-heading h2 {
      font-size: 25px;
      line-height: normal; }
  .about-line {
    padding: 12px 0; }
  .section-about-form .about-form-flex {
    gap: 20px;
    flex-direction: column;
    padding: 20px 12px; }
    .section-about-form .about-form-flex .about-form-left .input-group input, .section-about-form .about-form-flex .about-form-left .input-group textarea, .section-about-form .about-form-flex .about-form-left .input-group select {
      padding: 8px 12px; }
    .section-about-form .about-form-flex .about-form-right .about-form-content {
      bottom: 12px;
      left: 12px;
      right: 12px;
      border-radius: 16px; }
      .section-about-form .about-form-flex .about-form-right .about-form-content .content-flex {
        gap: 10px;
        flex-direction: column; }
        .section-about-form .about-form-flex .about-form-right .about-form-content .content-flex::before {
          content: none; }
      .section-about-form .about-form-flex .about-form-right .about-form-content .about-form-content-item .icon {
        width: 30px;
        height: 30px;
        line-height: 28px; }
        .section-about-form .about-form-flex .about-form-right .about-form-content .about-form-content-item .icon svg {
          width: 10px;
          height: 10px; }
      .section-about-form .about-form-flex .about-form-right .about-form-content .about-form-content-item:last-child {
        justify-content: end; }
  .layoutPage-about-us .section-about-introduce .aboutus-introduce-img {
    margin-bottom: 15px; }
  .layoutPage-about-us .section-about-introduce .aboutus-introduce-content .aboutus-introduce-title {
    font-size: 30px;
    line-height: normal; }
  .layoutPage-about-us .section-about-introduce .aboutus-introduce-content .aboutus-introduce-subtitle {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 15px; }
  .layoutPage-about-us .section-about-slogan .about-slogan-content {
    padding: 24px 15px; }
    .layoutPage-about-us .section-about-slogan .about-slogan-content img {
      width: 50px;
      height: 50px;
      margin-bottom: 10px; }
    .layoutPage-about-us .section-about-slogan .about-slogan-content .slogan-title {
      font-size: 18px;
      margin: 6px 0 8px;
      line-height: 24px; }
    .layoutPage-about-us .section-about-slogan .about-slogan-content p {
      font-size: 14px; }
  .layoutPage-about-us .section-about-value .wrap-heading {
    margin-bottom: 20px; }
    .layoutPage-about-us .section-about-value .wrap-heading h2 {
      margin-bottom: 8px; }
  .layoutPage-about-us .section-about-value .about-value-number {
    margin-bottom: 20px;
    gap: 12px;
    flex-direction: column; }
    .layoutPage-about-us .section-about-value .about-value-number .about-value-number-item {
      padding: 8px; }
      .layoutPage-about-us .section-about-value .about-value-number .about-value-number-item .value-number-title {
        text-align: center; }
        .layoutPage-about-us .section-about-value .about-value-number .about-value-number-item .value-number-title h3 {
          justify-content: center;
          font-size: 25px;
          line-height: normal; }
          .layoutPage-about-us .section-about-value .about-value-number .about-value-number-item .value-number-title h3 span {
            padding-bottom: 4px; }
  .layoutPage-about-us .section-about-marquee {
    padding: 20px 0; }
    .layoutPage-about-us .section-about-marquee .aboutus-marquee-item span {
      font-size: 18px; }
      .layoutPage-about-us .section-about-marquee .aboutus-marquee-item span::before {
        width: 8px;
        height: 8px; }
  .layoutPage-about-us .section-about-uses .about-uses-slide {
    margin-bottom: 20px; }
  .layoutPage-about-us .section-about-uses .about-uses-item {
    padding: 12px; }
    .layoutPage-about-us .section-about-uses .about-uses-item .about-uses-title {
      font-size: 14px;
      line-height: 22px; }
  .layoutPage-about-us .section-about-uses .about-uses-bottom-img {
    flex-direction: column;
    gap: 12px; }
  .layoutPage-about-us .section-about-review .about-review-item {
    padding: 15px 12px; }
    .layoutPage-about-us .section-about-review .about-review-item .review-content {
      font-size: 14px; }
    .layoutPage-about-us .section-about-review .about-review-item .about-review-icon svg {
      width: 40px;
      height: 40px; }
    .layoutPage-about-us .section-about-review .about-review-item .about-review-start, .layoutPage-about-us .section-about-review .about-review-item .review-content {
      margin-bottom: 12px; }
  /* Page stores */
  .layout-pageStores .wrapbox-info {
    padding: 12px; }
  .layout-pageStores .select-item .field-select::after {
    right: 12px; }
  .layout-pageStores .select-item select {
    padding: 8px 12px; }
  .layout-pageStores #store-info .store-item {
    padding: 12px;
    font-size: 14px; }
    .layout-pageStores #store-info .store-item .store--name {
      font-size: 14px; }
    .layout-pageStores #store-info .store-item svg {
      width: 15px;
      height: 15px;
      flex: 0 0 15px; }
  .layout-pageStores #boxMap {
    margin-top: 16px; }
    .layout-pageStores #boxMap iframe {
      height: auto; }
  /* Page Contact */
  .layout-pageContact .contact-infor-item {
    padding: 12px 8px; }
    .layout-pageContact .contact-infor-item img {
      width: 60px;
      height: 60px; }
    .layout-pageContact .contact-infor-item .infor-description {
      line-break: anywhere; }
  /* LAYOUT PAGE LOOKBOOKS */
  .lookbook-grid {
    margin-bottom: 10px; }
  .lookbook-grid .lookbook-title {
    padding: 8px;
    font-size: 16px; }
  .lookbook-pagination {
    margin-top: 20px; }
  .lookbook-dot {
    width: 20px;
    height: 20px; }
    .lookbook-dot .dot-number {
      width: 12px;
      height: 12px; } }
