/*
 * Repsaigon Style Sheet
 * Quicksand — Modern Minimal E-commerce Design System
 */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #000000;
  --primary-hover: #0d69a6;
  --secondary: #0e76bc;
  --bg-light: #F5F5F5;
  --bg-white: #FFFFFF;
  --text-primary: #1A1A1A;
  --dark: #1A1A1A;
  --text-muted: #4e4e4e;
  --border-color: #E8E8E8;

  --font-heading: 'Quicksand', sans-serif;
  --font-body: 'Quicksand', sans-serif;

  --transition-smooth: all 0.3s ease-in-out;
}

/* Global Reset & Base Styles */
body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-primary);
  background-color: var(--bg-white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

h2 {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 0em;
}

h3 {
  font-size: 20px;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 15px;
  letter-spacing: 0em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--secondary);
}

/* Clean corner rounding for standard commercial e-commerce look */
.rounded-0-custom,
.btn,
.form-control,
.form-select,
.card,
.modal-content,
.nav-tabs .nav-link,
.dropdown-menu {
  border-radius: 4px !important;
}

/* Spacing Utilities */
.py-xl {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

@media (max-width: 767.98px) {
  .py-xl {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

/* Typography utilities — synchronized scale */
.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.tracking-widest {
  letter-spacing: 0.1em !important;
}

/* Form Styles */
.form-control,
.form-select {
  border: 1px solid var(--border-color);
  padding: 11px 16px;
  font-size: 14px;
  background-color: var(--bg-white);
  color: var(--text-primary);
  transition: var(--transition-smooth);
  font-family: var(--font-body);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary);
  box-shadow: none;
}

/* Buttons */
.btn-repsaigon-primary {
  background-color: var(--secondary);
  color: var(--bg-white);
  border: 1.5px solid var(--secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  padding: 10px 20px;
  transition: var(--transition-smooth);
  letter-spacing: 0.08em;
}

.btn-repsaigon-primary:hover {
  background-color: #0b5e96;
  border-color: #0b5e96;
  color: var(--bg-white);
}

.btn-repsaigon-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  padding: 13px 26px;
  transition: var(--transition-smooth);
  letter-spacing: 0.08em;
}

.btn-repsaigon-secondary:hover {
  background-color: var(--secondary);
  color: var(--bg-white);
  border-color: var(--secondary);
}

/* Fix hover contrast when Bootstrap text-dark class overrides white text */
.btn-repsaigon-secondary.text-dark:hover {
  color: var(--bg-white) !important;
  border-color: var(--primary) !important;
}

/* Header Styles */
.top-bar {
  background-color: var(--secondary);
  color: white;
  font-size: 12px;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1100;
}

.top-bar a {
  color: #FFFFFF;
}

.top-bar a:hover {
  color: #c8cbd2;
}

.main-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  z-index: 999;
}

.main-header.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Navigation */
.nav-link-custom {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: none;
  color: var(--primary) !important;
  position: relative;
  padding: 22px 20px !important;
  transition: var(--transition-smooth);
  letter-spacing: -0.01em;
}

.sticky-header .nav-link-custom {
  padding: 16px 20px !important;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--secondary) !important;
}

/* Desktop Dropdown Hover */
@media (min-width: 992px) {
  .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    margin-top: 0;
  }
}

.header-icons .btn-icon {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 23px;
  position: relative;
  padding: 8px;
  transition: var(--transition-smooth);
}

.header-icons .btn-icon:hover {
  color: var(--secondary);
}

.header-icons .badge-count {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--secondary);
  color: var(--bg-white);
  font-size: 9px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  font-weight: 700;
  padding-bottom: 2px;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 88vh;
  min-height: 540px;
  background-color: var(--bg-light);
  overflow: hidden;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
  width: 100%;
}

.hero-slide {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 30%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-title-main {
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.2;
  color: var(--primary);
  text-transform: uppercase;
}

.hero-title-main span {
  color: var(--secondary);
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-image-box {
  width: 100%;
  position: relative;
  background-color: var(--bg-white);
  overflow: hidden;
  border-radius: 4px !important;
  border: 1px solid var(--border-color);
}

.hero-image-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.hero-image-box:hover img {
  transform: scale(1.02);
}

.hero-swiper-pagination {
  bottom: 25px !important;
  z-index: 10;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  background: #FFFFFF !important;
  opacity: 0.4;
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  border-radius: 50% !important;
  transition: var(--transition-smooth);
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--secondary) !important;
  opacity: 1;
  width: 24px;
  border-radius: 4px !important;
}

.hero-swiper-next,
.hero-swiper-prev {
  color: #FFFFFF !important;
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50% !important;
  transition: var(--transition-smooth);
  z-index: 10;
}

.hero-swiper-next:hover,
.hero-swiper-prev:hover {
  background-color: var(--secondary);
}

.hero-swiper-next::after,
.hero-swiper-prev::after {
  font-size: 16px !important;
}

.btn-hero {
  transition: var(--transition-smooth);
}

.btn-hero.btn-repsaigon-secondary {
  background-color: transparent;
  color: #FFFFFF !important;
  border-color: #FFFFFF;
}

.btn-hero.btn-repsaigon-secondary:hover {
  background-color: #FFFFFF;
  color: #000000 !important;
  border-color: #FFFFFF;
}

/* About Section — Full Bleed Layout */
.about-section {
  background-color: var(--bg-white);
  overflow: hidden;
}

/* Left image panel — full height */
.about-img-full {
  height: 100%;
  min-height: 520px;
}

.about-img-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right content panel */
.about-content-panel {
  padding: 60px 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .about-content-panel {
    padding: 50px 24px;
  }
}

/* Lead paragraph */
.about-lead-text {
  font-size: 16px;
  color: #1a1a1a !important;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 100%;
}

.about-img-container {
  overflow: hidden;
  border-radius: 8px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease;
  height: auto;
}

.about-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

@media (min-width: 992px) {
  .about-img-container {
    height: 440px;
  }
}

.about-img-container:hover {
  transform: translateY(-5px);
}

.about-img-container:hover img {
  transform: scale(1.06);
}

/* Full-width stats row */
.about-stats-fullrow {
  width: 100%;
  margin-top: 40px;
}

.about-stats-fullrow .about-stat-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 36px;
  color: var(--secondary);
  line-height: 1;
}

.about-stats-fullrow .about-stat-desc {
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.border-start-md {
  border-left: 1px solid var(--border-color);
}

@media (max-width: 767.98px) {
  .border-start-md {
    border-left: none;
    border-top: 1px solid var(--border-color);
  }
}

/* Feature list */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background-color: var(--bg-light);
  border-radius: 4px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--secondary);
  transition: var(--transition-smooth);
}

.about-feature-item:hover .about-feature-icon {
  background-color: var(--secondary);
  color: var(--bg-white);
}

.about-feature-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: 0em;
}

.about-feature-item p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* CTA row */
.about-action {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}


.section-title {
  position: relative;
  margin-bottom: 0;
}

.section-title h2 {
  font-size: 26px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background-color: var(--secondary);
}

/* Centered title support */
.section-title.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.counter-box {
  background-color: var(--bg-light);
  padding: 20px 10px;
  text-align: center;
  border-radius: 4px !important;
  border: 1px solid var(--border-color);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 5px;
}

.counter-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

/* Advantages Cards */
.advantage-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 30px 20px;
  transition: var(--transition-smooth);
  height: 100%;
  border-radius: 4px !important;
}

.advantage-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.advantage-icon {
  font-size: 44px;
  color: var(--secondary);
  margin-bottom: 20px;
  line-height: 1;
}

.advantage-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.advantage-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.65;
}

/* Product Cards & Collections */
.product-grid-card {
  background-color: transparent;
  border: none;
  position: relative;
  transition: var(--transition-smooth);
  height: 100%;
}

.product-grid-card:hover {
  transform: translateY(-2px);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 0.72;
  /* Tall portrait — shows more of the garment */
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 0 !important;
  border: none;
  cursor: pointer;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.15, 1, 0.3, 1), opacity 0.5s ease;
}

.product-img-wrap .img-primary {
  position: relative;
  z-index: 1;
}

.product-img-wrap .img-secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
}

.product-grid-card:hover .product-img-wrap .img-primary {
  opacity: 0;
}

.product-grid-card:hover .product-img-wrap .img-secondary {
  opacity: 1;
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--secondary);
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 10;
  border-radius: 2px !important;
  line-height: 1.3;
}

.product-badge.badge-sale {
  background-color: var(--secondary);
}

/* Product actions — top-right icon buttons, slide in on hover */
.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: opacity 0.28s ease, transform 0.28s ease;
  opacity: 0;
  z-index: 15;
  transform: translateX(10px);
}

.product-grid-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  width: 38px;
  height: 38px;
  border: none;
  background-color: rgba(255, 255, 255, 0.96);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  border-radius: 50% !important;
  transition: var(--transition-smooth);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
}

.action-btn:hover {
  background-color: var(--secondary);
  color: var(--bg-white);
  transform: scale(1.08);
}

/* Add to cart button — slides up from image bottom, side-by-side with quick view */
.btn-add-to-cart {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 38px);
  height: 38px;
  background-color: rgba(17, 17, 17, 0.95);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: opacity 0.3s ease, transform 0.32s cubic-bezier(0.2, 1, 0.3, 1), background-color 0.2s ease;
  opacity: 0;
  transform: translateY(100%);
  z-index: 14;
  cursor: pointer;
  backdrop-filter: blur(2px);
  border-radius: 0 !important;
}

.btn-add-to-cart:hover {
  background-color: var(--secondary);
}

.product-img-wrap .btn-quick-view {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 38px !important;
  height: 38px !important;
  background-color: var(--secondary);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: opacity 0.3s ease, transform 0.32s cubic-bezier(0.2, 1, 0.3, 1), background-color 0.2s ease, color 0.2s ease;
  opacity: 0;
  transform: translateY(100%);
  z-index: 14;
  cursor: pointer;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.product-img-wrap .btn-quick-view:hover {
  background-color: var(--secondary);
  color: #ffffff;
}

.product-grid-card:hover .btn-add-to-cart,
.product-grid-card:hover .product-img-wrap .btn-quick-view {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  padding: 10px 0 0 0;
  text-align: left;
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 11.5px;
  color: var(--text-muted);
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.product-variant-info {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #555;
}

.product-variant-info i {
  font-size: 12px;
  opacity: 0.75;
}

.product-cat {
  font-size: 11.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.product-title-text {
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 7px;
  text-transform: none;
  line-height: 1.42;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  height: 2.84em;
  /* line-height 1.42 * 2 = 2.84em */
}

.product-title-text a {
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.product-title-text a:hover {
  color: var(--secondary);
}

.product-price-box {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.product-price-box .price-old {
  text-decoration: line-through;
  color: #888888;
  font-weight: 400;
  font-size: 13.5px;
  letter-spacing: 0;
}

.product-price-box .price-new {
  color: var(--secondary);
}

/* Sold count badge */
.product-sold-info {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 600;
  color: #e05c00;
  background: rgba(224, 92, 0, 0.08);
  border-radius: 20px;
  padding: 2px 8px;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.product-sold-info .bi-fire,
.bi-fire {
  color: #f05a00 !important;
  font-size: 12px;
}

#detail-sold-count {
  color: #f05a00 !important;
}

/* Quick View Modal */
.quick-view-modal .modal-content {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.quick-view-modal .modal-dialog {
  max-width: 900px;
}

.quick-view-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
}

.qv-gallery-swiper {
  width: 100%;
  height: 100%;
}

.qv-gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.qv-thumbs-swiper {
  margin-top: 12px;
  box-sizing: border-box;
}

.qv-thumbs-swiper .swiper-slide {
  width: 22% !important;
  aspect-ratio: 1 / 1;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-right: 8px;
}

.qv-thumbs-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

.qv-thumbs-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.qv-thumbs-swiper .swiper-slide-thumb-active img {
  border-color: var(--secondary);
}

.quick-view-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--secondary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: 0.06em;
  font-family: var(--font-heading);
  border-radius: 2px;
  text-transform: uppercase;
  z-index: 10;
}

.quick-view-info {
  padding: 5px 0;
}

.quick-view-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 8px;
}

.quick-view-price {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.02em;
}

.quick-view-price .price-old {
  font-size: 15px;
  font-weight: 400;
  color: #888888;
  text-decoration: line-through;
  margin-left: 8px;
}

.quick-view-sold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #d9383a;
  background: rgba(217, 56, 58, 0.08);
  border-radius: 4px;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.quick-view-divider {
  border: none;
  border-top: 1px solid #eaeaea;
  margin: 15px 0;
}

.quick-view-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s ease;
}

.quick-view-close:hover {
  background: var(--secondary);
  color: #fff;
}


/* Quick size drawer */
.quick-size-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  z-index: 20;
}

.quick-size-select.active {
  opacity: 1;
  pointer-events: auto;
}

.quick-size-title {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.size-btn-group {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.size-select-btn {
  width: 38px;
  height: 38px;
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  transition: var(--transition-smooth);
  border-radius: 4px !important;
}

.size-select-btn:hover,
.size-select-btn.active {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--bg-white);
}

/* View-All Link */
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1.5px solid var(--text-primary);
  padding-bottom: 2px;
  transition: color 0.22s ease, border-color 0.22s ease, gap 0.22s ease;
}

.view-all-link:hover {
  color: var(--secondary);
  border-color: var(--secondary);
  gap: 12px;
}

/* Flash Sale & Countdown */
.flash-sale-section {
  background-color: var(--bg-light);
}

.countdown-box {
  display: flex;
  gap: 8px;
}

.countdown-item {
  background-color: var(--secondary);
  color: var(--bg-white);
  width: 54px;
  height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px !important;
}

.countdown-num {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.countdown-lbl {
  font-size: 9px;
  text-transform: uppercase;
  margin-top: 2px;
  color: rgb(255, 255, 255);
}

/* Promo Banner Slider */
.promo-banner-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-white);
  height: 270px;
  border-top: 1px solid #028ac44d;
  border-bottom: 1px solid #028ac44d;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  z-index: 2;
}

.promo-banner-swiper {
  width: 100%;
  height: 100%;
}

.promo-banner-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.promo-banner-pagination {
  position: absolute;
  bottom: 10px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.promo-banner-pagination .swiper-pagination-bullet {
  background: var(--primary) !important;
  opacity: 0.3;
  width: 8px;
  height: 8px;
  margin: 0 !important;
  transition: all 0.3s ease;
}

.promo-banner-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--secondary) !important;
  width: 24px;
  border-radius: 4px;
}

/* Tạm ẩn text trên các banner để hiển thị rõ ảnh */
.hero-slide-content .badge,
.hero-slide-content h2,
.hero-slide-content p {
  display: none !important;
}

/* Category Tabs */
.custom-tabs .nav-link {
  border: none !important;
  color: var(--text-muted) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  padding: 8px 16px;
  background-color: transparent;
  transition: var(--transition-smooth);
}

.custom-tabs .nav-link.active {
  color: var(--secondary) !important;
  background-color: transparent !important;
  border-bottom: 2px solid var(--secondary) !important;
  border-radius: 0px !important;
}

/* Production Process */
.process-timeline {
  position: relative;
  padding-left: 35px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 14px;
  width: 2px;
  height: 100%;
  background-color: var(--border-color);
}

.process-step {
  position: relative;
  margin-bottom: 35px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  position: absolute;
  top: 0;
  left: -35px;
  width: 28px;
  height: 28px;
  background-color: var(--bg-white);
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  z-index: 2;
  border-radius: 50% !important;
  transition: var(--transition-smooth);
}

.process-step:hover .process-number {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--bg-white);
}

.process-step-content {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 20px 24px;
  transition: var(--transition-smooth);
  border-radius: 4px !important;
}

.process-step-content:hover {
  border-color: var(--secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.process-step-content h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.process-step-content p {
  font-size: 13px;
  margin-bottom: 0;
}

/* Testimonials */
.review-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 30px;
  text-align: center;
  border-radius: 4px !important;
}

.review-avatar {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
  border-radius: 50% !important;
}

.review-quote {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.review-stars {
  color: #FFC107;
  font-size: 12px;
  margin-bottom: 10px;
}

.review-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 2px;
}

.review-role {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Gallery Masonry */
.gallery-filter-btn {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #555555;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: none;
  padding: 6px 18px;
  margin: 0 2px 4px;
  transition: color 0.22s ease, border-color 0.22s ease;
  letter-spacing: 0;
  cursor: pointer;
}

.gallery-filter-btn:hover {
  color: var(--text-primary);
}

.gallery-filter-btn.active {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.4;
  background-color: var(--bg-light);
  border-radius: 4px !important;
  border: 1px solid var(--border-color);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 10;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay .icon {
  font-size: 20px;
  color: var(--bg-white);
  margin-bottom: 6px;
}

.gallery-overlay h4 {
  color: var(--bg-white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* News Section */
.news-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: var(--transition-smooth);
  border-radius: 4px !important;
  overflow: hidden;
}

.news-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.news-img-wrap {
  aspect-ratio: 1.6;
  overflow: hidden;
  position: relative;
}

.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-info {
  padding: 20px;
}

.news-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.news-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.45;
}

.news-title a {
  color: var(--primary);
}

.news-title a:hover {
  color: var(--secondary);
}

.news-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.news-more-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
}

.news-more-btn:hover {
  color: var(--secondary);
}

/* Commitment Section */
.commitment-section {
  background-color: var(--bg-light);
}

.commitment-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 4px !important;
  padding: 24px 22px;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.commitment-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary);
  transition: width 0.35s ease;
}

.commitment-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 6px 24px rgba(14, 118, 188, 0.10);
  transform: translateY(-3px);
}

.commitment-card:hover::before {
  width: 100%;
}

.commitment-icon-wrap {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(14, 118, 188, 0.10) 0%, rgba(8, 76, 122, 0.08) 100%);
  border: 1.5px solid rgba(14, 118, 188, 0.20);
  border-radius: 4px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 18px;
  transition: var(--transition-smooth);
}

.commitment-icon-wrap i {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.commitment-card:hover .commitment-icon-wrap {
  background: linear-gradient(135deg, #0e76bc 0%, #084c7a 100%);
  border-color: #0e76bc;
  color: #ffffff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(14, 118, 188, 0.25);
}

.commitment-card:hover .commitment-icon-wrap i {
  transform: scale(1.18) rotate(8deg);
}

.commitment-info {
  flex: 1;
}

.commitment-info h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.commitment-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Call to Action (CTA) */
.cta-section {
  background: linear-gradient(135deg, #0e76bc 0%, #084c7a 100%);
  color: var(--bg-white);
}

.cta-section h2 {
  color: var(--bg-white) !important;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 14px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 28px;
}

.cta-section .btn-repsaigon-primary {
  background-color: var(--bg-white);
  border-color: var(--bg-white);
  color: #084c7a;
}

.cta-section .btn-repsaigon-primary:hover {
  background-color: #0e76bc;
  border-color: #0e76bc;
  color: var(--bg-white);
}

.cta-section .btn-repsaigon-secondary {
  color: var(--bg-white);
  border-color: var(--bg-white);
}

.cta-section .btn-repsaigon-secondary:hover {
  background-color: var(--bg-white);
  color: #084c7a;
}

/* Footer */
.footer {
  background-color: #000000;
  color: #e5e5e5;
  font-size: 13px;
  border-top: 1px solid #1a1a1a;
}

.footer h4 {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer p,
.footer .text-muted {
  color: #d4d4d4 !important;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #d4d4d4;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-social-icons a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border: 1px solid #333333;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  transition: var(--transition-smooth);
  background-color: #111111;
  border-radius: 4px !important;
}

.footer-social-icons a:hover {
  background-color: var(--secondary);
  color: var(--bg-white);
  border-color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  color: #a3a3a3;
  font-size: 12px;
}

/* AJAX Spinner */
.ajax-spinner {
  width: 28px;
  height: 28px;
  border: 2px solid var(--border-color);
  border-top: 2px solid var(--secondary);
  border-radius: 50% !important;
  animation: spin 0.8s linear infinite;
  margin: 25px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .nav-link-custom {
    padding: 10px 0 !important;
  }

  /* Always show buy and quick view buttons inside image at the bottom on mobile/tablet */
  .btn-add-to-cart,
  .product-img-wrap .btn-quick-view {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .btn-add-to-cart {
    background-color: rgba(17, 17, 17, 0.95);
    font-size: 10.5px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    height: 70vh;
    min-height: 420px;
  }

  .hero-title-main {
    font-size: clamp(1.6rem, 8vw, 2.5rem);
  }

  .hero-slide-content .col-lg-7 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-swiper-next,
  .hero-swiper-prev {
    display: none;
  }

  .promo-banner-section {
    padding: 15px 0;
  }
}

/* ========================================
   PRODUCT CAROUSELS SHARED SWIPER STYLES
   ======================================== */

/* Override Swiper default button size and color */
.collections-swiper .swiper-button-next,
.collections-swiper .swiper-button-prev,
.new-products-swiper .swiper-button-next,
.new-products-swiper .swiper-button-prev,
.promo-products-swiper .swiper-button-next,
.promo-products-swiper .swiper-button-prev {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  top: 40%;
  transform: translateY(-50%);
  transition: all 0.25s ease;
}

.collections-swiper .swiper-button-next:hover,
.collections-swiper .swiper-button-prev:hover,
.new-products-swiper .swiper-button-next:hover,
.new-products-swiper .swiper-button-prev:hover,
.promo-products-swiper .swiper-button-next:hover,
.promo-products-swiper .swiper-button-prev:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.collections-swiper .swiper-button-next::after,
.collections-swiper .swiper-button-prev::after,
.new-products-swiper .swiper-button-next::after,
.new-products-swiper .swiper-button-prev::after,
.promo-products-swiper .swiper-button-next::after,
.promo-products-swiper .swiper-button-prev::after {
  font-size: 15px;
  font-weight: 900;
  color: var(--text-primary);
}

.collections-swiper .swiper-button-next:hover::after,
.collections-swiper .swiper-button-prev:hover::after,
.new-products-swiper .swiper-button-next:hover::after,
.new-products-swiper .swiper-button-prev:hover::after,
.promo-products-swiper .swiper-button-next:hover::after,
.promo-products-swiper .swiper-button-prev:hover::after {
  color: #fff;
}

/* Category swiper */
.category-swiper {
  width: 100%;
  overflow: hidden;
}

.category-swiper .swiper-button-next,
.category-swiper .swiper-button-prev {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  top: 38%;
  transform: translateY(-50%);
  transition: all 0.25s ease;
}

.category-swiper .swiper-button-next:hover,
.category-swiper .swiper-button-prev:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.category-swiper .swiper-button-next::after,
.category-swiper .swiper-button-prev::after {
  font-size: 15px;
  font-weight: 900;
  color: var(--text-primary);
}

.category-swiper .swiper-button-next:hover::after,
.category-swiper .swiper-button-prev:hover::after {
  color: #fff;
}

/* Ensure swiper-slides in category have proper width */
.category-swiper .swiper-slide,
.new-products-swiper .swiper-slide {
  height: auto;
}

/* ========================================
   ABOUT SECTION - STATS ROW ENHANCEMENTS
   ======================================== */
.about-stats-fullrow .col-md-4 {
  position: relative;
}

.about-stats-fullrow .col-md-4+.col-md-4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: var(--border-color);
}

@media (max-width: 767.98px) {
  .about-stats-fullrow .col-md-4+.col-md-4::before {
    display: none;
  }
}

/* ========================================
   BANNER CTA BUTTON – KEEP VISIBLE
   ======================================== */
.middle-banner .content .btn,
.hero-slide-content .btn {
  display: inline-flex !important;
}

/* ========================================
   AJAX SPINNER
   ======================================== */
.ajax-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}

/* Floating Contact Buttons */
.floating-contact-wrap {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-btn i,
.floating-btn svg {
  z-index: 2;
  transition: transform 0.3s ease;
}

.floating-btn:hover i {
  transform: scale(1.1);
}

.floating-btn:hover svg {
  transform: translateY(1px) scale(1.1) !important;
}

/* Zalo Button */
.btn-zalo {
  background: linear-gradient(135deg, #0084FF 0%, #0068FF 100%);
}

/* Messenger Button */
.btn-messenger {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 50%, #9b26ff 100%);
}

/* TikTok Button */
.btn-tiktok {
  background: linear-gradient(135deg, #121212 0%, #010101 100%);
}

.btn-tiktok:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 242, 234, 0.6), 0 0 10px rgba(254, 44, 85, 0.6) !important;
}

/* Hotline Button */
.btn-hotline {
  background: linear-gradient(135deg, #ea1d24 0%, #c40a11 100%);
}

/* Back to Top Button */
.btn-back-to-top {
  background-color: #333333;
  width: 48px;
  height: 48px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.btn-back-to-top:hover {
  background-color: var(--secondary);
}

/* Text label tooltips that slide out */
.floating-btn .btn-label {
  position: absolute;
  right: 58px;
  background-color: #333333;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 4px !important;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.floating-btn:hover .btn-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Phone Ring Pulse Effect */
.btn-hotline .phone-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid #ea1d24;
  border-radius: 50%;
  animation: phoneRingPulse 1.5s infinite;
  opacity: 0;
  z-index: 1;
}

@keyframes phoneRingPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Responsive Floating Buttons to prevent overlap on mobile */
@media (max-width: 767.98px) {
  .floating-contact-wrap {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }

  .floating-btn {
    width: 40px;
    height: 40px;
  }

  .floating-btn svg {
    width: 22px !important;
    height: 22px !important;
  }

  .btn-hotline .phone-ring {
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
  }
}

/* ==========================================
   ABOUT PAGE & TIMELINE STYLES
   ========================================== */

.page-banner {
  background-position: center !important;
  background-size: cover !important;
  border-bottom: 3px solid var(--secondary);
  height: 240px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.page-banner h1 {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.page-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 500;
  transition: color 0.2s ease;
}

.page-banner .breadcrumb-item a:hover {
  color: #ffffff !important;
}

.page-banner .breadcrumb-item.active {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* Timeline Layout */
.timeline-container {
  margin: 40px auto;
  max-width: 900px;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 50px;
}

.timeline-item.left {
  left: 0;
  padding-right: 40px;
}

.timeline-item.right {
  left: 50%;
  padding-left: 40px;
}

/* Timeline Badges */
.timeline-badge {
  position: absolute;
  top: 15px;
  width: 56px;
  height: 56px;
  background-color: var(--secondary);
  border: 4px solid #ffffff;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-item.left .timeline-badge {
  right: -28px;
}

.timeline-item.right .timeline-badge {
  left: -28px;
}

.badge-year {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
}

/* Timeline Content */
.timeline-content {
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
  border-color: var(--secondary) !important;
}

/* Timeline responsive */
@media (max-width: 767.98px) {
  .timeline-line {
    left: 28px;
  }

  .timeline-item {
    width: 100%;
    margin-bottom: 40px;
  }

  .timeline-item.left {
    left: 0;
    padding-right: 0;
    padding-left: 60px;
  }

  .timeline-item.right {
    left: 0;
    padding-left: 60px;
  }

  .timeline-item.left .timeline-badge,
  .timeline-item.right .timeline-badge {
    left: 0;
    right: auto;
  }
}

/* Border utilities for stats row in inner pages */
.border-start-md {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
  .border-start-md {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}

/* Form focus styling for About Page form */
#aboutQuoteForm .form-control:focus,
#aboutQuoteForm .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.25rem rgba(14, 118, 188, 0.1);
}

/* 12. STOREFRONT CATALOG & DETAIL PAGE CSS STYLES */

/* Catalog Filters & Layout */
.filter-sidebar-wrapper {
  background-color: #fff;
  border-radius: 0px;
}

.filter-block {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.filter-block:last-child {
  border-bottom: 0;
}

.filter-title {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--dark);
}

/* Category Filter Chekboxes styling */
.filter-category-checkbox,
.filter-category-checkbox-m {
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.25);
  border-radius: 0px;
  cursor: pointer;
  accent-color: var(--secondary);
}

.filter-category-checkbox:checked,
.filter-category-checkbox-m:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

/* Size toggle buttons */
.size-toggle-btn {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.size-toggle-btn:hover {
  border-color: var(--dark);
  background-color: rgba(0, 0, 0, 0.02);
}

.size-toggle-btn.active,
.size-toggle-btn.active:hover {
  background-color: var(--dark) !important;
  color: #fff !important;
  border-color: var(--dark) !important;
}

/* Color palette buttons */
.color-palette-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0;
  position: relative;
  transition: all 0.2s ease;
  padding: 0;
  cursor: pointer;
}

.color-palette-btn.active {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--secondary);
}

.color-palette-btn:hover {
  transform: scale(1.1);
}

/* Price Radios */
.filter-price-radio,
.filter-price-radio-m {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--secondary);
}

/* Active Tags */
#active-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#active-tags-list .badge {
  font-weight: 600;
}

#active-tags-list .remove-filter-tag {
  transition: color 0.15s ease;
}

#active-tags-list .remove-filter-tag:hover {
  color: #dc3545 !important;
}

/* Loader Animation */
.ajax-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: ajaxSpinnerRotate 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes ajaxSpinnerRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Product Detail Gallery */
.main-image-wrap {
  aspect-ratio: 1 / 1;
  background-color: #fcfcfc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image-wrap img {
  max-height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.main-image-wrap:hover img {
  transform: scale(1.05);
}

.thumb-card {
  aspect-ratio: 1 / 1;
  background-color: #fff;
  transition: all 0.2s ease;
  overflow: hidden;
}

.thumb-card.active {
  border-color: var(--secondary) !important;
  box-shadow: 0 0 0 1.5px var(--secondary);
}

.thumb-card:hover {
  opacity: 0.85;
}

/* Prices Box details */
.detail-price-box {
  border-radius: 0px;
  border-left: 4px solid var(--secondary) !important;
}

/* Detail sizes custom toggles */
.size-btn {
  font-size: 13px;
  font-weight: 700;
  min-width: 46px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.size-btn.active {
  background-color: var(--dark) !important;
  color: #fff !important;
  border-color: var(--dark) !important;
}

.table-secondary tr th {
  background-color: var(--secondary) !important;
  color: white;
}

/* Reviews Styling & Optimization */
.repsaigon-review-summary {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 4px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.repsaigon-rating-score-large {
  font-size: 54px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.repsaigon-rating-star-interactive i {
  color: #ffb300;
  transition: transform 0.2s ease, color 0.2s ease;
}

.repsaigon-rating-star-interactive i:hover {
  transform: scale(1.2);
}

.repsaigon-progress-track {
  height: 6px;
  background-color: #f1f3f5;
  border-radius: 3px !important;
  overflow: hidden;
}

.repsaigon-progress-fill {
  height: 100%;
  background-color: var(--secondary) !important;
  transition: width 0.6s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.repsaigon-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 4px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.repsaigon-form-input {
  border: 1px solid var(--border-color) !important;
  background-color: #fafafa;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 4px !important;
  transition: all 0.25s ease;
}

.repsaigon-form-input:focus {
  background-color: var(--bg-white) !important;
  border-color: var(--secondary) !important;
  box-shadow: 0 0 0 3px rgba(14, 118, 188, 0.1) !important;
  outline: none;
}

.repsaigon-review-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 4px !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.repsaigon-review-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-color: rgba(14, 118, 188, 0.2);
}

.repsaigon-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.repsaigon-badge-verified {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(46, 204, 113, 0.12);
  color: #27ae60;
  padding: 3px 8px;
  border-radius: 2px !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.star-rating-selector i {
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.star-rating-selector i:hover {
  transform: scale(1.25);
  color: #ff9800 !important;
}

/* Empty state styling */
#catalog-empty-state {
  border: 1.5px dashed rgba(0, 0, 0, 0.15);
  background-color: #fafafa;
}

/* Keyframes bounce for badge count animation */
.animate-bounce {
  animation: badgeBounce 0.5s ease 2;
}

@keyframes badgeBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Pagination custom styling */
.pagination-custom .page-item .page-link {
  color: var(--dark);
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-weight: 700;
  margin: 0 3px;
  padding: 8px 16px;
  border-radius: 0px !important;
  transition: all 0.2s ease;
}

.pagination-custom .page-item.active .page-link {
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  color: #fff !important;
}

.pagination-custom .page-item .page-link:hover {
  background-color: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.pagination-custom .page-item.disabled .page-link {
  opacity: 0.5;
  background-color: transparent;
  color: var(--text-muted);
}


/* ========================================
   Language Switcher (Top Bar)
   ======================================== */
.lang-switcher {
  position: relative;
}

.lang-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lang-toggle-btn:hover,
.lang-toggle-btn[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.45);
}

.lang-flag {
  font-size: 14px;
  line-height: 1;
}

.lang-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.lang-chevron {
  font-size: 8px;
  transition: transform 0.25s ease;
}

.lang-toggle-btn[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  min-width: 160px;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid #e8eaed;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  background: #fff;
  margin-top: 6px;
  z-index: 2000 !important;
  position: absolute !important;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 6px;
  color: #1a1a2e;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease;
  position: relative;
}

.lang-option:hover {
  background: #f4f6f8;
  color: var(--secondary);
}

.lang-option.active {
  background: #eef2ff;
  color: var(--secondary);
}

.lang-check {
  margin-left: auto;
  font-size: 10px;
  color: var(--secondary);
  opacity: 0;
  transition: opacity 0.15s;
}

.lang-option.active .lang-check {
  opacity: 1;
}

a.lang-option span {
  color: black;
}

/* ========================================
   Search Overlay
   ======================================== */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  pointer-events: none;
}

.search-overlay.active {
  pointer-events: all;
}

/* Dark blurred backdrop */
.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.search-overlay.active .search-overlay-backdrop {
  opacity: 1;
}

/* White panel that slides in from the top */
.search-overlay-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-105%);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  padding: 28px 0 22px;
}

.search-overlay.active .search-overlay-panel {
  transform: translateY(0);
  opacity: 1;
}

.search-overlay-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* Input row */
.search-input-group {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid var(--secondary);
  border-radius: 10px;
  padding: 12px 18px;
  background: #f7f8fc;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input-group:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(30, 65, 168, 0.1);
  background: #fff;
}

.search-icon-prefix {
  font-size: 18px;
  color: var(--secondary);
  flex-shrink: 0;
}

.search-overlay-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 17px;
  font-weight: 500;
  color: #1a1a2e;
  outline: none;
  padding: 0;
  font-family: var(--font-body);
}

.search-overlay-input::placeholder {
  color: #aab0c0;
  font-weight: 400;
}

.search-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s;
}

.search-close-btn:hover {
  background: #f0f0f5;
  color: #333;
}

/* Shortcut tags */
.search-shortcuts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.search-shortcut-label {
  font-size: 12px;
  color: #888;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.search-shortcut-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary);
  background: #eef2ff;
  border: 1px solid #dce4ff;
  border-radius: 20px;
  padding: 4px 12px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.search-shortcut-tag:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}



/* Cart Sidebar Offcanvas Custom Styling */
#cartSidebarOffcanvas {
  width: 380px;
  max-width: 100%;
  border-left: none;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.cart-items-wrapper {
  scrollbar-width: thin;
}

.cart-sidebar-item {
  transition: all 0.3s ease;
}

.qv-qty-btn {
  width: 26px;
  height: 26px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
  transition: all 0.2s ease;
}

.qv-qty-btn:hover {
  background: #eee;
}

/* ========================================
   NEWS LIST PAGE STYLING (tin-tuc.html)
   ======================================== */

.btn-news-filter {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #4a5568;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.btn-news-filter:hover {
  background: #f8fafc;
  color: var(--dark);
  border-color: #cbd5e1;
}

.btn-news-filter.active {
  background: var(--secondary) !important;
  color: #fff !important;
  border-color: var(--secondary) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.search-news-group {
  border-radius: 4px;
  overflow: hidden;
}

.search-news-group .input-group-text {
  border-color: #e2e8f0;
  color: #a0aec0;
}

.search-news-group .form-control {
  border-color: #e2e8f0;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark);
}

.search-news-group .form-control:focus {
  border-color: var(--dark);
}

.news-card {
  border-radius: 4px;
  overflow: hidden;
  border-color: #f1f5f9 !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07) !important;
}

.news-img-wrap {
  aspect-ratio: 16/10;
  background-color: #f8fafc;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-img {
  transform: scale(1.06);
}

.news-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 6px 12px;
  border-radius: 3px;
  z-index: 3;
}

.news-content {
  background: #fff;
}

.news-meta {
  letter-spacing: 0.2px;
}

.news-meta i {
  color: #94a3b8;
}

.news-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  font-size: 17px;
}

.news-title a:hover {
  color: var(--secondary) !important;
}

.news-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  color: #64748b !important;
}

.btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.btn-readmore i {
  transition: transform 0.2s ease;
}

.btn-readmore:hover {
  color: var(--secondary) !important;
}

.btn-readmore:hover i {
  transform: translateX(4px);
}

/* Stagger transition animations for filter reveal */
.news-card-item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.news-card-item.fade-out-custom {
  opacity: 0;
  transform: scale(0.95) translateY(10px);
}

/* ========================================
   NEWS DETAIL PAGE STYLING
   ======================================== */
.news-detail-badge {
  background: var(--secondary) !important;
  color: #fff !important;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
}

.article-meta i {
  color: #94a3b8;
}

.article-featured-image {
  max-height: 480px;
  width: 100%;
}

.article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  font-size: 15px;
  line-height: 1.8;
  color: #334155 !important;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body h2,
.article-body h3 {
  color: var(--dark) !important;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-blockquote {
  border-left: 4px solid var(--secondary) !important;
  background-color: #f8fafc !important;
  padding: 1.5rem;
  margin: 2rem 0;
}

.article-share .btn {
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.article-share .btn:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.comment-avatar {
  background-color: #f1f5f9 !important;
}

.sidebar-categories li a:hover {
  color: var(--secondary) !important;
}

.sidebar-categories li a:hover .badge {
  background: var(--secondary) !important;
  color: #fff !important;
  border-color: var(--secondary) !important;
}

.related-article-item .related-img-wrap {
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.related-article-item .related-img-wrap img {
  transition: transform 0.35s ease;
}

.related-article-item:hover .related-img-wrap img {
  transform: scale(1.08);
}

.related-article-item:hover .related-title a {
  color: var(--secondary) !important;
}

.widget-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary);
}

/* Pricing Page Custom Styles */
.repsaigon-pricing-table th {
  background-color: var(--secondary) !important;
  border-color: #d0caca !important;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 13px;
}

.repsaigon-pricing-table td {
  border-color: var(--border-color) !important;
  font-size: 14px;
}

.accordion-custom .accordion-item {
  border-radius: 4px;
  overflow: hidden;
  border-color: var(--border-color) !important;
}

.accordion-custom .accordion-button {
  background-color: #ffffff;
  color: var(--primary);
  font-family: var(--font-heading);
  box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background-color: #f8fafc;
  color: var(--secondary);
}

.accordion-custom .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a1a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-custom .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230e76bc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}