@charset "UTF-8";
:root {
  --color-primary: #D80000;
  --color-dark: #1a1a1a;
  --color-text: #333;
  --color-light: #f5f5f5;
  --color-border: #e0e0e0;
  --font-family: GMV Din Pro, sans-serif; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "GMV Din Pro", sans-serif; }

body {
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff; }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease; }
  a:hover {
    text-decoration: none;
    color: #D80000; }

img {
  max-width: 100%;
  height: auto; }

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1520px !important; } }

.topbar {
  background: linear-gradient(90deg, #b10303 0%, #d70000 100%);
  color: #fff;
  padding: 0;
  font-size: 13px;
  font-weight: 500; }

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px; }

.topbar-promo {
  flex: 1;
  text-align: center;
  padding: 4px 0; }

.topbar-links {
  display: flex;
  align-items: center;
  gap: 0; }
  .topbar-links a {
    color: #fff;
    padding: 4px 12px;
    transition: opacity 0.3s; }
    .topbar-links a:hover {
      opacity: 0.8;
      color: #fff; }

.topbar-divider {
  width: 1px;
  height: 13px;
  background: #ff9494; }

header {
  position: sticky;
  top: 0;
  z-index: 9999; }

.main-navbar {
  background: #0a0a0a;
  position: sticky;
  top: 0;
  z-index: 1000; }

.main-navbar-wrapper {
  position: relative; }

.navbar-inner {
  display: flex;
  align-items: center;
  padding: 5px 0;
  position: relative; }

.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0; }
  .navbar-brand .logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.2; }
    .navbar-brand .logo-text span {
      color: #D80000; }
  .navbar-brand .logo-sub {
    font-size: 10px;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 40px;
  list-style: none;
  margin-bottom: 0;
  padding: 0; }
  .main-nav .nav-item {
    position: relative; }
  .main-nav .nav-link {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    white-space: nowrap;
    word-spacing: 3px;
    text-transform: uppercase; }
    .main-nav .nav-link:hover, .main-nav .nav-link.active {
      color: #D80000; }
    .main-nav .nav-link i {
      font-size: 12px;
      transition: transform 0.3s; }
    .main-nav .nav-link:hover i {
      transform: rotate(180deg); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto; }

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #d4d4d4;
  padding: 4px 2px;
  min-width: 180px;
  cursor: pointer; }
  .nav-search i {
    color: #fff;
    font-size: 16px; }
  .nav-search input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    width: 100%; }
    .nav-search input::placeholder {
      color: rgba(255, 255, 255, 0.7); }

.nav-icons {
  display: flex;
  align-items: center;
  gap: 30px; }
  .nav-icons a {
    color: #fff;
    font-size: 20px;
    position: relative;
    transition: color 0.3s; }
    .nav-icons a:hover {
      color: #D80000; }

.cart-count {
  position: absolute;
  top: -6px;
  left: 12px;
  background: red;
  color: #fff;
  font-size: 9px;
  min-width: 16px;
  height: 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  font-weight: 400; }

.mobile-menu-btn {
  display: none;
  background: #fff;
  border: none;
  color: #1a1a1a;
  font-size: 20px;
  cursor: pointer;
  padding: 6px;
  border-radius: 2px;
  position: relative;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center; }
  .mobile-menu-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    width: 6.545px;
    background: #D80000; }
  .mobile-menu-btn i {
    color: #1a1a1a; }

.mobile-search-btn {
  display: none; }

@media (min-width: 1200px) {
  .mobile-menu-btn {
    display: none !important; } }

.nav-item.has-dropdown {
  position: relative; }
  .nav-item.has-dropdown:hover .nav-link {
    color: #D80000; }
    .nav-item.has-dropdown:hover .nav-link i {
      transform: rotate(180deg);
      color: #D80000; }
  .nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  .nav-item.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000; }
    .nav-item.has-dropdown .dropdown-menu .dropdown-item {
      position: relative; }
      .nav-item.has-dropdown .dropdown-menu .dropdown-item > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        color: #1a1a1a;
        font-family: "Roboto", sans-serif;
        font-size: 14px;
        font-weight: 400;
        transition: all 0.2s;
        white-space: nowrap;
        text-transform: uppercase; }
        .nav-item.has-dropdown .dropdown-menu .dropdown-item > a:hover {
          background: #f5f5f5;
          color: #D80000; }
        .nav-item.has-dropdown .dropdown-menu .dropdown-item > a i {
          font-size: 10px;
          color: #999; }
      .nav-item.has-dropdown .dropdown-menu .dropdown-item.has-submenu:hover > .dropdown-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0); }
    .nav-item.has-dropdown .dropdown-menu .dropdown-submenu {
      position: absolute;
      top: 0;
      left: 100%;
      min-width: 200px;
      background: #fff;
      border-radius: 4px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      padding: 8px 0;
      list-style: none;
      margin: 0;
      opacity: 0;
      visibility: hidden;
      transform: translateX(10px);
      transition: all 0.3s ease; }
      .nav-item.has-dropdown .dropdown-menu .dropdown-submenu .dropdown-item > a {
        padding: 10px 16px; }
        .nav-item.has-dropdown .dropdown-menu .dropdown-submenu .dropdown-item > a:hover {
          background: #f5f5f5;
          color: #D80000; }

.nav-item.has-mega-menu {
  position: static; }
  .nav-item.has-mega-menu:hover .nav-link {
    color: #D80000; }
    .nav-item.has-mega-menu:hover .nav-link i {
      transform: rotate(180deg);
      color: #D80000; }
  .nav-item.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 24px 48px -12px rgba(16, 24, 40, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000; }

.mega-menu-inner {
  margin: 0 auto;
  padding: 24px 15px; }

.mega-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px; }

.mega-menu-title {
  font-size: 20px;
  font-weight: 700;
  color: #D80000;
  margin: 0;
  letter-spacing: -0.2px; }

.mega-menu-viewall {
  display: inline-flex;
  align-items: center;
  background: #0a0a0a;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s; }
  .mega-menu-viewall:hover {
    background: #D80000;
    color: #fff; }
  .mega-menu-viewall .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #D80000;
    width: 24px;
    height: 24px;
    margin-left: 10px;
    margin-right: -10px; }

.mega-menu-categories {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 0;
  scrollbar-width: thin;
  scrollbar-color: #404040 #e5e5e5;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth; }
  .mega-menu-categories.dragging {
    cursor: grabbing;
    scroll-behavior: auto; }
    .mega-menu-categories.dragging .category-item {
      pointer-events: none; }
  .mega-menu-categories::-webkit-scrollbar {
    height: 4px; }
  .mega-menu-categories::-webkit-scrollbar-track {
    background: #e5e5e5;
    border-radius: 100px; }
  .mega-menu-categories::-webkit-scrollbar-thumb {
    background: #404040;
    border-radius: 100px; }

.category-item {
  flex: 0 0 160px;
  text-align: center;
  transition: all 0.3s; }
  .category-item:hover {
    transform: translateY(-5px); }
    .category-item:hover .category-item-image img {
      transform: scale(1.05); }

.category-item-image {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px; }
  .category-item-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1;
    transition: transform 0.3s; }

.category-item-name {
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0; }

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease; }
  .search-overlay.active {
    opacity: 1;
    visibility: visible; }

.search-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.4s ease; }
  .search-panel.active {
    transform: translateY(0); }

.search-panel-header {
  background: #1a1a1a;
  padding: 16px 0; }
  .search-panel-header .custom-container {
    max-width: 1520px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    gap: 40px; }

.search-panel-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #d4d4d4;
  padding: 6px 0; }
  .search-panel-input .close-search {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s; }
    .search-panel-input .close-search:hover {
      color: #D80000; }
  .search-panel-input input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px; }
    .search-panel-input input::placeholder {
      color: rgba(255, 255, 255, 0.7); }

.search-panel-icons {
  display: flex;
  align-items: center;
  gap: 30px; }
  .search-panel-icons a {
    color: #fff;
    font-size: 20px;
    position: relative; }

.search-panel-body {
  background: #fff;
  box-shadow: 0 24px 48px -12px rgba(16, 24, 40, 0.18);
  max-height: calc(100vh - 80px);
  overflow-y: auto; }
  .search-panel-body .custom-container {
    max-width: 1520px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px; }

.search-content {
  display: flex; }

.search-left {
  flex: 1;
  border-right: 1px solid #e5e5e5;
  padding-right: 20px; }

.search-right {
  width: 330px;
  padding: 20px 0 20px 40px; }

.search-section {
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5; }
  .search-section:last-child {
    border-bottom: none; }

.search-section-title {
  font-family: "GMV Din Pro", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #D80000;
  margin-bottom: 16px;
  letter-spacing: -0.2px; }

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; }

.search-tag {
  color: #1a1a1a;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.3s;
  text-transform: uppercase; }
  .search-tag:hover {
    color: #D80000; }

.search-products {
  display: flex;
  gap: 10px; }

.search-product-card {
  flex: 1;
  min-width: 0;
  border-radius: 2px;
  overflow: hidden;
  max-width: 285px; }
  .search-product-card:hover .search-product-image img {
    transform: scale(1.05); }

.search-product-image {
  position: relative;
  background: #f5f5f5;
  aspect-ratio: 1 / 1;
  overflow: hidden; }
  .search-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s; }

.search-product-badge {
  position: absolute;
  top: 10px;
  left: 9px;
  display: flex;
  flex-direction: column;
  gap: 6px; }
  .search-product-badge span {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
    color: #fff; }
  .search-product-badge .badge-sale {
    background: #1a1a1a; }
  .search-product-badge .badge-new {
    background: #D80000; }

.search-product-info {
  padding: 12px;
  background: #fff; }

.search-product-brand {
  font-size: 13px;
  color: #737373;
  font-weight: 500;
  margin-bottom: 4px; }

.search-product-name {
  font-family: "GMV Din Pro", sans-serif;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 4px; }

.search-product-prices {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px; }

.search-product-price {
  font-family: "GMV Din Pro", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #D80000; }

.search-product-price-old {
  font-family: "GMV Din Pro", sans-serif;
  font-size: 14px;
  color: #737373;
  text-decoration: line-through; }

.search-product-variants {
  display: flex;
  align-items: center;
  gap: 4px; }

.search-product-variant {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s; }
  .search-product-variant:hover, .search-product-variant.active {
    border-color: #1a1a1a; }
  .search-product-variant img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.search-product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between; }

.search-product-add-btn {
  background: #1a1a1a;
  border: none;
  padding: 8px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s;
  position: relative; }
  .search-product-add-btn:hover {
    background: #D80000; }
  .search-product-add-btn i {
    color: #fff;
    font-size: 20px; }
  .search-product-add-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 7px;
    background: #D80000; }

.search-articles {
  display: flex;
  flex-direction: column;
  gap: 8px; }

.search-article-item {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.5;
  transition: color 0.3s;
  display: list-item;
  list-style-type: disc;
  margin-left: 21px;
  text-transform: uppercase; }
  .search-article-item:hover {
    color: #D80000; }

.search-results__content {
  display: flex;
  gap: 40px; }

.search-results__left {
  flex: 1;
  min-width: 0; }

.search-results__right {
  width: 280px;
  flex-shrink: 0;
  border-left: 1px solid #e0e0e0;
  padding-left: 40px; }

.search-results__products {
  display: flex;
  gap: 10px;
  flex-wrap: wrap; }

.search-results__products .search-product-card {
  flex: 0 0 calc(20% - 8px);
  min-width: 0; }

.search-results__articles {
  display: flex;
  flex-direction: column;
  gap: 8px; }

.search-results__viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: "GMV Din Pro", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s; }
  .search-results__viewall i {
    font-size: 12px;
    transition: transform 0.3s; }
  .search-results__viewall:hover {
    color: #D80000; }
    .search-results__viewall:hover i {
      transform: translateX(4px); }

.search-results__loading {
  display: flex;
  justify-content: center;
  padding: 40px 0; }

.search-results__spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e0e0e0;
  border-top-color: #D80000;
  border-radius: 50%;
  animation: searchSpin 0.6s linear infinite; }

.search-results__empty {
  padding: 40px 0;
  text-align: center; }
  .search-results__empty p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #737373;
    margin: 0; }

.search-results__fallback-msg {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #737373;
  margin: 0; }

@keyframes searchSpin {
  to {
    transform: rotate(360deg); } }

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999; }
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible; }

.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 10000;
  display: flex;
  flex-direction: column; }
  .mobile-menu-panel.active {
    transform: translateX(0); }

.mobile-menu-header {
  background: linear-gradient(114.52deg, #404040 0.73%, #0a0a0a 57.56%, #b10303 100%);
  padding: 32px 16px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden; }
  .mobile-menu-header::before, .mobile-menu-header::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 280px;
    opacity: 0.3; }
  .mobile-menu-header::before {
    top: -60px;
    left: -30px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
    transform: rotate(45deg); }
  .mobile-menu-header::after {
    bottom: -100px;
    right: -20px;
    transform: rotate(-45deg); }
  .mobile-menu-header .logo-text {
    font-family: "GMV Din Pro", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    position: relative;
    z-index: 1; }
    .mobile-menu-header .logo-text span {
      color: #D80000; }
  .mobile-menu-header .logo-sub {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: -3px; }

.mobile-menu-close {
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  color: #f5f5f5;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center; }

.mobile-menu-body {
  flex: 1;
  display: flex;
  overflow: hidden; }

.mobile-menu-list {
  width: 95px;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e5e5e5;
  flex-shrink: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

.mobile-menu-item {
  padding: 16px 12px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  border-left: 3px solid transparent; }
  .mobile-menu-item:hover, .mobile-menu-item.active {
    color: #D80000;
    font-weight: 600;
    border-left-color: #D80000;
    background: #fff; }
  .mobile-menu-item.mobile-menu-accordion {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .mobile-menu-item.mobile-menu-accordion .mobile-accordion-icon {
      font-size: 10px;
      transition: transform 0.3s; }
    .mobile-menu-item.mobile-menu-accordion.is-open .mobile-accordion-icon {
      transform: rotate(180deg); }

.mobile-accordion-content {
  display: none;
  background: #f9f9f9;
  border-bottom: 1px solid #e5e5e5; }
  .mobile-accordion-content.is-open {
    display: block; }
  .mobile-accordion-content .mobile-accordion-link {
    display: block;
    padding: 12px 12px 12px 20px;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.2s; }
    .mobile-accordion-content .mobile-accordion-link:last-child {
      border-bottom: none; }
    .mobile-accordion-content .mobile-accordion-link:hover {
      color: #D80000;
      background: #f0f0f0; }
    .mobile-accordion-content .mobile-accordion-link.mobile-accordion-viewall {
      font-weight: 600;
      color: #D80000; }

.mobile-menu-content {
  flex: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden; }

.mobile-menu-content-inner {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px 0; }

.mobile-menu-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px; }

.mobile-menu-content-title {
  font-family: "GMV Din Pro", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #b10303;
  letter-spacing: -0.1px;
  margin: 0; }

.mobile-menu-content-arrow {
  font-size: 14px;
  color: #1a1a1a; }

.mobile-menu-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 4px; }

.mobile-category-item {
  flex: 1 0 calc(33.333% - 3px);
  min-width: 82px;
  max-width: calc(33.333% - 3px);
  text-decoration: none; }

.mobile-category-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  background: #f1f5f9; }
  .mobile-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.mobile-category-name {
  padding: 12px 0;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.1px;
  margin: 0; }

.mobile-category-logo {
  padding: 8px 0;
  text-align: center; }
  .mobile-category-logo img {
    height: 17px;
    width: auto;
    display: block;
    margin: 0 auto; }

.mobile-menu-footer {
  padding: 12px 16px 20px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 12px; }

.mobile-menu-footer-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "GMV Din Pro", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  text-decoration: none; }
  .mobile-menu-footer-item i {
    font-size: 16px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center; }

.mobile-menu-content-pane {
  display: none; }
  .mobile-menu-content-pane.active {
    display: block; }

.footer {
  background: #1a1a1a;
  color: #d4d4d4;
  position: relative;
  overflow: hidden; }

.footer-watermark {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
  opacity: 1;
  pointer-events: none; }
  .footer-watermark img {
    width: 100%;
    height: auto; }

.footer-inner {
  position: relative;
  z-index: 1; }

.footer-top {
  display: flex;
  gap: 16px;
  padding-top: 64px; }

.footer-col {
  flex: 1;
  min-width: 0; }

.footer-col-company {
  padding-right: 45px; }

.footer-col-links {
  padding-left: 0; }

.footer-logo {
  margin-bottom: 16px;
  width: 100%; }
  .footer-logo img {
    width: 265px;
    height: auto;
    object-fit: contain; }
  .footer-logo .logo-text {
    font-family: "GMV Din Pro", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff; }
    .footer-logo .logo-text span {
      color: #D80000; }

.footer-company-name {
  font-family: "GMV Din Pro", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #d4d4d4;
  margin-bottom: 0;
  line-height: 1.4; }

.footer-info {
  font-size: 14px;
  line-height: 1.5;
  color: #d4d4d4; }
  .footer-info p {
    margin-bottom: 8px; }

.footer-title {
  font-family: "GMV Din Pro", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #d4d4d4;
  margin-bottom: 8px;
  line-height: 1.4;
  letter-spacing: -0.2px; }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0; }
  .footer-links li {
    margin-bottom: 8px; }
  .footer-links a {
    color: #d4d4d4;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s; }
    .footer-links a:hover {
      color: #fff; }

.footer-bottom {
  display: flex;
  gap: 16px;
  padding-bottom: 64px;
  padding-top: 32px; }

.footer-bottom-col {
  flex: 1; }
  .footer-bottom-col:first-child {
    min-width: 395px;
    padding-right: 45px; }

.footer-bottom-col-links {
  padding-left: 0; }

.footer-bottom-title {
  font-weight: 600;
  font-size: 16px;
  color: #d4d4d4;
  margin-bottom: 12px;
  line-height: 1.5; }

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center; }

.payment-icon {
  width: 34px;
  height: 24px;
  background: #fff;
  border: 1px solid #f2f4f7;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; }
  .payment-icon img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain; }

.payment-icon-text {
  width: 34px;
  height: 24px;
  background: #fff;
  border: 1px solid #f2f4f7;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2px; }
  .payment-icon-text i {
    font-size: 10px;
    color: #1a1a1a; }
  .payment-icon-text span {
    font-size: 5px;
    font-weight: 500;
    color: #1a1a1a;
    text-transform: uppercase; }

.social-links {
  display: flex;
  gap: 10px;
  align-items: center; }
  .social-links a {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s; }
    .social-links a:hover {
      color: #D80000; }
  .social-links img {
    height: 24px;
    width: auto; }

.certification-badge {
  border-radius: 2px;
  display: inline-block; }
  .certification-badge img {
    height: 50px;
    width: auto; }

.collection-header__breadcrumb {
  width: 100%;
  padding: 20px 0; }

.collection-header__breadcrumb .breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0; }

.collection-header__breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center; }

.collection-header__breadcrumb .breadcrumb-link {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.3s ease; }

.collection-header__breadcrumb .breadcrumb-link:hover {
  color: #D80000; }

.collection-header__breadcrumb .breadcrumb-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin: 0 4px;
  color: #0a0a0a; }

.collection-header__breadcrumb .breadcrumb-separator svg {
  width: 20px;
  height: 20px; }

.collection-header__breadcrumb .breadcrumb-separator span {
  font-size: 14px;
  color: #666; }

.collection-header__breadcrumb .breadcrumb-current {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #0a0a0a; }

.collection-header__breadcrumb .breadcrumb-current strong {
  font-weight: 600; }

.quickview-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease; }
  .quickview-overlay.active {
    opacity: 1;
    visibility: visible; }

.quickview-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  z-index: 9999;
  width: 968px;
  max-width: 95vw;
  max-height: 90vh;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex; }
  .quickview-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1); }

.quickview-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: transform 0.3s; }
  .quickview-close:hover {
    transform: rotate(90deg); }
  .quickview-close i {
    font-size: 18px;
    color: #0a0a0a; }

.quickview-images {
  width: 50%;
  padding: 17px 16px;
  display: flex;
  flex-direction: column;
  position: relative; }

.quickview-main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; }
  .quickview-main-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain; }

.quickview-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 5; }
  .quickview-nav:hover {
    background: #0a0a0a;
    border-color: #0a0a0a;
    color: #fff; }
  .quickview-nav.prev {
    left: 24px; }
  .quickview-nav.next {
    right: 24px; }

.quickview-thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px; }

.quickview-thumb {
  width: 46px;
  height: 46px;
  background: #f5f5f5;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s; }
  .quickview-thumb:hover, .quickview-thumb.active {
    border-color: #0a0a0a; }
  .quickview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain; }

.quickview-info {
  width: 50%;
  padding: 29px 20px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px; }

.quickview-header {
  display: flex;
  flex-direction: column;
  gap: 12px; }

.quickview-brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap; }

.quickview-brand {
  font-family: "GMV Din Pro", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #737373; }

.quickview-badges {
  display: flex;
  gap: 8px;
  margin-left: auto; }

.quickview-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  font-family: "GMV Din Pro", sans-serif;
  font-size: 11px;
  font-weight: 500;
  border-radius: 2px; }
  .quickview-badge.new {
    background: #D80000;
    color: #fff; }
  .quickview-badge.limited {
    background: #0a0a0a;
    color: #fff; }
  .quickview-badge.date {
    border: 1px solid #0a0a0a;
    color: #0a0a0a; }

.quickview-title {
  font-family: "GMV Din Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.2px;
  color: #0a0a0a;
  text-transform: uppercase;
  margin: 0; }

.quickview-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #737373; }
  .quickview-meta span {
    display: flex;
    align-items: center;
    gap: 4px; }
  .quickview-meta .divider {
    width: 1px;
    height: 14px;
    background: #e5e5e5; }

.quickview-description {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #737373; }

.quickview-variants {
  display: flex;
  flex-direction: column;
  gap: 8px; }

.quickview-variants-label {
  font-family: "GMV Din Pro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0a0a0a; }

.quickview-variants-list {
  display: flex;
  gap: 10px; }

.quickview-variant {
  width: 48px;
  height: 48px;
  background: #f5f5f5;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s; }
  .quickview-variant:hover, .quickview-variant.active {
    border-color: #0a0a0a; }
  .quickview-variant img {
    width: 100%;
    height: 100%;
    object-fit: contain; }

.quickview-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto; }

.quickview-row {
  display: flex;
  gap: 10px; }

.quickview-quantity {
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e5;
  height: 40px; }
  .quickview-quantity button {
    width: 40px;
    height: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #0a0a0a;
    transition: background 0.3s; }
    .quickview-quantity button:hover {
      background: #f5f5f5; }
  .quickview-quantity input {
    width: 34px;
    height: 100%;
    text-align: center;
    border: none;
    font-family: "GMV Din Pro", sans-serif;
    font-size: 14px;
    font-weight: 500; }
    .quickview-quantity input:focus {
      outline: none; }

.quickview-add-cart {
  flex: 1;
  display: flex;
  align-items: stretch;
  text-decoration: none; }
  .quickview-add-cart:hover .quickview-add-cart-text {
    background: #D80000; }
  .quickview-add-cart:hover .quickview-add-cart-icon {
    background: #0a0a0a; }

.quickview-add-cart-text {
  flex: 1;
  background: #0a0a0a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "GMV Din Pro", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s; }

.quickview-add-cart-icon {
  width: 40px;
  background: #D80000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff; }

.quickview-btn-detail {
  flex: 0 0 auto;
  height: 40px;
  padding: 0 20px;
  background: transparent;
  border: 1px solid #0a0a0a;
  font-family: "GMV Din Pro", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0a0a0a;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center; }
  .quickview-btn-detail:hover {
    background: #0a0a0a;
    color: #fff; }

.quickview-btn-checkout {
  flex: 1;
  height: 40px;
  background: #D80000;
  border: none;
  font-family: "GMV Din Pro", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center; }
  .quickview-btn-checkout:hover {
    background: #b10303; }

body.quickview-open {
  overflow: hidden; }

.quickview-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease; }
  .quickview-modal.is-active {
    opacity: 1;
    visibility: visible; }
    .quickview-modal.is-active .quickview-modal__container {
      transform: scale(1); }
  .quickview-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px); }
  .quickview-modal__container {
    position: relative;
    width: 968px;
    max-width: 95vw;
    max-height: 90vh;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 1; }
  .quickview-modal__close {
    position: absolute;
    top: 8px;
    right: 13px;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease; }
    .quickview-modal__close svg {
      width: 24px;
      height: 24px;
      color: #0a0a0a; }
    .quickview-modal__close:hover {
      transform: rotate(90deg); }
  .quickview-modal__content {
    display: flex;
    height: 542px;
    max-height: 90vh;
    overflow: hidden; }
  .quickview-modal__loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 16px; }
    .quickview-modal__loading span {
      font-family: "GMV Din Pro", sans-serif;
      font-size: 14px;
      color: #737373; }
  .quickview-modal__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f5f5f5;
    border-top-color: #D80000;
    border-radius: 50%;
    animation: qv-spin 1s linear infinite; }
  .quickview-modal__error {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%; }
    .quickview-modal__error p {
      font-family: "GMV Din Pro", sans-serif;
      font-size: 14px;
      color: #737373; }

@keyframes qv-spin {
  to {
    transform: rotate(360deg); } }

.quickview {
  display: flex;
  width: 100%;
  height: 100%; }
  .quickview__gallery {
    width: 50%;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 17px 16px;
    position: relative; }
  .quickview__gallery-main {
    position: relative;
    width: 100%; }
  .quickview__info {
    width: 50%;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px; }

.qv-main-image {
  width: 100%;
  aspect-ratio: 1;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; }
  .qv-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; }

.qv-gallery-nav {
  position: absolute;
  top: 50%;
  left: 24px;
  right: 24px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; }

.qv-gallery-prev,
.qv-gallery-next {
  width: 36px;
  height: 36px;
  background: #0a0a0a;
  border: none;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  position: relative; }
  .qv-gallery-prev svg,
  .qv-gallery-next svg {
    width: 24px;
    height: 24px;
    color: #fff; }
  .qv-gallery-prev::before,
  .qv-gallery-next::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #D80000;
    rotate: 180deg; }
  .qv-gallery-prev:hover,
  .qv-gallery-next:hover {
    background: #2a2a2a; }

.qv-gallery-prev::before {
  left: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%); }

.qv-gallery-next::before {
  right: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%); }

.qv-thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px; }

.qv-thumb {
  width: 46px;
  height: 46px;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s ease; }
  .qv-thumb:hover, .qv-thumb.is-active {
    border-color: #0a0a0a; }
  .qv-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain; }

.qv-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px; }

.qv-badges-right {
  display: flex;
  gap: 8px; }

.qv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  min-height: 22px;
  font-family: "GMV Din Pro", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 13px;
  letter-spacing: -0.1px;
  border-radius: 2px; }
  .qv-badge--brand {
    padding: 4px 0;
    color: #0a0a0a; }
  .qv-badge--new {
    background: #D80000;
    color: #fff; }
  .qv-badge--limited {
    background: #0a0a0a;
    color: #fff; }
  .qv-badge--date {
    border: 1px solid #0a0a0a;
    color: #0a0a0a; }

.qv-title-section {
  display: flex;
  flex-direction: column;
  gap: 4px; }

.qv-title {
  font-family: "GMV Din Pro", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #000102;
  margin: 0; }

.qv-meta {
  display: flex;
  align-items: center;
  gap: 16px; }

.qv-sku,
.qv-origin {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #404040; }

.qv-divider {
  width: 1px;
  height: 19px;
  background: #e5e5e5; }

.qv-description {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #0a0a0a; }

.qv-variants {
  display: flex;
  flex-direction: column;
  gap: 10px; }

.qv-variants-label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #6b7280;
  margin-bottom: 0; }

.qv-variants-list {
  display: flex;
  gap: 10px; }

.qv-variant {
  width: 48px;
  height: 48px;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s ease; }
  .qv-variant:hover, .qv-variant.is-active {
    border-color: #0a0a0a; }
  .qv-variant img {
    width: 100%;
    height: 100%;
    object-fit: contain; }

.qv-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0; }

.qv-actions-row {
  display: flex;
  gap: 10px; }

.qv-quantity {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 8px 11px;
  min-height: 40px;
  background: #f5f5f5;
  border: 1px solid #0a0a0a;
  border-radius: 2px; }
  .qv-quantity button {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center; }
    .qv-quantity button svg {
      width: 24px;
      height: 24px;
      color: #0a0a0a; }

.qv-qty-input {
  width: 30px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: "GMV Din Pro", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.1px;
  color: #0a0a0a; }
  .qv-qty-input::-webkit-outer-spin-button, .qv-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0; }
  .qv-qty-input[type=number] {
    -moz-appearance: textfield; }
  .qv-qty-input:focus {
    outline: none; }

.qv-addtocart {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 40px;
  background: #0a0a0a;
  border: none;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s ease; }
  .qv-addtocart span:first-child {
    flex: 1;
    padding: 10px 20px;
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -0.1px;
    text-transform: uppercase;
    color: #fff;
    text-align: center; }
  .qv-addtocart:hover {
    background: #2a2a2a; }
  .qv-addtocart:disabled {
    opacity: 0.6;
    cursor: not-allowed; }

.qv-addtocart-icon {
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 8px;
  background: #D80000;
  position: relative; }
  .qv-addtocart-icon::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    bottom: 0;
    width: 8px;
    background: #D80000;
    clip-path: polygon(100% 0, 100% 100%, 0 100%); }
  .qv-addtocart-icon svg {
    width: 24px;
    height: 24px;
    color: #fff; }

.qv-viewdetail {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  background: transparent;
  border: none;
  font-family: "GMV Din Pro", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.1px;
  text-transform: uppercase;
  text-decoration: underline;
  color: #0a0a0a;
  cursor: pointer;
  transition: color 0.3s ease; }
  .qv-viewdetail:hover {
    color: #D80000; }

.qv-buynow {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 32px;
  background: #D80000;
  border: 1px solid #D80000;
  border-radius: 2px;
  font-family: "GMV Din Pro", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.1px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease; }
  .qv-buynow:hover {
    background: #b10303;
    border-color: #b10303; }

.swal-product {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 10px 0; }
  .swal-product__img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden; }
    .swal-product__img img {
      width: 100%;
      height: 100%;
      object-fit: contain; }
  .swal-product__info {
    flex: 1;
    min-width: 0; }
  .swal-product__name {
    font-family: "GMV Din Pro", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #0a0a0a;
    margin: 0 0 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; }
  .swal-product__qty {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: #666;
    margin: 0 0 4px; }
  .swal-product__price {
    font-family: "GMV Din Pro", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #D80000;
    margin: 0; }

.swal2-popup.swal-cart-popup {
  border-radius: 4px;
  padding: 24px;
  max-width: 420px; }
  .swal2-popup.swal-cart-popup .swal2-title.swal-cart-title {
    font-family: "GMV Din Pro", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
    padding: 0 0 16px; }
  .swal2-popup.swal-cart-popup .swal2-html-container {
    margin: 0;
    padding: 0; }
  .swal2-popup.swal-cart-popup .swal2-icon.swal2-success {
    border-color: #D80000; }
    .swal2-popup.swal-cart-popup .swal2-icon.swal2-success .swal2-success-ring {
      border-color: rgba(216, 0, 0, 0.3); }
    .swal2-popup.swal-cart-popup .swal2-icon.swal2-success .swal2-success-line-tip,
    .swal2-popup.swal-cart-popup .swal2-icon.swal2-success .swal2-success-line-long {
      background-color: #D80000; }
  .swal2-popup.swal-cart-popup .swal2-actions {
    margin-top: 20px;
    gap: 10px; }
  .swal2-popup.swal-cart-popup .swal-cart-btn {
    font-family: "GMV Din Pro", sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: -0.1px;
    min-width: 140px; }
    .swal2-popup.swal-cart-popup .swal-cart-btn--primary {
      background: #D80000 !important;
      border: none;
      color: #fff; }
      .swal2-popup.swal-cart-popup .swal-cart-btn--primary:hover {
        background: #a50000 !important; }
    .swal2-popup.swal-cart-popup .swal-cart-btn--secondary {
      background: #0a0a0a !important;
      border: none;
      color: #fff; }
      .swal2-popup.swal-cart-popup .swal-cart-btn--secondary:hover {
        background: #2a2a2a !important; }

.swal-modal {
  border-radius: 4px; }
  .swal-modal .swal-title {
    font-family: "GMV Din Pro", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a; }
  .swal-modal .swal-text {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #666; }
  .swal-modal .swal-icon--success {
    border-color: #D80000; }
    .swal-modal .swal-icon--success__line {
      background-color: #D80000; }
    .swal-modal .swal-icon--success__ring {
      border-color: rgba(216, 0, 0, 0.3); }
  .swal-modal .swal-button-container .swal-button {
    font-family: "GMV Din Pro", sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 2px;
    text-transform: uppercase; }
    .swal-modal .swal-button-container .swal-button.swal-cart-btn--primary {
      background: #D80000;
      color: #fff; }
      .swal-modal .swal-button-container .swal-button.swal-cart-btn--primary:hover {
        background: #a50000; }
    .swal-modal .swal-button-container .swal-button.swal-cart-btn--secondary {
      background: #0a0a0a;
      color: #fff; }
      .swal-modal .swal-button-container .swal-button.swal-cart-btn--secondary:hover {
        background: #2a2a2a; }

@media (max-width: 991px) {
  .quickview-modal__container {
    width: 95vw;
    max-height: 95vh; }
  .quickview-modal__content {
    flex-direction: column;
    height: auto;
    max-height: 95vh;
    overflow-y: auto; }
  .quickview {
    flex-direction: column; }
  .quickview__gallery,
  .quickview__info {
    width: 100%; }
  .quickview__gallery {
    padding: 16px; }
  .qv-main-image {
    max-height: 300px; }
  .qv-title {
    font-size: 20px;
    line-height: 26px; } }

@media (max-width: 576px) {
  .quickview-modal__close {
    top: 4px;
    right: 8px; }
  .quickview__info {
    padding: 16px;
    gap: 16px; }
  .qv-badges {
    flex-wrap: wrap; }
  .qv-title {
    font-size: 18px;
    line-height: 24px; }
  .qv-actions-row {
    flex-wrap: wrap; }
  .qv-quantity {
    width: 100%;
    justify-content: center; }
  .qv-addtocart {
    width: 100%; }
  .qv-viewdetail {
    width: 100%; }
  .qv-buynow {
    width: 100%; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards; }

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out; }
  .scroll-animate.visible {
    opacity: 1;
    transform: translateY(0); }

@media (max-width: 1199px) {
  .mobile-menu-btn {
    display: block; }
  .footer-top {
    flex-wrap: wrap; }
  .footer-col-company {
    flex: 0 0 100%;
    padding-right: 0;
    margin-bottom: 32px; }
  .footer-col-links {
    flex: 0 0 calc(25% - 12px);
    padding-left: 0; }
  .footer-bottom {
    flex-wrap: wrap; }
  .footer-bottom-col {
    flex: 0 0 calc(50% - 8px); } }

@media (max-width: 991px) {
  .nav-search {
    min-width: 140px; }
  .search-content {
    flex-direction: column; }
  .search-left {
    border-right: none;
    padding-right: 0; }
  .search-right {
    width: 100%;
    border-top: 1px solid #e5e5e5;
    padding: 20px 0; }
  .search-results__content {
    flex-direction: column;
    gap: 0; }
  .search-results__right {
    width: 100%;
    border-left: none;
    border-top: 1px solid #e5e5e5;
    padding-left: 0;
    padding-top: 16px; }
  .search-results__products {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    gap: 10px; }
    .search-results__products::-webkit-scrollbar {
      display: none; }
  .search-results__products .search-product-card {
    flex: 0 0 calc(50% - 5px);
    min-width: calc(50% - 5px);
    max-width: calc(50% - 5px);
    scroll-snap-align: start; }
  .search-products {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    gap: 10px; }
    .search-products::-webkit-scrollbar {
      display: none; }
  .search-product-card {
    flex: 0 0 calc(50% - 5px);
    min-width: calc(50% - 5px);
    max-width: calc(50% - 5px);
    scroll-snap-align: start; }
    .search-product-card .search-product-variants {
      display: none; }
  .search-product-image {
    height: auto;
    aspect-ratio: 1; }
  .search-product-info {
    padding: 8px; }
  .search-product-brand {
    font-size: 11px;
    margin-bottom: 2px; }
  .search-product-name {
    font-size: 13px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px; }
  .search-product-price {
    font-size: 14px;
    line-height: 1.3; }
  .search-product-price-old {
    display: none; }
  .quickview-popup {
    flex-direction: column;
    width: 500px;
    max-height: 85vh; }
  .quickview-images {
    width: 100%;
    padding: 16px; }
  .quickview-main-image {
    height: 300px;
    aspect-ratio: auto; }
  .quickview-info {
    width: 100%;
    padding: 16px;
    max-height: 50vh; }
  .collection-header__breadcrumb .breadcrumb-link,
  .collection-header__breadcrumb .breadcrumb-current {
    font-size: 14px;
    line-height: 20px; }
  .collection-header__breadcrumb .breadcrumb-separator {
    width: 16px;
    height: 16px;
    margin: 0 2px; }
  .collection-header__breadcrumb .breadcrumb-separator svg {
    width: 16px;
    height: 16px; } }

@media (max-width: 767px) {
  .main-navbar {
    background: linear-gradient(to right, #0a0a0a 0%, #0a0a0a 46%, #d70000 100%);
    position: relative; }
  .navbar-inner {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .navbar-brand {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px; }
    .navbar-brand .logo-text {
      font-size: 18px;
      font-weight: 800;
      color: #fff; }
      .navbar-brand .logo-text span {
        color: #D80000; }
    .navbar-brand .logo-sub {
      display: none; }
  .mobile-menu-btn {
    display: flex !important;
    order: -1;
    flex-shrink: 0; }
  .main-nav {
    display: none !important; }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: flex-end; }
  .nav-search {
    display: none !important; }
  .nav-icons {
    display: flex;
    align-items: center;
    gap: 16px; }
    .nav-icons a {
      font-size: 20px;
      color: #fff; }
  .mobile-search-btn {
    display: flex !important; }
    .mobile-search-btn i {
      font-size: 20px; }
  .topbar-inner {
    padding: 4px 15px; }
  .search-panel-body {
    max-height: calc(100vh - 88px);
    background: #fafafa; }
    .search-panel-body .custom-container {
      padding: 0; }
  .search-content {
    flex-direction: column; }
  .search-left {
    border-right: none;
    padding-right: 0; }
  .search-right {
    width: 100%;
    border-top: none;
    padding: 16px;
    border-bottom: 1px solid #e5e5e5; }
  .search-section {
    padding: 16px;
    border-bottom: 1px solid #e5e5e5; }
  .search-section-title {
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #d70000;
    margin-bottom: 6px;
    letter-spacing: -0.1px; }
  .search-tags {
    gap: 8px;
    flex-wrap: wrap; }
  .search-tag {
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    padding: 0;
    background: transparent;
    border-radius: 0;
    color: #020617;
    text-transform: uppercase; }
  .search-products {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 4px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; }
    .search-products::-webkit-scrollbar {
      display: none; }
  .search-product-card {
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 180px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 2px;
    overflow: hidden; }
  .search-product-image {
    height: 240px;
    background: #f5f5f5; }
    .search-product-image img {
      object-fit: contain;
      padding: 10%; }
  .search-product-info {
    padding: 6px;
    background: #fff; }
  .search-product-brand {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #737373;
    padding: 4px 0 3px; }
  .search-product-name {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #0a0a0a;
    line-height: 21px; }
  .search-product-price {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #d70000;
    line-height: 21px; }
  .search-product-price-old {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #737373; }
  .footer-top {
    padding-top: 40px; }
  .footer-col-links {
    flex: 0 0 calc(50% - 8px);
    margin-bottom: 24px; }
  .footer-bottom {
    padding-bottom: 40px; }
  .footer-bottom-col {
    flex: 0 0 100%;
    margin-bottom: 24px; }
  .search-panel-header {
    background: linear-gradient(114.52deg, #404040 0.73%, #0a0a0a 57.56%, #b10303 100%);
    padding: 32px 16px 10px;
    position: relative;
    overflow: hidden; }
    .search-panel-header .custom-container {
      padding: 0;
      gap: 16px;
      flex-wrap: nowrap;
      justify-content: flex-end;
      position: relative;
      z-index: 1; }
    .search-panel-header .navbar-brand {
      display: none; }
  .search-panel-input {
    flex: 1;
    flex-direction: row;
    border-bottom: 1px solid #d4d4d4; }
    .search-panel-input .close-search {
      order: 2;
      flex-shrink: 0;
      padding: 0; }
      .search-panel-input .close-search i {
        font-size: 16px; }
    .search-panel-input input {
      order: 1;
      font-family: "Roboto", sans-serif;
      font-weight: 400;
      font-size: 13px;
      line-height: 18px; }
      .search-panel-input input::placeholder {
        color: #fff;
        opacity: 1; }
  .search-panel-icons {
    display: none; }
  .collection-header__breadcrumb .breadcrumb-list {
    gap: 2px; }
  .collection-header__breadcrumb .breadcrumb-link,
  .collection-header__breadcrumb .breadcrumb-current {
    font-size: 13px;
    line-height: 18px; }
  .collection-header__breadcrumb .breadcrumb-separator {
    width: 14px;
    height: 14px; }
  .collection-header__breadcrumb .breadcrumb-separator svg {
    width: 14px;
    height: 14px; }
  .collection-header__breadcrumb .breadcrumb-current strong {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block; } }

@media (max-width: 575px) {
  .footer-col-links {
    flex: 0 0 100%; }
  .quickview-popup {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    top: 0;
    left: 0;
    transform: none; }
    .quickview-popup.active {
      transform: none; }
  .quickview-main-image {
    height: 250px; }
  .quickview-title {
    font-size: 16px;
    line-height: 22px; }
  .quickview-row {
    flex-wrap: wrap; }
  .quickview-quantity {
    width: 100%; }
  .quickview-add-cart {
    width: 100%; }
  .quickview-btn-detail,
  .quickview-btn-checkout {
    flex: 1; } }

.product-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column; }
  .product-card:hover .product-card__image > img {
    transform: scale(1.05); }
  .product-card__quickview {
    position: absolute;
    bottom: 12px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    display: none; }
    .product-card__quickview svg,
    .product-card__quickview i {
      width: 16px;
      height: 16px;
      font-size: 14px;
      color: #1a1a1a; }
    @media (max-width: 1024px) {
      .product-card__quickview {
        display: block; } }

.product-card__image {
  position: relative;
  padding-bottom: 24px; }
  .product-card__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    transition: transform 0.3s ease; }

.product-card__badges {
  position: absolute;
  top: 10px;
  left: 9px;
  display: flex;
  flex-direction: column;
  gap: 6px; }

.product-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px 5px;
  min-height: 28px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  line-height: 13px;
  letter-spacing: -0.1px;
  color: #fff; }
  .product-card__badge.discount {
    background: #0a0a0a; }
  .product-card__badge.new {
    background: #D80000;
    color: #fff; }
  .product-card__badge.limited {
    background: #0a0a0a;
    color: #fff; }
  .product-card__badge.date {
    border: 1px solid #0a0a0a;
    color: #0a0a0a; }

.product-card__info {
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-end; }

.product-card__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px; }

.product-card__brand {
  font-size: 13px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.1px;
  color: #737373; }

.product-card__name {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.2px;
  color: #0a0a0a;
  margin: 0;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box; }

.product-card__prices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px; }

.product-card__price {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.2px;
  color: #D80000; }

.product-card__price-old {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #737373;
  text-decoration: line-through; }

.product-card__variants {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none; }
  .product-card__variants.list-variants-img {
    margin-top: 8px;
    gap: 5px; }

.product-card__variant {
  width: 50px;
  height: 50px;
  border-radius: 2px;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: all 0.3s ease;
  list-style: none;
  padding: 2px; }
  .product-card__variant:hover, .product-card__variant.active {
    border-color: #0a0a0a; }
  .product-card__variant img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 2px;
    display: block; }
  .product-card__variant .variant-swatch-color {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    background-size: cover;
    background-position: center; }

.product-card__cart-btn {
  width: 40px;
  height: 40px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: #000000; }
  @media (max-width: 1024px) {
    .product-card__cart-btn {
      display: none !important; } }

.product-card__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 300px;
  padding: 40px 20px;
  text-align: center;
  color: #666;
  font-size: 14px; }

.product-card__variant-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 12px;
  color: #666;
  background: #f5f5f5; }

@media (max-width: 767px) {
  .product-card {
    border-radius: 2px;
    overflow: hidden;
    height: 100%; }
  .product-card__image {
    padding-bottom: 16px;
    position: relative; }
    .product-card__image > img {
      width: 100%;
      height: 240px;
      object-fit: contain; }
  .product-card__badges {
    position: absolute;
    top: 10px;
    left: 9px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2; }
  .product-card__badge {
    padding: 4px 4px 2px;
    font-size: 12px;
    line-height: 10px;
    min-height: auto; }
    .product-card__badge.discount {
      background: #0a0a0a; }
    .product-card__badge.new {
      background: #D80000;
      color: #fff; }
    .product-card__badge.limited {
      background: #0a0a0a;
      color: #fff; }
    .product-card__badge.date {
      border: 1px solid #0a0a0a;
      color: #0a0a0a; }
  .product-card__info {
    padding: 6px;
    gap: 0;
    background: #fff; }
  .product-card__details {
    gap: 2px;
    width: 100%; }
  .product-card__brand {
    font-size: 12px;
    line-height: 10px;
    margin-bottom: 2px;
    padding: 4px 0 2px; }
  .product-card__name {
    font-size: 15px;
    line-height: 21px;
    letter-spacing: -0.1px;
    margin-bottom: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box; }
    .product-card__name a {
      color: #0a0a0a;
      text-decoration: none; }
  .product-card__prices {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 12px;
    margin-top: 0; }
  .product-card__price {
    font-size: 15px;
    line-height: 21px;
    letter-spacing: -0.1px;
    font-weight: 700; }
  .product-card__price-old {
    font-size: 13px;
    line-height: 19px;
    color: #737373; }
  .product-card__variants {
    display: flex;
    gap: 4px;
    margin-top: 6px; }
  .product-card__variant {
    width: 36px;
    height: 36px;
    border-radius: 2px;
    border: 1px solid transparent; }
    .product-card__variant:hover, .product-card__variant.is-active {
      border-color: #0a0a0a; }
  .product-card__cart-btn {
    display: none !important; }
  .product-card__quickview {
    position: absolute;
    bottom: 10px;
    right: 8px;
    width: 36px;
    height: 36px;
    background: #0a0a0a;
    border: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2; }
    .product-card__quickview i {
      color: #fff;
      font-size: 24px; } }

.blog-article-card {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  min-width: 0; }
  .blog-article-card:hover .blog-article-card__image img {
    transform: scale(1.05); }
  .blog-article-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit; }
    .blog-article-card__link:hover {
      text-decoration: none;
      color: inherit; }
  .blog-article-card__image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden; }
    @media (max-width: 767px) {
      .blog-article-card__image {
        height: 200px; } }
    .blog-article-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease; }
  .blog-article-card__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 24px 20px 16px;
    background: #fff;
    flex: 1; }
    @media (max-width: 767px) {
      .blog-article-card__content {
        padding: 20px 0; } }
  .blog-article-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 8px;
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 13px;
    letter-spacing: -0.1px;
    text-align: center;
    color: #1a1a1a;
    background: transparent;
    border: 1px solid #1a1a1a;
    border-radius: 2px;
    width: fit-content; }
  .blog-article-card__title {
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.2px;
    color: #1a1a1a;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .blog-article-card__excerpt {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.1px;
    color: #737373;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal; }
  .blog-article-card__readmore {
    font-family: "GMV Din Pro", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -0.1px;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 30%;
    text-transform: uppercase;
    transition: color 0.2s ease; }
    .blog-article-card__readmore:hover {
      color: #D80000; }

.warranty-accordion__content * {
  max-width: 100% !important; }

.warranty-accordion__content ul {
  list-style: initial;
  padding-left: 20px; }

.warranty-accordion__content ol {
  list-style-type: decimal;
  padding-left: 20px; }

.warranty-accordion__content ul ul {
  list-style-type: circle; }

.warranty-accordion__content ul ul ul {
  list-style-type: square; }

.warranty-accordion__content ul li,
.warranty-accordion__content ol li {
  margin: 5px 0; }

.product-group-viewall-icon {
  height: 50px; }

.search-products__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  margin-top: 40px; }
  @media (max-width: 1199px) {
    .search-products__grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 16px; } }
  @media (max-width: 992px) {
    .search-products__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px; } }
  @media (max-width: 767) {
    .search-products__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px; } }

/* 2.3 - Pagination */
#pagination {
  margin: 30px 0; }
  #pagination .pagination {
    margin: 0;
    padding: 0;
    justify-content: center;
    -webkit-justify-content: center;
    text-align: center; }
    #pagination .pagination > li {
      display: inline-block;
      vertical-align: middle; }
      #pagination .pagination > li:not(:last-child) {
        margin-right: 8px; }
      #pagination .pagination > li > span,
      #pagination .pagination > li a {
        position: relative;
        float: left;
        line-height: 33px;
        text-decoration: none;
        color: #333e48;
        background-color: #fff;
        border: 1px solid #dee2e6;
        width: 35px;
        height: 35px;
        text-align: center;
        border-radius: 0 !important;
        font-weight: 600;
        padding: 0;
        cursor: pointer; }
        #pagination .pagination > li > span.current,
        #pagination .pagination > li a.current {
          background-color: #000000;
          border-color: #000000;
          color: #fff; }
      #pagination .pagination > li > a:hover,
      #pagination .pagination > li > a:focus,
      #pagination .pagination > li > span:hover,
      #pagination .pagination > li > span:focus {
        z-index: 2;
        color: #fff;
        background-color: #000000;
        border-color: #000000; }

/* 2.4 - 404 */
.layout-pageNot {
  padding: 40px 0; }

.layout-pageNot h1 span {
  display: block;
  color: #fff;
  font-size: 170px;
  font-weight: bold;
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.15); }

.layout-pageNot .subtext {
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 30px;
  font-weight: 400; }

.qv-other-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }

.qv-variant--other-product::after {
  content: '↗';
  /* Hiện icon góc phải */ }

@media (min-width: 1200px) {
  main.wrapperMain_content .product-group-section {
    padding-left: 40px;
    padding-right: 40px; } }

.policy-drawer__body * {
  max-width: 100% !important; }

.policy-drawer__body ul {
  list-style: initial;
  padding-left: 20px; }

.policy-drawer__body ol {
  list-style-type: decimal;
  padding-left: 20px; }

.policy-drawer__body ul ul {
  list-style-type: circle; }

.policy-drawer__body ul ul ul {
  list-style-type: square; }

.policy-drawer__body ul li,
.policy-drawer__body ol li {
  margin: 5px 0; }

@media (min-width: 1200px) {
  section.featured-collections-section .collection-card {
    height: 490px; } }

@media (max-width: 767px) {
  section.featured-collections-section .collection-card {
    height: 200px; } }

@media (min-width: 1200px) {
  section.featured-collections-section .collection-card-image img {
    width: 100%;
    height: auto;
    object-fit: initial;
    transition: transform 0.5s ease; } }

@media (max-width: 767px) {
  section.featured-collections-section .collection-card-image img {
    height: auto;
    object-fit: initial; } }

.article-related-news .blog-article-card__image {
  height: auto; }

.article-related-news .blog-article-card__image img {
  object-fit: cover;
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease; }

.blog-page .blog-article-card__image {
  height: auto; }

.blog-article-card__image img {
  height: auto; }
