* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.nav-hidden {
  transform: translateY(-100%);
}

.nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-left, .nav-center, .nav-right {
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #0a1119;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: #00a3ff;
}

.nav-solutions-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-chevron {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
  margin-top: 1px;
}

.nav-solutions-wrapper:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: -20px;
  background-color: #ffffff;
  min-width: 260px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.nav-solutions-wrapper:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li {
  list-style: none;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: #0a1119;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s ease;
  border-radius: 6px;
}

.nav-dropdown a i {
  font-size: 11px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.15s ease;
  color: #00a3ff;
}

.nav-dropdown a:hover {
  background-color: rgba(0, 163, 255, 0.06);
  color: #00a3ff;
}

.nav-dropdown a:hover i {
  opacity: 1;
  transform: translateX(0);
}

.nav-right {
  gap: 24px;
}

.nav-cart {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #0a1119;
}

.nav-cart:hover {
  transform: scale(1.2);
}

.nav-cart .fa-solid {
  font-size: 20px;
}

.nav-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: #7c3aed;
  color: white;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 4px rgba(124, 58, 237, 0.3);
}

.nav-btn {
  background-color: #0a1119;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.nav-btn:hover {
  background-color: #00a3ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 163, 255, 0.3);
}

.menu-icon {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1500;
  margin-left: 20px;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #0a1119;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.2s ease-in-out;
}

.menu-icon span:nth-child(1) {
  top: 0px;
}

.menu-icon span:nth-child(2),
.menu-icon span:nth-child(3) {
  top: 9px;
}

.menu-icon span:nth-child(4) {
  top: 18px;
}

.menu-icon.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.menu-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}

.menu-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.menu-icon.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  /* border-bottom: 1px solid rgba(10, 17, 25, 0.08); */
}

.mobile-menu.active {
  max-height: 600px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.mobile-menu-links {
  list-style: none;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px;
}

.mobile-menu-link {
  margin-bottom: 8px;
}

.mobile-menu-link a:not(.nav-btn-mobile) {
  color: #0a1119;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
  display: block;
  padding: 12px 0;
}

.mobile-menu-link a:not(.nav-btn-mobile):hover {
  color: #00a3ff;
}


.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  padding: 12px 0;
}

.mobile-dropdown-toggle a {
  padding: 0;
}

.mobile-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-left: 16px;
}

.mobile-dropdown.active {
  max-height: 400px;
}

.mobile-dropdown li {
  margin-bottom: 4px;
  list-style: none;
}

.mobile-dropdown a {
  font-size: 13px;
  padding: 10px 0;
  color: rgba(10, 17, 25, 0.8);
}

.mobile-cart {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #0a1119;
}

.mobile-cart i {
  font-size: 20px;
}

.mobile-cart span {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: #7c3aed;
  color: white;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav-btn-mobile {
  display: inline-block;
  width: 100%;
  background-color: #0a1119;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  margin-top: 12px;
}

.nav-btn-mobile:hover {
  color: #ffffff;
  background-color: #00a3ff;
}

.backdrop {
  display: none;
}

@media (max-width: 992px) {
  .nav-wrapper {
    padding: 0 16px;
  }

  .nav-center,
  .nav-btn {
    display: none;
  }

  .nav-right {
    gap: 0;
  }

  .nav-cart {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}

@media (max-width: 480px) {
  .nav-wrapper {
    height: 64px;
  }

  .mobile-menu {
    top: 64px;
  }

  .mobile-menu-links {
    padding: 16px 20px;
  }
}
.footer {
  background-color: #ffffff;
  padding: 0;
  position: relative;
  border-top: 1px solid rgba(10, 17, 25, 0.08);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-section {
  position: relative;
}

.footer-section h3 {
  color: #0a1119;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-info {
  max-width: 350px;
}

.footer-tagline {
  color: rgba(10, 17, 25, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 13px;
}

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

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-social-icon:hover {
  transform: translateY(-3px);
}

.footer-social-icon.linkedin {
  color: #0077b5;
}

.footer-social-icon.instagram {
  color: #E4405F;
}

.footer-social-icon.facebook {
  color: #1877f2;
}

.footer-social-icon.twitter {
  color: #000000;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(10, 17, 25, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
}

.footer-links a:hover {
  color: #00a3ff;
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: rgba(10, 17, 25, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact-info p .fa-solid {
  margin-right: 10px;
  margin-top: 2px;
  font-size: 14px;
  color: #00a3ff;
  flex-shrink: 0;
}

.footer-contact-info a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-info a:hover {
  color: #00a3ff;
}

.footer-logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  height: 70px;
  width: auto;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(10, 17, 25, 0.08);
  background-color: #fafafa;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: rgba(10, 17, 25, 0.6);
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(10, 17, 25, 0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #00a3ff;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: #0a1119;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(10, 17, 25, 0.15);
  z-index: 999;
}

.back-to-top .fas {
  font-size: 16px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #00a3ff;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 163, 255, 0.3);
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 50px 30px 30px;
  }

  .company-info {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .footer-logo-section {
    padding: 0 30px;
  }

  .footer-logo {
    height: 60px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 40px 24px 24px;
  }

  .company-info {
    text-align: left;
  }

  .footer-social-links {
    justify-content: flex-start;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-logo-section {
    padding: 0 24px;
  }

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

@media (max-width: 480px) {
  .footer-container {
    padding: 32px 20px 20px;
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 13px;
  }

  .footer-tagline {
    font-size: 12px;
  }

  .footer-links a,
  .footer-contact-info p {
    font-size: 12px;
  }

  .footer-social-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .footer-logo {
    height: 40px;
  }

  .footer-bottom-container {
    padding: 18px 20px;
  }

  .footer-copyright,
  .footer-bottom-links a {
    font-size: 12px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
a,
button {
  font-family: "Livvic", sans-serif;
}

h1,
h2,
h3,
h4,h5,
h6 {
  font-family: "Figtree", sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  overflow-x: hidden;
  cursor: default;
  font-family: "Livvic", sans-serif;
}

body::-webkit-scrollbar {
  display: none;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

a.btn {
  font-size: 14px;
  text-decoration: none;
}

.btn-primary {
  background-color: #00a3ff;
  color: white;
}

.btn-primary:hover {
  background-color: #005f83;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 90, 255, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #00a3ff;
  border: 1px solid #00a3ff;
}

.btn-secondary:hover {
  background-color: rgba(0, 90, 255, 0.1);
  transform: translateY(-2px);
}

.more-link {
  color: #00a3ff;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.more-link:hover {
  color:  #7c3aed;
  transform: translateX(5px);
}

.more-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.more-link:hover::after {
  transform: translateX(3px);
}

/* Toast Notification Styles */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  color: #374151;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Livvic', sans-serif;
  font-size: 14px;
  font-weight: 500;
  min-width: 280px;
  max-width: 400px;
  z-index: 9999;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.toast i {
  font-size: 16px;
  flex-shrink: 0;
}

.toast-show {
  transform: translateX(0);
  opacity: 1;
}

/* Success toast (item added) */
.toast.toast-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-color: #065f46;
}

.toast.toast-success i {
  color: #ffffff;
}

/* Removed toast (item removed) */
.toast.toast-removed {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  border-color: #991b1b;
}

.toast.toast-removed i {
  color: #ffffff;
}

/* Error toast */
.toast.toast-error {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  border-color: #92400e;
}

.toast.toast-error i {
  color: #ffffff;
}

/* Toast message text */
#toast-message {
  flex: 1;
  line-height: 1.4;
}

/* Animation for mobile devices */
@media (max-width: 768px) {
  .toast {
      bottom: 10px;
      right: 10px;
      left: 10px;
      min-width: auto;
      max-width: none;
      transform: translateY(-100%);
  }
  
  .toast-show {
      transform: translateY(0);
  }
}

.toast:hover {
  transform: translateX(0) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 6px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .toast:hover {
      transform: translateY(0) scale(1.02);
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .toast {
      background: #1f2937;
      color: #f9fafb;
      border-color: #374151;
  }
  
  .toast.toast-success {
      background: linear-gradient(135deg, #059669 0%, #047857 100%);
  }
  
  .toast.toast-removed {
      background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  }
  
  .toast.toast-error {
      background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .toast {
      transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .toast {
      box-shadow: 0 0 0 2px currentColor;
      border-width: 2px;
  }
}

.hidden {
  display: none !important;
}
.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.cart-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cart-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.cart-subtitle {
    font-size: 1.1rem;
    color: #64748b;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
}

.cart-items {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cart-items-header {
    background: #00a3ff;
    color: white;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.cart-item {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background-color: #f8fafc;
    transform: translateY(-1px);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color:  #be3500;
    transition: all 0.4s ease;
}

.cart-item-price.cart-price-animate {
    transform: scale(1.1);
    color:  #be3500;
}

.cart-item-price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-remove-btn {
    background:  #be3500;
    color: white;
    border: none;
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-remove-btn:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

.cart-items-continue {
    display: flex;
    justify-content: center;
    padding: 1.5rem;
}

.cart-summary {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 0;
    position: sticky;
    top: 2rem;
}

.cart-summary-header {
    background: #00a3ff;
    color: white;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.cart-summary-content {
    padding: 1.5rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.cart-summary-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cart-summary-label {
    color: #64748b;
}

.cart-summary-value {
    font-weight: 600;
    color: #0f172a;
    transition: all 0.4s ease;
}

.cart-summary-value.cart-total-animate {
    transform: scale(1.05);
    color:  #be3500;
}

.cart-total-row {
    font-size: 1.2rem;
    font-weight: 700;
}

.cart-total-row .cart-summary-value {
    color:  #be3500;
}

.cart-checkout-btn {
    width: 100%;
    background: #00a3ff;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.cart-checkout-btn:hover {
    background: #0070a0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 137, 190, 0.3);
}

.cart-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #64748b;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-empty-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cart-continue-btn {
    background: #00a3ff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-continue-btn:hover {
    background: #0070a0;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cart-container {
        padding: 1rem;
    }

    .cart-title {
        font-size: 2rem;
    }

    .cart-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cart-summary {
        position: static;
    }

    .cart-item-main {
        flex-direction: column;
        gap: 1rem;
    }

    .cart-item-price-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .cart-remove-btn {
        align-self: flex-end;
    }
}

.cart-item-removing {
    animation: slideOut 0.4s ease-out forwards;
}

@keyframes slideOut {
    to {
        transform: translateX(-100%);
        opacity: 0;
        height: 0;
        padding: 0;
        margin: 0;
    }
}

.add-to-cart.added-to-cart {
    background-color: #22c55e !important;
    cursor: not-allowed;
    opacity: 0.8;
}

.add-to-cart.added-to-cart:hover {
    background-color: #22c55e !important;
    transform: none;
}

.add-to-cart {
    transition: all 0.3s ease;
}

