@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: "Playfair Display",  sans-serif;
  --nav-font: "Poppins",  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: #0c0b09; /* Background color for the entire website, including individual sections */
  --default-color: rgba(255, 255, 255, 0.7); /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #cda45e; /* 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: #29261f; /* 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: #0c0b09; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #cda45e; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #29261f; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #29261f; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #cda45e; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

.light-background {
  --background-color: #29261f;
  --surface-color: #464135;
}

.dark-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1a1a1a;
  --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);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(12, 11, 9, 0.61);
  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;
}

.header .top-bar .top-bar-item a:hover {
  text-decoration: underline;
}

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

.header .top-bar .announcement-slider {
  color: var(--accent-color);
  font-weight: 500;
  height: 24px;
  overflow: hidden;
}

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

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

.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 {
 width: 140px;
 margin: -30px;
}

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

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

.header .main-header .desktop-search-form {
  min-width: 400px;
}

@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;
}

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

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

.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 .search-form {
  margin: 0;
}

.header .search-form .input-group {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50px;
  overflow: hidden;
  overflow: visible;
  background-color: var(--surface-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header .search-form .input-group:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.header .search-form .input-group .form-control {
  border: none;
  padding: 12px 15px;
  font-size: 14px;
  background-color: transparent;
  color: var(--default-color);
}

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

.header .search-form .input-group .form-control:focus {
  box-shadow: none;
}

.header .search-form .input-group .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0 25px;
  border: none;
  transition: all 0.3s ease;
  border-radius: 50px !important;
  margin: 3px;
}

.header .search-form .input-group .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

@media (min-width: 1200px) {
  .header .header-nav {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

.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;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #0c0b09;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    max-height: 150px;
    overflow: auto;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

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

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

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

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# 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);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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 50%);
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--accent-color);
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .cta-btn {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.3s;
  flex-shrink: 0;
}

.hero .cta-btn:first-child {
  margin-right: 10px;
}

.hero .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 480px) {
  .hero .cta-btn {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: url("../img/about-bg.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}

.about:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 12%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .container {
  position: relative;
}

.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .about-img {
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: 0.3s;
}

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

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.why-us .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.why-us .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.why-us .card-item h4 a {
  color: var(--heading-color);
}

.why-us .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.why-us .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.why-us .card-item:hover span,
.why-us .card-item:hover h4 a,
.why-us .card-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Specials Section
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--heading-color);
  border-radius: 0;
  border-right: 2px solid var(--accent-color);
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: var(--accent-color);
}

.specials .nav-link.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.specials .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.specials .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }

  .specials .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  padding: 80px 0;
  position: relative;
}

.events .slider-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.events:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.events .section-title h2 {
  color: #ffffff;
}

.events .container {
  position: relative;
  z-index: 3;
}

.events .event-item h3 {
  font-weight: 700;
  font-size: 30px;
}

.events .event-item .price {
  font-size: 26px;
  font-family: var(--default-font);
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid var(--accent-color);
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .swiper-wrapper {
  height: auto;
}

.events .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table .reservation-form-bg {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.book-a-table .php-email-form {
  padding: 30px;
}

@media (max-width: 575px) {
  .book-a-table .php-email-form {
    padding: 20px;
  }
}

.book-a-table .php-email-form input[type=text],
.book-a-table .php-email-form input[type=email],
.book-a-table .php-email-form input[type=number],
.book-a-table .php-email-form input[type=date],
.book-a-table .php-email-form input[type=time],
.book-a-table .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.book-a-table .php-email-form input[type=text]:focus,
.book-a-table .php-email-form input[type=email]:focus,
.book-a-table .php-email-form input[type=number]:focus,
.book-a-table .php-email-form input[type=date]:focus,
.book-a-table .php-email-form input[type=time]:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.book-a-table .php-email-form input[type=text]::placeholder,
.book-a-table .php-email-form input[type=email]::placeholder,
.book-a-table .php-email-form input[type=number]::placeholder,
.book-a-table .php-email-form input[type=date]::placeholder,
.book-a-table .php-email-form input[type=time]::placeholder,
.book-a-table .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.book-a-table .php-email-form button[type=submit] {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  background: transparent;
  padding: 14px 60px;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

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

/*--------------------------------------------------------------
# Category Cards Section
--------------------------------------------------------------*/
.category-cards {
  padding-top: 26px;
  padding-bottom: 22px;
}

.category-cards .category-slider {
  position: relative;
  padding: 1rem 0;
}

.category-cards .category-slider .container {
  position: relative;
}

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

.category-cards .category-slider .swiper-button-next,
.category-cards .category-slider .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: var(--surface-color);
  border-radius: 50%;
  color: var(--heading-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-cards .category-slider .swiper-button-next::after,
.category-cards .category-slider .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: bold;
}

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

.category-cards .category-slider .swiper-button-prev {
  left: 0;
}

.category-cards .category-slider .swiper-button-next {
  right: 0;
}

.category-cards .category-card {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 0.5rem;
  padding: 1rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-cards .category-card:hover {
  transform: translateY(-5px);
}

.category-cards .category-card:hover .category-title {
  color: var(--accent-color);
}

.category-cards .category-card:hover .category-image img {
  filter: brightness(1.08);
  transform: rotate(4deg) scale(1.06);
}

.category-cards .category-card .category-image {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.category-cards .category-card .category-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: 0.3s;
}

.category-cards .category-card .category-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  transition: 0.3s;
}

.category-cards .category-card .category-count {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .category-cards .category-slider .swiper-button-prev {
    left: -15px;
  }

  .category-cards .category-slider .swiper-button-next {
    right: -15px;
  }

  .category-cards .category-card {
    padding: 0.75rem;
  }

  .category-cards .category-card .category-image {
    height: 100px;
    margin-bottom: 0.75rem;
  }

  .category-cards .category-card .category-title {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .category-cards .category-card .category-count {
    font-size: 0.8rem;
  }
}

@media (max-width: 767.98px) {

  .category-cards .category-slider .swiper-button-prev,
  .category-cards .category-slider .swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .category-cards .category-slider .swiper-button-prev::after,
  .category-cards .category-slider .swiper-button-next::after {
    font-size: 0.85rem;
  }

  .category-cards .category-card .category-image {
    height: 90px;
  }
}

@media (max-width: 575.98px) {
  .category-cards .category-slider .swiper-button-prev {
    left: -10px;
  }

  .category-cards .category-slider .swiper-button-next {
    right: -10px;
  }

  .category-cards .category-card {
    padding: 0.5rem;
  }

  .category-cards .category-card .category-image {
    height: 80px;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Menu 2 Section
--------------------------------------------------------------*/
.menu-2 {
  padding-top: 32px;
  padding-bottom: 60px;
}

.menu-2 .menu-filters {
  padding: 0;
  margin: 0 auto 40px;
  list-style: none;
  text-align: center;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.menu-2 .menu-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0 20px 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0 5px;
  transition: all 0.3s;
  position: relative;
  font-family: var(--heading-font);
}

.menu-2 .menu-filters li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

.menu-2 .menu-filters li:hover,
.menu-2 .menu-filters li.filter-active {
  color: var(--accent-color);
}

.menu-2 .menu-filters li:hover::after,
.menu-2 .menu-filters li.filter-active::after {
  transform: scaleX(1);
}

.menu-2 .menu-wrap {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.menu-2 .menu-wrap:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.menu-2 .menu-wrap:hover .menu-thumb img {
  transform: scale(1.05);
}

.menu-2 .menu-header {
  padding: 20px 25px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.menu-2 .menu-header .menu-tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--contrast-color);
  background: var(--accent-color);
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-2 .menu-header h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.menu-2 .menu-header .menu-price {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}
.current-price{
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}
.menu-2 .menu-details {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.menu-2 .menu-thumb {
  flex: 0 0 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}

.menu-2 .menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-2 .menu-info {
  flex: 1;
}

.menu-2 .menu-info .description {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.menu-2 .menu-info .menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.menu-2 .menu-info .menu-meta span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-2 .menu-info .menu-meta span i {
  font-size: 14px;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.menu-2 .menu-info .menu-meta span.dietary i {
  color: #28a745;
}
.menu-item input.btn.add-to-cart {
  border: 0;
  font-size: 10px;
  padding: 5px 20px;
  background: var(--accent-color) !important; /* Ensure this takes precedence */
  color: var(--contrast-color) !important;
  transition: 0.3s ease;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 10px;
}

.menu-item input.btn.add-to-cart:hover {
  background: var(--accent-color) !important; /* Keep it consistent */
  color: var(--contrast-color) !important;
  opacity: 0.9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Menu 3 Section
--------------------------------------------------------------*/
.menu-3 .menu-filters {
  padding: 0;
  margin: 0 auto 40px;
  list-style: none;
  text-align: center;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.menu-3 .menu-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0 20px 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0 5px;
  transition: all 0.3s;
  position: relative;
  font-family: var(--heading-font);
}

.menu-3 .menu-filters li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

.menu-3 .menu-filters li:hover,
.menu-3 .menu-filters li.filter-active {
  color: var(--accent-color);
}

.menu-3 .menu-filters li:hover::after,
.menu-3 .menu-filters li.filter-active::after {
  transform: scaleX(1);
}

.menu-3 .menu-wrap {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.menu-3 .menu-wrap:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.menu-3 .menu-wrap:hover .menu-thumb img {
  transform: scale(1.05);
}

.menu-3 .menu-header {
  padding: 20px 25px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.menu-3 .menu-header .menu-tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--contrast-color);
  background: var(--accent-color);
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-3 .menu-header h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.menu-3 .menu-header .menu-price {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.menu-3 .menu-details {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.menu-3 .menu-thumb {
  flex: 0 0 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}

.menu-3 .menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-3 .menu-info {
  flex: 1;
}

.menu-3 .menu-info .description {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.menu-3 .menu-info .menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.menu-3 .menu-info .menu-meta span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-3 .menu-info .menu-meta span i {
  font-size: 14px;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.menu-3 .menu-info .menu-meta span.dietary i {
  color: #28a745;
}

/*--------------------------------------------------------------
# Menu 4 Section
--------------------------------------------------------------*/
.menu-4 .menu-filters {
  padding: 0;
  margin: 0 auto 40px;
  list-style: none;
  text-align: center;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.menu-4 .menu-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0 20px 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0 5px;
  transition: all 0.3s;
  position: relative;
  font-family: var(--heading-font);
}

.menu-4 .menu-filters li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

.menu-4 .menu-filters li:hover,
.menu-4 .menu-filters li.filter-active {
  color: var(--accent-color);
}

.menu-4 .menu-filters li:hover::after,
.menu-4 .menu-filters li.filter-active::after {
  transform: scaleX(1);
}

.menu-4 .menu-wrap {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.menu-4 .menu-wrap:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.menu-4 .menu-wrap:hover .menu-thumb img {
  transform: scale(1.05);
}

.menu-4 .menu-header {
  padding: 20px 25px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.menu-4 .menu-header .menu-tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--contrast-color);
  background: var(--accent-color);
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-4 .menu-header h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.menu-4 .menu-header .menu-price {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.menu-4 .menu-details {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.menu-4 .menu-thumb {
  flex: 0 0 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}

.menu-4 .menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-4 .menu-info {
  flex: 1;
}

.menu-4 .menu-info .description {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.menu-4 .menu-info .menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.menu-4 .menu-info .menu-meta span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-4 .menu-info .menu-meta span i {
  font-size: 14px;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.menu-4 .menu-info .menu-meta span.dietary i {
  color: #28a745;
}

/*--------------------------------------------------------------
# Menu 5 Section
--------------------------------------------------------------*/
.menu-5 {
  padding-top: 23px;
  padding-bottom: 60px;
}

.menu-5 .menu-filters {
  padding: 0;
  margin: 0 auto 40px;
  list-style: none;
  text-align: center;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.menu-5 .menu-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0 20px 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0 5px;
  transition: all 0.3s;
  position: relative;
  font-family: var(--heading-font);
}

.menu-5 .menu-filters li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

.menu-5 .menu-filters li:hover,
.menu-5 .menu-filters li.filter-active {
  color: var(--accent-color);
}

.menu-5 .menu-filters li:hover::after,
.menu-5 .menu-filters li.filter-active::after {
  transform: scaleX(1);
}

.menu-5 .menu-wrap {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.menu-5 .menu-wrap:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.menu-5 .menu-wrap:hover .menu-thumb img {
  transform: scale(1.05);
}

.menu-5 .menu-header {
  padding: 20px 25px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.menu-5 .menu-header .menu-tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--contrast-color);
  background: var(--accent-color);
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-5 .menu-header h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.menu-5 .menu-header .menu-price {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.menu-5 .menu-details {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.menu-5 .menu-thumb {
  flex: 0 0 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}

.menu-5 .menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-5 .menu-info {
  flex: 1;
}

.menu-5 .menu-info .description {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.menu-5 .menu-info .menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.menu-5 .menu-info .menu-meta span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-5 .menu-info .menu-meta span i {
  font-size: 14px;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.menu-5 .menu-info .menu-meta span.dietary i {
  color: #28a745;
}

/*--------------------------------------------------------------
# Menu 6 Section
--------------------------------------------------------------*/
.menu-6 {
  padding-top: 33px;
  padding-bottom: 60px;
}

.menu-6 .menu-filters {
  padding: 0;
  margin: 0 auto 40px;
  list-style: none;
  text-align: center;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.menu-6 .menu-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0 20px 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0 5px;
  transition: all 0.3s;
  position: relative;
  font-family: var(--heading-font);
}

.menu-6 .menu-filters li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

.menu-6 .menu-filters li:hover,
.menu-6 .menu-filters li.filter-active {
  color: var(--accent-color);
}

.menu-6 .menu-filters li:hover::after,
.menu-6 .menu-filters li.filter-active::after {
  transform: scaleX(1);
}

.menu-6 .menu-wrap {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.menu-6 .menu-wrap:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.menu-6 .menu-wrap:hover .menu-thumb img {
  transform: scale(1.05);
}

.menu-6 .menu-header {
  padding: 20px 25px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.menu-6 .menu-header .menu-tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--contrast-color);
  background: var(--accent-color);
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-6 .menu-header h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.menu-6 .menu-header .menu-price {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.menu-6 .menu-details {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.menu-6 .menu-thumb {
  flex: 0 0 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}

.menu-6 .menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-6 .menu-info {
  flex: 1;
}

.menu-6 .menu-info .description {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.menu-6 .menu-info .menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.menu-6 .menu-info .menu-meta span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-6 .menu-info .menu-meta span i {
  font-size: 14px;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.menu-6 .menu-info .menu-meta span.dietary i {
  color: #28a745;
}

/*--------------------------------------------------------------
# Menu 7 Section
--------------------------------------------------------------*/
.menu-7 .menu-filters {
  padding: 0;
  margin: 0 auto 40px;
  list-style: none;
  text-align: center;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.menu-7 .menu-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0 20px 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0 5px;
  transition: all 0.3s;
  position: relative;
  font-family: var(--heading-font);
}

.menu-7 .menu-filters li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

.menu-7 .menu-filters li:hover,
.menu-7 .menu-filters li.filter-active {
  color: var(--accent-color);
}

.menu-7 .menu-filters li:hover::after,
.menu-7 .menu-filters li.filter-active::after {
  transform: scaleX(1);
}

.menu-7 .menu-wrap {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.menu-7 .menu-wrap:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.menu-7 .menu-wrap:hover .menu-thumb img {
  transform: scale(1.05);
}

.menu-7 .menu-header {
  padding: 20px 25px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.menu-7 .menu-header .menu-tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--contrast-color);
  background: var(--accent-color);
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-7 .menu-header h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.menu-7 .menu-header .menu-price {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.menu-7 .menu-details {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.menu-7 .menu-thumb {
  flex: 0 0 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}

.menu-7 .menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-7 .menu-info {
  flex: 1;
}

.menu-7 .menu-info .description {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.menu-7 .menu-info .menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.menu-7 .menu-info .menu-meta span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-7 .menu-info .menu-meta span i {
  font-size: 14px;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.menu-7 .menu-info .menu-meta span.dietary i {
  color: #28a745;
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 {
  padding-top: 33px;
  padding-bottom: 60px;
}

.about-3 .about-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-3 .about-img img {
  transition: transform 0.6s ease;
}

.about-3 .about-img img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .about-3 .about-img {
    margin-bottom: 30px;
  }
}

.about-3 .about-content h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 768px) {
  .about-3 .about-content h3 {
    font-size: 24px;
  }
}

.about-3 .about-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-3 .about-stat {
  text-align: center;
}

.about-3 .about-stat h4 {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .about-3 .about-stat h4 {
    font-size: 28px;
  }
}

.about-3 .about-stat p {
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about-3 .about-card {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-3 .about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-3 .about-card:hover .icon-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about-3 .about-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-3 .about-card p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  line-height: 1.6;
}

.about-3 .about-card .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 24px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .about-3 .about-card {
    margin-bottom: 20px;
  }
}

.about-3 .swiper-wrapper {
  height: auto !important;
}

/*--------------------------------------------------------------
# About 6 Section
--------------------------------------------------------------*/
.about-6 .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about-6 .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about-6 .about-title {
    font-size: 2rem;
  }
}

.about-6 .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about-6 .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about-6 .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-6 .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-6 .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about-6 .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about-6 .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about-6 .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about-6 .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about-6 .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about-6 .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about-6 .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about-6 .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about-6 .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about-6 .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about-6 .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about-6 .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about-6 .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about-6 .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about-6 .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about-6 .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about-6 .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about-6 .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

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

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

/*--------------------------------------------------------------
# Product List Section
--------------------------------------------------------------*/
.product-list .product-box {
  position: relative;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-list .product-box:hover {
  transform: translateY(-8px);
}

.product-list .product-box:hover .product-overlay {
  opacity: 1;
  visibility: visible;
}

.product-list .product-box:hover .main-img {
  transform: scale(1.08);
}

.product-list .product-thumb {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}

.product-list .main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-list .product-label {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35em 0.8em;
  border-radius: 30px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-list .product-label.product-label-sale {
  background-color: #e53e3e;
}

.product-list .product-label.product-label-sold {
  background-color: #718096;
}

.product-list .product-label.product-label-hot {
  background-color: #dd6b20;
}

.product-list .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.product-list .product-quick-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.product-list .quick-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.product-list .quick-action-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.product-list .add-to-cart-container {
  width: 100%;
}

.product-list .add-to-cart-btn {
  width: 100%;
  padding: 0.8rem 1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-list .add-to-cart-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.product-list .add-to-cart-btn.disabled {
  background-color: #a0aec0;
  cursor: not-allowed;
}

.product-list .add-to-cart-btn.disabled:hover {
  background-color: #a0aec0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-list .product-content {
  padding: 1.5rem;
}

.product-list .product-details {
  margin-bottom: 1rem;
}

.product-list .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  height: 2.8rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: var(--heading-color);
}

.product-list .product-title a {
  color: inherit;
}

.product-list .product-title a:hover {
  color: var(--accent-color);
}

.product-list .product-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-list .product-price span {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.product-list .product-price .original {
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.product-list .product-price .sale {
  color: #e53e3e;
}

.product-list .product-rating-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.product-list .rating-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-right: 0.5rem;
}

.product-list .rating-stars i {
  margin-right: 1px;
}

.product-list .rating-number {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-color);
}

.product-list .product-color-options {
  display: flex;
  gap: 0.5rem;
}

.product-list .color-option {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}

.product-list .color-option:hover {
  transform: scale(1.1);
}

.product-list .color-option.active:after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
}

@media (max-width: 991.98px) {
  .product-list .product-title {
    font-size: 0.95rem;
    height: 2.6rem;
  }

  .product-list .product-content {
    padding: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .product-list .product-box {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-list .product-overlay {
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .product-list .add-to-cart-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 20%), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.services .service-card .service-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  transform: rotate(0deg);
}

.services .service-card .service-icon-wrapper i {
  font-size: 32px;
  color: var(--accent-color);
  line-height: 0;
  transition: all 0.4s ease;
}

.services .service-card .service-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.services .service-card .service-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.services .service-card .service-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--surface-color);
  padding: 30px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services .service-card .service-hover .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.services .service-card .service-hover .service-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-size: 15px;
}

.services .service-card .service-hover .service-features li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
}

.services .service-card .service-hover .service-link {
  display: inline-block;
  padding: 10px 25px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .service-hover .service-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateX(5px);
}

.services .service-card:hover {
  transform: translateY(-5px);
}

.services .service-card:hover::before {
  transform: scaleX(1);
}

.services .service-card:hover .service-icon-wrapper {
  transform: rotate(360deg);
  background: var(--accent-color);
}

.services .service-card:hover .service-icon-wrapper i {
  color: var(--contrast-color);
}

.services .service-card:hover .service-hover {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
.slider {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  padding: 80px 0;
  position: relative;
}

.slider .slider-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.slider:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.slider .section-title h2 {
  color: #ffffff;
}

.slider .container {
  position: relative;
  z-index: 3;
}

.slider .event-item h3 {
  font-weight: 700;
  font-size: 30px;
}

.slider .event-item .price {
  font-size: 26px;
  font-family: var(--default-font);
  font-weight: 700;
  margin-bottom: 15px;
}

.slider .event-item .price span {
  border-bottom: 2px solid var(--accent-color);
}

.slider .event-item ul {
  list-style: none;
  padding: 0;
}

.slider .event-item ul li {
  padding-bottom: 10px;
}

.slider .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.slider .event-item p:last-child {
  margin-bottom: 0;
}

.slider .swiper-wrapper {
  height: auto;
}

.slider .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
}

.slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 {
  padding: 80px 0;
  overflow: hidden;
}

.contact-2 .contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .contact-2 .contact-info {
    margin-bottom: 40px;
  }
}

.contact-2 .contact-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.contact-2 .contact-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
}

.contact-2 .contact-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.contact-2 .contact-card h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.contact-2 .contact-card p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact-2 .contact-card .contact-details {
  margin-bottom: 25px;
}

.contact-2 .contact-card .contact-details .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-2 .contact-card .contact-details .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.contact-2 .contact-card .contact-details .contact-item div h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.contact-2 .contact-card .contact-details .contact-item div p {
  font-size: 14px;
  color: var(--default-color);
  margin: 0 0 5px;
  line-height: 1.5;
}

.contact-2 .contact-card .contact-details .contact-item div p:last-child {
  margin-bottom: 0;
}

.contact-2 .contact-card .contact-details .contact-item:last-child {
  margin-bottom: 0;
}

.contact-2 .contact-card .social-links {
  display: flex;
  gap: 12px;
}

.contact-2 .contact-card .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-2 .contact-card .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.contact-2 .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 35px;
  position: relative;
  overflow: hidden;
}

.contact-2 .contact-form-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
}

.contact-2 .contact-form-wrapper .php-email-form .form-group {
  margin-bottom: 15px;
}

.contact-2 .contact-form-wrapper .php-email-form .form-group label {
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
  display: block;
}

.contact-2 .contact-form-wrapper .php-email-form .form-group .form-control {
  height: auto;
  border-radius: 8px;
  padding: 12px 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
}

.contact-2 .contact-form-wrapper .php-email-form .form-group .form-control:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: none;
}

.contact-2 .contact-form-wrapper .php-email-form .form-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact-2 .contact-form-wrapper .php-email-form .form-group textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-2 .contact-form-wrapper .php-email-form .form-check {
  margin-bottom: 20px;
}

.contact-2 .contact-form-wrapper .php-email-form .form-check .form-check-input {
  margin-top: 0.3em;
}

.contact-2 .contact-form-wrapper .php-email-form .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact-2 .contact-form-wrapper .php-email-form .form-check .form-check-input:focus {
  box-shadow: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.contact-2 .contact-form-wrapper .php-email-form .form-check .form-check-label {
  color: var(--default-color);
  font-size: 14px;
  padding-left: 5px;
}

.contact-2 .contact-form-wrapper .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-2 .contact-form-wrapper .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {

  .contact-2 .contact-card,
  .contact-2 .newsletter-card,
  .contact-2 .contact-form-wrapper {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .contact-2 {
    padding: 60px 0;
  }

  .contact-2 .contact-card h3 {
    font-size: 20px;
  }

  .contact-2 .newsletter-card h3 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-item {
  padding: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  height: 100%;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.features .feature-item .feature-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.features .feature-item .feature-content .icon {
  flex-shrink: 0;
}

.features .feature-item .feature-content .icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.features .feature-item .content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.features .feature-item .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.features .feature-item .content .feature-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.features .feature-item .content .feature-link i {
  font-size: 14px;
  transition: transform 0.3s ease-in-out;
}

.features .feature-item .content .feature-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.features .feature-item .content .feature-link:hover i {
  transform: translateX(5px);
}

.features .feature-item:hover {
  border-color: var(--accent-color);
}

@media (max-width: 1199px) {
  .features .feature-item {
    padding: 20px;
  }

  .features .feature-item h3 {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .features .feature-item .feature-content {
    gap: 15px;
  }
}

/*--------------------------------------------------------------
# Contact 3 Section
--------------------------------------------------------------*/
.contact-3 .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-3 .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-3 .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-3 .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact-3 .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-3 .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contact-3 .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact-3 .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact-3 .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-3 .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact-3 .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact-3 .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact-3 .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact-3 .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact-3 .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact-3 .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact-3 .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact-3 .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact-3 .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-3 .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact-3 .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-3 .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact-3 .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-3 .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact-3 .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-3 .contact-form-wrapper .loading,
.contact-3 .contact-form-wrapper .error-message,
.contact-3 .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact-3 .form-container-overlap {
    margin-top: -120px;
  }

  .contact-3 .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-3 .contact-info-box {
    margin-bottom: 20px;
  }

  .contact-3 .form-container-overlap {
    margin-top: -100px;
  }

  .contact-3 .contact-form-wrapper {
    padding: 25px;
  }

  .contact-3 .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact-3 .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact-3 .form-container-overlap {
    margin-top: -80px;
  }

  .contact-3 .contact-form-wrapper {
    padding: 20px;
  }

  .contact-3 .btn-submit {
    width: 100%;
  }

  .contact-3 .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service {
  padding-top: 15px;
  padding-bottom: 60px;
}

.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;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  padding-top: 25px;
  padding-bottom: 60px;
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Menu 8 Section
--------------------------------------------------------------*/
.menu-8 {
  padding-top: 24px;
  padding-bottom: 60px;
}

.menu-8 .menu-filters {
  padding: 0;
  margin: 0 auto 40px;
  list-style: none;
  text-align: center;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.menu-8 .menu-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0 20px 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0 5px;
  transition: all 0.3s;
  position: relative;
  font-family: var(--heading-font);
}

.menu-8 .menu-filters li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

.menu-8 .menu-filters li:hover,
.menu-8 .menu-filters li.filter-active {
  color: var(--accent-color);
}

.menu-8 .menu-filters li:hover::after,
.menu-8 .menu-filters li.filter-active::after {
  transform: scaleX(1);
}

.menu-8 .menu-wrap {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.menu-8 .menu-wrap:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.menu-8 .menu-wrap:hover .menu-thumb img {
  transform: scale(1.05);
}

.menu-8 .menu-header {
  padding: 20px 25px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.menu-8 .menu-header .menu-tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--contrast-color);
  background: var(--accent-color);
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-8 .menu-header h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.menu-8 .menu-header .menu-price {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.menu-8 .menu-details {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.menu-8 .menu-thumb {
  flex: 0 0 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}

.menu-8 .menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-8 .menu-info {
  flex: 1;
}

.menu-8 .menu-info .description {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.menu-8 .menu-info .menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.menu-8 .menu-info .menu-meta span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-8 .menu-info .menu-meta span i {
  font-size: 14px;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.menu-8 .menu-info .menu-meta span.dietary i {
  color: #28a745;
}

/*--------------------------------------------------------------
# Gallery 2 Section
--------------------------------------------------------------*/
.gallery-2 .isotope-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.gallery-2 .isotope-filters li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.gallery-2 .isotope-filters li:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.gallery-2 .isotope-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 576px) {
  .gallery-2 .isotope-filters li {
    margin-bottom: 5px;
  }
}

.gallery-2 .gallery-item {
  margin-bottom: 30px;
}

.gallery-2 .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-2 .gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-2 .gallery-card:hover .gallery-overlay {
  opacity: 1;
  visibility: visible;
}

.gallery-2 .gallery-card:hover .gallery-info {
  opacity: 1;
  transform: translateY(0);
}

.gallery-2 .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery-2 .gallery-img img {
  transition: transform 0.6s ease;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-2 .gallery-img:hover img {
  transform: scale(1.05);
}

.gallery-2 .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.gallery-2 .gallery-info {
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.gallery-2 .gallery-info h4 {
  color: var(--contrast-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gallery-2 .gallery-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-size: 14px;
  margin-bottom: 15px;
}

.gallery-2 .gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.gallery-2 .gallery-link i {
  font-size: 20px;
}

.gallery-2 .gallery-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .gallery-2 .gallery-info h4 {
    font-size: 16px;
  }

  .gallery-2 .gallery-info p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .gallery-2 .isotope-filters li {
    padding: 6px 14px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .gallery-2 .gallery-overlay {
    padding: 15px;
  }

  .gallery-2 .gallery-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .gallery-2 .gallery-info p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .gallery-2 .gallery-link {
    width: 35px;
    height: 35px;
  }

  .gallery-2 .gallery-link i {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Gallery 3 Section
--------------------------------------------------------------*/
.gallery-3 {
  padding-top: 21px;
  padding-bottom: 60px;
}

.gallery-3 .container-fluid {
  margin-bottom: 3px;
}

.gallery-3 .venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.gallery-3 .venue-info {
  background: url("../img/bg/abstract-bg-9.webp") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.gallery-3 .venue-info:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.gallery-3 .venue-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--contrast-color);
}

@media (max-width: 574px) {
  .gallery-3 .venue-info h3 {
    font-size: 24px;
  }
}

.gallery-3 .venue-info p {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.gallery-3 .venue-gallery-container {
  padding-right: 12px;
}

.gallery-3 .venue-gallery {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
  display: grid;
  grid-auto-rows:  200px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  position: relative;
}

.gallery-3 .venue-gallery img {
  transition: all ease-in-out 0.4s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-3 .venue-gallery:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Book A Table 2 Section
--------------------------------------------------------------*/
.book-a-table-2 .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table-2 .reservation-form-bg {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.book-a-table-2 .php-email-form {
  padding: 30px;
}

@media (max-width: 575px) {
  .book-a-table-2 .php-email-form {
    padding: 20px;
  }
}

.book-a-table-2 .php-email-form input[type=text],
.book-a-table-2 .php-email-form input[type=email],
.book-a-table-2 .php-email-form input[type=number],
.book-a-table-2 .php-email-form input[type=date],
.book-a-table-2 .php-email-form input[type=time],
.book-a-table-2 .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.book-a-table-2 .php-email-form input[type=text]:focus,
.book-a-table-2 .php-email-form input[type=email]:focus,
.book-a-table-2 .php-email-form input[type=number]:focus,
.book-a-table-2 .php-email-form input[type=date]:focus,
.book-a-table-2 .php-email-form input[type=time]:focus,
.book-a-table-2 .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.book-a-table-2 .php-email-form input[type=text]::placeholder,
.book-a-table-2 .php-email-form input[type=email]::placeholder,
.book-a-table-2 .php-email-form input[type=number]::placeholder,
.book-a-table-2 .php-email-form input[type=date]::placeholder,
.book-a-table-2 .php-email-form input[type=time]::placeholder,
.book-a-table-2 .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.book-a-table-2 .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 14px 60px;
  transition: 0.4s;
  border-radius: 4px;
}

.book-a-table-2 .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Ecommerce Product Details Section
--------------------------------------------------------------*/
.ecommerce-product-details .product-gallery {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .ecommerce-product-details .product-gallery {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.ecommerce-product-details .product-gallery .thumbnails-vertical {
  order: 2;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .ecommerce-product-details .product-gallery .thumbnails-vertical {
    order: 1;
    width: 80px;
    margin-top: 0;
  }
}

.ecommerce-product-details .product-gallery .thumbnails-vertical .thumbnails-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 767px) {
  .ecommerce-product-details .product-gallery .thumbnails-vertical .thumbnails-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.ecommerce-product-details .product-gallery .thumbnails-vertical .thumbnail-item {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-gallery .thumbnails-vertical .thumbnail-item:hover {
  opacity: 0.9;
}

.ecommerce-product-details .product-gallery .thumbnails-vertical .thumbnail-item.active {
  border-color: var(--accent-color);
  opacity: 1;
}

.ecommerce-product-details .product-gallery .thumbnails-vertical .thumbnail-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.ecommerce-product-details .product-gallery .main-image-wrapper {
  order: 1;
  position: relative;
}

@media (min-width: 768px) {
  .ecommerce-product-details .product-gallery .main-image-wrapper {
    order: 2;
    flex: 1;
  }
}

.ecommerce-product-details .product-gallery .main-image-wrapper .image-zoom-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: var(--surface-color);
}

.ecommerce-product-details .product-gallery .main-image-wrapper .image-zoom-container a {
  display: block;
  position: relative;
}

.ecommerce-product-details .product-gallery .main-image-wrapper .image-zoom-container a:hover .zoom-overlay {
  opacity: 1;
}

.ecommerce-product-details .product-gallery .main-image-wrapper .image-zoom-container .main-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: crosshair;
}

.ecommerce-product-details .product-gallery .main-image-wrapper .image-zoom-container .drift-zoom-pane {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ecommerce-product-details .product-gallery .main-image-wrapper .image-zoom-container .drift-zoom-pane.drift-opening {
  animation: drift-fadeZoomIn 180ms ease-out;
}

.ecommerce-product-details .product-gallery .main-image-wrapper .image-zoom-container .drift-zoom-pane.drift-closing {
  animation: drift-fadeZoomOut 210ms ease-in;
}

.ecommerce-product-details .product-gallery .main-image-wrapper .image-zoom-container .drift-zoom-pane-loader {
  display: none;
}

@keyframes drift-fadeZoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

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

@keyframes drift-fadeZoomOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

.ecommerce-product-details .product-gallery .main-image-wrapper .image-zoom-container .zoom-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ecommerce-product-details .product-gallery .main-image-wrapper .image-zoom-container .zoom-overlay i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.ecommerce-product-details .product-gallery .main-image-wrapper .image-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 0.5rem;
  pointer-events: none;
}

.ecommerce-product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.ecommerce-product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.ecommerce-product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn:hover {
  background-color: var(--accent-color);
}

.ecommerce-product-details .product-gallery .main-image-wrapper .image-nav .image-nav-btn:hover i {
  color: var(--contrast-color);
}

.ecommerce-product-details .product-info-wrapper {
  height: 100%;
  padding: 0 0.5rem;
}

@media (min-width: 992px) {
  .ecommerce-product-details .product-info-wrapper {
    padding: 0 1rem;
    position: sticky;
    top: 100px;
  }
}

.ecommerce-product-details .product-info-wrapper .product-meta {
  margin-bottom: 1.5rem;
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-category {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-share {
  position: relative;
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-share .share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-share .share-btn i {
  color: var(--accent-color);
  font-size: 1rem;
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-share .share-btn:hover {
  background-color: var(--accent-color);
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-share .share-btn:hover i {
  color: var(--contrast-color);
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-share .share-btn:hover+.share-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-share .share-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  display: flex;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-share .share-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-share .share-dropdown a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-share .share-dropdown a i {
  color: var(--default-color);
  font-size: 0.875rem;
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-share .share-dropdown a:hover {
  background-color: var(--accent-color);
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-share .share-dropdown a:hover i {
  color: var(--contrast-color);
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.75rem 0;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .ecommerce-product-details .product-info-wrapper .product-meta .product-title {
    font-size: 2.25rem;
  }
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-rating .stars {
  display: flex;
  align-items: center;
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-rating .stars i {
  color: #FFD700;
  font-size: 1rem;
  margin-right: 2px;
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-rating .stars .rating-value {
  margin-left: 0.5rem;
  font-weight: 600;
  color: var(--heading-color);
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-rating .rating-count {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: none;
}

.ecommerce-product-details .product-info-wrapper .product-meta .product-rating .rating-count:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.ecommerce-product-details .product-info-wrapper .product-price-container {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
}

.ecommerce-product-details .product-info-wrapper .product-price-container .price-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.ecommerce-product-details .product-info-wrapper .product-price-container .price-wrapper .current-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

.ecommerce-product-details .product-info-wrapper .product-price-container .price-wrapper .original-price {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-left: 1rem;
}

.ecommerce-product-details .product-info-wrapper .product-price-container .discount-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.ecommerce-product-details .product-info-wrapper .product-price-container .stock-info {
  display: flex;
  align-items: center;
}

.ecommerce-product-details .product-info-wrapper .product-price-container .stock-info i {
  color: #10b981;
  margin-right: 0.5rem;
}

.ecommerce-product-details .product-info-wrapper .product-price-container .stock-info span {
  font-weight: 500;
}

.ecommerce-product-details .product-info-wrapper .product-price-container .stock-info .stock-count {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: normal;
}

.ecommerce-product-details .product-info-wrapper .product-short-description {
  margin-bottom: 2rem;
}

.ecommerce-product-details .product-info-wrapper .product-short-description p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 1rem;
}

.ecommerce-product-details .product-info-wrapper .product-options {
  margin-bottom: 2rem;
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group {
  margin-bottom: 1.5rem;
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .option-header .option-title {
  font-weight: 600;
  margin: 0;
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .option-header .selected-option {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .color-options {
  display: flex;
  gap: 1rem;
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .color-options .color-option {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .color-options .color-option:hover {
  transform: scale(1.1);
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .color-options .color-option.active {
  border-color: var(--accent-color);
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .color-options .color-option.active i {
  opacity: 1;
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .color-options .color-option i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--contrast-color);
  font-size: 0.875rem;
  opacity: 0;
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .size-options {
  display: flex;
  gap: 0.75rem;
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .size-options .size-option {
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
  font-weight: 500;
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .size-options .size-option:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .size-options .size-option.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  box-shadow: 0 4px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .quantity-selector {
  display: flex;
  align-items: center;
  max-width: 150px;
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn.decrease {
  border-radius: 8px 0 0 8px;
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-btn.increase {
  border-radius: 0 8px 8px 0;
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-left: none;
  border-right: none;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input:focus {
  border-color: var(--accent-color);
  outline: none;
}

.ecommerce-product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input::-webkit-inner-spin-button,
.ecommerce-product-details .product-info-wrapper .product-options .option-group .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ecommerce-product-details .product-info-wrapper .product-actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.ecommerce-product-details .product-info-wrapper .product-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-info-wrapper .product-actions .btn i {
  margin-right: 0.5rem;
}

.ecommerce-product-details .product-info-wrapper .product-actions .add-to-cart-btn {
  flex: 1;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.ecommerce-product-details .product-info-wrapper .product-actions .add-to-cart-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.ecommerce-product-details .product-info-wrapper .product-actions .buy-now-btn {
  flex: 1;
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.ecommerce-product-details .product-info-wrapper .product-actions .buy-now-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.ecommerce-product-details .product-info-wrapper .product-actions .wishlist-btn {
  width: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecommerce-product-details .product-info-wrapper .product-actions .wishlist-btn i {
  margin-right: 0;
  font-size: 1.25rem;
}

.ecommerce-product-details .product-info-wrapper .product-actions .wishlist-btn:hover {
  color: #fff;
  border-color: #e53935;
  background-color: #e53935;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

@media (max-width: 575px) {
  .ecommerce-product-details .product-info-wrapper .product-actions {
    flex-direction: column;
  }

  .ecommerce-product-details .product-info-wrapper .product-actions .wishlist-btn {
    width: 100%;
  }
}

.ecommerce-product-details .product-info-wrapper .delivery-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .ecommerce-product-details .product-info-wrapper .delivery-options {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ecommerce-product-details .product-info-wrapper .delivery-options .delivery-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-info-wrapper .delivery-options .delivery-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ecommerce-product-details .product-info-wrapper .delivery-options .delivery-option i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.ecommerce-product-details .product-info-wrapper .delivery-options .delivery-option h6 {
  margin: 0 0 0.25rem;
  font-weight: 600;
  color: var(--heading-color);
}

.ecommerce-product-details .product-info-wrapper .delivery-options .delivery-option p {
  margin: 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.ecommerce-product-details .sticky-add-to-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--surface-color);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.ecommerce-product-details .sticky-add-to-cart.visible {
  transform: translateY(0);
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .ecommerce-product-details .sticky-add-to-cart .sticky-content {
    flex-direction: column;
    gap: 1rem;
  }
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content .product-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content .product-preview .product-thumbnail {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content .product-preview .product-info .product-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--heading-color);
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content .product-preview .product-info .product-price {
  font-weight: 700;
  color: var(--accent-color);
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content .sticky-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector {
  display: flex;
  align-items: center;
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-btn.decrease {
  border-radius: 8px 0 0 8px;
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-btn.increase {
  border-radius: 0 8px 8px 0;
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-input {
  width: 50px;
  height: 36px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-left: none;
  border-right: none;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-input:focus {
  border-color: var(--accent-color);
  outline: none;
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-input::-webkit-inner-spin-button,
.ecommerce-product-details .sticky-add-to-cart .sticky-content .sticky-actions .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content .sticky-actions .add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  border-radius: 8px;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content .sticky-actions .add-to-cart-btn i {
  margin-right: 0.5rem;
}

.ecommerce-product-details .sticky-add-to-cart .sticky-content .sticky-actions .add-to-cart-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.ecommerce-product-details .product-details-accordion {
  margin-top: 3rem;
}

.ecommerce-product-details .product-details-accordion .accordion-item {
  border: none;
  background-color: transparent;
  margin-bottom: 1rem;
}

.ecommerce-product-details .product-details-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.ecommerce-product-details .product-details-accordion .accordion-item .accordion-header .accordion-button {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--heading-color);
  box-shadow: none;
}

.ecommerce-product-details .product-details-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ecommerce-product-details .product-details-accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.ecommerce-product-details .product-details-accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233690e7'%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");
}

.ecommerce-product-details .product-details-accordion .accordion-item .accordion-collapse {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-top: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.ecommerce-product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.ecommerce-product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body h4 {
  color: var(--heading-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.ecommerce-product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ecommerce-product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .feature-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.5rem;
}

.ecommerce-product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.ecommerce-product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .feature-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.125rem;
  margin-top: 0.125rem;
}

.ecommerce-product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .specs-table .specs-row {
  display: flex;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.ecommerce-product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .specs-table .specs-row:last-child {
  border-bottom: none;
}

.ecommerce-product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .specs-table .specs-row .specs-label {
  width: 40%;
  padding: 0.75rem 0;
  font-weight: 600;
  color: var(--heading-color);
}

.ecommerce-product-details .product-details-accordion .accordion-item .accordion-collapse .accordion-body .specs-table .specs-row .specs-value {
  width: 60%;
  padding: 0.75rem 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-summary {
  margin-bottom: 2.5rem;
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .ecommerce-product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating {
    margin-bottom: 0;
  }
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-stars {
  margin: 0.75rem 0;
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-stars i {
  color: #FFD700;
  font-size: 1.5rem;
  margin-right: 2px;
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-summary .overall-rating .rating-count {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown {
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar:last-child {
  margin-bottom: 0;
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-label {
  width: 60px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress {
  flex: 1;
  height: 8px;
  margin: 0 0.75rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 4px;
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .progress .progress-bar {
  background-color: #FFD700;
  border-radius: 4px;
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-summary .rating-breakdown .rating-bar .rating-count {
  width: 30px;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: right;
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-list .review-item {
  padding: 1.5rem;
  border-radius: 12px;
  background-color: var(--surface-color);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-list .review-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info {
  display: flex;
  align-items: center;
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info .reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.75rem;
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info .reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .reviewer-info .review-date {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-header .review-rating i {
  color: #FFD700;
  font-size: 0.875rem;
  margin-right: 2px;
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.ecommerce-product-details .product-details-accordion .product-reviews .reviews-list .review-item .review-content p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.ecommerce-product-details .product-details-accordion .product-reviews .review-form-container {
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ecommerce-product-details .product-details-accordion .product-reviews .review-form-container h4 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.75rem;
}

.ecommerce-product-details .product-details-accordion .product-reviews .review-form-container h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.ecommerce-product-details .product-details-accordion .product-reviews .review-form-container .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.ecommerce-product-details .product-details-accordion .product-reviews .review-form-container .form-control {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: var(--background-color);
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-details-accordion .product-reviews .review-form-container .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.ecommerce-product-details .product-details-accordion .product-reviews .review-form-container .form-text {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.ecommerce-product-details .product-details-accordion .product-reviews .review-form-container .star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.ecommerce-product-details .product-details-accordion .product-reviews .review-form-container .star-rating input[type=radio] {
  display: none;
}

.ecommerce-product-details .product-details-accordion .product-reviews .review-form-container .star-rating label {
  cursor: pointer;
  font-size: 0;
  margin: 0;
  padding: 0 0.25rem;
}

.ecommerce-product-details .product-details-accordion .product-reviews .review-form-container .star-rating label i {
  font-size: 1.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.2s ease;
}

.ecommerce-product-details .product-details-accordion .product-reviews .review-form-container .star-rating input[type=radio]:checked~label i,
.ecommerce-product-details .product-details-accordion .product-reviews .review-form-container .star-rating label:hover i,
.ecommerce-product-details .product-details-accordion .product-reviews .review-form-container .star-rating label:hover~label i {
  color: #FFD700;
}

.ecommerce-product-details .product-details-accordion .product-reviews .review-form-container .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.ecommerce-product-details .product-details-accordion .product-reviews .review-form-container .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.features-2 .features-item+.features-item {
  margin-top: 60px;
}

.features-2 .features-item .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 30px;
  border-radius: 10px;
}

.features-2 .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
}

.features-2 .features-item .more-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 30px;
  border-radius: 6px;
}

.features-2 .features-item .more-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.features-2 .features-item ul {
  list-style: none;
  padding: 0;
}

.features-2 .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-2 .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-2 .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.features-2 .features-item img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards {
  padding-top: 24px;
  padding-bottom: 60px;
}

.cards .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 40px;
  margin: -1px;
  border-radius: 0;
}

.cards .card span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-color);
}

.cards .card h4 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.cards .card p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Register Section
--------------------------------------------------------------*/
.register .registration-form-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background-color: var(--surface-color);
  margin: 60px 0;
}

.register .image-container {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.register .image-container img {
  object-position: center;
}

.register .image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(45, 70, 94, 0.6), rgba(45, 70, 94, 0.9));
}

.register .image-container .welcome-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2.5rem;
  color: var(--contrast-color);
  z-index: 1;
}

.register .image-container .welcome-text h3 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.register .image-container .welcome-text p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.register .form-container {
  padding: 2.5rem;
  height: 100%;
}

@media (max-width: 991.98px) {
  .register .form-container {
    padding: 2rem 1.5rem;
  }
}

.register .form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.register .form-header h2 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
}

.register .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.register .form-header p a {
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.register .form-header p a:hover {
  text-decoration: underline;
}

.register .form-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.register .form-control {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: transparent;
  transition: all 0.3s;
  color: var(--default-color);
}

.register .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: var(--accent-color);
}

.register .password-field .input-group .form-control {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.register .password-field .input-group .toggle-password {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-left: none;
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  transition: all 0.3s;
}

.register .password-field .input-group .toggle-password:hover {
  color: var(--default-color);
}

.register .password-field .input-group .toggle-password i {
  font-size: 1.1rem;
}

.register .form-check .form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 60%);
}

.register .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.register .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: var(--accent-color);
}

.register .form-check .form-check-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding-left: 0.25rem;
}

.register .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.register .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.register .btn-register {
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  transition: all 0.3s;
}

.register .btn-register:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.register .btn-register:active {
  transform: translateY(0);
}

.register .social-login {
  margin-top: 1.5rem;
}

.register .social-login .divider {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
}

.register .social-login .divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  z-index: 1;
}

.register .social-login .divider span {
  position: relative;
  z-index: 2;
  background-color: var(--surface-color);
  padding: 0 1rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.register .social-login .social-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.register .social-login .social-buttons .btn-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s;
}

.register .social-login .social-buttons .btn-social i {
  font-size: 1.1rem;
}

.register .social-login .social-buttons .btn-social:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  transform: translateY(-2px);
}

.register .social-login .social-buttons .btn-social:active {
  transform: translateY(0);
}

.register .social-login .social-buttons .btn-social.btn-google i {
  color: #DB4437;
}

.register .social-login .social-buttons .btn-social.btn-facebook i {
  color: #4267B2;
}

.register .social-login .social-buttons .btn-social.btn-apple i {
  color: #000000;
}

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

  .register .social-buttons {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Login Section
--------------------------------------------------------------*/
#login{
  display: none;
}
.login .login-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login .login-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
  .login .login-card {
    padding: 30px 20px;
  }
}

.login .login-header h2 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 28px;
}

.login .login-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
}

.login .form-label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
}

.login .input-group {
  border-radius: 0.375rem;
  overflow: hidden;
}

.login .input-group .input-group-text {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.login .input-group .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

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

.login .input-group .form-control:focus~.input-group-text {
  border-color: var(--accent-color);
}

.login .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.login .forgot-password {
  font-size: 13px;
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s;
}

.login .forgot-password:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: underline;
}

.login .form-check .form-check-input {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.login .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.login .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
  border-color: var(--accent-color);
}

.login .form-check .form-check-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.login .btn-login {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.login .btn-login:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.login .btn-login:active {
  transform: translateY(0);
}

.login .divider {
  display: flex;
  align-items: center;
  text-align: center;
}

.login .divider::before,
.login .divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.login .divider span {
  padding: 0 15px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.login .social-login {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.login .social-login .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.login .social-login .social-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.login .social-login .social-btn i {
  font-size: 18px;
}

.login .signup-link {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.login .signup-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-hero .blog-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 5px 15px color-mix(in srgb, bl, transparent 92%);
  transition: all 0.3s ease;
}

.blog-hero .blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 85%);
}

.blog-hero .blog-item:hover img {
  transform: scale(1.05);
}

.blog-hero .blog-item:hover .blog-content {
  background: linear-gradient(0deg, color-mix(in srgb, black, transparent 15%) 0%, transparent 100%);
}

.blog-hero .blog-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-hero .blog-item .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(0deg, color-mix(in srgb, black, transparent 25%) 0%, transparent 100%);
  transition: background 0.3s ease;
}

.blog-hero .main-feature {
  aspect-ratio: 21/9;
}

.blog-hero .main-feature .post-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .blog-hero .main-feature .post-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .blog-hero .main-feature .post-title {
    font-size: 1.5rem;
  }
}

.blog-hero .main-feature .post-excerpt {
  color: var(--contrast-color);
  font-size: 1.1rem;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .blog-hero .main-feature .post-excerpt {
    display: none;
  }
}

.blog-hero .secondary-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .blog-hero .secondary-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.blog-hero .secondary-features .blog-item {
  aspect-ratio: 3/4;
}

.blog-hero .regular-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .blog-hero .regular-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero .regular-posts {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.blog-hero .regular-posts .blog-item {
  aspect-ratio: 16/9;
}

.blog-hero .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--contrast-color);
}

.blog-hero .post-meta .date,
.blog-hero .post-meta .category {
  display: flex;
  align-items: center;
}

.blog-hero .post-meta .date::before,
.blog-hero .post-meta .category::before {
  font-family: "bootstrap-icons";
  margin-right: 0.5rem;
  font-size: 1rem;
}

.blog-hero .post-meta .date::before {
  content: "\f282";
}

.blog-hero .post-meta .category::before {
  content: "\f5d3";
}

.blog-hero .post-title {
  margin: 0;
  font-family: var(--heading-font);
}

.blog-hero .post-title a {
  color: var(--contrast-color);
  text-decoration: none;
}

.blog-hero .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.blog-hero .post-title:not(h2) {
  font-size: 1.25rem;
}

@media (max-width: 991px) {
  .blog-hero .post-title:not(h2) {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.blog-details .article-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.blog-details .article-header .meta-categories {
  margin-bottom: 1.5rem;
}

.blog-details .article-header .meta-categories .category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  margin: 0 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-details .article-header .meta-categories .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-header .title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-header .title {
    font-size: 2.2rem;
  }
}

.blog-details .article-header .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-details .article-header .article-meta .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-header .article-meta .author .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-header .article-meta .author .author-info {
  text-align: left;
}

.blog-details .article-header .article-meta .author .author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-header .article-meta .author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.blog-details .article-header .article-meta .post-info {
  display: flex;
  gap: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-header .article-meta .post-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .blog-details .article-header .article-meta {
    justify-content: center;
    text-align: center;
  }

  .blog-details .article-header .article-meta .post-info {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.blog-details .article-featured-image {
  margin: 0 -2rem 3rem;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

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

@media (max-width: 768px) {
  .blog-details .article-featured-image {
    margin: 0 -1rem 2rem;
    height: 300px;
  }
}

.blog-details .article-wrapper {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 3rem;
  position: relative;
}

@media (max-width: 992px) {
  .blog-details .article-wrapper {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .table-of-contents {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .blog-details .article-wrapper .table-of-contents {
    display: none;
  }
}

.blog-details .article-wrapper .table-of-contents h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.blog-details .article-wrapper .table-of-contents nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-wrapper .table-of-contents nav ul li {
  margin-bottom: 0.75rem;
}

.blog-details .article-wrapper .table-of-contents nav ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 1rem;
  position: relative;
}

.blog-details .article-wrapper .table-of-contents nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover,
.blog-details .article-wrapper .table-of-contents nav ul li a.active {
  color: var(--heading-color);
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover::before,
.blog-details .article-wrapper .table-of-contents nav ul li a.active::before {
  opacity: 1;
}

.blog-details .article-wrapper .article-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.blog-details .article-wrapper .article-content .content-section {
  margin-bottom: 4rem;
}

.blog-details .article-wrapper .article-content .content-section .lead {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.blog-details .article-wrapper .article-content .content-section h2 {
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote {
  margin: 3rem 0;
  padding: 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote {
  padding-left: 3rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
  float: right;
  max-width: 450px;
  margin: 0 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption img {
  width: 100%;
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption figcaption {
  padding: 1rem;
  background: var(--surface-color);
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .feature-points {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point i {
  font-size: 2rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point h4 {
  margin: 0 0 0.5rem;
  color: var(--heading-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point p {
  margin: 0;
  font-size: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid {
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon {
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul li {
  margin-bottom: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.blog-details .article-wrapper .article-content .content-section .key-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .key-principles {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle .number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle h4 {
  color: var(--heading-color);
  margin: 1rem 0;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .info-box .icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .info-box .content h4 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box .content p {
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .future-trends {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .blog-details .article-wrapper .article-content .content-section .future-trends {
    grid-template-columns: 1fr;
  }
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend:hover {
  transform: translateY(-5px);
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-footer h4 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .article-footer .share-article {
  margin-bottom: 3rem;
}

.blog-details .article-footer .share-article .share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-details .article-footer .share-article .share-buttons .share-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface-color);
  border-radius: 30px;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-footer .share-article .share-buttons .share-button i {
  font-size: 1.2rem;
}

.blog-details .article-footer .share-article .share-buttons .share-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-footer .share-article .share-buttons .share-button.twitter:hover {
  background: #1DA1F2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.facebook:hover {
  background: #4267B2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.linkedin:hover {
  background: #0077B5;
}

.blog-details .article-footer .article-tags .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-details .article-footer .article-tags .tags .tag {
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-footer .article-tags .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Ecommerce Cart Section
--------------------------------------------------------------*/
.ecommerce-cart {
  padding-top: 25px;
  padding-bottom: 13px;
}

.ecommerce-cart .cart-items {
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ecommerce-cart .cart-items::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 0.25rem 0.25rem 0 0;
}

.ecommerce-cart .cart-items .cart-header {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.ecommerce-cart .cart-items .cart-header h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--heading-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ecommerce-cart .cart-items .cart-item {
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.ecommerce-cart .cart-items .cart-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.ecommerce-cart .cart-items .cart-item .product-info .product-image {
  width: 5.5rem;
  height: 5.5rem;
  min-width: 5.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-right: 1.25rem;
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: transform 0.3s ease;
}

.ecommerce-cart .cart-items .cart-item .product-info .product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.ecommerce-cart .cart-items .cart-item .product-info .product-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 767.98px) {
  .ecommerce-cart .cart-items .cart-item .product-info .product-image {
    width: 4.5rem;
    height: 4.5rem;
    min-width: 4.5rem;
  }
}

.ecommerce-cart .cart-items .cart-item .product-info .product-details {
  flex: 1;
}

.ecommerce-cart .cart-items .cart-item .product-info .product-details .product-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.ecommerce-cart .cart-items .cart-item .product-info .product-details .product-title:hover {
  color: var(--accent-color);
}

.ecommerce-cart .cart-items .cart-item .product-info .product-details .product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.ecommerce-cart .cart-items .cart-item .product-info .product-details .product-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-radius: 0.375rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.ecommerce-cart .cart-items .cart-item .product-info .product-details .remove-item {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ecommerce-cart .cart-items .cart-item .product-info .product-details .remove-item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #dc3545;
  transition: width 0.3s ease;
}

.ecommerce-cart .cart-items .cart-item .product-info .product-details .remove-item:hover {
  color: #dc3545;
}

.ecommerce-cart .cart-items .cart-item .product-info .product-details .remove-item:hover::after {
  width: 100%;
}

.ecommerce-cart .cart-items .cart-item .product-info .product-details .remove-item i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.ecommerce-cart .cart-items .cart-item .product-info .product-details .remove-item:hover i {
  transform: translateX(-2px);
}

.ecommerce-cart .cart-items .cart-item .price-tag .current-price {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1.05rem;
}

.ecommerce-cart .cart-items .cart-item .price-tag .original-price {
  text-decoration: line-through;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.ecommerce-cart .cart-items .cart-item .quantity-selector {
  display: inline-flex;
  align-items: center;
  border-radius: 2rem;
  overflow: hidden;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.ecommerce-cart .cart-items .cart-item .quantity-selector:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.ecommerce-cart .cart-items .cart-item .quantity-selector .quantity-btn {
  background: none;
  border: none;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ecommerce-cart .cart-items .cart-item .quantity-selector .quantity-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: -1;
}

.ecommerce-cart .cart-items .cart-item .quantity-selector .quantity-btn:hover {
  color: var(--accent-color);
}

.ecommerce-cart .cart-items .cart-item .quantity-selector .quantity-btn:hover::before {
  transform: scale(1);
}

.ecommerce-cart .cart-items .cart-item .quantity-selector .quantity-btn:active {
  transform: scale(0.95);
}

.ecommerce-cart .cart-items .cart-item .quantity-selector .quantity-input {
  width: 2.5rem;
  text-align: center;
  border: none;
  font-size: 0.9375rem;
  color: var(--heading-color);
  font-weight: 600;
  padding: 0.25rem 0;
  background-color: transparent;
}

.ecommerce-cart .cart-items .cart-item .quantity-selector .quantity-input:focus {
  outline: none;
}

.ecommerce-cart .cart-items .cart-item .quantity-selector .quantity-input::-webkit-inner-spin-button,
.ecommerce-cart .cart-items .cart-item .quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ecommerce-cart .cart-items .cart-item .item-total {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 1.125rem;
}

.ecommerce-cart .cart-items .cart-item .item-total span {
  position: relative;
  display: inline-block;
}

.ecommerce-cart .cart-items .cart-item .item-total span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  border-radius: 1px;
}

@media (max-width: 767.98px) {
  .ecommerce-cart .cart-items .cart-item {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
}

.ecommerce-cart .cart-items .cart-actions {
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.ecommerce-cart .cart-items .cart-actions .coupon-form .input-group {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.03);
}

.ecommerce-cart .cart-items .cart-actions .coupon-form .input-group .form-control {
  border-right: none;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 0.875rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  padding-left: 1.25rem;
  border-radius: 2rem 0 0 2rem;
}

.ecommerce-cart .cart-items .cart-actions .coupon-form .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.ecommerce-cart .cart-items .cart-actions .coupon-form .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.ecommerce-cart .cart-items .cart-actions .coupon-form .input-group .btn {
  border-radius: 0 2rem 2rem 0;
  font-size: 0.875rem;
  padding-right: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.ecommerce-cart .cart-items .cart-actions .btn {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: all 0.3s ease;
  border-radius: 2rem;
}

.ecommerce-cart .cart-items .cart-actions .btn i {
  transition: transform 0.3s ease;
}

.ecommerce-cart .cart-items .cart-actions .btn:hover i {
  transform: rotate(15deg);
}

.ecommerce-cart .cart-summary {
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  padding: 2rem;
  position: sticky;
  top: 6.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ecommerce-cart .cart-summary::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 50%), var(--accent-color));
  border-radius: 0.25rem 0.25rem 0 0;
}

.ecommerce-cart .cart-summary .summary-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.ecommerce-cart .cart-summary .summary-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 3rem;
  height: 2px;
  background-color: var(--accent-color);
  border-radius: 1px;
}

.ecommerce-cart .cart-summary .summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  position: relative;
}

.ecommerce-cart .cart-summary .summary-item.discount {
  color: #28a745;
}

.ecommerce-cart .cart-summary .summary-item.discount .summary-value {
  background-color: rgba(40, 167, 69, 0.1);
}

.ecommerce-cart .cart-summary .summary-item .summary-label {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.ecommerce-cart .cart-summary .summary-item .summary-value {
  font-weight: 600;
  color: var(--heading-color);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  transition: transform 0.3s ease;
}

.ecommerce-cart .cart-summary .summary-item .summary-value:hover {
  transform: translateX(-3px);
}

.ecommerce-cart .cart-summary .summary-item .shipping-options {
  width: 100%;
  padding: 0 1rem 1rem 1rem;
}

.ecommerce-cart .cart-summary .summary-item .shipping-options .form-check {
  margin-bottom: 0.75rem;
  padding-left: 2rem;
}

.ecommerce-cart .cart-summary .summary-item .shipping-options .form-check:last-child {
  margin-bottom: 0;
}

.ecommerce-cart .cart-summary .summary-item .shipping-options .form-check .form-check-input {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  margin-left: -2rem;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  transition: all 0.3s ease;
}

.ecommerce-cart .cart-summary .summary-item .shipping-options .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.15rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.ecommerce-cart .cart-summary .summary-item .shipping-options .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.15rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.ecommerce-cart .cart-summary .summary-item .shipping-options .form-check .form-check-label {
  font-size: 0.875rem;
  color: var(--default-color);
  transition: color 0.3s ease;
}

.ecommerce-cart .cart-summary .summary-item .shipping-options .form-check .form-check-label:hover {
  color: var(--accent-color);
}

.ecommerce-cart .cart-summary .summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.75rem 0;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--background-color), transparent 95%));
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.ecommerce-cart .cart-summary .summary-total .summary-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading-color);
}

.ecommerce-cart .cart-summary .summary-total .summary-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  position: relative;
}

.ecommerce-cart .cart-summary .summary-total .summary-value::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  border-radius: 1px;
}

.ecommerce-cart .cart-summary .checkout-button {
  margin-bottom: 1rem;
}

.ecommerce-cart .cart-summary .checkout-button .btn {
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ecommerce-cart .cart-summary .checkout-button .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  z-index: -1;
  transition: transform 0.6s ease;
  transform: translateX(-100%);
}

.ecommerce-cart .cart-summary .checkout-button .btn:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.ecommerce-cart .cart-summary .checkout-button .btn:hover::before {
  transform: translateX(0);
}

.ecommerce-cart .cart-summary .checkout-button .btn:hover i {
  transform: translateX(0.25rem);
}

.ecommerce-cart .cart-summary .checkout-button .btn i {
  transition: transform 0.3s ease;
}

.ecommerce-cart .cart-summary .continue-shopping {
  margin-bottom: 1.5rem;
}

.ecommerce-cart .cart-summary .continue-shopping .btn-link {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  transition: all 0.3s ease;
  border-radius: 2rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.ecommerce-cart .cart-summary .continue-shopping .btn-link i {
  transition: transform 0.3s ease;
}

.ecommerce-cart .cart-summary .continue-shopping .btn-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.ecommerce-cart .cart-summary .continue-shopping .btn-link:hover i {
  transform: translateX(-0.25rem);
}

.ecommerce-cart .cart-summary .payment-methods {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1.25rem;
}

.ecommerce-cart .cart-summary .payment-methods .payment-title {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0.75rem;
  text-align: center;
}

.ecommerce-cart .cart-summary .payment-methods .payment-icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.ecommerce-cart .cart-summary .payment-methods .payment-icons i {
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
}

.ecommerce-cart .cart-summary .payment-methods .payment-icons i:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.ecommerce-cart .btn-accent {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.ecommerce-cart .btn-accent:hover,
.ecommerce-cart .btn-accent:focus,
.ecommerce-cart .btn-accent:active {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.ecommerce-cart .btn-accent:active {
  transform: translateY(0);
}

.ecommerce-cart .btn-outline-accent {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: transparent;
}

.ecommerce-cart .btn-outline-accent:hover,
.ecommerce-cart .btn-outline-accent:focus,
.ecommerce-cart .btn-outline-accent:active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.ecommerce-cart .btn-outline-accent:active {
  transform: translateY(0);
}

.ecommerce-cart .btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
  background-color: transparent;
}

.ecommerce-cart .btn-outline-danger:hover,
.ecommerce-cart .btn-outline-danger:focus,
.ecommerce-cart .btn-outline-danger:active {
  color: var(--contrast-color);
  background-color: #dc3545;
  border-color: #dc3545;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.ecommerce-cart .btn-outline-danger:active {
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .ecommerce-cart .cart-summary {
    position: static;
    margin-top: 1.5rem;
  }
}

@media (max-width: 767.98px) {

  .ecommerce-cart .cart-items,
  .ecommerce-cart .cart-summary {
    padding: 1.5rem;
  }
}
#cart-dynamic-items:empty {
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
}


/*--------------------------------------------------------------
# Order Confirmation Section
--------------------------------------------------------------*/
.order-confirmation {
  padding-top: 12px;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.order-confirmation .confirmation-header {
  margin-bottom: 2.5rem;
}

.order-confirmation .confirmation-header .success-icon i {
  font-size: 4rem;
  color: #4BB543;
}

.order-confirmation .confirmation-header h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.order-confirmation .confirmation-header .lead {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}

.order-confirmation .confirmation-header .order-number {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.order-confirmation .confirmation-header .order-number strong {
  color: var(--default-color);
  letter-spacing: 0.5px;
}

.order-confirmation .order-details {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-confirmation .order-details h4 {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.order-confirmation .order-details address {
  font-style: normal;
  line-height: 1.6;
}

.order-confirmation .order-details .shipping-method {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 6px;
  font-size: 0.9rem;
}

.order-confirmation .order-details .payment-info .payment-method {
  display: flex;
  align-items: center;
}

.order-confirmation .order-details .payment-info .billing-address {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

@media (max-width: 767.98px) {
  .order-confirmation .order-details {
    padding: 1.5rem;
  }
}

.order-confirmation .order-summary {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-confirmation .order-summary h4 {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.order-confirmation .order-summary .order-items .item-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.order-confirmation .order-summary .order-items .item-row:last-child {
  border-bottom: none;
}

.order-confirmation .order-summary .order-items .item-row .item-image {
  flex: 0 0 80px;
  margin-right: 1rem;
}

.order-confirmation .order-summary .order-items .item-row .item-image img {
  border-radius: 8px;
  object-fit: contain;
  width: 80px;
  height: 80px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.order-confirmation .order-summary .order-items .item-row .item-details {
  flex: 1;
}

.order-confirmation .order-summary .order-items .item-row .item-details h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.order-confirmation .order-summary .order-items .item-row .item-details p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.order-confirmation .order-summary .order-items .item-row .item-details .quantity-price {
  font-size: 0.95rem;
}

.order-confirmation .order-summary .order-items .item-row .item-details .quantity-price .price {
  font-weight: 600;
}

.order-confirmation .order-summary .order-totals {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding-top: 1rem;
  font-size: 0.95rem;
}

.order-confirmation .order-summary .order-totals .total-row {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.order-confirmation .next-steps {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-confirmation .next-steps h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.order-confirmation .next-steps p {
  margin-bottom: 1.5rem;
}

.order-confirmation .next-steps .tracking-info {
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.order-confirmation .next-steps .tracking-info i {
  color: var(--accent-color);
}

.order-confirmation .next-steps .action-buttons .btn {
  padding: 0.65rem 1.5rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.order-confirmation .next-steps .action-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.order-confirmation .next-steps .action-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.order-confirmation .next-steps .action-buttons .btn.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.order-confirmation .next-steps .action-buttons .btn.btn-outline-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.order-confirmation .help-contact {
  font-size: 0.95rem;
}

.order-confirmation .help-contact a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.order-confirmation .help-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {

  .order-confirmation .order-details,
  .order-confirmation .order-summary,
  .order-confirmation .next-steps {
    padding: 1.25rem;
  }

  .order-confirmation .order-items .item-row .item-image {
    flex: 0 0 70px;
  }

  .order-confirmation .order-items .item-row .item-image img {
    width: 70px;
    height: 70px;
  }

  .order-confirmation .order-items .item-row .item-details h5 {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Account Section
--------------------------------------------------------------*/
.account {
  padding-top: 15px;
  padding-bottom: 60px;
}

.account .sidebar-toggle .btn-toggle {
  width: 100%;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.account .sidebar-toggle .btn-toggle i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}

.account .sidebar-toggle .btn-toggle:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

@media (max-width: 991.98px) {
  .account .profile-sidebar {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 992px) {
  .account .profile-sidebar {
    max-width: 280px;
  }
}

@media (max-width: 991.98px) {
  .account .profile-sidebar {
    margin-bottom: 2rem;
  }
}

.account .profile-sidebar .profile-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.account .profile-sidebar .profile-header .profile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 1rem;
  flex-shrink: 0;
}

.account .profile-sidebar .profile-header .profile-info h4 {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.account .profile-sidebar .profile-header .profile-info .profile-bonus {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account .profile-sidebar .profile-header .profile-info .profile-bonus i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.account .profile-sidebar .profile-nav .nav-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 1.5rem 0 0.75rem;
  padding-left: 0.5rem;
}

.account .profile-sidebar .profile-nav .nav-item {
  margin-bottom: 0.25rem;
}

.account .profile-sidebar .profile-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  color: var(--default-color);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
}

.account .profile-sidebar .profile-nav .nav-link i {
  margin-right: 0.75rem;
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: all 0.3s ease;
}

.account .profile-sidebar .profile-nav .nav-link .badge {
  margin-left: auto;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
}

.account .profile-sidebar .profile-nav .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.account .profile-sidebar .profile-nav .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.account .profile-sidebar .profile-nav .nav-link.active i {
  color: var(--contrast-color);
}

.account .profile-sidebar .profile-nav .nav-link.logout {
  color: #ef4444;
}

.account .profile-sidebar .profile-nav .nav-link.logout i {
  color: #ef4444;
}

.account .profile-content .tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.account .profile-content .tab-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.account .profile-content .tab-header .tab-filters {
  margin-top: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .account .profile-content .tab-header .tab-filters {
    margin-top: 0;
    width: auto;
  }
}

.account .profile-content .tab-header .tab-filters .dropdown .btn {
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.625rem 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  /* Hide Bootstrap's default dropdown caret */
}

@media (min-width: 768px) {
  .account .profile-content .tab-header .tab-filters .dropdown .btn {
    width: auto;
    min-width: 180px;
  }
}

.account .profile-content .tab-header .tab-filters .dropdown .btn.dropdown-toggle::after {
  display: none;
}

.account .profile-content .tab-header .tab-filters .dropdown .btn i {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
  display: inline-block;
}

.account .profile-content .tab-header .tab-filters .dropdown .btn[aria-expanded=true] i {
  transform: rotate(180deg);
}

.account .profile-content .tab-header .tab-filters .dropdown .dropdown-menu {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
  min-width: 100%;
}

.account .profile-content .tab-header .tab-filters .dropdown .dropdown-menu .dropdown-item {
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

.account .profile-content .tab-header .tab-filters .dropdown .dropdown-menu .dropdown-item:hover,
.account .profile-content .tab-header .tab-filters .dropdown .dropdown-menu .dropdown-item:focus {
  background-color: rgba(0, 0, 0, 0.02);
}

.account .profile-content .tab-header .tab-filters .dropdown .dropdown-menu .dropdown-item:active {
  background-color: rgba(0, 0, 0, 0.03);
}

.account .profile-content .orders-table {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.account .profile-content .orders-table .table-header {
  padding: 1rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.account .profile-content .orders-table .table-header .sort-header {
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}

.account .profile-content .orders-table .table-header .sort-header i {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.account .profile-content .orders-table .table-header .sort-header i:hover {
  opacity: 1;
}

.account .profile-content .orders-table .order-items .order-item {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.account .profile-content .orders-table .order-items .order-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.account .profile-content .orders-table .order-items .order-item:last-child {
  border-bottom: none;
}

.account .profile-content .orders-table .order-items .order-item .order-id {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.875rem;
}

.account .profile-content .orders-table .order-items .order-item .order-date {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account .profile-content .orders-table .order-items .order-item .order-status {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
}

.account .profile-content .orders-table .order-items .order-item .order-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.account .profile-content .orders-table .order-items .order-item .order-status.in-progress {
  color: #f59e0b;
}

.account .profile-content .orders-table .order-items .order-item .order-status.in-progress .status-dot {
  background-color: #f59e0b;
}

.account .profile-content .orders-table .order-items .order-item .order-status.delivered {
  color: #10b981;
}

.account .profile-content .orders-table .order-items .order-item .order-status.delivered .status-dot {
  background-color: #10b981;
}

.account .profile-content .orders-table .order-items .order-item .order-status.canceled {
  color: #ef4444;
}

.account .profile-content .orders-table .order-items .order-item .order-status.canceled .status-dot {
  background-color: #ef4444;
}

.account .profile-content .orders-table .order-items .order-item .order-total {
  font-weight: 600;
  font-size: 0.875rem;
}

.account .profile-content .orders-table .order-items .order-item .order-products {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.05);
}

.account .profile-content .orders-table .order-items .order-item .order-products .product-thumbnails {
  display: flex;
  align-items: center;
}

.account .profile-content .orders-table .order-items .order-item .order-products .product-thumbnails .product-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.account .profile-content .orders-table .order-items .order-item .order-products .product-thumbnails .more-products {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--default-color);
  font-size: 0.75rem;
  font-weight: 600;
}

.account .profile-content .orders-table .order-items .order-item .order-products .order-details-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--default-color);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.account .profile-content .orders-table .order-items .order-item .order-products .order-details-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.account .profile-content .orders-table .order-items .order-item .order-products .order-details-link i {
  transition: transform 0.3s ease;
}

.account .profile-content .orders-table .order-items .order-item .order-products .order-details-link[aria-expanded=true] i {
  transform: rotate(180deg);
}

.account .profile-content .orders-table .order-details {
  background-color: rgba(0, 0, 0, 0.01);
  border-top: 1px dashed rgba(0, 0, 0, 0.05);
}

.account .profile-content .orders-table .order-details .order-details-content {
  padding: 1.5rem;
}

.account .profile-content .orders-table .order-details .order-details-content .order-details-header {
  margin-bottom: 1.5rem;
}

.account .profile-content .orders-table .order-details .order-details-content .order-details-header h5 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.account .profile-content .orders-table .order-details .order-details-content .order-details-header .order-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.account .profile-content .orders-table .order-details .order-details-content .order-details-header .order-info .info-item .info-label {
  font-weight: 500;
  margin-right: 0.5rem;
}

.account .profile-content .orders-table .order-details .order-details-content .order-details-header .order-info .info-item .info-value {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account .profile-content .orders-table .order-details .order-details-content .order-items-list {
  margin-bottom: 1.5rem;
}

.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail:last-child {
  border-bottom: none;
}

.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 1rem;
  flex-shrink: 0;
}

.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-info {
  flex-grow: 1;
}

.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-info h6 {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-info .item-meta {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-info .item-meta .item-sku {
  margin-right: 1rem;
}

.account .profile-content .orders-table .order-details .order-details-content .order-items-list .order-item-detail .item-price {
  font-weight: 600;
  font-size: 0.875rem;
  margin-left: 1rem;
}

.account .profile-content .orders-table .order-details .order-details-content .order-summary {
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.account .profile-content .orders-table .order-details .order-details-content .order-summary .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.account .profile-content .orders-table .order-details .order-details-content .order-summary .summary-row.total {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent-color);
}

.account .profile-content .orders-table .order-details .order-details-content .shipping-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-address,
.account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-method {
  flex: 1;
  min-width: 200px;
}

.account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-address h6,
.account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-method h6 {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-address p,
.account .profile-content .orders-table .order-details .order-details-content .shipping-info .shipping-method p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.account .profile-content .orders-table .order-details .order-details-content .cancellation-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.05);
}

.account .profile-content .orders-table .order-details .order-details-content .cancellation-info h6 {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ef4444;
}

.account .profile-content .orders-table .order-details .order-details-content .cancellation-info p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.account .profile-content .orders-table .pagination-container {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.account .profile-content .orders-table .pagination-container .pagination .page-item {
  margin: 0 0.25rem;
}

.account .profile-content .orders-table .pagination-container .pagination .page-item .page-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  color: var(--default-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .profile-content .orders-table .pagination-container .pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.account .profile-content .orders-table .pagination-container .pagination .page-item:not(.active) .page-link:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.account .profile-content .wishlist-items .wishlist-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.account .profile-content .wishlist-items .wishlist-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.account .profile-content .wishlist-items .wishlist-item .wishlist-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.account .profile-content .wishlist-items .wishlist-item .wishlist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.account .profile-content .wishlist-items .wishlist-item .wishlist-image .remove-wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.account .profile-content .wishlist-items .wishlist-item .wishlist-image:hover img {
  transform: scale(1.05);
}

.account .profile-content .wishlist-items .wishlist-item .wishlist-image:hover .remove-wishlist {
  opacity: 1;
  transform: translateY(0);
}

.account .profile-content .wishlist-items .wishlist-item .wishlist-content {
  padding: 1.25rem;
}

.account .profile-content .wishlist-items .wishlist-item .wishlist-content h5 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.account .profile-content .wishlist-items .wishlist-item .wishlist-content .product-price {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.account .profile-content .wishlist-items .wishlist-item .wishlist-content .btn-add-cart {
  width: 100%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .profile-content .wishlist-items .wishlist-item .wishlist-content .btn-add-cart:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account .profile-content .payment-methods .payment-method-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.account .profile-content .payment-methods .payment-method-item .payment-card {
  display: flex;
  align-items: center;
}

.account .profile-content .payment-methods .payment-method-item .payment-card .card-type {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.account .profile-content .payment-methods .payment-method-item .payment-card .card-type i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.account .profile-content .payment-methods .payment-method-item .payment-card .card-info {
  flex-grow: 1;
}

.account .profile-content .payment-methods .payment-method-item .payment-card .card-info .card-number {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.account .profile-content .payment-methods .payment-method-item .payment-card .card-info .card-expiry {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account .profile-content .payment-methods .payment-method-item .payment-card .card-actions {
  display: flex;
  align-items: center;
}

.account .profile-content .payment-methods .payment-method-item .payment-card .card-actions button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.account .profile-content .payment-methods .payment-method-item .payment-card .card-actions button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.account .profile-content .payment-methods .payment-method-item .payment-card .card-actions button.btn-delete-card {
  color: #ef4444;
}

.account .profile-content .payment-methods .payment-method-item .default-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: #e8f4ff;
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 1rem;
  margin-top: 1rem;
}

.account .profile-content .payment-methods .payment-method-item .btn-make-default {
  background-color: #f5f5f5;
  color: var(--default-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.account .profile-content .payment-methods .payment-method-item .btn-make-default:hover {
  background-color: #e9e9e9;
}

.account .profile-content .btn-add-payment,
.account .profile-content .btn-add-address {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.account .profile-content .btn-add-payment i,
.account .profile-content .btn-add-address i {
  margin-right: 0.5rem;
}

.account .profile-content .btn-add-payment:hover,
.account .profile-content .btn-add-address:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account .profile-content .reviews-list .review-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.account .profile-content .reviews-list .review-item .review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

@media (max-width: 575.98px) {
  .account .profile-content .reviews-list .review-item .review-header {
    flex-direction: column;
  }
}

.account .profile-content .reviews-list .review-item .review-header .review-product {
  display: flex;
  align-items: center;
}

.account .profile-content .reviews-list .review-item .review-header .review-product .product-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.account .profile-content .reviews-list .review-item .review-header .review-product .product-info h5 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.account .profile-content .reviews-list .review-item .review-header .review-product .product-info .review-date {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account .profile-content .reviews-list .review-item .review-header .review-rating {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

@media (max-width: 575.98px) {
  .account .profile-content .reviews-list .review-item .review-header .review-rating {
    margin-left: 0;
    margin-top: 1rem;
  }
}

.account .profile-content .reviews-list .review-item .review-header .review-rating i {
  color: #f59e0b;
  margin-right: 0.25rem;
}

.account .profile-content .reviews-list .review-item .review-header .review-rating i:last-child {
  margin-right: 0;
}

.account .profile-content .reviews-list .review-item .review-content {
  margin-bottom: 1rem;
}

.account .profile-content .reviews-list .review-item .review-content p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.account .profile-content .reviews-list .review-item .review-actions {
  display: flex;
  justify-content: flex-end;
}

.account .profile-content .reviews-list .review-item .review-actions button {
  background-color: #f5f5f5;
  color: var(--default-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.account .profile-content .reviews-list .review-item .review-actions button:hover {
  background-color: #e9e9e9;
}

.account .profile-content .reviews-list .review-item .review-actions button.btn-delete-review {
  color: #ef4444;
}

.account .profile-content .personal-info-form {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

.account .profile-content .personal-info-form .form-label {
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.account .profile-content .personal-info-form .form-control {
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.account .profile-content .personal-info-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(54, 144, 231, 0.1);
}

.account .profile-content .personal-info-form .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.account .profile-content .personal-info-form .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(54, 144, 231, 0.1);
}

.account .profile-content .personal-info-form .btn-save {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .profile-content .personal-info-form .btn-save:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.account .profile-content .addresses-list .address-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  height: 100%;
  position: relative;
}

.account .profile-content .addresses-list .address-item .address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.account .profile-content .addresses-list .address-item .address-header h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.account .profile-content .addresses-list .address-item .address-header .address-actions {
  display: flex;
  align-items: center;
}

.account .profile-content .addresses-list .address-item .address-header .address-actions button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.account .profile-content .addresses-list .address-item .address-header .address-actions button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.account .profile-content .addresses-list .address-item .address-header .address-actions button.btn-delete-address {
  color: #ef4444;
}

.account .profile-content .addresses-list .address-item .address-content {
  margin-bottom: 1rem;
}

.account .profile-content .addresses-list .address-item .address-content p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.account .profile-content .addresses-list .address-item .default-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: #e8f4ff;
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 1rem;
}

.account .profile-content .addresses-list .address-item .btn-make-default {
  background-color: #f5f5f5;
  color: var(--default-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .profile-content .addresses-list .address-item .btn-make-default:hover {
  background-color: #e9e9e9;
}

.account .profile-content .notifications-settings {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

.account .profile-content .notifications-settings .notification-group {
  margin-bottom: 2rem;
}

.account .profile-content .notifications-settings .notification-group:last-of-type {
  margin-bottom: 1.5rem;
}

.account .profile-content .notifications-settings .notification-group h5 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.account .profile-content .notifications-settings .notification-group .notification-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.account .profile-content .notifications-settings .notification-group .notification-item:last-child {
  border-bottom: none;
}

.account .profile-content .notifications-settings .notification-group .notification-item .notification-info .notification-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.account .profile-content .notifications-settings .notification-group .notification-item .notification-info .notification-desc {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.account .profile-content .notifications-settings .notification-group .notification-item .form-check-input {
  width: 2.5rem;
  height: 1.25rem;
  margin-left: 1rem;
}

.account .profile-content .notifications-settings .notification-group .notification-item .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.account .profile-content .notifications-settings .notification-actions {
  display: flex;
  justify-content: flex-end;
}

.account .profile-content .notifications-settings .notification-actions .btn-save {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.account .profile-content .notifications-settings .notification-actions .btn-save:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}