@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Quicksand",  sans-serif;
  --nav-font: "Ubuntu",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #3e0925; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #8c0d4f; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the same color scheme. */

.light-background {
  --background-color: #f8f4f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #232931;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #397deb;
  --surface-color: #38424f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
}

.header .top-bar {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  font-size: 14px;
}

.header .top-bar .top-bar-item {
  color: var(--default-color);
}

.header .top-bar .top-bar-item a {
  color: var(--accent-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.header .top-bar .top-bar-item a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.header .top-bar .top-bar-item .selected-icon {
  color: var(--accent-color);
  opacity: 1;
  width: 16px;
}

.header .top-bar .dropdown-menu {
  min-width: 150px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header .top-bar .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 14px;
  color: var(--default-color);
  display: flex;
  align-items: center;
}

.header .top-bar .dropdown-menu .dropdown-item .selected-icon {
  opacity: 1;
  color: var(--accent-color);
  width: 16px;
}

.header .top-bar .dropdown-menu .dropdown-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.header .main-header {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .logo {
  line-height: 1;
}

.header .main-header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .main-header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .main-header .logo h1 span {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .header .main-header .logo h1 {
    font-size: 24px;
  }
}

.header .main-header .desktop-search-form {
  min-width: 440px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .header .main-header .desktop-search-form {
    display: none;
  }
}

.header .main-header .header-actions {
  gap: 16px;
}

.header .main-header .header-actions .header-action-btn {
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--default-color);
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.header .main-header .header-actions .header-action-btn i {
  font-size: 24px;
  margin-right: 6px;
}

.header .main-header .header-actions .header-action-btn i.bi-person {
  font-size: 26px;
}

.header .main-header .header-actions .header-action-btn .action-text {
  font-weight: 500;
  font-size: 14px;
}

.header .main-header .header-actions .header-action-btn:hover {
  color: var(--accent-color);
}

.header .main-header .header-actions .header-action-btn .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .main-header .account-dropdown .dropdown-menu {
  background-color: var(--surface-color);
  min-width: 280px;
  padding: 0;
  border-radius: 6px;
  margin-top: 0.75rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-header {
  padding: 1.25rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-header h6 {
  margin: 0 0 0.25rem;
  color: var(--heading-color);
  font-size: 16px;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-header p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body {
  padding: 1rem 0;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item {
  padding: 0.5rem 1.25rem;
  font-size: 14px;
  color: var(--default-color);
  transition: all 0.2s ease;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item i {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.2s ease;
  font-size: 16px;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-body .dropdown-item:hover i {
  color: var(--accent-color);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer {
  padding: 1.25rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn {
  font-size: 14px;
  padding: 0.5rem 1rem;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.header .main-header .account-dropdown .dropdown-menu .dropdown-footer .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.header .main-header .cart-dropdown .cart-dropdown-menu {
  background-color: var(--surface-color);
  min-width: 320px;
  padding: 0;
  border-radius: 6px;
  margin-top: 0.75rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  right: 0;
  left: auto;
}

@media (max-width: 576px) {
  .header .main-header .cart-dropdown .cart-dropdown-menu {
    min-width: 280px;
  }
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-header {
  padding: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-header h6 {
  margin: 0;
  color: var(--heading-color);
  font-size: 16px;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body {
  max-height: 320px;
  overflow-y: auto;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-items {
  padding: 0.5rem 0;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item:last-child {
  border-bottom: none;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-image {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-content {
  flex: 1;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-content .cart-item-title {
  font-size: 14px;
  margin: 0 0 4px;
  color: var(--heading-color);
  font-weight: 500;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-content .cart-item-meta {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-remove {
  background: none;
  border: none;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  padding: 0;
  margin-left: 8px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-body .cart-item .cart-item-remove:hover {
  color: #dc3545;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer {
  padding: 1rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--heading-color);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-total .cart-total-price {
  font-size: 16px;
  color: var(--accent-color);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions {
  display: flex;
  gap: 8px;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions .btn {
  flex: 1;
  font-size: 14px;
  padding: 0.5rem 1rem;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions .btn-outline-primary {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.header .main-header .cart-dropdown .cart-dropdown-menu .dropdown-footer .cart-actions .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.header .search-form {
  margin: 0;
}

.header .search-form .input-group {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.header .search-form .input-group:focus-within {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.header .search-form .input-group .form-control {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-right: none;
  padding: 14px 20px;
  font-size: 15px;
  background-color: transparent;
  color: var(--default-color);
  border-radius: 8px 0 0 8px;
}

.header .search-form .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 15px;
}

.header .search-form .input-group .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.header .search-form .input-group .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 25px;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
  border-radius: 0 8px 8px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.header .search-form .input-group .search-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transition: width 0.3s ease;
  z-index: -1;
}

.header .search-form .input-group .search-btn:hover::before {
  width: 100%;
}

.header .search-form .input-group .search-btn i {
  font-size: 18px;
  position: relative;
}

.header .header-nav {
  background-color: var(--background-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 10px 0;
}

.header .announcement-bar {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

.header .announcement-bar .announcement-slider {
  height: 24px;
  overflow: hidden;
}

.header .announcement-bar .announcement-slider .swiper-wrapper {
  height: auto !important;
}

.header .announcement-bar .announcement-slider .swiper-slide {
  text-align: center;
  height: 24px;
  line-height: 24px;
}

.header #mobileSearch {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  z-index: 1000;
}

.header #mobileSearch .search-form {
  padding: 10px 0;
}

@media (max-width: 991.98px) {
  .header .main-header .header-actions {
    gap: 0.5rem;
  }

  .header .main-header .header-actions .header-action-btn {
    padding: 0.25rem;
  }

  .header .main-header .header-actions .header-action-btn i {
    font-size: 20px;
    margin-right: 0;
  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-main {
  padding: 70px 0 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-main .footer-widget {
  margin-bottom: 30px;
}

.footer .footer-main .footer-widget .logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer .footer-main .footer-widget .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-main .footer-widget p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .footer-main .footer-widget h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-main .footer-widget h4:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-main .footer-widget h5 {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer .footer-main .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer .footer-main .footer-contact .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
  margin-top: 3px;
}

.footer .footer-main .footer-contact .contact-item span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

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

.footer .footer-main .footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.footer .footer-main .footer-links li:before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer .footer-main .footer-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.3s ease;
}

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

.footer .footer-main .app-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer .footer-main .app-buttons .app-btn {
  display: flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer .footer-main .app-buttons .app-btn i {
  font-size: 20px;
  margin-right: 8px;
}

.footer .footer-main .app-buttons .app-btn span {
  font-size: 13px;
  font-weight: 500;
}

.footer .footer-main .app-buttons .app-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer .footer-main .social-links {
  margin-top: 25px;
}

.footer .footer-main .social-links h5 {
  margin-bottom: 15px;
}

.footer .footer-main .social-links .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer .footer-main .social-links .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer .footer-main .social-links .social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer .footer-bottom {
  padding: 25px 0;
}

.footer .footer-bottom .payment-methods .payment-icons {
  display: flex;
  gap: 12px;
}

.footer .footer-bottom .payment-methods .payment-icons i {
  font-size: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}

.footer .footer-bottom .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
}

.footer .footer-bottom .copyright p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .footer-bottom .copyright p strong {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer .footer-bottom .credits {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
}

.footer .footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer .footer-bottom .legal-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer .footer-bottom .legal-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 991.98px) {
  .footer .footer-main {
    padding: 60px 0 30px;
  }

  .footer .footer-widget h4 {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .footer .footer-main {
    padding: 50px 0 20px;
  }

  .footer .footer-main .footer-widget {
    text-align: center;
  }

  .footer .footer-main .footer-widget h4:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .footer-main .footer-contact .contact-item {
    justify-content: center;
  }

  .footer .footer-main .footer-links li {
    padding-left: 0;
  }

  .footer .footer-main .footer-links li:before {
    display: none;
  }

  .footer .footer-main .app-buttons {
    justify-content: center;
  }

  .footer .footer-main .social-icons {
    justify-content: center;
  }

  .footer .footer-bottom .copyright,
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero .hero-slider {
  position: relative;
}

.hero .hero-slider .swiper-wrapper {
  height: auto !important;
}

.hero .hero-slider .swiper-slide {
  padding: 2rem 0;
}

.hero .hero-slider .swiper-slide .row {
  min-height: 500px;
}

.hero .hero-slider .swiper-pagination {
  bottom: 0;
}

.hero .hero-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.hero .hero-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
  opacity: 1;
}

.hero .hero-slider .swiper-button-prev,
.hero .hero-slider .swiper-button-next {
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  top: auto;
  bottom: 10px;
}

.hero .hero-slider .swiper-button-prev::after,
.hero .hero-slider .swiper-button-next::after {
  font-size: 1.25rem;
  color: var(--accent-color);
}

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

.hero .hero-slider .swiper-button-prev:hover::after,
.hero .hero-slider .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

.hero .hero-slider .swiper-button-prev {
  left: calc(50% - 60px);
}

.hero .hero-slider .swiper-button-next {
  right: calc(50% - 60px);
}

.hero .slide-content .slide-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero .slide-content h1 {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .slide-content h1 span {
  color: var(--accent-color);
  position: relative;
}

.hero .slide-content h1 span::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  z-index: -1;
}

.hero .slide-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .slide-content .slide-cta {
  margin-bottom: 2rem;
}

.hero .slide-content .slide-cta .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.hero .slide-content .slide-cta .btn.btn-shop {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.hero .slide-content .slide-cta .btn.btn-shop i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.hero .slide-content .slide-cta .btn.btn-shop:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.hero .slide-content .slide-cta .btn.btn-shop:hover i {
  transform: translateX(5px);
}

.hero .slide-new .product-showcase {
  padding: 1rem;
}

.hero .slide-new .product-showcase .product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.hero .slide-new .product-showcase .product-grid .product-item {
  background-color: var(--surface-color);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero .slide-new .product-showcase .product-grid .product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.hero .slide-new .product-showcase .product-grid .product-item .product-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hero .slide-new .product-showcase .product-grid .product-item .product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hero .slide-new .product-showcase .product-grid .product-item .product-info {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .slide-new .product-showcase .product-grid .product-item .product-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero .slide-new .product-showcase .product-grid .product-item .product-info .price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-color);
}

.hero .slide-sale .countdown-container {
  margin-top: 1.5rem;
}

.hero .slide-sale .countdown-container .countdown-label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.hero .slide-sale .countdown-container .countdown {
  display: flex;
  gap: 1rem;
}

.hero .slide-sale .countdown-container .countdown>div {
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  min-width: 70px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hero .slide-sale .countdown-container .countdown>div h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--accent-color);
}

.hero .slide-sale .countdown-container .countdown>div h4 {
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .slide-sale .sale-showcase {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero .slide-sale .sale-showcase .main-product {
  position: relative;
  max-width: 100%;
}

.hero .slide-sale .sale-showcase .main-product img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.hero .slide-sale .sale-showcase .main-product .discount-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.hero .slide-sale .sale-showcase .main-product .discount-badge .percent {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.hero .slide-sale .sale-showcase .main-product .discount-badge .text {
  font-size: 1rem;
  font-weight: 600;
}

.hero .slide-sale .sale-showcase .floating-tag {
  position: absolute;
  bottom: 2rem;
  left: 0;
  background-color: var(--surface-color);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero .slide-sale .sale-showcase .floating-tag .tag-content .tag-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero .slide-sale .sale-showcase .floating-tag .tag-content .tag-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero .slide-sale .sale-showcase .floating-tag .tag-content .tag-price .old-price {
  font-size: 1rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.hero .slide-sale .sale-showcase .floating-tag .tag-content .tag-price .new-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.hero .slide-featured .feature-list {
  margin-top: 1.5rem;
}

.hero .slide-featured .feature-list .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero .slide-featured .feature-list .feature-item i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.hero .slide-featured .feature-list .feature-item span {
  font-size: 1rem;
  font-weight: 500;
}

.hero .slide-featured .featured-showcase {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero .slide-featured .featured-showcase .featured-image {
  position: relative;
  max-width: 100%;
}

.hero .slide-featured .featured-showcase .featured-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.hero .slide-featured .featured-showcase .featured-image .featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.hero .slide-featured .featured-showcase .featured-image .featured-badge i {
  font-size: 1rem;
}

.hero .slide-featured .featured-showcase .floating-review {
  position: absolute;
  bottom: 2rem;
  right: 0;
  background-color: var(--surface-color);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 250px;
}

.hero .slide-featured .featured-showcase .floating-review .review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.hero .slide-featured .featured-showcase .floating-review .review-stars i {
  color: #FFD700;
  font-size: 1rem;
}

.hero .slide-featured .featured-showcase .floating-review .review-text {
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.hero .slide-featured .featured-showcase .floating-review .review-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 991.98px) {
  .hero {
    padding: 60px 0;
  }

  .hero .hero-slider .swiper-slide .row {
    min-height: auto;
  }

  .hero .hero-slider .swiper-wrapper {
    height: auto !important;
  }

  .hero .slide-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .slide-content h1 {
    font-size: 2.5rem;
  }

  .hero .slide-content .slide-cta {
    justify-content: center;
  }

  .hero .slide-content .feature-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero .slide-sale .countdown-container .countdown {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 40px 0;
  }

  .hero .hero-slider .swiper-button-prev,
  .hero .hero-slider .swiper-button-next {
    width: 36px;
    height: 36px;
  }

  .hero .hero-slider .swiper-button-prev::after,
  .hero .hero-slider .swiper-button-next::after {
    font-size: 1rem;
  }

  .hero .hero-slider .swiper-button-prev {
    left: calc(50% - 50px);
  }

  .hero .hero-slider .swiper-button-next {
    right: calc(50% - 50px);
  }

  .hero .hero-slider .swiper-slide {
    height: auto;
  }

  .hero .hero-slider .swiper-slide .row {
    min-height: 0;
  }

  .hero .slide-content h1 {
    font-size: 2rem;
  }

  .hero .slide-content p {
    font-size: 1rem;
  }

  .hero .slide-new .product-showcase .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .hero .slide-new .product-showcase .product-grid .product-item .product-image {
    height: 140px;
    padding: 0.5rem;
  }

  .hero .slide-new .product-showcase .product-grid .product-item .product-info {
    padding: 0.75rem;
  }

  .hero .slide-new .product-showcase .product-grid .product-item .product-info h4 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }

  .hero .slide-new .product-showcase .product-grid .product-item .product-info .price {
    font-size: 1rem;
  }

  .hero .slide-sale .countdown-container {
    margin-top: 1rem;
  }

  .hero .slide-sale .countdown-container .countdown-label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  .hero .slide-sale .countdown-container .countdown {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .hero .slide-sale .countdown-container .countdown>div {
    min-width: 55px;
    padding: 0.5rem;
  }

  .hero .slide-sale .countdown-container .countdown>div h3 {
    font-size: 1.25rem;
    margin-bottom: 0.125rem;
  }

  .hero .slide-sale .countdown-container .countdown>div h4 {
    font-size: 0.7rem;
  }

  .hero .slide-sale .sale-showcase .main-product .discount-badge {
    width: 4rem;
    height: 4rem;
  }

  .hero .slide-sale .sale-showcase .main-product .discount-badge .percent {
    font-size: 1.5rem;
  }

  .hero .slide-sale .sale-showcase .main-product .discount-badge .text {
    font-size: 0.875rem;
  }

  .hero .slide-sale .sale-showcase .floating-tag {
    bottom: 1rem;
    left: 1rem;
    padding: 0.75rem;
  }

  .hero .slide-featured .featured-showcase .featured-image .featured-badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  .hero .slide-featured .featured-showcase .floating-review {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem;
    max-width: 200px;
  }
}



/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}



/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.error-404 .error-content {
  padding: 2rem;
}

.error-404 .error-badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
}

.error-404 .error-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.2;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 500px;
  margin-bottom: 2rem;
}

.error-404 .error-actions .btn {
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.error-404 .error-actions .btn.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.error-404 .error-actions .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn.btn-solid {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn.btn-solid:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.error-404 .error-illustration {
  padding: 2rem;
  position: relative;
}

.error-404 .error-illustration .illustration-container {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .error-illustration .planet {
  position: absolute;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
  animation: float 6s infinite ease-in-out;
  z-index: 1;
}

.error-404 .error-illustration .astronaut {
  position: absolute;
  font-size: 4rem;
  color: var(--heading-color);
  animation: float 4s infinite ease-in-out;
  animation-delay: 1s;
  z-index: 2;
  transform: translateX(50px);
}

.error-404 .error-illustration .stars {
  position: absolute;
  width: 100%;
  height: 100%;
}

.error-404 .error-illustration .stars i {
  position: absolute;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
  animation: twinkle infinite ease-in-out;
}

.error-404 .error-illustration .stars i.star-1 {
  top: 20%;
  left: 20%;
  font-size: 1rem;
  animation-duration: 3s;
}

.error-404 .error-illustration .stars i.star-2 {
  top: 30%;
  right: 25%;
  font-size: 0.8rem;
  animation-duration: 4s;
}

.error-404 .error-illustration .stars i.star-3 {
  bottom: 40%;
  left: 30%;
  font-size: 1.2rem;
  animation-duration: 5s;
}

.error-404 .error-illustration .stars i.star-4 {
  top: 50%;
  right: 40%;
  font-size: 0.9rem;
  animation-duration: 3.5s;
}

.error-404 .error-illustration .stars i.star-5 {
  bottom: 30%;
  right: 30%;
  font-size: 1.1rem;
  animation-duration: 4.5s;
}

.error-404 .support-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.5rem;
}

.error-404 .support-text .support-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.error-404 .support-text .support-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 991.98px) {
  .error-404 .error-content {
    text-align: center !important;
    padding-bottom: 0;
  }

  .error-404 .error-text {
    margin: 0 auto 2rem;
  }

  .error-404 .error-illustration {
    padding-top: 3rem;
  }

  .error-404 .error-illustration .illustration-container {
    height: 300px;
  }

  .error-404 .error-illustration .planet {
    font-size: 6rem;
  }

  .error-404 .error-illustration .astronaut {
    font-size: 3rem;
  }
}

@media (max-width: 575.98px) {
  .error-404 .error-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .error-404 .error-actions .btn {
    width: 100%;
  }

  .error-404 .error-actions .ms-3 {
    margin-left: 0 !important;
  }
}

@keyframes float {

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

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

@keyframes twinkle {

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

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

