/* [project]/app/components/global/navbar.scss.css [app-client] (css) */
.navbar {
  width: 100%;
  height: 150px;
  background: #fffffff2;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px #0000000d;
  padding: 1rem 0;
  transition: all .3s;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center !important;
}

.navbar.scrolled {
  padding: .5rem 0;
}

.navbar .container-navbar {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  margin: 0 1rem;
}

.navbar .container-navbar .logo {
  width: 33.333%;
}

.navbar .container-navbar .logo img {
  height: 80px;
}

.navbar .container-navbar .search-container {
  flex: 0 40%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.navbar .container-navbar .search-container input {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.navbar .container-navbar .search-container .search-btn {
  padding: 8px 16px;
  background: none;
  color: #2c3e50;
  border: 1px solid #0000001a;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all .2s;
}

.navbar .container-navbar .search-container .search-btn:hover {
  background: #00000005;
  border-color: #0003;
}

.navbar .container-navbar .nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  width: 33.333%;
}

.navbar .container-navbar .nav-actions .auth-buttons {
  display: flex;
  gap: 10px;
}

.navbar .container-navbar .nav-actions .auth-buttons button {
  padding: 10px 20px;
  background: none;
  border: 1px solid #0000001a;
  border-radius: 6px;
  font-weight: 500;
  font-size: .9rem;
  color: #2c3e50;
  cursor: pointer;
  transition: all .2s;
}

.navbar .container-navbar .nav-actions .auth-buttons button:hover {
  background: #00000005;
  border-color: #0003;
  transform: translateY(-1px);
}

.navbar .container-navbar .nav-actions .auth-buttons button.login {
  background: none;
  color: #2c3e50;
  border: 1px solid #0000001a;
}

.navbar .container-navbar .nav-actions .auth-buttons button.login:hover {
  background: #00000005;
  border-color: #0003;
}

.navbar .container-navbar .nav-actions .auth-buttons button.register {
  background: none;
  color: #2c3e50;
  border: 1px solid #0000001a;
}

.navbar .container-navbar .nav-actions .auth-buttons button.register:hover {
  background: #00000005;
  border-color: #0003;
}

.navbar .container-navbar .nav-actions .cart {
  position: relative;
  cursor: pointer;
  transition: transform .2s;
}

.navbar .container-navbar .nav-actions .cart:hover {
  transform: translateY(-2px);
}

.navbar .container-navbar .nav-actions .cart i {
  font-size: 1.3rem;
  color: #2c3e50;
}

.navbar .container-navbar .nav-actions .cart .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #d32f2f;
  color: #fff;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: .8rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.navbar .container-navbar .burger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #2c3e50;
  padding: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 150px;
  left: 0;
  width: 100%;
  background: #fffffffa;
  backdrop-filter: blur(10px);
  padding: 1rem;
  box-shadow: 0 2px 10px #0000001a;
  transform: translateY(-100%);
  transition: transform .3s ease-in-out;
  z-index: 1000;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu .search-container {
  margin-bottom: 1.5rem;
  display: flex;
}

.mobile-menu .search-container input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: 8px 0 0 8px;
  font-size: 1rem;
  transition: all .2s;
}

.mobile-menu .search-container input:focus {
  border-color: #2c3e50;
  box-shadow: 0 0 0 2px #2c3e501a;
}

.mobile-menu .search-container .search-btn {
  padding: 12px 20px;
  background: #2c3e50;
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
}

.mobile-menu .search-container .search-btn:hover {
  background: #34495e;
}

.mobile-menu .auth-buttons {
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding: 0 .5rem;
}

.mobile-menu .auth-buttons button {
  width: 100%;
  padding: 12px;
  margin-bottom: .5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  transition: all .3s;
}

.mobile-menu .auth-buttons button.login {
  background: #2c3e50;
  color: #fff;
  border: none;
}

.mobile-menu .auth-buttons button.login:hover {
  background: #34495e;
  transform: translateY(-2px);
}

.mobile-menu .auth-buttons button.register {
  background: #fff;
  color: #2c3e50;
  border: 2px solid #2c3e50;
}

.mobile-menu .auth-buttons button.register:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.mobile-menu .mobile-categories {
  padding: 0 .5rem;
}

.mobile-menu .mobile-categories .categories-toggle {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  background: #f8f9fa;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #2c3e50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  transition: all .2s;
}

.mobile-menu .mobile-categories .categories-toggle:hover {
  background: #edf2f7;
}

.mobile-menu .mobile-categories .categories {
  display: none;
  padding: .5rem;
  margin: 0;
  border-radius: 8px;
  background: #f8f9fa;
  transition: all .3s;
  list-style: none;
}

.mobile-menu .mobile-categories .categories.open {
  display: block;
  animation: .3s ease-out slideDown;
}

.mobile-menu .mobile-categories .categories li {
  margin: 0;
}

.mobile-menu .mobile-categories .categories li a {
  display: block;
  padding: 12px 16px;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 6px;
  transition: all .2s;
}

.mobile-menu .mobile-categories .categories li a:hover {
  background: #edf2f7;
  padding-left: 20px;
  color: #2c3e50;
}

.mobile-menu .mobile-nav-actions {
  padding: 1rem .5rem;
  border-bottom: 1px solid #eee;
}

.mobile-menu .mobile-nav-actions .cart-action {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  cursor: pointer;
}

.mobile-menu .mobile-nav-actions .cart-action i {
  font-size: 1.2rem;
  color: #2c3e50;
}

.mobile-menu .mobile-nav-actions .cart-action span {
  color: #2c3e50;
  font-weight: 500;
  font-size: .95rem;
}

.mobile-menu .mobile-nav-actions .cart-action:hover {
  background-color: #edf2f7;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (width <= 1024px) {
  .navbar .container-navbar .burger-menu {
    display: flex;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    overflow-y: auto;
    z-index: 900;
  }

  .navbar {
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
  }

  .navbar .container-navbar {
    padding: 0 1rem;
  }

  .navbar .container-navbar .logo {
    width: auto;
  }

  .navbar .container-navbar .logo img {
    height: 60px;
  }

  body {
    padding-top: 100px;
  }
}

@media (width <= 768px) {
  .navbar {
    height: 80px;
  }

  .navbar .container-navbar .logo img {
    height: 50px;
  }

  .navbar .container-navbar .burger-menu {
    font-size: 1.3rem;
  }

  .mobile-menu {
    top: 80px;
    height: calc(100vh - 80px);
  }

  body {
    padding-top: 80px;
  }
}

.subnav {
  background: none;
  border: none;
  display: flex;
  justify-content: center;
  width: 100%;
}

.subnav .container-navbar {
  max-width: 1400px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.subnav .categories {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 0;
  padding: 0;
}

.subnav .categories li a {
  text-decoration: none;
  color: #2c3e50;
  font-size: .95rem;
  font-weight: 400;
  position: relative;
  transition: color .3s;
}

.subnav .categories li a:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #2c3e50;
  transition: width .2s;
}

.subnav .categories li a:hover {
  color: #2c3e50;
}

.subnav .categories li a:hover:after {
  width: 100%;
}

.profile-section {
  position: relative;
}

.profile-section .profile-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 5px;
  border-radius: 25px;
  transition: all .2s;
}

.profile-section .profile-trigger:hover {
  background: #0000000d;
}

.profile-section .profile-trigger .profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-section .profile-trigger .default-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2c3e50;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.2rem;
}

.profile-section .profile-trigger .profile-name {
  font-size: .9rem;
  font-weight: 500;
  color: #2c3e50;
}

.profile-section .profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px #0000001a;
  min-width: 200px;
  margin-top: 10px;
  padding: 8px 0;
  animation: .2s ease-out fadeIn;
  z-index: 1000;
}

.profile-section .profile-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #2c3e50;
  text-decoration: none;
  transition: all .2s;
}

.profile-section .profile-dropdown .dropdown-item i {
  font-size: 1.1rem;
}

.profile-section .profile-dropdown .dropdown-item:hover {
  background: #f8f9fa;
}

.profile-section .profile-dropdown .dropdown-item.text-danger:hover {
  background: #fee2e2;
}

.profile-section .profile-dropdown .dropdown-divider {
  margin: 8px 0;
  border-top: 1px solid #e9ecef;
}

.mobile-auth .profile-section {
  padding: 0 .5rem;
}

.mobile-auth .profile-section .profile-trigger {
  padding: 10px;
}

.mobile-auth .profile-section .profile-trigger .profile-name {
  font-size: 1rem;
}

.mobile-auth .profile-section .profile-dropdown {
  position: static;
  margin-top: 5px;
  box-shadow: none;
  border: 1px solid #e9ecef;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-categories .categories {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-out;
}

.mobile-categories .categories.open {
  display: block;
  max-height: 500px;
}

.wrapper, .wrapper-assist, main {
  position: relative;
  z-index: 10;
}

.mobile-profile-section {
  width: 100%;
}

.mobile-profile-section .profile-trigger {
  width: 100%;
  justify-content: flex-start;
  padding: 12px;
  border-radius: 8px;
  background-color: #f8f9fa;
}

.mobile-profile-section .mobile-profile-dropdown {
  position: static;
  width: 100%;
  margin-top: 8px;
  box-shadow: 0 2px 8px #0000001a;
  border-radius: 8px;
  overflow: hidden;
}

.mobile-profile-section .mobile-profile-dropdown .dropdown-item {
  padding: 12px 16px;
  font-size: .95rem;
}


/* [project]/app/components/global/Footer.scss.css [app-client] (css) */
.site-footer {
  color: #333;
  font-size: .9rem;
  line-height: 1.6;
  margin-top: 2rem;
}

.site-footer .footer-main {
  background: linear-gradient(#fff, #f8f9fa);
}

.site-footer .footer-main .container {
  max-width: 1400px;
  margin: 0 auto;
}

@media (width <= 768px) {
  .site-footer .footer-main .container {
    padding: 0 1.5rem;
  }
}

.site-footer .footer-main .footer-top {
  padding-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  border-bottom: 1px solid #0000000d;
}

@media (width <= 992px) {
  .site-footer .footer-main .footer-top {
    flex-direction: column;
    padding: 3rem 0 2rem;
  }
}

.site-footer .footer-main .footer-top .footer-intro {
  flex: 1;
  min-width: 280px;
}

.site-footer .footer-main .footer-top .footer-intro .footer-logo {
  margin-bottom: 1.5rem;
}

.site-footer .footer-main .footer-top .footer-intro .footer-logo img {
  height: 60px;
}

.site-footer .footer-main .footer-top .footer-intro .company-info {
  color: #555;
  max-width: 480px;
}

.site-footer .footer-main .footer-top .footer-intro .company-info p {
  margin: 0;
  line-height: 1.7;
}

.site-footer .footer-main .footer-top .footer-newsletter {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.site-footer .footer-main .footer-top .footer-newsletter h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .8rem;
  color: #2c3e50;
}

.site-footer .footer-main .footer-top .footer-newsletter p {
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.7;
}

.site-footer .footer-main .footer-top .footer-newsletter .input-group {
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: all .3s;
  box-shadow: 0 2px 5px #00000008;
}

.site-footer .footer-main .footer-top .footer-newsletter .input-group:focus-within {
  border-color: #2c3e50;
  box-shadow: 0 4px 10px #00000012;
}

.site-footer .footer-main .footer-top .footer-newsletter .input-group input {
  flex: 1;
  border: none;
  padding: .8rem 1.2rem;
  outline: none;
  font-size: .95rem;
}

.site-footer .footer-main .footer-top .footer-newsletter .input-group button {
  background: #2c3e50;
  color: #fff;
  border: none;
  padding: 0 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .8rem;
  cursor: pointer;
  transition: background .3s;
}

.site-footer .footer-main .footer-top .footer-newsletter .input-group button:hover {
  background: #1a2530;
}

.site-footer .footer-main .footer-middle {
  padding: 3rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (width <= 992px) {
  .site-footer .footer-main .footer-middle {
    flex-direction: column;
  }
}

.site-footer .footer-main .footer-middle .footer-links-section {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (width <= 768px) {
  .site-footer .footer-main .footer-middle .footer-links-section {
    gap: 3rem;
  }
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column {
  flex: 1;
  min-width: 160px;
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #2c3e50;
  position: relative;
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column h4:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #2c3e50;
  margin-top: .5rem;
  transition: width .3s;
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column h4:hover:after {
  width: 45px;
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column .loading-categories {
  color: #777;
  font-style: italic;
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column ul li {
  margin-bottom: .8rem;
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column ul li a {
  color: #555;
  text-decoration: none;
  transition: all .2s;
  position: relative;
  display: inline-block;
}

.site-footer .footer-main .footer-middle .footer-links-section .footer-links-column ul li a:hover {
  color: #2c3e50;
  transform: translateX(3px);
}

.site-footer .footer-main .footer-middle .footer-social-payments {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.site-footer .footer-main .footer-middle .footer-social-payments h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #2c3e50;
}

.site-footer .footer-main .footer-middle .footer-social-payments .social-section .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer .footer-main .footer-middle .footer-social-payments .social-section .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #2c3e50;
  transition: all .3s;
}

.site-footer .footer-main .footer-middle .footer-social-payments .social-section .social-links a:hover {
  background-color: #2c3e50;
  color: #fff;
  transform: translateY(-5px);
}

.site-footer .footer-main .footer-middle .footer-social-payments .social-section .social-links a i {
  font-size: 1.2rem;
}

.site-footer .footer-main .footer-middle .footer-social-payments .payments-section .payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer .footer-main .footer-middle .footer-social-payments .payments-section .payment-icons img {
  height: 30px;
  width: auto;
  filter: grayscale(80%);
  opacity: .7;
  transition: all .3s;
}

.site-footer .footer-main .footer-middle .footer-social-payments .payments-section .payment-icons img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.site-footer .footer-bottom {
  background-color: #2c3e50;
  color: #fff;
  padding: 1.5rem 0;
  font-size: .85rem;
}

.site-footer .footer-bottom .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (width <= 768px) {
  .site-footer .footer-bottom .container {
    padding: 0 1.5rem;
  }
}

.site-footer .footer-bottom .footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (width <= 768px) {
  .site-footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
}

.site-footer .footer-bottom .footer-bottom-content .copyright {
  margin: 0;
  color: #fffc;
}

.site-footer .footer-bottom .footer-bottom-content .footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

@media (width <= 576px) {
  .site-footer .footer-bottom .footer-bottom-content .footer-bottom-links {
    flex-direction: column;
    gap: .8rem;
  }
}

.site-footer .footer-bottom .footer-bottom-content .footer-bottom-links a {
  color: #fffc;
  text-decoration: none;
  transition: all .2s;
}

.site-footer .footer-bottom .footer-bottom-content .footer-bottom-links a:hover {
  color: #fff;
  text-decoration: underline;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer .footer-top, .site-footer .footer-links-column, .site-footer .footer-social-payments > div {
  animation: .5s ease-out forwards fadeInUp;
  opacity: 0;
}

.site-footer .footer-top {
  animation-delay: .1s;
}

.site-footer .footer-links-column:first-child {
  animation-delay: .2s;
}

.site-footer .footer-links-column:nth-child(2) {
  animation-delay: .3s;
}

.site-footer .footer-links-column:nth-child(3) {
  animation-delay: .4s;
}

.site-footer .social-section {
  animation-delay: .5s;
}

.site-footer .payments-section {
  animation-delay: .6s;
}

.site-footer .footer-main {
  font-weight: 400;
}

.site-footer .footer-bottom {
  font-weight: 300;
}

@media (width <= 992px) {
  .site-footer .footer-top .footer-newsletter {
    max-width: 100%;
  }
}

@media (width <= 768px) {
  .site-footer .footer-main .footer-top {
    gap: 1.5rem;
  }

  .site-footer .footer-main .footer-top .footer-intro .footer-logo img {
    height: 50px;
  }

  .site-footer .footer-main .footer-middle {
    padding: 2rem 0;
    gap: 2.5rem;
  }

  .site-footer .footer-main .footer-middle .footer-links-section {
    flex-direction: column;
    gap: 2rem;
  }

  .site-footer .footer-main .footer-middle .footer-links-section .footer-links-column {
    min-width: 100%;
  }
}


/* [project]/app/components/cart/CartSidebar.scss.css [app-client] (css) */
.cart-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000080;
  z-index: 1500;
  backdrop-filter: blur(2px);
  animation: .25s ease-out forwards fadeIn;
}

.cart-modal-overlay.closing {
  animation: .3s ease-in forwards fadeOut;
}

.cart-sidebar-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  max-width: 90vw;
  height: 100vh;
  background-color: #fff;
  z-index: 1501;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px #0003;
  animation: .3s cubic-bezier(.16, 1, .3, 1) forwards slideIn;
}

.cart-sidebar-panel.closing {
  animation: .3s cubic-bezier(.16, 1, .3, 1) forwards slideOut;
}

.cart-sidebar-panel .cart-sidebar-header {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-sidebar-panel .cart-sidebar-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

.cart-sidebar-panel .cart-sidebar-header .cart-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #777;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.cart-sidebar-panel .cart-sidebar-header .cart-close-btn:hover {
  color: #222;
  background-color: #f5f5f5;
}

.cart-sidebar-panel .cart-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.cart-sidebar-panel .cart-sidebar-body .cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: #777;
}

.cart-sidebar-panel .cart-sidebar-body .cart-empty-state .cart-continue-shopping {
  margin-top: 1rem;
  padding: .5rem 1rem;
  background: #222;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: .9rem;
}

.cart-sidebar-panel .cart-sidebar-body .cart-empty-state .cart-continue-shopping:hover {
  background: #444;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item {
  display: flex;
  align-items: flex-start;
  padding: .75rem;
  border: 1px solid #eee;
  border-radius: 8px;
  position: relative;
  background-color: #fff;
  transition: all .2s;
  box-shadow: 0 2px 4px #00000005;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item:hover {
  border-color: #ddd;
  box-shadow: 0 3px 8px #0000000d;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-item-image {
  border-radius: 6px;
  overflow: hidden;
  margin-right: .75rem;
  flex-shrink: 0;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px !important;
  height: 60px !important;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-item-image .cart-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-item-image .cart-placeholder-image {
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-item-details h4 {
  margin: 0 0 .35rem;
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 16px;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-item-details .cart-price-quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-item-details .cart-price-quantity .cart-item-price {
  display: flex;
  flex-direction: column;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-item-details .cart-price-quantity .cart-item-price .cart-current-price {
  font-weight: 600;
  color: #d32f2f;
  font-size: .85rem;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-item-details .cart-price-quantity .cart-item-price .cart-original-price {
  text-decoration: line-through;
  font-size: .75rem;
  color: #999;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-item-details .cart-price-quantity .cart-quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  height: 24px;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-item-details .cart-price-quantity .cart-quantity-control button.cart-quantity-btn {
  width: 24px;
  height: 24px;
  border: none;
  background: #f0f0f0;
  color: #555;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all .15s;
  font-size: 14px;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-item-details .cart-price-quantity .cart-quantity-control button.cart-quantity-btn:hover {
  background: #e0e0e0;
  color: #333;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-item-details .cart-price-quantity .cart-quantity-control button.cart-quantity-btn:active {
  background: #d0d0d0;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-item-details .cart-price-quantity .cart-quantity-control button.cart-quantity-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-item-details .cart-price-quantity .cart-quantity-control span {
  padding: 0 .5rem;
  font-size: .8rem;
  min-width: 1.5rem;
  text-align: center;
  user-select: none;
  color: #333;
  font-weight: 500;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-remove-item {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1rem;
  color: #ccc;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .15s;
}

.cart-sidebar-panel .cart-sidebar-body .cart-sidebar-item .cart-remove-item:hover {
  color: #d32f2f;
  background-color: #d32f2f1a;
}

.cart-sidebar-panel .cart-sidebar-footer {
  padding: 1rem;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
}

.cart-sidebar-panel .cart-sidebar-footer .cart-subtotal {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  font-size: .95rem;
}

.cart-sidebar-panel .cart-sidebar-footer .cart-subtotal span:first-child {
  color: #555;
}

.cart-sidebar-panel .cart-sidebar-footer .cart-subtotal span:last-child {
  font-weight: 700;
  color: #111;
}

.cart-sidebar-panel .cart-sidebar-footer .cart-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .75rem;
}

.cart-sidebar-panel .cart-sidebar-footer .cart-sidebar-actions .cart-checkout-btn {
  padding: .7rem;
  background: #222;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all .2s;
}

.cart-sidebar-panel .cart-sidebar-footer .cart-sidebar-actions .cart-checkout-btn:hover {
  background: #000;
  transform: translateY(-1px);
}

.cart-sidebar-panel .cart-sidebar-footer .cart-sidebar-actions .cart-clear-btn {
  padding: .6rem;
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  font-size: .85rem;
  transition: all .15s;
  color: #666;
}

.cart-sidebar-panel .cart-sidebar-footer .cart-sidebar-actions .cart-clear-btn:hover {
  border-color: #d32f2f;
  color: #d32f2f;
  background-color: #d32f2f0d;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@media (width <= 480px) {
  .cart-sidebar-panel {
    width: 100%;
  }
}


/* [project]/app/globals.css [app-client] (css) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.wrapper-assist {
  width: 1400px;
  height: 100%;
  padding: 50px 0;
}

@media screen and (width <= 1400px) {
  .wrapper-assist {
    width: 100%;
    padding: 50px 20px;
  }
}

@media (width <= 1024px) {
  body {
    padding-top: 100px;
  }
}

@media (width <= 768px) {
  body {
    padding-top: 80px;
  }
}


/*# sourceMappingURL=app_f5a6f2._.css.map*/
