@charset "UTF-8";
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #e22a2a;
  --bs-btn-border-color: #e22a2a;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc2626;
  --bs-btn-hover-border-color: #dc2626;
  --bs-btn-focus-shadow-rgb: 226, 42, 42;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b91c1c;
  --bs-btn-active-border-color: #b91c1c;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #e22a2a;
  --bs-btn-disabled-border-color: #e22a2a;
}

.btn-outline-primary {
  --bs-btn-color: #e22a2a;
  --bs-btn-border-color: #e22a2a;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #e22a2a;
  --bs-btn-hover-border-color: #e22a2a;
  --bs-btn-focus-shadow-rgb: 226, 42, 42;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #e22a2a;
  --bs-btn-active-border-color: #e22a2a;
  --bs-btn-disabled-color: #e22a2a;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #e22a2a;
  --bs-gradient: none;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #fca5a5;
  --bs-btn-border-color: #fca5a5;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f87171;
  --bs-btn-hover-border-color: #f87171;
  --bs-btn-focus-shadow-rgb: 252, 165, 165;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f87171;
  --bs-btn-active-border-color: #f87171;
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #fca5a5;
  --bs-btn-disabled-border-color: #fca5a5;
}

.btn-outline-info {
  --bs-btn-color: #fca5a5;
  --bs-btn-border-color: #fca5a5;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #fca5a5;
  --bs-btn-hover-border-color: #fca5a5;
  --bs-btn-focus-shadow-rgb: 252, 165, 165;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #fca5a5;
  --bs-btn-active-border-color: #fca5a5;
  --bs-btn-disabled-color: #fca5a5;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #fca5a5;
}

.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.alert-primary {
  --bs-alert-color: #7f1d1d;
  --bs-alert-bg: #fef2f2;
  --bs-alert-border-color: #fecaca;
  --bs-alert-link-color: #991b1b;
}

.alert-info {
  --bs-alert-color: #b91c1c;
  --bs-alert-bg: #fef2f2;
  --bs-alert-border-color: #fecaca;
  --bs-alert-link-color: #dc2626;
}

.badge.bg-danger {
  color: #000 !important;
  background-color: #fca5a5 !important;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #f87171;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(226, 42, 42, 0.25);
}

.form-select:focus {
  border-color: #f87171;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(226, 42, 42, 0.25);
}

.form-check-input:checked {
  background-color: #e22a2a;
  border-color: #e22a2a;
}

.form-check-input:focus {
  border-color: #f87171;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(226, 42, 42, 0.25);
}

.form-check-input:checked:focus {
  box-shadow: 0 0 0 0.25rem rgba(226, 42, 42, 0.25);
}

.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(226, 42, 42, 0.25);
}

.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(226, 42, 42, 0.25);
}

.form-range::-webkit-slider-thumb {
  background-color: #e22a2a;
}

.form-range::-moz-range-thumb {
  background-color: #e22a2a;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: #e22a2a;
}

.nav-link {
  color: #e22a2a;
}

.nav-link:hover,
.nav-link:focus {
  color: #dc2626;
}

.page-link {
  color: #e22a2a;
}

.page-link:hover {
  z-index: 2;
  color: #dc2626;
  background-color: #fee2e2;
  border-color: #fecaca;
}

.page-link:focus {
  z-index: 3;
  color: #dc2626;
  background-color: #fee2e2;
  border-color: #fecaca;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(226, 42, 42, 0.25);
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #e22a2a;
  border-color: #e22a2a;
}

.page-item.disabled .page-link {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}

.progress-bar {
  background-color: #e22a2a;
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.spinner-border {
  color: #e22a2a;
}

.spinner-grow {
  color: #e22a2a;
}

.text-primary .spinner-border,
.text-primary .spinner-grow {
  color: inherit !important;
}

.toast-header {
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  background-clip: padding-box;
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}

.accordion-button:not(.collapsed) {
  color: #7f1d1d;
  background-color: #fef2f2;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:focus {
  z-index: 3;
  border-color: #f87171;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(226, 42, 42, 0.25);
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: #e22a2a;
}

.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(226, 42, 42, 0.25);
  opacity: 1;
}

.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
}

.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: #e22a2a;
  border-color: #e22a2a;
}

.list-group-item-primary {
  color: #7f1d1d;
  background-color: #fef2f2;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #7f1d1d;
  background-color: #fee2e2;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #7f1d1d;
  border-color: #7f1d1d;
}

.list-group-item-info {
  color: #b91c1c;
  background-color: #fef2f2;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #b91c1c;
  background-color: #fee2e2;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #b91c1c;
  border-color: #b91c1c;
}

.table-primary {
  --bs-table-color-type: invert;
  --bs-table-bg-type: #fef2f2;
}

.table-info {
  --bs-table-color-type: invert;
  --bs-table-bg-type: #fef2f2;
}

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(226, 42, 42, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(252, 165, 165, var(--bs-bg-opacity, 1)) !important;
}

.border-start-primary {
  border-left-color: #e22a2a !important;
}

.border-end-primary {
  border-right-color: #e22a2a !important;
}

.border-top-primary {
  border-top-color: #e22a2a !important;
}

.border-bottom-primary {
  border-bottom-color: #e22a2a !important;
}

.collapsing {
  transition: height 0.35s ease;
}

.offcanvas-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
.offcanvas-body::-webkit-scrollbar {
  width: 4px;
}
.offcanvas-body::-webkit-scrollbar-track {
  background: transparent;
}
.offcanvas-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}
.offcanvas-body::-webkit-scrollbar-thumb:hover {
  background: #999;
}

#booqable-cart {
  display: none !important;
  z-index: -9999;
  visibility: hidden;
}

body .booqable-datepicker > div > .booqable-component > div > .from p {
  color: var(--bs-primary);
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  margin: 0;
}

body .booqable-datepicker > div > .booqable-component > div > .till p {
  color: #000 !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  margin: 0;
}

.booqable-component .booqable-product-button-wrapper .bq-variation-wrapper,
.booqable-component .booqable-product-button-wrapper .bq-price-details,
.booqable-component .booqable-product-button-wrapper .bq-bundle-contents,
.booqable-component .booqable-product-button-wrapper .bq-control,
.booqable-component .booqable-product-button-wrapper .bq-status {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  z-index: -9999 !important;
}
.booqable-component .booqable-product-button-wrapper a {
  display: none !important;
  visibility: hidden !important;
}
.booqable-component .booqable-product-button-wrapper .custom-availability-link {
  padding: 8px 16px !important;
  border: 1px solid var(--bs-black);
  color: var(--bs-black);
  text-decoration: none !important;
  border-radius: 6px !important;
  font-size: 16px !important;
  line-height: 16px !important;
  height: auto !important;
  cursor: help;
  display: inline-block !important;
  visibility: visible !important;
}

a {
  color: #e22a2a;
  text-decoration: underline;
}

a:hover {
  color: #dc2626;
}

.link-primary {
  color: #e22a2a !important;
  -webkit-text-decoration-color: #e22a2a !important;
          text-decoration-color: #e22a2a !important;
}
.link-primary:hover, .link-primary:focus {
  color: #dc2626 !important;
  -webkit-text-decoration-color: #dc2626 !important;
          text-decoration-color: #dc2626 !important;
}

.link-info {
  color: #fca5a5 !important;
  -webkit-text-decoration-color: #fca5a5 !important;
          text-decoration-color: #fca5a5 !important;
}
.link-info:hover, .link-info:focus {
  color: #f87171 !important;
  -webkit-text-decoration-color: #f87171 !important;
          text-decoration-color: #f87171 !important;
}

.page-content {
  line-height: 1.8;
}

.page-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bs-primary);
}

.page-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.page-content ul,
.page-content ol {
  margin-bottom: 1rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

.page-content a {
  color: var(--bs-primary);
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

.page-content blockquote {
  border-left: 4px solid var(--bs-primary);
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
}

.page-content table {
  margin: 1.5rem 0;
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

@media print {
  .list-group,
  .breadcrumb,
  .btn,
  footer {
    display: none !important;
  }
  .page-content {
    font-size: 12pt;
    line-height: 1.4;
  }
}
:root {
  --bs-primary: #e22a2a;
  --bs-primary-rgb: 226, 42, 42;
  --bs-primary-50: #fef2f2;
  --bs-primary-100: #fee2e2;
  --bs-primary-200: #fecaca;
  --bs-primary-300: #fca5a5;
  --bs-primary-400: #f87171;
  --bs-primary-500: #e22a2a;
  --bs-primary-600: #dc2626;
  --bs-primary-700: #b91c1c;
  --bs-primary-800: #991b1b;
  --bs-primary-900: #7f1d1d;
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: 80px;
  }
}
.card-shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.container-max-width {
  max-width: 1440px !important;
  margin: 0 auto;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.header-main {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.header-main-sticky-spacer {
  top: 155px;
}

.top-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a1a1a;
}
.top-bar a:hover {
  color: #fff !important;
  opacity: 0.8;
}

.header-desktop-row {
  min-height: 94px;
}

.header-logo .logo-img {
  height: 50px;
  width: auto;
}

.header-actions {
  display: flex;
  gap: 2px;
}

.action-btn {
  color: #333;
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-align: center;
  line-height: 1;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  min-width: 60px;
}
.action-btn i {
  font-size: 32px;
}
.action-btn .action-label {
  display: block;
  font-size: 12px;
  margin-top: 2px;
}
.action-btn:hover {
  background: #e9ecef;
  color: #333;
}

.action-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: bold;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-studio {
  background-color: transparent !important;
  border: 2px solid #2563eb !important;
  color: #2563eb !important;
  transition: all 0.2s ease;
}
.btn-outline-studio:hover, .btn-outline-studio:focus {
  background-color: #2563eb !important;
  color: #fff !important;
}

.studio-mobile-btn {
  color: #2563eb !important;
}
.studio-mobile-btn i {
  color: #2563eb;
}

.studio-dropdown-wrapper {
  position: relative;
  display: inline-block;
}
.studio-dropdown-wrapper::after {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}
.studio-dropdown-wrapper.dropdown-open::after {
  display: block;
}

.studio-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 1050;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 12px;
  min-width: -moz-max-content;
  min-width: max-content;
}
.studio-dropdown.show {
  display: block;
}

.studio-dropdown-grid {
  display: flex;
  gap: 12px;
}

.studio-dropdown-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  padding: 8px;
  border-radius: 10px;
  transition: all 0.2s ease;
  min-width: 110px;
  max-width: 140px;
}
.studio-dropdown-card:hover {
  background: #f0f4ff;
  color: #2563eb;
  transform: translateY(-2px);
}

.studio-dropdown-thumb {
  width: 90px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.studio-dropdown-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-dropdown-name {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
}

.catalog-btn {
  padding: 10px 20px;
  font-weight: 600;
}

.search-container {
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.search-input {
  border-color: transparent;
  border-right: none;
  padding: 10px 20px;
}

.search-btn {
  border-color: transparent;
  border-left: none;
  padding: 10px 16px;
}

.search-loading {
  position: relative;
}
.search-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50px;
  width: 16px;
  height: 16px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--bs-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.catalog-dropdown-wrapper::after {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
  z-index: 1000;
}
.catalog-dropdown-wrapper.dropdown-open::after {
  display: block;
}

.mobile-header {
  border-bottom: 1px solid #e9ecef;
}

.mobile-header-row {
  min-height: 60px;
  padding: 8px 0;
}

.mobile-menu-btn,
.mobile-search-btn {
  background: none;
  border: none;
  padding: 8px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
}
.mobile-menu-btn i,
.mobile-search-btn i {
  font-size: 24px;
}

.mobile-logo .logo-img {
  height: 50px;
  width: auto;
}

.mobile-toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e9ecef;
  z-index: 1030;
}

.toolbar-container {
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
}

.toolbar-btn {
  color: #333;
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-align: center;
  line-height: 1;
  padding: 8px;
  border-radius: 8px;
  transition: 0.2s all;
}

.toolbar-label {
  font-size: 11px;
  margin-top: 2px;
}

.popular-searches {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .search-container {
    max-width: 100%;
  }
  .header-actions {
    gap: 5px;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.logo-header img {
  width: auto;
  height: 50px;
}

.header-studio .top-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a1a1a;
}
.header-studio .top-bar a:hover {
  color: #fff !important;
  opacity: 0.8;
}

.header-studio__logo-img {
  height: 50px;
  width: auto;
}

.header-studio__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
}

.header-studio__back-link {
  white-space: nowrap;
}

.footer {
  background: #1a1a1a;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-description {
  color: #adb5bd;
  font-size: 0.95rem;
  line-height: 1.6;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-link:hover {
  background: var(--bs-primary);
  color: white;
  transform: translateY(-2px);
}

.footer-links {
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: #adb5bd;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: white;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}
.contact-item i {
  font-size: 1.2rem;
  margin-top: 2px;
  width: 24px;
  text-align: center;
}

.contact-social .btn {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.contact-social .btn:hover {
  transform: translateY(-2px);
}
.contact-social .btn i {
  font-size: 18px;
  margin: 0;
}

.footer-bottom {
  border-color: #495057 !important;
}

@media (max-width: 768px) {
  .footer-main .row > div {
    margin-bottom: 2rem;
  }
}
.logo-footer img {
  width: auto;
  height: 50px;
}

.footer-studio {
  margin-top: auto;
}

.layout-studio {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content--studio {
  flex: 1 0 auto;
}

.mobile-toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e9ecef;
  z-index: 1030;
}

.toolbar-container {
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
}

.toolbar-btn {
  color: #333;
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-align: center;
  line-height: 1;
  padding: 8px;
  border-radius: 8px;
  transition: 0.2s all;
}

.toolbar-label {
  font-size: 11px;
  margin-top: 2px;
}

.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1055;
  display: none;
}
.auth-modal.show {
  display: block;
}

.auth-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
  z-index: 1050;
}

.auth-modal-dialog {
  position: relative;
  max-width: 500px;
  margin: 2rem auto;
  animation: slideIn 0.3s ease;
  z-index: 1051;
}

.auth-modal-content {
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: none;
  overflow: hidden;
}

.auth-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.auth-modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
}

.auth-modal-body {
  padding: 1.5rem;
  background: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cart-sidebar {
  width: 400px !important;
  max-width: 90vw;
}
.cart-sidebar .offcanvas-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #dee2e6;
}
.cart-sidebar .offcanvas-title {
  font-size: 18px;
  font-weight: 600;
}

.added-product-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: slideInRight 0.4s ease-out;
}

.added-product-info {
  display: flex;
  gap: 12px;
  align-items: center;
}

.added-product-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.added-product-details {
  flex: 1;
  min-width: 0;
}

.added-product-name {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
  line-height: 1.3;
}

.added-product-price {
  font-size: 13px;
  color: var(--bs-primary);
  font-weight: 600;
}

.added-product-quantity {
  font-size: 12px;
  color: #6b7280;
}

.related-products-block {
  border-top: 1px solid #e9ecef;
  padding-top: 20px;
}

.related-products-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 300px;
  overflow-y: auto;
}

.related-product-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  animation: fadeInUp 0.3s ease-out;
  animation-fill-mode: both;
}
.related-product-item:hover {
  background: #e9ecef;
  transform: translateY(-1px);
  color: inherit;
  text-decoration: none;
}
.related-product-item:nth-child(1) {
  animation-delay: 0.1s;
}
.related-product-item:nth-child(2) {
  animation-delay: 0.2s;
}
.related-product-item:nth-child(3) {
  animation-delay: 0.3s;
}
.related-product-item:nth-child(4) {
  animation-delay: 0.4s;
}

.related-product-image {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.related-product-info {
  flex: 1;
  min-width: 0;
}

.related-product-name {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 2px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-product-price {
  font-size: 12px;
  color: var(--bs-primary);
  font-weight: 600;
}

.related-product-add {
  align-self: center;
  padding: 4px 8px;
  font-size: 11px;
  border-radius: 4px;
  border: 1px solid var(--bs-primary);
  background: transparent;
  color: var(--bs-primary);
  transition: all 0.2s ease;
}
.related-product-add:hover {
  background: var(--bs-primary);
  color: white;
}

.cart-actions .btn {
  font-weight: 600;
  border-radius: 8px;
}

.cart-summary {
  border: 1px solid #e9ecef;
}
.cart-summary .fw-bold {
  font-size: 16px;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .cart-sidebar {
    width: 100% !important;
  }
  .added-product-info {
    gap: 10px;
  }
  .added-product-image {
    width: 50px;
    height: 50px;
  }
  .related-product-image {
    width: 40px;
    height: 40px;
  }
  .related-product-name {
    font-size: 12px;
  }
  .related-product-price {
    font-size: 11px;
  }
}
.catalog-dropdown {
  min-width: 350px;
  max-height: 500px;
  overflow-y: auto;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 12px 0;
  max-height: 70vh;
  overflow-y: scroll;
  top: calc(100% + 6px) !important;
  transform: none !important;
}

.dropdown-item-group {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.dropdown-item-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.category-main {
  font-weight: 600;
  color: #333;
  padding: 8px 15px;
}
.category-main:hover {
  background: #f8f9fa;
  color: #e22a2a;
}

.category-sub {
  font-size: 0.9rem;
  color: #6c757d;
  padding: 6px 15px;
}
.category-sub:hover {
  background: #f8f9fa;
  color: var(--bs-primary);
}

.menu-item .badge,
.menu-subitem .badge {
  font-size: 10px;
  padding: 2px 6px;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  position: relative;
}
.breadcrumb-item:hover + .breadcrumb-item::before {
  border-left-color: #e22a2a;
}
.breadcrumb-item a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
}
.breadcrumb-item a:hover {
  color: #e22a2a;
  background: rgba(226, 42, 42, 0.05);
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #374151;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
}

.breadcrumb-alt {
  background: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.breadcrumb-alt .breadcrumb-item {
  display: flex;
  align-items: center;
}
.breadcrumb-alt .breadcrumb-item + .breadcrumb-item::before {
  content: "\f0142";
  font-family: "Material Design Icons";
  font-size: 16px;
  color: #d1d5db;
  margin: 0 4px;
  transition: color 0.2s ease;
}
.breadcrumb-alt .breadcrumb-item a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.breadcrumb-alt .breadcrumb-item a:hover {
  color: #e22a2a;
  background: rgba(226, 42, 42, 0.08);
  text-decoration: none;
}
.breadcrumb-alt .breadcrumb-item.active {
  color: #e22a2a;
  font-weight: 600;
  padding: 6px 10px;
  background: rgba(226, 42, 42, 0.1);
  border-radius: 8px;
}

.breadcrumb-minimal {
  background: none;
  padding: 8px 0;
  margin: 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
}
.breadcrumb-minimal .breadcrumb-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.breadcrumb-minimal .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  font-size: 18px;
  color: #d1d5db;
  margin: 0 6px;
  font-weight: 300;
}
.breadcrumb-minimal .breadcrumb-item a {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}
.breadcrumb-minimal .breadcrumb-item a:hover {
  color: #e22a2a;
  text-decoration: none;
}
.breadcrumb-minimal .breadcrumb-item.active {
  color: #374151;
  font-weight: 500;
}

.breadcrumb-modern {
  background: #f8fafc;
  padding: 12px 16px;
  margin: 0 0 20px 0;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.breadcrumb-modern .breadcrumb-item {
  display: flex;
  align-items: center;
}
.breadcrumb-modern .breadcrumb-item + .breadcrumb-item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d1d5db' viewBox='0 0 24 24'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
  margin: 0 4px;
  opacity: 0.6;
}
.breadcrumb-modern .breadcrumb-item a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.breadcrumb-modern .breadcrumb-item a:hover {
  color: #e22a2a;
  background: rgba(226, 42, 42, 0.1);
  text-decoration: none;
}
.breadcrumb-modern .breadcrumb-item.active {
  color: #e22a2a;
  font-weight: 600;
  padding: 4px 8px;
  background: rgba(226, 42, 42, 0.1);
  border-radius: 6px;
}

@media (max-width: 768px) {
  .breadcrumb,
  .breadcrumb-alt,
  .breadcrumb-minimal {
    font-size: 12px;
    gap: 2px;
  }
  .breadcrumb-modern {
    padding: 8px 12px;
    font-size: 12px;
    margin-bottom: 16px;
  }
  .breadcrumb-item a,
  .breadcrumb-alt .breadcrumb-item a,
  .breadcrumb-modern .breadcrumb-item a {
    padding: 2px 6px;
  }
  .breadcrumb-item.active,
  .breadcrumb-alt .breadcrumb-item.active,
  .breadcrumb-modern .breadcrumb-item.active {
    padding: 2px 6px;
  }
}
.product-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}
.product-card:hover .product-image {
  transform: scale(1.05);
}
.product-card:hover .carousel-control-prev,
.product-card:hover .carousel-control-next {
  opacity: 1;
}

.product-image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  overflow: hidden;
  background: #fff;
}
.product-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  z-index: 1;
}
.product-image-container:has(.product-image.loaded)::before {
  display: none;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.product-carousel {
  width: 100%;
  height: 100%;
  padding: 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.carousel-inner {
  width: 100%;
  height: 100%;
}

.carousel-item {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease ease-in-out;
}

.product-image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  object-fit: contain;
}
.product-image.loaded {
  opacity: 1;
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f3f4;
  color: #6c757d;
}

.price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(49, 130, 206, 0.95);
  color: white;
  padding: 6px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 5;
}

.photo-count-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  z-index: 5;
}

.product-carousel .carousel-control-prev,
.product-carousel .carousel-control-next {
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #6c757d;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease, transform 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.product-carousel .carousel-control-prev {
  left: 8px;
}

.product-carousel .carousel-control-next {
  right: 8px;
}

.product-carousel .carousel-control-prev:hover,
.product-carousel .carousel-control-next:hover {
  transform: translateY(-50%) scale(1.1);
  background: rgb(255, 255, 255);
}

.product-carousel .carousel-control-prev-icon,
.product-carousel .carousel-control-next-icon {
  width: 16px;
  height: 16px;
}

.carousel-indicators {
  bottom: 8px;
  margin-bottom: 0;
}
.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 2px;
  background-color: var(--bs-gray-dark);
  border: none;
  opacity: 1;
}
.carousel-indicators .active {
  background-color: var(--bs-primary);
  transform: scale(1.2);
}

.product-card .favorite-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.product-card .favorite-btn:hover {
  background: white;
  color: var(--bs-primary);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.product-card .favorite-btn:hover i {
  transform: scale(1.1);
}
.product-card .favorite-btn.active {
  background: var(--bs-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(226, 42, 42, 0.3);
}
.product-card .favorite-btn.active:hover {
  background: var(--bs-primary-600);
  transform: scale(1.1);
}
.product-card .favorite-btn.animate-click {
  animation: heartBeat 0.4s ease-in-out;
}
.product-card .favorite-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}
.product-card .favorite-btn.loading i {
  animation: spin 1s linear infinite;
}
.product-card .favorite-btn i {
  font-size: 18px;
  transition: transform 0.2s ease;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.card-body {
  padding: 16px;
}

.product-title-link {
  color: #2d3748;
  font-weight: 600;
  line-height: 1.2;
  display: inline-block;
  transition: color 0.2s ease;
}
.product-title-link:hover {
  text-decoration: none;
}

.product-description {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 0;
}

.product-sku {
  font-size: 11px;
  font-family: "Courier New", monospace;
}

.category-badge {
  font-size: 10px;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.category-badge:hover {
  background: #3182ce !important;
  color: white !important;
  text-decoration: none;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.price-amount {
  font-size: 20px;
  font-weight: 700;
  color: var(--bs-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 18px;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.2;
}

.main-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.price-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--bs-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
  animation: priceAppear 0.6s ease-out;
}

.price-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--bs-primary);
  line-height: 1.2;
}

.deposit-price {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fef3f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  font-size: 14px;
}

.deposit-label {
  color: #7f1d1d;
  font-weight: 600;
}

.deposit-amount {
  color: #dc2626;
  font-weight: 700;
}

.product-price-compact {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}
.product-price-compact .price-amount {
  font-size: 16px;
  font-weight: 700;
  color: var(--bs-primary);
}
.product-price-compact .price-period {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}

@keyframes priceAppear {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.availability {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  text-align: center;
  margin-bottom: 12px;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.availability.loading-dots {
  background: #f8f9fa;
  color: #6c757d;
  position: relative;
}
.availability.available {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.availability.limited {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}
.availability.unavailable {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.availability.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  cursor: pointer;
}
.availability.error:hover {
  background: #f1b0b7;
}

.loading-dots::after {
  content: "";
  animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
  0%, 20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60%, 100% {
    content: "...";
  }
}
.sync-progress {
  display: none;
  margin-top: 10px;
}

.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
  0% {
    background-position: 1rem 0;
  }
  100% {
    background-position: 0 0;
  }
}
.sync-status {
  font-size: 12px;
  margin-top: 5px;
}

.btn-sync.syncing {
  position: relative;
  pointer-events: none;
}
.btn-sync.syncing::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  inset: 0;
}

.sync-info {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px;
  margin-top: 15px;
  font-size: 14px;
}

.cart-controls {
  width: 100%;
  margin-top: 8px;
}

.product-price-with-cart {
  flex-direction: column;
  align-items: stretch !important;
  gap: 8px;
}

.product-price-period {
  display: none;
  margin-top: 5px;
  font-size: 0.85em;
  color: #555;
  font-weight: 400;
  line-height: 1.3;
}

.price-period-text {
  display: inline-block;
}

.add-to-cart {
  transition: all 0.2s ease;
}
.add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226, 42, 42, 0.25);
}

.add-to-cart-btn {
  width: 100% !important;
  justify-content: center;
  font-weight: 600;
  padding: 8px 12px;
  transition: all 0.3s ease;
}
.add-to-cart-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.add-to-cart-btn.disabled:hover {
  transform: none;
  box-shadow: none;
}
.add-to-cart-btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.customer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.stats-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 15px;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}
.cart-item:last-child {
  border-bottom: none;
}

.order-form {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
}

.product-item.new-item {
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .availability {
    font-size: 11px;
    padding: 3px 6px;
    min-height: 20px;
  }
  .price-amount {
    font-size: 16px;
  }
  .price-period {
    font-size: 12px;
  }
  .main-price .price-number {
    font-size: 24px;
  }
  .main-price .price-currency {
    font-size: 16px;
  }
  .main-price .price-period {
    font-size: 14px;
  }
  .deposit-price {
    font-size: 13px;
    padding: 6px 10px;
  }
  .product-carousel .carousel-control-prev,
  .product-carousel .carousel-control-next {
    opacity: 1;
    width: 28px;
    height: 28px;
  }
  .product-carousel .carousel-control-prev {
    left: 6px;
  }
  .product-carousel .carousel-control-next {
    right: 6px;
  }
  .photo-count-badge {
    font-size: 10px;
    padding: 3px 6px;
  }
  .price-badge {
    font-size: 11px;
    padding: 5px 8px;
  }
  .card-body {
    padding: 12px;
  }
  .product-description {
    font-size: 13px;
  }
  .product-price-period {
    font-size: 0.7em;
  }
  .add-to-cart-btn {
    font-size: 14px;
  }
  .product-card .favorite-btn {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
  }
  .product-card .favorite-btn i {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .product-card {
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .price-amount {
    font-size: 15px;
  }
  .price-period {
    font-size: 11px;
  }
  .main-price .price-number {
    font-size: 22px;
  }
  .main-price .price-currency {
    font-size: 15px;
  }
  .main-price .price-period {
    font-size: 13px;
  }
}
.products-grid-section {
  overflow: hidden;
}

.products-grid-section .product-card {
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-grid-section .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .products-grid-section .display-5 {
    font-size: 2rem;
  }
}
.availability.loading-dots::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #f3f3f3;
  border-top-color: var(--bs-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.subcategories-section {
  margin-bottom: 2rem;
  padding: 8px;
  margin-top: -24px;
  position: relative;
}

.subcategories-container {
  position: relative;
  display: flex;
  align-items: center;
}

.subcategories-scroll {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(226, 42, 42, 0.2) transparent;
}
.subcategories-scroll::-webkit-scrollbar {
  height: 4px;
}
.subcategories-scroll::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 2px;
}
.subcategories-scroll::-webkit-scrollbar-thumb {
  background: rgba(226, 42, 42, 0.3);
  border-radius: 2px;
}
.subcategories-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(226, 42, 42, 0.5);
}

.scroll-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #f3f4f6;
  border-radius: 50%;
  background: #ffffff;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 10;
  flex-shrink: 0;
}
.scroll-btn:hover {
  background: #e22a2a;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(226, 42, 42, 0.25);
  border-color: #e22a2a;
}
.scroll-btn:active {
  transform: scale(0.95);
}
.scroll-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  background: #f9fafb;
  color: #d1d5db;
}
.scroll-btn i {
  font-size: 16px;
}

.scroll-btn-prev {
  margin-right: 6px;
}

.scroll-btn-next {
  margin-left: 6px;
}

.subcategory-item {
  flex: 0 0 auto;
  min-width: -moz-fit-content;
  min-width: fit-content;
  max-width: 280px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1.5px solid #f1f5f9;
  border-radius: 12px;
  text-decoration: none;
  color: #374151;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  scroll-snap-align: start;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.4s ease-out both;
}
.subcategory-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(226, 42, 42, 0.05), transparent);
  transition: left 0.5s ease;
}
.subcategory-item:hover {
  border-color: rgba(226, 42, 42, 0.3);
  background: #fefefe;
  transform: translateY(-2px);
  color: #1f2937;
  text-decoration: none;
}
.subcategory-item:hover::before {
  left: 100%;
}
.subcategory-item:hover .subcategory-icon {
  background: rgba(226, 42, 42, 0.1);
  border-color: rgba(226, 42, 42, 0.2);
}
.subcategory-item:hover .subcategory-icon i {
  color: #e22a2a;
}
.subcategory-item:hover .subcategory-count {
  color: #6b7280;
}
.subcategory-item.active {
  background: linear-gradient(135deg, #e22a2a 0%, #dc2626 100%);
  border-color: #e22a2a;
  color: white;
  transform: translateY(-1px);
}
.subcategory-item.active::before {
  display: none;
}
.subcategory-item.active:hover {
  color: white;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  transform: translateY(-2px);
}
.subcategory-item.active .subcategory-icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}
.subcategory-item.active .subcategory-icon i {
  color: white;
}
.subcategory-item.active .subcategory-count {
  color: rgba(255, 255, 255, 0.85);
}
.subcategory-item:focus {
  outline: none;
  border-color: #e22a2a;
  box-shadow: 0 0 0 3px rgba(226, 42, 42, 0.1);
}
.subcategory-item:focus:not(.active) {
  background: #fefefe;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.subcategory-image {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.subcategory-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}
.subcategory-icon i {
  font-size: 18px;
  color: #6b7280;
  transition: color 0.3s ease;
}

.subcategory-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.subcategory-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
  transition: color 0.3s ease;
}

.subcategory-count {
  font-size: 11px;
  color: #9ca3af;
  line-height: 1;
  font-weight: 500;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .subcategories-section {
    margin-bottom: 1.5rem;
    padding: 6px;
    border-radius: 12px;
  }
  .scroll-btn {
    display: none !important;
  }
  .subcategories-scroll {
    padding: 8px 12px;
    gap: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .subcategories-scroll::-webkit-scrollbar {
    display: none;
  }
  .subcategory-item {
    padding: 8px 12px;
    gap: 8px;
    max-width: 220px;
    border-radius: 10px;
  }
  .subcategory-image,
  .subcategory-icon {
    width: 32px;
    height: 32px;
  }
  .subcategory-icon i {
    font-size: 16px;
  }
  .subcategory-name {
    font-size: 13px;
  }
  .subcategory-count {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .subcategories-scroll {
    padding: 6px 8px;
    gap: 4px;
  }
  .subcategory-item {
    padding: 6px 10px;
    max-width: 180px;
    border-radius: 8px;
  }
  .subcategory-image,
  .subcategory-icon {
    width: 28px;
    height: 28px;
  }
  .subcategory-name {
    font-size: 12px;
  }
}
.quantity-controls {
  display: inline-flex;
  align-items: center;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
.quantity-controls:hover {
  border-color: #adb5bd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.quantity-controls.loading {
  pointer-events: none;
  opacity: 0.7;
}
.quantity-controls.loading .quantity-value::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid #f3f3f3;
  border-top-color: var(--bs-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.quantity-controls.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.quantity-controls.disabled .quantity-btn {
  cursor: not-allowed;
}
.quantity-controls.disabled .quantity-btn:hover {
  background: transparent;
}
.quantity-controls.pulse {
  animation: pulse 0.5s;
}

.quantity-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 100%;
  background: transparent;
  border: none;
  color: #495057;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.quantity-btn:hover {
  background: #e9ecef;
  color: #212529;
}
.quantity-btn:active {
  background: #dee2e6;
  transform: scale(0.95);
}
.quantity-btn:disabled {
  color: #adb5bd;
  cursor: not-allowed;
  background: transparent;
}
.quantity-btn:disabled:hover {
  background: transparent;
  transform: none;
}

.quantity-btn-minus {
  border-right: 1px solid #dee2e6;
}

.quantity-btn-plus {
  border-left: 1px solid #dee2e6;
}

.quantity-display {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: white;
  min-width: 48px;
  position: relative;
}

.quantity-value {
  font-weight: 600;
  font-size: 14px;
  color: #212529;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  transition: transform 0.1s ease;
}
.quantity-value.changing {
  transform: scale(1.2);
  color: var(--bs-primary);
  transition: all 0.2s ease;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-color-scheme: dark) {
  .quantity-controls {
    background: #1e293b;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  .quantity-display {
    background: #1a202c;
  }
  .quantity-value {
    color: #e2e8f0;
  }
  .quantity-btn {
    color: #a0aec0;
  }
  .quantity-btn:hover {
    background: #4a5568;
    color: #e2e8f0;
  }
  .quantity-btn:disabled {
    color: #4a5568;
  }
}
.live-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050;
  max-height: 500px;
  overflow-y: auto;
  border-top: none;
  margin-top: 5px;
  min-width: 600px;
  max-width: 100vw;
}
.live-search-dropdown .list-group-item {
  border-color: #f0f0f0;
  transition: background-color 0.2s ease;
}
.live-search-dropdown .list-group-item:hover {
  background-color: #f8f9fa;
}

#categoriesList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  text-decoration: none;
  color: #555;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}
.category-chip:hover {
  background: var(--bs-primary);
  color: white;
  border-color: var(--bs-primary);
}

.search-result-card {
  border: 1px solid #f0f0f0;
  transition: all 0.2s ease;
  margin-bottom: 0;
  padding: 0.75rem;
}
.search-result-card .d-flex {
  align-items: flex-start;
}

.search-result-name {
  white-space: normal;
  word-wrap: break-word;
  font-size: 1rem;
  color: #333;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

#mobileSearchResults .list-group-item {
  border: none;
}

.search-result-price {
  color: var(--bs-primary);
}

#mobileSearchResults {
  margin-top: 20px;
}

.datepicker-wrapper {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 100%;
  position: relative;
  z-index: 1;
}
.datepicker-wrapper.protruding-active {
  z-index: 1051;
}

.datepicker-placeholder {
  flex: 1;
  width: 100%;
  min-height: 50px;
  display: block;
  background-color: #f0f0f0;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.datepicker-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 20%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.4) 80%, transparent 100%);
  animation: skeleton-loading 1.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes skeleton-loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.datepicker-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  margin-right: 8px;
  transition: color 0.15s ease-in-out;
}

.booqable-datepicker {
  width: 100%;
}
.booqable-datepicker > div {
  position: relative;
  background: #fff;
  z-index: 1;
}

.datepicker-wrapper-mobile {
  display: flex;
  min-height: 50px;
  align-items: center;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
.datepicker-wrapper-mobile.protruding-active {
  z-index: 1051;
}
.datepicker-wrapper-mobile .datepicker-icon {
  margin-right: 10px;
}

.datepicker-protruding-tooltip {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.datepicker-protruding-tooltip.show {
  z-index: 9999 !important;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}

.tooltip-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.tooltip-container {
  position: absolute;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  min-width: 320px;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.tooltip-container.show {
  transform: scale(1);
  opacity: 1;
}

.tooltip-content {
  padding: 24px;
  position: relative;
}

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

.tooltip-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: #333;
}

.tooltip-close {
  background: none;
  border: none;
  color: #999;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.tooltip-close:hover {
  background: #f8f9fa;
  color: #333;
}

.tooltip-body {
  color: #666;
  line-height: 1.5;
}
.tooltip-body p {
  margin: 0 0 16px 0;
  font-size: 14px;
}

.datepicker-container {
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 6px;
  padding: 2px;
  margin-bottom: 16px;
  text-align: center;
  position: relative;
}
.datepicker-container .booqable-datepicker {
  margin: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tooltip-action {
  width: 100%;
  font-weight: 500;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border: 12px solid transparent;
}
.tooltip-arrow.arrow-top {
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: white;
}
.tooltip-arrow.arrow-bottom {
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-color: white;
}

@media (max-width: 768px) {
  .tooltip-container {
    max-width: 90%;
    min-width: 280px;
  }
  .tooltip-content {
    padding: 20px;
  }
  .tooltip-title {
    font-size: 16px;
  }
  .tooltip-body p {
    font-size: 13px;
  }
  .tooltip-arrow {
    display: none;
  }
}
.rental-label {
  position: relative;
  height: 10px;
}

.rental-label > span {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 14px !important;
  color: #000;
  font-weight: 500 !important;
}

.products-pagination-info {
  padding: 20px 0;
}

.products-count-info {
  font-size: 14px;
  font-weight: 500;
}

.products-progress-container {
  margin: 16px 0;
}

.products-progress-bar {
  width: 160px;
  height: 8px;
  background: #cecece;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.products-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #e22a2a 0%, #dc2626 100%);
  border-radius: 2px;
  transition: width 0.5s ease;
  position: relative;
}
.products-progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.load-more-btn {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  min-width: 140px;
}
.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226, 42, 42, 0.25);
}
.load-more-btn:disabled {
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .products-pagination-info {
    padding: 16px 0;
  }
  .products-count-info {
    font-size: 13px;
  }
  .products-progress-bar {
    width: 60px;
    height: 3px;
  }
  .load-more-btn {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 120px;
  }
}
.mobile-menu-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.menu-level {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
.menu-level::-webkit-scrollbar {
  width: 4px;
}
.menu-level::-webkit-scrollbar-track {
  background: transparent;
}
.menu-level::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}
.menu-level::-webkit-scrollbar-thumb:hover {
  background: #999;
}
.menu-level.active {
  transform: translateX(0);
}
.menu-level.active .menu-item {
  animation: slideInFromRight 0.4s ease forwards;
  opacity: 0;
}
.menu-level.active .menu-item:nth-child(1) {
  animation-delay: 0.05s;
}
.menu-level.active .menu-item:nth-child(2) {
  animation-delay: 0.1s;
}
.menu-level.active .menu-item:nth-child(3) {
  animation-delay: 0.15s;
}
.menu-level.active .menu-item:nth-child(4) {
  animation-delay: 0.2s;
}
.menu-level.active .menu-item:nth-child(5) {
  animation-delay: 0.25s;
}
.menu-level.prev {
  transform: translateX(-100%);
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.back-btn {
  color: var(--bs-primary) !important;
  transition: all 0.2s ease;
  border: none !important;
  margin-right: 8px !important;
}
.back-btn:hover {
  color: var(--bs-primary) !important;
  transform: translateX(-2px);
}

#menuTitle {
  transition: opacity 0.2s ease;
}

.menu-section {
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 8px;
}
.menu-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 30px;
}

.menu-section-title {
  padding: 16px 20px 8px;
  font-weight: 600;
  color: #6c757d;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #f8f9fa;
  margin: 0 -1px;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: #333;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: all 0.2s ease;
  position: relative;
}
.menu-item:hover {
  background: #f8f9fa;
  color: #333;
  transform: translateX(2px);
}
.menu-item .badge {
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 10px;
}

.menu-item-main {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  margin: 8px 16px;
  padding: 16px;
}
.menu-item-main:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.menu-category-item {
  display: flex;
  align-items: center;
  position: relative;
}

.menu-category-link {
  flex: 1;
  padding-right: 50px;
}

.menu-category-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 50%;
}
.menu-category-toggle:hover {
  background: #f8f9fa;
  color: var(--bs-primary);
}
.menu-category-toggle:active {
  transform: translateY(-50%) scale(0.95);
}
.menu-category-toggle .mdi-chevron-right {
  transition: transform 0.2s ease;
  font-size: 20px;
}
.menu-category-toggle:hover .mdi-chevron-right {
  transform: translateX(2px);
}

.menu-category-item:has(.menu-item:not(.menu-category-link)) {
  display: block;
}

@media (max-width: 576px) {
  .menu-item {
    padding: 14px 16px;
  }
  .menu-section-title {
    padding: 12px 16px 6px;
    font-size: 11px;
  }
  .menu-item-main {
    margin: 6px 12px;
    padding: 12px;
  }
  .menu-category-toggle {
    width: 36px;
    height: 36px;
    right: 16px;
  }
  .menu-category-link {
    padding-right: 45px;
  }
}
.image-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 28.125%;
}

.image-slider {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.image-slider.flickity-enabled {
  opacity: 1;
}
.image-slider .flickity-viewport,
.image-slider .flickity-slider {
  height: 100% !important;
}
.image-slider .flickity-page-dots {
  display: none !important;
}

.image-slide {
  width: 75%;
  height: 100%;
  margin-right: 2%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-slide:hover .image-slide-img {
  transform: scale(1.05);
}

.image-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.image-slide-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-slide-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  z-index: 1;
}

.placeholder-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.image-slide-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.image-slide-img.loaded {
  opacity: 1;
}
.image-slide-img.loaded + .image-slide-placeholder {
  display: none;
}

.image-slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.image-slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.image-slider-btn:hover {
  background: #fff;
  transform: scale(1.1);
}
.image-slider-btn:active {
  transform: scale(0.95);
}
.image-slider-btn i {
  font-size: 1.5rem;
  color: #333;
}

.image-slider-dots-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.image-slider-dots {
  display: flex;
  gap: 8px;
}

.image-slider-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
}
.image-slider-dot:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}
.image-slider-dot.is-selected {
  background: var(--bs-primary);
  border-color: #fff;
  transform: scale(1.2);
}

@media (min-width: 769px) {
  .image-slide-container {
    aspect-ratio: 1600/600;
  }
  .image-slide-img {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .image-slider-wrapper {
    padding-top: 70.833%;
  }
  .image-slide {
    width: 85%;
  }
  .image-slide-container {
    aspect-ratio: 480/400;
  }
  .image-slide-img {
    height: 100%;
  }
}
.bundle-compact-list {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bundle-compact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  background: #fff;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.bundle-compact-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}
.bundle-compact-item:hover .bundle-image-zoom {
  opacity: 1;
}
.bundle-compact-item:hover .bundle-image-link img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

.bundle-compact-image {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.bundle-compact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bundle-image-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.bundle-image-link img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.bundle-image-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: 6px;
}

.bundle-compact-placeholder {
  width: 100%;
  height: 100%;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
}
.bundle-compact-placeholder i {
  font-size: 20px;
}

.bundle-compact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.bundle-compact-quantity {
  font-weight: 700;
  color: #3182ce;
  font-size: 14px;
  background: #e6f3ff;
  padding: 2px 6px;
  border-radius: 4px;
  min-width: 35px;
  text-align: center;
}

.bundle-compact-name {
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  flex: 1;
}
.bundle-compact-name:hover {
  color: #3182ce;
  text-decoration: none;
}

@media (max-width: 768px) {
  .bundle-compact-list {
    padding: 12px;
  }
  .bundle-compact-item {
    padding: 6px;
  }
  .bundle-compact-image {
    width: 35px;
    height: 35px;
  }
  .bundle-compact-quantity {
    font-size: 13px;
    min-width: 30px;
  }
  .bundle-compact-name {
    font-size: 13px;
  }
}
.related-products-section {
  margin-top: 1rem;
}
.related-products-section h4 {
  color: #212529;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}
.related-products-section h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--bs-primary);
  border-radius: 2px;
}
.related-products-section .product-item {
  animation: relatedFadeInUp 0.5s ease-out;
}
.related-products-section .product-item.new-item {
  animation: relatedFadeInUp 0.5s ease-out;
}

@keyframes relatedFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .related-products-section {
    margin-top: 1.5rem;
  }
  .related-products-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
.category-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}
.category-card:hover {
  transform: translateY(-5px);
  color: inherit;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  overflow: hidden;
}
.category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-icon i {
  font-size: 2.5rem;
  color: var(--bs-primary);
}

.category-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.category-count {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

.popular-products-section,
.new-products-section,
.categories-section {
  overflow: hidden;
}

.about-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-image img {
  width: 100%;
  height: auto;
}

.cta-section {
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}

@media (max-width: 768px) {
  .about-section .row {
    flex-direction: column-reverse;
  }
  .about-image {
    margin-bottom: 2rem;
  }
  .cta-section .row {
    text-align: center;
  }
  .cta-section .col-lg-4 {
    margin-top: 2rem;
    text-align: center !important;
  }
}
.category-tree {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
}

.category-item {
  padding: 8px 12px;
  margin: 4px 0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.category-item:hover {
  background: #e9ecef;
  color: inherit;
  text-decoration: none;
}
.category-item.active {
  background: #0d6efd;
  color: white;
}

.categories-grid {
  width: 100%;
}

.category-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  height: 100%;
}

.category-card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: inherit;
}

.category-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
  width: 80%;
  margin: auto;
  border-radius: 80%;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.category-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-align: center;
}

/* Анимация появления скрытых категорий */
.categories-hidden {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
}

.categories-hidden.show {
  max-height: 2000px;
  opacity: 1;
  transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
}

/* Стили для кнопки */
.show-all-categories-btn {
  transition: all 0.3s ease;
}

.show-all-categories-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Адаптивность */
@media (max-width: 576px) {
  .category-content {
    padding: 0.75rem;
  }
  .category-title {
    font-size: 0.9rem;
  }
  .categories-hidden.show {
    max-height: 3000px; /* Больше для мобильных */
  }
}
.product-page .availability {
  font-size: 16px;
  padding: 8px 16px;
}

.product-gallery .main-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: none;
}
.product-gallery .thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  justify-content: center;
}
.product-gallery .thumbs img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.product-gallery .thumbs img:hover, .product-gallery .thumbs img.active {
  border-color: var(--bs-primary);
}
.product-gallery .favorite-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.product-gallery .favorite-btn:hover {
  background: white;
  color: var(--bs-primary);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.product-gallery .favorite-btn.active {
  background: var(--bs-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(226, 42, 42, 0.3);
}
.product-gallery .favorite-btn.active:hover {
  background: var(--bs-primary-600);
  transform: scale(1.1);
}
.product-gallery .favorite-btn i {
  font-size: 18px;
  transition: transform 0.2s ease;
}
.product-gallery .favorite-btn:hover i {
  transform: scale(1.1);
}

.mobile-gallery {
  margin: 0 -15px;
}
.mobile-gallery .scroll-container {
  display: flex;
  gap: 12px;
  padding: 0 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}
.mobile-gallery .scroll-item {
  flex: 0 0 85%;
  scroll-snap-align: center;
}
.mobile-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.mobile-gallery.single-photo .scroll-item {
  flex: 0 0 100%;
}
.mobile-gallery.single-photo img {
  box-shadow: none;
}

.product-tabs {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.product-tabs-nav {
  border-bottom: 2px solid #f8f9fa;
  background: #fafbfc;
  padding: 0 20px;
}
.product-tabs-nav .nav-link {
  color: #6c757d;
  border: none;
  padding: 16px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}
.product-tabs-nav .nav-link:hover {
  color: #495057;
  background: transparent;
}
.product-tabs-nav .nav-link.active {
  color: var(--bs-primary);
  background: transparent;
}
.product-tabs-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bs-primary);
  border-radius: 3px 3px 0 0;
}

.product-tabs-content {
  padding: 30px;
}

.product-description {
  line-height: 1.8;
  color: #495057;
}
.product-description h1, .product-description h2, .product-description h3, .product-description h4, .product-description h5, .product-description h6 {
  margin-top: 24px;
  margin-bottom: 16px;
  color: #212529;
}
.product-description p {
  margin-bottom: 16px;
}
.product-description ul, .product-description ol {
  margin-bottom: 20px;
  padding-left: 30px;
}
.product-description li {
  margin-bottom: 8px;
}

.specifications-list {
  display: grid;
  gap: 1px;
  background: #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.spec-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 16px 20px;
  background: white;
}

.spec-name {
  font-weight: 600;
  color: #495057;
}

.spec-value {
  color: #212529;
}

.product-variations {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}

.variation-label {
  color: #495057;
  font-size: 14px;
  margin-bottom: 8px;
}

.variation-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variation-btn {
  min-width: 80px;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.variation-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.variation-btn.active {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.variation-btn.btn-outline-secondary:hover {
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .product-tabs-nav {
    padding: 0 15px;
    overflow-x: auto;
    white-space: nowrap;
  }
  .product-tabs-nav .nav-link {
    padding: 12px 16px;
    font-size: 14px;
  }
  .product-tabs-content {
    padding: 20px 15px;
  }
  .spec-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .spec-name {
    font-weight: 500;
    color: #6c757d;
  }
}
@media (max-width: 576px) {
  .variation-buttons {
    gap: 6px;
  }
  .variation-btn {
    min-width: 70px;
    padding: 6px 12px;
    font-size: 13px;
  }
}
.cart-item {
  border-bottom: 1px solid #e9ecef;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.cart-item:hover {
  background: #f8f9fa;
}
.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.cart-item-total {
  font-size: 18px;
  color: var(--bs-primary);
}

.remove-btn {
  color: #dc3545;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.remove-btn:hover {
  transform: scale(1.1);
}

.bundle-items {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 6px;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1;
}
.bundle-items div {
  padding: 2px 0;
}

#rentalDatesSection {
  animation: slideDown 0.3s ease-out;
}
#rentalDatesSection .card {
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}
#rentalDatesSection .card-body {
  padding: 1rem 1.5rem;
}
#rentalDatesSection small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
#rentalDatesSection strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
#rentalDatesSection .time-text {
  font-size: 12px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  opacity: 0.8;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.date-time-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rental-duration {
  background: rgba(226, 42, 42, 0.05);
  border-radius: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(226, 42, 42, 0.1);
  text-align: center;
}

.duration-badge {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--bs-primary);
  white-space: nowrap;
}
.duration-badge i {
  font-size: 16px;
  opacity: 0.8;
}

#checkoutBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkout-error-text {
  font-size: 12px;
  color: #dc3545;
  margin-top: 5px;
}

@keyframes slideOut {
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}
.removing {
  animation: slideOut 0.3s ease-out forwards;
}

.fade-in {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .cart-item-image {
    width: 80px;
    height: 80px;
  }
  .cart-item-total {
    font-size: 16px;
  }
  #rentalDatesSection .card-body {
    padding: 0.75rem 1rem;
  }
  #rentalDatesSection strong {
    font-size: 14px;
  }
  #rentalDatesSection .time-text {
    font-size: 11px !important;
  }
}
@media (max-width: 576px) {
  .cart-item .row {
    flex-direction: column;
  }
  .cart-item .col-auto:first-child {
    width: 100%;
    text-align: center;
  }
  .cart-item-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
  .cart-item-total {
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
  }
  .quantity-controls {
    margin: 0 auto;
    max-width: 200px;
  }
}
.delivery-option {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.delivery-option::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background 0.3s ease;
}
.delivery-option:hover {
  border-color: var(--bs-primary);
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.delivery-option:hover::before {
  background: var(--bs-primary);
}
.delivery-option:hover .delivery-photo {
  transform: scale(1.05);
}
.delivery-option input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.delivery-option label {
  position: relative;
  width: 100%;
  margin: 0;
  cursor: pointer;
}
.delivery-option label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 20px;
  height: 20px;
  border: 2px solid #dee2e6;
  border-radius: 50%;
  background: white;
  transition: all 0.3s ease;
  z-index: 1;
}
.delivery-option label::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bs-primary);
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: 2;
}
.delivery-option input[type=radio]:checked + label::before {
  border-color: var(--bs-primary);
}
.delivery-option input[type=radio]:checked + label::after {
  transform: scale(1);
}
.delivery-option.selected {
  border-color: var(--bs-primary);
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 123, 255, 0.02) 100%);
}
.delivery-option.selected::before {
  background: var(--bs-primary);
}

.delivery-content {
  width: 100%;
  padding-left: 35px;
}
.delivery-content .d-flex {
  align-items: center !important;
}

.delivery-info {
  flex-grow: 1;
}
.delivery-info strong {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 4px;
}
.delivery-info small {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.4;
}

.delivery-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bs-primary);
  white-space: nowrap;
  margin-left: auto;
  padding-left: 15px;
}

.delivery-photo {
  transition: transform 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.delivery-per-day {
  font-size: 0.7rem;
  color: #28a745;
  font-weight: 500;
}

.staff-cta {
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 6px;
  margin: 4px;
}
.staff-cta:hover {
  background-color: #f8f9fa;
}
.staff-cta:hover .avatar-main {
  animation-play-state: paused;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.staff-cta:hover .avatar-top {
  animation-play-state: paused;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.staff-cta:hover .avatar-bottom {
  animation-play-state: paused;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.staff-cta:hover .avatar-double.first {
  animation-play-state: paused;
  transform: translateY(-50%) scale(1.08);
}
.staff-cta:hover .avatar-double.second {
  animation-play-state: paused;
  transform: translateY(-50%) scale(1.08);
}
.staff-cta:hover .avatar-single {
  animation-play-state: paused;
  transform: translate(-50%, -50%) scale(1.08);
}
.staff-cta:hover .staff-cta-arrow i {
  transform: translateX(6px);
}
.staff-cta:hover .staff-cta-text .fw-bold {
  color: var(--bs-primary);
}

.staff-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.staff-collage-large {
  position: relative;
  width: 100px;
  height: 70px;
  flex-shrink: 0;
}

.collage-avatars {
  position: relative;
  width: 100%;
  height: 100%;
}

.avatar-item {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.avatar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-main {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  z-index: 2;
  animation: float-main 3s ease-in-out infinite;
}

.avatar-small {
  width: 44px;
  height: 44px;
}

.avatar-top {
  right: -4px;
  top: -4px;
  z-index: 3;
  animation: float-small-1 3s ease-in-out infinite;
  animation-delay: -1s;
}

.avatar-bottom {
  right: 8px;
  bottom: -10px;
  z-index: 1;
  animation: float-small-2 3s ease-in-out infinite;
  animation-delay: -2s;
}

.avatar-more {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: 500;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}

.avatar-double {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.avatar-double.first {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  animation: float-left 4s ease-in-out infinite;
}

.avatar-double.second {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  animation: float-right 4s ease-in-out infinite;
  animation-delay: -1.5s;
}

.avatar-single {
  width: 56px;
  height: 56px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  animation: float-single 4s ease-in-out infinite;
}

.collage-placeholder-large {
  width: 56px;
  height: 56px;
  background: #e9ecef;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.collage-placeholder-large i {
  font-size: 28px;
  color: #6c757d;
}

@keyframes float-main {
  0%, 100% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-4px);
  }
}
@keyframes float-small-1 {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-3px) translateX(2px);
  }
}
@keyframes float-small-2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes float-left {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(3px);
  }
}
@keyframes float-right {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-3px);
  }
}
@keyframes float-single {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-3px);
  }
}
.staff-cta-text {
  flex-grow: 1;
  min-width: 0;
}
.staff-cta-text .fw-bold {
  font-size: 1rem;
  color: #212529;
  margin-bottom: 2px;
  transition: color 0.3s ease;
}
.staff-cta-text small {
  font-size: 0.85rem;
}

.staff-cta-arrow {
  flex-shrink: 0;
}
.staff-cta-arrow i {
  font-size: 28px;
  color: #adb5bd;
  transition: all 0.3s ease;
}

.staff-option {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}
.staff-option:hover {
  border-color: var(--bs-primary);
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.staff-option.selected {
  border-color: var(--bs-primary);
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 123, 255, 0.02) 100%);
}
.staff-option input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.staff-option label {
  position: absolute;
  width: 100%;
  margin: 0;
  cursor: pointer;
  top: 0;
  left: 15px;
}
.staff-option label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 20px;
  height: 20px;
  border: 2px solid #dee2e6;
  border-radius: 4px;
  background: white;
  transition: all 0.3s ease;
}
.staff-option label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--bs-primary);
  transform: scale(0);
  transition: transform 0.3s ease;
}
.staff-option input[type=checkbox]:checked + label::before {
  border-color: var(--bs-primary);
}
.staff-option input[type=checkbox]:checked + label::after {
  transform: scale(1);
}

.staff-content {
  width: 100%;
  margin-top: -5px;
}

.staff-photo {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 10px;
}

.staff-avatar {
  width: 75px;
  height: 75px;
  background: #e9ecef;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 24px;
  margin-top: 10px;
}

.staff-name {
  padding-left: 35px;
}

.staff-info {
  flex-grow: 1;
}

.staff-info strong {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 4px;
}

.staff-info .calculation-formula {
  min-height: 22px;
}

.staff-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bs-primary);
  white-space: nowrap;
  margin-left: auto;
  padding-left: 8px;
  text-align: right;
}

.staff-price .price-period {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 500;
}

.staff-price-total {
  font-weight: 700;
  color: #212529;
  margin-left: 8px;
}

.staff-price-total-container {
  font-size: 0.9rem;
}

.staff-quantity-container {
  margin-top: 8px;
  font-size: 1rem;
}

.order-item {
  border-bottom: 1px solid #e9ecef;
  padding: 10px 0;
}
.order-item:last-child {
  border-bottom: none;
}

.order-item-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 4px;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
.error-shake {
  animation: shake 0.5s;
}

.fade-in {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.price-updating {
  animation: pricePulse 0.5s ease-in-out;
}

@keyframes pricePulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.calculation-info {
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 5px;
}

.selected-staff-item {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  background: #f8f9fa;
}

#finalSubmitBtn {
  transition: all 0.3s ease;
  position: relative;
}
#finalSubmitBtn.loading {
  background-color: #6c757d;
  border-color: #6c757d;
  cursor: not-allowed;
}
#finalSubmitBtn.success {
  background-color: #198754;
  border-color: #198754;
}
#finalSubmitBtn.error {
  background-color: #dc3545;
  border-color: #dc3545;
}
#finalSubmitBtn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}
#finalSubmitBtn:not(:disabled):active {
  transform: scale(0.98);
}

.success-icon {
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.order-info {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
}

.order-details .alert {
  border: none;
  border-radius: 8px;
}

.order-details ul {
  padding-left: 20px;
}

.order-details li {
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .order-actions .row {
    flex-direction: column;
  }
  .order-actions .col-md-6 {
    width: 100%;
  }
}
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.step.completed .step-icon {
  background: #28a745;
  color: white;
  border: 2px solid #28a745;
}

.step.active .step-icon {
  background: #007bff;
  color: white;
  border: 2px solid #007bff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.step:not(.completed):not(.active) .step-icon {
  background: #e9ecef;
  color: #6c757d;
  border: 2px solid #dee2e6;
}

.step-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}

.step.completed .step-label {
  color: #28a745;
}

.step.active .step-label {
  color: #007bff;
  font-weight: 600;
}

.step:not(.completed):not(.active) .step-label {
  color: #6c757d;
}

.step-connector {
  flex: 1;
  height: 2px;
  background: #dee2e6;
  margin: 0 1rem;
  position: relative;
  top: -15px;
}

.step-connector.completed {
  background: #28a745;
}

/* Адаптивность */
@media (max-width: 768px) {
  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .step-connector {
    margin: 0 0.5rem;
    top: -10px;
  }
  .step-label {
    font-size: 0.5rem;
    width: 70px;
  }
}
@media (max-width: 576px) {
  .step-connector {
    margin: 0 0.25rem;
  }
}
.studio-test-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  align-items: center;
  justify-content: center;
}
.studio-test-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.studio-test-modal__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 0;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: studioTestModalSlideIn 0.3s ease;
}
.studio-test-modal__body {
  padding: 28px 24px 24px;
  text-align: center;
}
.studio-test-modal__icon {
  font-size: 48px;
  color: var(--primary-color, #2563eb);
  margin-bottom: 12px;
}
.studio-test-modal__icon i {
  line-height: 1;
}
.studio-test-modal__header {
  margin-bottom: 8px;
}
.studio-test-modal__studio-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
}
.studio-test-modal__pricing {
  font-size: 0.9rem;
  color: #475569;
  margin-top: 4px;
}
.studio-test-modal__pricing span {
  font-weight: 600;
  color: #1e293b;
}
.studio-test-modal__datetime {
  font-size: 1rem;
  font-weight: 500;
  color: #334155;
  margin-bottom: 12px;
}
.studio-test-modal__text {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
}
.studio-test-modal__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.studio-test-modal__contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  background: #f1f5f9;
  color: #1e293b;
}
.studio-test-modal__contact-link:hover {
  background: #e2e8f0;
  color: #0f172a;
}
.studio-test-modal__contact-link--wa {
  background: #dcfce7;
  color: #166534;
}
.studio-test-modal__contact-link--wa:hover {
  background: #bbf7d0;
  color: #14532d;
}
.studio-test-modal__btn {
  display: inline-block;
  width: 100%;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  background: var(--primary-color, #2563eb);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.studio-test-modal__btn:hover {
  background: var(--primary-hover, #1d4ed8);
}

@keyframes studioTestModalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.studio-page {
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  padding-top: 20px;
}

.page-description {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 16px;
}

.studio-info {
  margin-top: 30px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.studio-info h3 {
  margin: 0 0 12px 0;
  color: #1e293b;
}

.studio-info p {
  margin: 8px 0;
  color: #475569;
}

.orders-list {
  margin: 0;
}

.order-item {
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 0;
}
.order-item:last-child {
  border-bottom: none;
}
.order-item.expanded .order-toggle-icon {
  transform: rotate(180deg);
}
.order-item.expanded .order-details {
  display: block;
}

.order-header {
  padding: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.order-header:hover {
  background-color: #f8f9fa;
}

.order-number {
  font-weight: 600;
}

.order-date {
  font-size: 14px;
  color: #6c757d;
}

.order-amount {
  font-weight: 600;
  color: #495057;
}

.order-toggle-icon {
  transition: transform 0.3s ease;
  color: #6c757d;
}

.order-details {
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  display: none;
}

.order-items {
  padding: 20px;
}

.order-item-row {
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}
.order-item-row:last-child {
  border-bottom: none;
}

.order-item-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}

.order-item-placeholder {
  width: 60px;
  height: 60px;
  background-color: #e9ecef;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 24px;
}

.order-item-name {
  font-weight: 500;
  margin-bottom: 5px;
}

.order-item-quantity {
  font-size: 14px;
  color: #6c757d;
}

.order-item-price {
  font-size: 14px;
  color: #6c757d;
}

.order-item-subtotal {
  font-weight: 600;
  color: #495057;
}

.order-item-period {
  margin-top: 2px;
}

.order-item-price small {
  font-size: 11px;
  opacity: 0.8;
}

.order-item-subtotal small.text-success {
  font-size: 11px;
  font-weight: 500;
}

.order-summary {
  padding: 20px;
  border-top: 1px solid #e9ecef;
  background-color: white;
}

.rental-period-info {
  margin-bottom: 10px;
}

.rental-period-info .text-info {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 5px;
}

.order-comment {
  font-size: 14px;
  color: #495057;
}

.order-total {
  text-align: right;
}

.total-label {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 5px;
}

.total-amount {
  font-size: 24px;
  font-weight: 600;
  color: #0d6efd;
}

.order-total .text-muted {
  font-size: 12px;
  margin-top: 2px;
}

.order-actions {
  padding: 20px;
  border-top: 1px solid #e9ecef;
  background-color: white;
  display: flex;
  justify-content: space-between;
}

.order-totals {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.total-row:last-child {
  margin-bottom: 0;
}

.grand-total {
  padding-top: 8px;
  border-top: 1px solid #dee2e6;
  margin-top: 8px;
}

.account-nav .nav-link {
  border-radius: 0;
  color: #495057;
  padding: 12px 20px;
  font-weight: 500;
  border: none;
  border-bottom: 1px solid #dee2e6;
}
.account-nav .nav-link .badge {
  font-size: 11px;
}

.badge {
  font-weight: 500;
}

@media (max-width: 768px) {
  .order-header .row {
    font-size: 14px;
  }
  .order-item-image, .order-item-placeholder {
    width: 50px;
    height: 50px;
  }
  .total-amount {
    font-size: 20px;
  }
  .order-actions {
    text-align: center;
  }
  .order-summary .row {
    flex-direction: column;
  }
  .order-summary .text-end {
    text-align: center !important;
    margin-top: 15px;
  }
  .account-nav .nav-link {
    padding: 10px 15px;
    font-size: 14px;
  }
  .order-totals {
    text-align: center;
  }
  .total-row {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  .total-row .text-muted {
    margin-bottom: 2px;
  }
}
.login-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.input-group-text {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-right: none;
}

.input-group .form-control {
  border-left: none;
}

.input-group .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-loading .spinner-border {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 768px) {
  .login-card {
    margin-bottom: 2rem;
  }
}
.admin-panel {
  --bs-primary: #0d6efd;
  --bs-primary-rgb: 13, 110, 253;
}
.admin-panel .btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.admin-panel .btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}
.admin-panel .btn-outline-primary {
  color: #0d6efd;
  border-color: #0d6efd;
}
.admin-panel .btn-outline-primary:hover {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}
.admin-panel .text-primary {
  color: #0d6efd !important;
}
.admin-panel .bg-primary {
  background-color: #0d6efd;
}
.admin-panel .badge.bg-primary {
  background-color: #0d6efd;
}
.admin-panel .form-control:focus,
.admin-panel .form-select:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.admin-panel .form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.admin-panel .form-check-input:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.admin-panel .form-switch .form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.admin-panel .page-item.active .page-link {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}
.admin-panel .page-link {
  color: #0d6efd;
}
.admin-panel .page-link:hover {
  color: #0a58ca;
}
.admin-panel .nav-pills .nav-link.active,
.admin-panel .nav-pills .show > .nav-link {
  background-color: #0d6efd;
  color: #fff;
}
.admin-panel .nav-link {
  color: #0d6efd;
}
.admin-panel .nav-link:hover {
  color: #0a58ca;
}
.admin-panel .list-group-item.active {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.admin-panel .progress-bar {
  background-color: #0d6efd;
}
.admin-panel .spinner-border.text-primary {
  color: #0d6efd !important;
}
.admin-panel .dropdown-item.active,
.admin-panel .dropdown-item:active {
  background-color: #0d6efd;
}
.admin-panel .border-primary {
  border-color: #0d6efd !important;
}
.admin-panel .sidebar {
  min-height: 100vh;
  background: #1a1a2e;
}
.admin-panel .sidebar .nav-link {
  color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  margin-bottom: 0.25rem;
}
.admin-panel .sidebar .nav-link:hover, .admin-panel .sidebar .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.admin-panel .sidebar .nav-link i {
  margin-right: 0.5rem;
}
.admin-panel .offcanvas-menu {
  background: #1a1a2e;
  width: 280px !important;
}
.admin-panel .offcanvas-menu .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-panel .offcanvas-menu .nav-link {
  color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  margin-bottom: 0.25rem;
}
.admin-panel .offcanvas-menu .nav-link:hover, .admin-panel .offcanvas-menu .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.admin-panel .offcanvas-menu .nav-link i {
  margin-right: 0.5rem;
}
.admin-panel .main-content {
  background: #f8f9fa;
  min-height: 100vh;
}
.admin-panel .navbar-toggler-custom {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0.75rem;
}
.admin-panel .card {
  border: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.admin-panel .table th {
  font-weight: 600;
  font-size: 0.875rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-top: none;
}
.admin-panel .badge-status {
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
}
@media (min-width: 768px) {
  .admin-panel .navbar-toggler-custom {
    display: none;
  }
}
@media (max-width: 768px) {
  .admin-panel .sidebar-desktop {
    display: none;
  }
}
.admin-panel .admin-card {
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}
.admin-panel .admin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-color: var(--bs-primary);
}
.admin-panel .admin-card .icon-wrapper {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.admin-panel .admin-card .card-title {
  color: #212529;
}
.admin-panel .booqable-status-card {
  cursor: default;
  position: relative;
  overflow: hidden;
}
.admin-panel .booqable-status-card:hover {
  transform: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border-color: #e9ecef;
}
.admin-panel .booqable-status-card .badge {
  transition: all 0.3s ease;
}
.admin-panel .booqable-status-card.status-online .icon-wrapper {
  animation: glow-green 2.5s ease-in-out infinite;
}
.admin-panel .booqable-status-card.status-offline .icon-wrapper i {
  animation: shake-icon 3s ease-in-out infinite;
}
.admin-panel .booqable-status-card.status-warning .icon-wrapper i {
  animation: icon-pulse-warning 2s ease-in-out infinite;
}
.admin-panel .booqable-status-card.status-offline .badge {
  animation: badge-blink 2s ease-in-out infinite;
}
.admin-panel .booqable-recheck-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #dee2e6;
  background: #fff;
  color: #6c757d;
  transition: all 0.3s ease;
  opacity: 0.6;
}
.admin-panel .booqable-recheck-btn:hover {
  background: #f8f9fa;
  color: #212529;
  border-color: #adb5bd;
  transform: rotate(90deg);
}
.admin-panel .booqable-recheck-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.admin-panel .booqable-recheck-btn.is-loading i {
  animation: admin-spin 0.8s linear infinite;
}
.admin-panel .booqable-status-card:hover .booqable-recheck-btn {
  opacity: 1;
}
.admin-panel .service-indicator {
  width: 12px;
  height: 12px;
  position: relative;
}
.admin-panel .service-indicator.bg-success {
  box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.2);
  animation: pulse-green 2s infinite;
}
.admin-panel .service-indicator.bg-danger {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
  animation: pulse-red 1.5s infinite;
}
.admin-panel .service-indicator.bg-warning {
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}
.admin-panel .note-editor .note-toolbar {
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}
.admin-panel .note-editor.note-frame {
  border: 1px solid #dee2e6;
}
.admin-panel .note-editable {
  min-height: 250px;
}
.admin-panel .photo-upload-area {
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fafbfc;
}
.admin-panel .photo-upload-area:hover {
  border-color: #0d6efd;
  background: #f8f9fa;
}
.admin-panel .photo-upload-area.dragover {
  border-color: #0d6efd;
  background: #e7f1ff;
}
.admin-panel .photo-upload-area i {
  font-size: 2.5rem;
  color: #6c757d;
  margin-bottom: 10px;
}
.admin-panel .photo-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 15px;
}
.admin-panel .photo-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  background: white;
  cursor: grab;
  transition: all 0.2s ease;
}
.admin-panel .photo-item:hover {
  border-color: #dee2e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.admin-panel .photo-item.sortable-ghost {
  opacity: 0.4;
  border-color: #0d6efd;
}
.admin-panel .photo-item.sortable-drag {
  cursor: grabbing;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}
.admin-panel .photo-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.admin-panel .photo-item .photo-actions {
  position: absolute;
  top: 4px;
  right: 4px;
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.admin-panel .photo-item:hover .photo-actions {
  opacity: 1;
}
.admin-panel .photo-item:hover .drag-handle {
  opacity: 1;
}
.admin-panel .photo-item .btn-delete {
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.admin-panel .photo-item .btn-delete:hover {
  background: #dc3545;
  color: white;
}
.admin-panel .photo-item .drag-handle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  color: #6c757d;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.admin-panel .photo-item .drag-handle:active {
  cursor: grabbing;
}
.admin-panel .photo-item .position-badge {
  position: absolute;
  bottom: 4px;
  left: 4px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
}
.admin-panel .product-list-container {
  height: calc(100vh - 280px);
  overflow-y: auto;
}
.admin-panel .product-list-container .product-item {
  display: flex;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #e9ecef;
  cursor: pointer;
  transition: background-color 0.2s;
}
.admin-panel .product-list-container .product-item:hover {
  background-color: #f8f9fa;
}
.admin-panel .product-list-container .product-item.hidden {
  display: none !important;
}
.admin-panel .product-list-container .product-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.admin-panel .product-list-container .product-item .checkbox-lg {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
.admin-panel .related-list-container {
  height: calc(100vh - 220px);
  overflow-y: auto;
}
.admin-panel .related-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid #e9ecef;
  background: #fff;
  cursor: grab;
  transition: background-color 0.2s;
}
.admin-panel .related-item:hover {
  background-color: #f8f9fa;
}
.admin-panel .related-item img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.admin-panel .sortable-ghost {
  opacity: 0.5;
  background-color: #e9ecef;
}
.admin-panel .empty-state {
  height: calc(100vh - 280px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-panel .badge-type {
  font-size: 0.7rem;
  padding: 2px 6px;
  margin-left: 8px;
}
.admin-panel .category-related-banner {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  border: 1px solid #90caf9;
}
.admin-panel .category-related-preview {
  max-height: 200px;
  overflow-y: auto;
}
.admin-panel .category-product-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid #e9ecef;
}
.admin-panel .category-product-item:last-child {
  border-bottom: none;
}
.admin-panel .category-product-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.admin-panel .banner-img {
  position: relative;
  height: 0;
  display: block;
  padding-top: 37.5%;
  overflow: hidden;
  cursor: grab;
}
.admin-panel .banner-img img {
  height: auto;
  width: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
.admin-panel .offcanvas, .admin-panel .offcanvas-lg, .admin-panel .offcanvas-md, .admin-panel .offcanvas-sm, .admin-panel .offcanvas-xl, .admin-panel .offcanvas-xxl {
  --bs-offcanvas-width: 520px;
}
.admin-panel .datatables-product-offers td {
  font-size: 0.95em;
}
.admin-panel .datatables-orders td {
  font-size: 0.95em;
}
.admin-panel .datatables-customers td {
  font-size: 0.95em;
}
.admin-panel .product-brand {
  display: block;
  font-weight: 600;
}

@keyframes admin-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes glow-green {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
  }
  50% {
    box-shadow: 0 0 12px 2px rgba(25, 135, 84, 0.25);
  }
}
@keyframes shake-icon {
  0%, 100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-2px) rotate(-1deg);
  }
  20% {
    transform: translateX(2px) rotate(1deg);
  }
  30% {
    transform: translateX(-1px);
  }
  40%, 100% {
    transform: translateX(0);
  }
}
@keyframes icon-pulse-warning {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes badge-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(25, 135, 84, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
  }
}
@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(220, 53, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}
