.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid rgba(16, 185, 129, .4);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  z-index: 1000;
  transition: transform 0.4s ease;
}

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

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

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo {
  height: 40px;
  cursor: pointer;
}

.nav-logo img {
  height: 100%;
  width: 150px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #10b981;
}

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

.nav-chevron {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

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

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 15px 5px;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10;
}

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

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

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.nav-dropdown a:hover {
  background-color: rgba(0, 90, 255, 0.05);
  color: #10b981;
  padding-left: 25px;
}

.nav-cart {
  display: flex;
  align-items: center;
  margin-right: 25px;
  position: relative;
  cursor: pointer;
}

.nav-cart .fa-solid {
  font-size: 24px;
  color: #10b981;
}

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

/* Mobile menu icon */
.menu-icon {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1500;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #10b981;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s 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 */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100vh;
  background-color: #fff;
  z-index: 1200;
  padding: 100px 20px;
  transition: left 0.4s ease;
  overflow-y: auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-links {
  list-style: none;
}

.mobile-menu-link {
  margin-bottom: 25px;
  margin-left: 10px;
}

.mobile-menu-link a {
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
  display: block;
}

.mobile-menu-link a:hover {
  color: #10b981;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 10px;
  margin-left: 10px;
}

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

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

.mobile-dropdown a {
  font-size: 14px !important;
}

.mobile-cart {
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 15px 0;
}

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

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive styles */
@media (max-width: 992px) {
  .nav-container {
      padding: 0 20px;
      justify-content: space-between;
  }

  .nav-left, .nav-right {
      display: none;
  }

  .nav-center {
      position: static;
      transform: none;
      display: flex;
      align-items: center;
  }

  .nav-logo img {
      width: 100px;
  }

  .menu-icon {
      display: block;
  }
}
.footer {
    background-color: #f7f7f7;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
  }
  
  .footer::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-image: url(../images/FullColor.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
  }
  
  .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
  }
  
  .footer-section h3 {
    color: #000;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  
  .footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #10b981;
    transition: width 0.3s ease;
  }
  
  .footer-section:hover h3::after {
    width: 100%;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
    margin-bottom: 5px;
    font-size: 14px;
  }
  
  .footer-links a:hover {
    color: #10b981;
    padding-left: 8px;
  }
  
  .footer-links a::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-color: transparent transparent transparent #10b981;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .footer-links a:hover::before {
    opacity: 1;
    left: -5px;
  }
  
  .company-info p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
  }
  
  .newsletter-form {
    display: flex;
    margin-top: 15px;
  }
  
  .newsletter-input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    outline: none;
    transition: border-color 0.3s;
  }
  
  .newsletter-input:focus {
    border-color: #10b981;
  }
  
  .newsletter-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .newsletter-btn:hover {
    background: #006a95;
  }
  
  .footer-contact-info {
    margin-bottom: 15px;
  }
  
  .footer-contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
  }
  
  .footer-contact-info p .fa-solid {
    margin-right: 10px;
    font-size: 16px;
  }

  .footer-social {
    margin-top: 30px;
  }
  
  .footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: #10b981;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    text-decoration: none;
  }
  
  .footer-social-icon:hover {
    background: #10b981;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 137, 190, 0.3);
  }
  
  .footer-bottom-bar {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  
  .footer-copyright {
    color: #333;
    font-size: 14px;
  }
  
  .footer-bottom-links {
    display: flex;
    gap: 20px;
  }
  
  .footer-bottom-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .footer-bottom-links a:hover {
    color: #10b981;
  }
  
  .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .back-to-top .fas {
    font-size: 16px;
  }
  
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    z-index: 1000;
  }
  
  .back-to-top:hover {
    background: #0e9e73;
    transform: translateY(-5px);
  }
  
  .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(16, 185, 129, .4);
    transform: scale(0);
    animation: ripple 1.2s ease-out;
    pointer-events: none;
  }
  
  @keyframes ripple {
    to {
      transform: scale(2);
      opacity: 0;
    }
  }

  @media (max-width: 992px) {
    .footer::before {
      background-image: url(../images/FAV_FullColor.svg);
      width: 400px;
      height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer-bottom-bar {
      flex-direction: column;
      text-align: center;
    }
    
    .footer-bottom-links {
      flex-wrap: wrap;
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .footer-container {
      grid-template-columns: 1fr;
      justify-content: center;
      text-align: center;
    }
    
    .newsletter-form {
      flex-direction: column;
    }
    
    .newsletter-input {
      border-radius: 4px;
      margin-bottom: 10px;
    }
    
    .newsletter-btn {
      border-radius: 4px;
      padding: 12px;
    }

    .footer-contact-info {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .footer-social-links {
      justify-content: center;
    }
  }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Figtree, sans-serif;
}

html {
  scroll-behavior: smooth;
}

p {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  overflow-x: hidden;
  cursor: default;
}

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: #10b981;
  color: white;
}

.btn-primary:hover {
  background-color: #0e9e73;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  transform: translateY(-2px);
}

.more-link {
  color: #10b981;
  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: #be3500;
  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: 'Inter', 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;
  }
}

.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: #10b981;
    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: #10b981;
    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: #10b981;
    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: #0e9e73;
    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: #10b981;
    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: #0e9e73;
    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;
}

