@charset "UTF-8";
@keyframes shine {
  0% {
    left: -50%;
    opacity: 0; }
  50% {
    left: 25%;
    opacity: 0.5; }
  100% {
    left: 100%;
    opacity: 0; } }

@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  40%, 43% {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  40%, 43%, 70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

/* Slider */
.home-hero-section {
  background-color: #f4f6f9; }
  .home-hero-section .container {
    max-width: 1200px;
    margin: 0 auto; }

/* Category Sidebar on Home Page */
.home-category-sidebar {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #eef0f3;
  padding: 8px 0;
  max-height: 455px;
  overflow-y: auto;
  height: 100%; }
  .home-category-sidebar .category-list {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
    display: flex;
    flex-direction: column; }
  .home-category-sidebar .category-item {
    width: 100%; }
  .home-category-sidebar .category-link {
    padding: 9px 16px;
    /* Matching header dropdown padding */
    color: #343a40;
    font-size: 13px;
    /* Matching header dropdown font size */
    font-weight: 500;
    transition: all 0.15s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%; }
    .home-category-sidebar .category-link:hover {
      background-color: #f8f9fa;
      color: #d70018; }
      .home-category-sidebar .category-link:hover .cat-icon {
        color: #d70018; }
  .home-category-sidebar .link-left {
    gap: 10px; }
  .home-category-sidebar svg {
    width: 18px;
    /* Matching header dropdown icon width */
    height: 18px;
    /* Matching header dropdown icon height */
    fill: currentColor;
    color: #707070;
    transition: color 0.15s ease; }
  .home-category-sidebar .chevron-right {
    width: 12px;
    height: 12px;
    color: #a0a0a0; }

/* Slider Center Column styling */
.home-slider-center {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef0f3;
  overflow: hidden;
  display: flex;
  flex-direction: column; }
  .home-slider-center .swiper-callback {
    flex: 1;
    position: relative;
    overflow: hidden; }
  .home-slider-center .overflow-hidden {
    height: 100%; }
  .home-slider-center .swiper {
    height: 100%; }
  .home-slider-center .swiper-slide {
    height: 100%; }
    .home-slider-center .swiper-slide a.banner-slide-link {
      display: block;
      height: 100%;
      width: 100%; }
    .home-slider-center .swiper-slide img.slider-image {
      width: 100%;
      height: 100%;
      object-fit: cover; }

/* Custom Swiper navigation styles */
.home-slider-center {
  /* Pagination indicators */ }
  .home-slider-center .swiper-button-prev-wd,
  .home-slider-center .swiper-button-next-wd {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0;
    visibility: hidden; }
    .home-slider-center .swiper-button-prev-wd:hover,
    .home-slider-center .swiper-button-next-wd:hover {
      background: #fff;
      transform: translateY(-50%) scale(1.05); }
      .home-slider-center .swiper-button-prev-wd:hover .icon-svg,
      .home-slider-center .swiper-button-next-wd:hover .icon-svg {
        --fillcolor: #d70018 !important; }
    .home-slider-center .swiper-button-prev-wd button,
    .home-slider-center .swiper-button-next-wd button {
      background: none;
      border: none;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center; }
  .home-slider-center .swiper-button-prev-wd {
    left: 10px; }
  .home-slider-center .swiper-button-next-wd {
    right: 10px; }
  .home-slider-center:hover .swiper-button-prev-wd,
  .home-slider-center:hover .swiper-button-next-wd {
    opacity: 1;
    visibility: visible; }
  .home-slider-center .swiper-pagination {
    bottom: 12px;
    left: 0;
    width: 100%; }
    .home-slider-center .swiper-pagination .swiper-pagination-bullet {
      background: rgba(255, 255, 255, 0.7);
      opacity: 0.6;
      width: 8px;
      height: 8px;
      margin: 0 4px;
      transition: all 0.2s ease; }
      .home-slider-center .swiper-pagination .swiper-pagination-bullet-active {
        background: #d70018;
        opacity: 1;
        width: 20px;
        border-radius: 4px; }

/* Banner Description Thumbnails Row */
.text-slider-thumb {
  display: flex;
  background: #fff;
  border-top: 1px solid #f1f3f5;
  height: 50px; }
  .text-slider-thumb .thumb-item {
    flex: 1;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #4a4a4a;
    padding: 6px 4px;
    cursor: pointer;
    border-right: 1px solid #f1f3f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.15s ease;
    line-height: 1.3; }
    .text-slider-thumb .thumb-item:last-child {
      border-right: none; }
    .text-slider-thumb .thumb-item span {
      font-size: 9px;
      font-weight: normal;
      color: #8c8c8c;
      margin-top: 2px; }
    .text-slider-thumb .thumb-item:hover {
      color: #d70018;
      background: #fafafa; }
    .text-slider-thumb .thumb-item.active {
      background: #ffebe6;
      color: #d70018;
      font-weight: 700; }
      .text-slider-thumb .thumb-item.active span {
        color: #d70018;
        font-weight: 500; }

/* 4 Sub-Banners Grid Under main slider */
.sub-banner-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  padding: 12px;
  height: 115px;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  position: relative; }
  .sub-banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #6b7280;
    transition: background-color 0.25s; }
  .sub-banner-card.brand-galaxy::before {
    background-color: #3b82f6; }
  .sub-banner-card.brand-laptop::before {
    background-color: #10b981; }
  .sub-banner-card.brand-hotdeal::before {
    background-color: #ef4444; }
  .sub-banner-card .sub-banner-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a; }
  .sub-banner-card .sub-banner-desc {
    font-size: 10.5px;
    color: #666;
    line-height: 1.35;
    margin: 6px 0;
    flex-grow: 1; }
  .sub-banner-card .sub-banner-action {
    font-size: 10px;
    font-weight: 700;
    color: #4b5563;
    text-transform: uppercase;
    transition: color 0.25s; }
  .sub-banner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(215, 0, 24, 0.2); }
    .sub-banner-card:hover::before {
      background-color: #d70018; }
    .sub-banner-card:hover .sub-banner-action {
      color: #d70018; }

/* Right Sidebar: user block + promo links + sidebar banner */
.home-sidebar-right {
  display: flex;
  flex-direction: column;
  gap: 12px; }

.user-profile-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eef0f3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 12px; }
  .user-profile-card .user-avatar-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffe6e6;
    margin-right: 12px;
    flex-shrink: 0; }
    .user-profile-card .user-avatar-circle .icon-user-svg {
      width: 22px;
      height: 22px; }
  .user-profile-card .user-info-text {
    flex-grow: 1; }
  .user-profile-card .username-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2; }
  .user-profile-card .user-phone {
    font-size: 10.5px;
    color: #777;
    margin-top: 2px; }
  .user-profile-card .user-badge {
    display: inline-block;
    background: #eef2f7;
    color: #475569;
    font-size: 9.5px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
    margin-top: 4px;
    border: 1px solid #cbd5e1; }
  .user-profile-card .user-promo-link {
    border-top: 1px solid #f1f3f5;
    margin-top: 10px;
    padding-top: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #d70018;
    text-decoration: none !important; }
    .user-profile-card .user-promo-link:hover {
      color: #9f0010; }
      .user-profile-card .user-promo-link:hover .icon-chevron-right {
        transform: translateX(2px); }
    .user-profile-card .user-promo-link .icon-chevron-right {
      width: 16px;
      height: 16px;
      transition: transform 0.15s ease; }

.sidebar-links-list {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eef0f3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 6px 0; }
  .sidebar-links-list .sidebar-link-btn {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: #334155;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none !important;
    border-bottom: 1px solid #f1f3f5;
    transition: all 0.15s ease; }
    .sidebar-links-list .sidebar-link-btn:last-child {
      border-bottom: none; }
    .sidebar-links-list .sidebar-link-btn:hover {
      background-color: #fff1f2;
      color: #d70018;
      font-weight: 600; }
    .sidebar-links-list .sidebar-link-btn .btn-icon {
      font-size: 13px;
      margin-right: 10px;
      width: 18px;
      text-align: center; }

.sidebar-bottom-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #d70018 0%, #f43f5e 100%);
  border-radius: 10px;
  padding: 16px;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(215, 0, 24, 0.15);
  transition: all 0.25s ease;
  height: 112px;
  position: relative;
  overflow: hidden; }
  .sidebar-bottom-banner::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none; }
  .sidebar-bottom-banner .banner-badge-hot {
    background: #ffe4e6;
    color: #e11d48;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 8px;
    letter-spacing: 0.5px; }
  .sidebar-bottom-banner .banner-title-big {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2; }
  .sidebar-bottom-banner .banner-desc-small {
    font-size: 11px;
    opacity: 0.9;
    margin-top: 2px;
    margin-bottom: 8px; }
  .sidebar-bottom-banner .banner-button-link {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 4px; }
    .sidebar-bottom-banner .banner-button-link::after {
      content: '→';
      font-size: 11px;
      transition: transform 0.15s; }
  .sidebar-bottom-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(215, 0, 24, 0.3); }
    .sidebar-bottom-banner:hover .banner-button-link::after {
      transform: translateX(3px); }

/* Responsive Styles overrides */
@media (min-width: 992px) {
  .home-hero-section .row-left {
    display: flex !important;
    flex-wrap: nowrap !important;
    margin-left: 0 !important;
    margin-right: 0 !important; }
  .home-hero-section .home-hero-left {
    width: 240px !important;
    flex: 0 0 240px !important;
    max-width: 240px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: block !important; }
  .home-hero-section .home-hero-right {
    width: 240px !important;
    flex: 0 0 240px !important;
    max-width: 240px !important;
    padding-left: 7.5px !important;
    padding-right: 0 !important;
    display: block !important; }
  .home-hero-section .home-hero-center {
    flex: 1 !important;
    max-width: calc(100% - 480px) !important;
    width: auto !important;
    padding-left: 7.5px !important;
    padding-right: 0 !important; } }

@media (max-width: 991px) {
  .home-category-sidebar {
    display: none !important; } }

@media (max-width: 767px) {
  .sub-banner-card {
    height: 95px !important;
    padding: 10px !important; }
    .sub-banner-card .sub-banner-title {
      font-size: 12px !important; }
    .sub-banner-card .sub-banner-desc {
      font-size: 9.5px !important;
      margin: 4px 0 !important; }
  .home-sub-banners-grid > div {
    margin-bottom: 10px !important; } }

/* 3 Horizontal Banners below home-slider-center */
.home-sub-banners {
  display: flex;
  margin-left: -7.5px;
  margin-right: 0; }
  .home-sub-banners .banner-item {
    padding-left: 7.5px;
    padding-right: 0;
    flex: 1; }
  .home-sub-banners .banner-sub-link {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eef0f3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease; }
    .home-sub-banners .banner-sub-link img {
      width: 100%;
      height: auto;
      display: block; }
    .home-sub-banners .banner-sub-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08); }

@media (min-width: 1200px) {
  .no-border-bottom-desk {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; } }

/* ==========================================================================
   Home - Flash Sale 3 Tab
   ========================================================================== */
#section-flash-sale-tabs {
  /* Tab list styling */
  /* Swiper content modifications */ }
  #section-flash-sale-tabs .container {
    max-width: 1200px;
    margin: 0 auto; }
  #section-flash-sale-tabs .flash-tabs-header {
    background: linear-gradient(90deg, #d70018 0%, #ff4d4f 100%);
    border-radius: 10px 10px 0 0;
    padding: 10px 20px;
    border: 3px solid #d70018;
    border-bottom: none; }
    #section-flash-sale-tabs .flash-tabs-header .alarm-clock-icon {
      animation: bounce 2s infinite; }
    #section-flash-sale-tabs .flash-tabs-header .flash-tabs-title {
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      text-transform: uppercase;
      margin: 0;
      letter-spacing: 0.5px;
      text-align: center;
      flex: 1; }
    #section-flash-sale-tabs .flash-tabs-header .mascot-icon {
      max-height: 48px;
      object-fit: contain;
      width: auto; }
  #section-flash-sale-tabs .flash-tabs-container {
    border: 3px solid #d70018;
    border-radius: 0 0 10px 10px;
    background: #d70018;
    padding: 15px;
    overflow: hidden; }
  #section-flash-sale-tabs .flash-tabs-nav {
    display: flex;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    list-style: none;
    border: 2px solid #f8f9fa;
    background: #f8f9fa;
    border-radius: 6px;
    overflow: hidden; }
    #section-flash-sale-tabs .flash-tabs-nav .tab-item {
      flex: 1;
      text-align: center;
      cursor: pointer;
      padding: 10px 15px;
      transition: all 0.25s ease;
      border-right: 1px solid #eef0f3;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 60px;
      /* Inactive State styling */
      /* Active State styling */ }
      #section-flash-sale-tabs .flash-tabs-nav .tab-item:last-child {
        border-right: none; }
      #section-flash-sale-tabs .flash-tabs-nav .tab-item .tab-link-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: 100%; }
      #section-flash-sale-tabs .flash-tabs-nav .tab-item .tab-status-row {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 700;
        color: #4a4a4a; }
      #section-flash-sale-tabs .flash-tabs-nav .tab-item .status-dot {
        width: 8px;
        height: 8px;
        background-color: #d70018;
        border-radius: 50%;
        display: inline-block;
        animation: pulse-dot 1.5s infinite; }
      #section-flash-sale-tabs .flash-tabs-nav .tab-item .tab-date {
        opacity: 1; }
      #section-flash-sale-tabs .flash-tabs-nav .tab-item .tab-countdown-row {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        color: #fff; }
      #section-flash-sale-tabs .flash-tabs-nav .tab-item .countdown-label {
        font-weight: 500;
        opacity: 1; }
      #section-flash-sale-tabs .flash-tabs-nav .tab-item .countdown-timer {
        display: flex;
        align-items: center;
        gap: 3px;
        font-weight: 700; }
      #section-flash-sale-tabs .flash-tabs-nav .tab-item .timer-box {
        background: #343a40;
        color: #fff;
        padding: 1px 4px;
        border-radius: 3px;
        min-width: 22px;
        text-align: center;
        display: inline-block; }
      #section-flash-sale-tabs .flash-tabs-nav .tab-item:not(.active) .tab-status-row, #section-flash-sale-tabs .flash-tabs-nav .tab-item:not(.active) .countdown-label {
        color: #718096; }
      #section-flash-sale-tabs .flash-tabs-nav .tab-item:not(.active) .status-dot {
        display: none !important; }
      #section-flash-sale-tabs .flash-tabs-nav .tab-item.active {
        background: #d70018;
        color: #fff;
        border-color: #fff; }
        #section-flash-sale-tabs .flash-tabs-nav .tab-item.active .tab-status-row {
          color: #fff; }
        #section-flash-sale-tabs .flash-tabs-nav .tab-item.active .status-dot {
          background-color: #fff; }
  #section-flash-sale-tabs .flash-tabs-content {
    position: relative;
    padding-top: 10px;
    /* Navigation button alignment */ }
    #section-flash-sale-tabs .flash-tabs-content .swiper-button-prev-wd,
    #section-flash-sale-tabs .flash-tabs-content .swiper-button-next-wd {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid #ddd;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
      #section-flash-sale-tabs .flash-tabs-content .swiper-button-prev-wd:hover,
      #section-flash-sale-tabs .flash-tabs-content .swiper-button-next-wd:hover {
        background: #fff; }
      #section-flash-sale-tabs .flash-tabs-content .swiper-button-prev-wd button,
      #section-flash-sale-tabs .flash-tabs-content .swiper-button-next-wd button {
        background: none;
        border: none;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center; }
    #section-flash-sale-tabs .flash-tabs-content .swiper-button-prev-wd {
      left: -15px; }
    #section-flash-sale-tabs .flash-tabs-content .swiper-button-next-wd {
      right: -15px; }

/* Keyframe animations */
@keyframes pulse-dot {
  0% {
    transform: scale(0.9);
    opacity: 1; }
  50% {
    transform: scale(1.2);
    opacity: 0.5; }
  100% {
    transform: scale(0.9);
    opacity: 1; } }

/* Mobile responsive styles for tabs */
@media (max-width: 767px) {
  #section-flash-sale-tabs .flash-tabs-header {
    padding: 8px 12px; }
    #section-flash-sale-tabs .flash-tabs-header .flash-tabs-title {
      font-size: 17px; }
    #section-flash-sale-tabs .flash-tabs-header .alarm-clock-icon {
      width: 32px;
      height: 32px; }
    #section-flash-sale-tabs .flash-tabs-header .mascot-icon {
      width: 40px;
      height: 40px; }
  #section-flash-sale-tabs .flash-tabs-container {
    padding: 10px; }
  #section-flash-sale-tabs .flash-tabs-nav {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
    #section-flash-sale-tabs .flash-tabs-nav::-webkit-scrollbar {
      height: 3px; }
    #section-flash-sale-tabs .flash-tabs-nav::-webkit-scrollbar-thumb {
      background-color: #cbd5e1;
      border-radius: 3px; }
    #section-flash-sale-tabs .flash-tabs-nav .tab-item {
      flex: 1 0 auto;
      min-width: 140px;
      padding: 8px; }
      #section-flash-sale-tabs .flash-tabs-nav .tab-item .tab-status-row {
        font-size: 11px; }
      #section-flash-sale-tabs .flash-tabs-nav .tab-item .tab-countdown-row {
        font-size: 9.5px; } }

.fl_progressbar_group {
  margin-top: 8px; }
  .fl_progressbar_group .fl_label {
    display: flex;
    align-items: center;
    font-size: 12px; }
    .fl_progressbar_group .fl_label img {
      width: 16px;
      margin-right: 5px; }
  .fl_progressbar_group .fl_progressbar {
    display: block;
    width: 100%;
    height: 5px;
    background: #ddd;
    margin-top: 5px;
    border-radius: 9999px;
    position: relative;
    overflow: hidden; }
    .fl_progressbar_group .fl_progressbar .fl_percent {
      width: 0%;
      height: 100%;
      background: var(--gradiant-fls);
      border-radius: 9999px;
      position: absolute;
      top: 0;
      z-index: 1; }

.flash-tab-pane {
  display: none; }
  .flash-tab-pane.show {
    display: block !important; }

#section-category #category-banner .item {
  position: relative;
  overflow: hidden;
  flex: 1;
  padding-left: 15px; }
  @media only screen and (min-width: 992px) {
    #section-category #category-banner .item {
      max-width: 10%;
      margin-bottom: 15px;
      flex: 0 0 10%; } }
  #section-category #category-banner .item .box-cat {
    height: 100%; }
  #section-category #category-banner .item .img-cat {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 8px; }
    #section-category #category-banner .item .img-cat img {
      display: block;
      transition: all .8s linear;
      padding: 5px; }
      #section-category #category-banner .item .img-cat img:hover {
        -webkit-animation-name: bounce_effect;
        animation-name: bounce_effect;
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        transform: scale(1.04); }
  #section-category #category-banner .item .banner-content {
    position: relative;
    margin-top: 10px; }
    #section-category #category-banner .item .banner-content a {
      margin: 0;
      font-size: 14px;
      font-weight: 500;
      text-align: center;
      display: block;
      color: var(--wd-color-shop); }
  @media only screen and (max-width: 767px) {
    #section-category #category-banner .item .banner-content > a {
      font-size: 13px; } }

@media only screen and (max-width: 991px) {
  #section-category #category-banner .item {
    padding-left: 0px; } }

@media only screen and (max-width: 767px) {
  .scroll-mb-two-row {
    display: grid !important;
    grid-auto-flow: column;
    grid-template-rows: auto auto;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 0;
    margin-left: 0;
    grid-auto-columns: var(--row-xs); }
    .scroll-mb-two-row .item-scroll {
      flex: 0 0 100% !important;
      width: 100% !important;
      display: block !important;
      padding-left: 0; } }

.section_collection_group .menu-col {
  padding: 2px 0px;
  margin-bottom: 0; }
  .section_collection_group .menu-col li {
    padding-left: 8px;
    flex: 0 0 auto;
    display: inline-flex; }
    .section_collection_group .menu-col li:first-child {
      padding-left: 0; }
    .section_collection_group .menu-col li.active a {
      background: var(--wd-bg_button);
      color: var(--wd-color_button); }
    .section_collection_group .menu-col li a {
      padding: 8px;
      border: 1px solid #ededed;
      border-radius: 5px;
      background: #ededed; }
      .section_collection_group .menu-col li a:hover {
        border-color: var(--wd-bg_button);
        background: var(--wd-bg_button);
        color: var(--wd-color_button); }

/* SONGHONG MENU VISUAL TUNE v2.8 */
.vertical-category-menu svg.cat-icon,
#js-category-menu svg.cat-icon,
#navigation-mobile svg.cat-icon,
.cat-icon {
  fill: none !important;
  stroke: currentColor !important; }

.vertical-category-menu svg.cat-icon *,
#js-category-menu svg.cat-icon *,
#navigation-mobile svg.cat-icon *,
.cat-icon path,
.cat-icon rect,
.cat-icon circle,
.cat-icon line,
.cat-icon polyline,
.cat-icon polygon,
.cat-icon ellipse {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.85 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important; }

#js-category-menu .songhong-heading-real,
#navigation-mobile .songhong-heading-real,
#js-category-menu .songhong-menu-group-label,
#navigation-mobile .songhong-menu-group-label {
  font-size: 24px !important;
  font-weight: 900 !important;
  line-height: 1.02 !important;
  letter-spacing: .015em !important;
  color: #111111 !important;
  text-transform: uppercase !important;
  font-family: Arial, Helvetica, sans-serif !important;
  -webkit-text-stroke: .55px currentColor !important; }
