:root {
  --bs-primary: #ff5e3a;
  --bs-secondary: #a9a9a9;
  --bs-red: #f61e1e;
  --animate-delay: 2s;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  transition: left 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
}

.sidebar.show {
  left: 0;
}

@media (min-width: 1060px) {
  .sidebar {
    display: none;
  }
}

.menu-item {
  margin-bottom: 0.5rem;
}

.menu-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #181C32;
  text-decoration: none;
  border-radius: 0.475rem;
}

.menu-link:hover {
  background-color: #F4F6FA;
}

.menu-link.active {
  background-color: #F4F6FA;
  color: var(--bs-primary);
}

.menu-sub-accordion {
  margin-left: 1.75rem;
}

.navbar-wrapper {
  z-index: 100;
}

.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
  top: 45px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--bs-primary);
}

.form-select {
  border-radius: 20px;
  border: 1px solid #e4e6ef;
  transition: border-color 0.3s ease;
}

.form-select:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 158, 247, 0.25);
}

.btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.btn-icon:hover {
  background-color: #f5f8fa;
  transform: translateY(-2px);
}

.navbar .dropdown-item:hover {
  color: var(--bs-primary);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  max-height: 30px;
  margin-right: 10px;
}

.navbar-nav .nav-link {
  color: black;
  font-weight: bold;
  margin-right: 10px;
}

.navbar-nav .nav-link:hover {
  color: var(--bs-primary);
}

.navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.hero-section {
  overflow: hidden;
  height: 550px;
}

.hero-text {
  z-index: 10;
  top: 65%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .hero-section {
    height: 300px;
  }

  .hero-text {
    top: 60%;
  }

  .flash-sale-img {
    object-fit: cover;
  }

  .card-body p {
    font-size: 0.9rem;
  }

  .hot-items-slider .slider-item {
    padding: 10px;
  }

  .hero-section-img-round {
    width: 80px;
    height: 80px;
  }
}

.hot-items-img {
  height: 220px;
  overflow: hidden;
}

.flash-sale-img {
  height: 400px;
  object-fit: cover;
}

.flash-sale-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.hot-items-slider {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hot-items-slider::-webkit-scrollbar {
  display: none;
}

.slider-item {
  display: inline-block;
  width: 250px;
  /* margin-right: 10px; */
}

@media (max-width: 767px) {
  .flash-sale-img {
    height: 500px;
  }

  /* .new-arrival-img {
    height: 50vh;
  } */
}

.new-arrival-section {
  position: relative;
  overflow: hidden;
}

.new-arrival-img {
  height: 560px;
  object-fit: cover;
}

.new-arrival-text {
  position: absolute;
  z-index: 10;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 15px;
}

.new-arrival-text p {
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stats-container {
  position: relative;
  margin-top: -75px;
  z-index: 2;
}

.stats-box {
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 2rem 1rem;
}

.stat-item {
  text-align: center;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.stat-text {
  font-size: 1rem;
  color: #6c757d;
}

@media (max-width: 767px) {
  .new-arrival-img {
    height: 370px;
  }

  .new-arrival-text p {
    font-size: 1.5rem !important;
  }

  .stats-container {
    margin-top: -50px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-text {
    font-size: 0.875rem;
  }
}

.web-margin {
  margin-inline: 90px;
}

.footer-links li {
  margin-bottom: 5px;
  color: lightgrey !important;
}

.footer-links li :hover {
  color: var(--bs-primary) !important;
}

.footer-links a {
  color: lightgrey !important;
}

.footer-links a:hover {
  color: var(--bs-primary) !important;
}

.footer-links li a {
  color: lightgrey !important;
}

.footer-links li a:hover {
  color: var(--bs-primary) !important;
}

footer .footer-container {
  padding-block: 50px;
}

.testimonial-card .customer-info {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.testimonial-card .customer-info img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.slider-item {
  padding-inline: 20px;
}

.img-dark {
  filter: brightness(40%);
}

.about-us section h2 {
  text-align: center;
}

.card .card-header {
  min-height: auto;
  text-align: center;
  padding-bottom: 10px;
  display: block;
}

.about-us .card p {
  padding: 7px 5px;
}

.about-us .accordion-body {
  font-weight: 500;
}

.form-select {
  min-height: 44px;
}

.pointer :hover {
  cursor: pointer;
}

.two-line-title {
  min-height: 2.4em;
  line-height: 1.2em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.nkoldlogo-transition {
  transition: top 1s ease, bottom 1s ease;
}

@media (max-width: 767.98px) {
  .text-color-responsive {
    color: #000 !important;
  }
}

@media (min-width: 768px) {
  .text-color-responsive {
    color: #fff !important;
  }

  #imagePreviewSection {
    order: 2;
  }

  #imagePreview {
    display: block;
    margin-top: 20px;
  }
}

.nkoldlogo {
  position: fixed;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}

.nkoldlogo img {
  transition: all 0.3s ease-in-out;
}

.nkoldlogo.initial {
  top: 0;
  right: 30px;
}

.nkoldlogo.initial img {
  width: 170px;
  height: 100px;
}

.nkoldlogo.scrolled {
  top: auto;
  bottom: 120px;
  right: 39px;
}

.nkoldlogo.scrolled img {
  width: 66px;
  height: 66px;
}


@media (max-width: 1400px) {
  .nkoldlogo.initial {
    top: 80px;
    right: 20px;
  }
}

@media (max-width: 768px) {
  .nkoldlogo.initial {
    top: 40px;
    right: 20px;
  }

  .nkoldlogo.initial img {
    width: 110px;
    height: 70px;
  }

  .nkoldlogo.scrolled {
    bottom: 80px;
    right: 17px;
  }

  .nkoldlogo.scrolled img {
    width: 50px;
    height: 50px;
  }
}

.testimonial-slider .slick-list .slick-track {
  display: flex;
  align-items: center;
}

.happy-customer-card-body {
  height: 185px;
  display: flex;
  align-items: center;
}

.remove-slide {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: red;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.swiper {
  width: 100%;
  height: calc(100vh * 0.75);
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  width: 90%;
}

.mySwiper {
  width: 10%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #0d6efd !important;
}

.mySwiper2 .swiper-slide img {
  object-fit: contain;
}

.mySwiper .swiper-slide img {
  transition: opacity 0.3s ease;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-size: 30px;
  --swiper-navigation-color: var(--bs-primary);
}

.flash-section {
  background: #fff;
  padding: 40px 0;
}

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

.section-title span {
  background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 10px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-img-wrapper {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--bs-primary);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
}

.timer-wrapper {
  background: rgba(220, 53, 69, 0.1);
  padding: 8px 15px;
  border-radius: 25px;
  color: var(--bs-primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-next.slick-arrow i {
  position: absolute;
  left: 7px;
}


.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

.product-list-card {
  transition: transform 0.3s ease;
}

.product-list-card:hover {
  transform: scale(1.05);
  z-index: 10;
}

.product-image {
  transition: opacity 0.4s ease;
}

.ribbon .ribbon-label {
  z-index: 0;
}