    .nav-link {
      color: #000 !important;
    }

    .donation-section {
      padding: 3rem 0;
      background-color: #fff9e5;
    }

    .donation-header {
      margin-bottom: 3rem;
      position: relative;
      padding: 2rem 0;
    }

    .donation-header::before {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      background: linear-gradient(45deg, rgba(255, 206, 51, 0.15), rgba(255, 136, 0, 0.1));
      border-radius: 50%;
      top: -30px;
      left: 10%;
      z-index: 0;
    }

    .donation-header::after {
      content: "";
      position: absolute;
      width: 80px;
      height: 80px;
      background: linear-gradient(45deg, rgba(255, 136, 0, 0.1), rgba(255, 206, 51, 0.15));
      border-radius: 50%;
      bottom: 0;
      right: 10%;
      z-index: 0;
    }

    .donation-header h1 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .donation-header h4 {
      font-weight: 500;
      color: #444;
      margin-bottom: 2rem;
      position: relative;
    }

    .donation-header p {
      position: relative;
      line-height: 1.8;
    }

    .donation-subheader {
      margin: 3rem 0;
      position: relative;
      padding: 1.5rem;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    }

    .donation-subheader h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      position: relative;
    }

    .donation-subheader p {
      position: relative;
      font-size: 1.1rem;
    }

    .donation-separator {
      width: 80px;
      height: 3px;
      background: linear-gradient(to right, #ffce33, #ff8800);
      margin: 0 auto 2rem;
      border-radius: 10px;
    }

    .donation-tagline {
      display: inline-block;
      border-radius: 30px;
      padding: 0.3rem 1.2rem;
      background-color: rgba(255, 136, 0, 0.1);
      color: #ff8800;
      font-weight: 500;
      margin-bottom: 1rem;
      position: relative;
    }

    .donation-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      height: 100%;
      transition: all 0.3s ease;
    }

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

    .donation-card-header {
      padding: 1.5rem;
      border-bottom: 1px solid #f2f2f2;
      background: linear-gradient(to right, #ffce33, #ff8800);
      color: white;
      border-radius: 10px 10px 0 0;
    }

    .donation-card-body {
      padding: 1.5rem;
    }

    .donation-option {
      background-color: white;
      border-radius: 10px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      border: 1px solid #eee;
      transition: all 0.3s ease;
    }

    .donation-option:hover {
      border-color: #ff8800;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .donation-option-title {
      color: #ff8800;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    .donation-option-description {
      color: #6c757d;
      font-size: 0.9rem;
    }

    .donation-amount {
      border: 1px solid #ff8800;
      color: #ff8800;
      border-radius: 30px;
      padding: 0.5rem 1.5rem;
      margin-right: 0.5rem;
      margin-bottom: 0.5rem;
      background-color: white;
      transition: all 0.3s ease;
      font-weight: 500;
      cursor: pointer;
    }

    .donation-amount:hover,
    .donation-amount.active {
      background-color: #ff8800;
      color: white;
    }

    .warning-text {
      background-color: #fff3cd;
      border-left: 4px solid #ffc107;
      padding: 1rem;
      margin-top: 2rem;
    }

    .info-text {
      background-color: #d1ecf1;
      border-left: 4px solid #17a2b8;
      padding: 1rem;
      margin-top: 1rem;
    }

    .gradint-text {
      background: linear-gradient(to right, #ffce33, #ff8800);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .donation-form input {
      width: 100%;
      padding: 10px 15px;
      border-radius: 5px;
      border: 1px solid #ced4da;
      margin-bottom: 5px;
    }

    .donation-form p {
      margin-bottom: 5px;
      font-weight: 500;
    }

    .product-item {
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 1rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .product-item:hover {
      border-color: #ff8800;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .active-product {
      border-color: #ff8800;
      background-color: rgba(255, 136, 0, 0.05);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    .product-image {
      width: 80px;
      height: 80px;
      object-fit: cover;
      margin-right: 1rem;
      border-radius: 6px;
    }

    .product-details {
      flex: 1;
    }

    .product-price {
      font-weight: bold;
      color: #ff8800;
    }

    @media (max-width: 767px) {
      .donation-amount {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
      }

      .donation-option {
        padding: 1.2rem;
      }

      .gradint-text {
        font-size: 1.8rem;
      }

      .donation-header h1 {
        font-size: 2rem;
      }

      .donation-header h4 {
        font-size: 1.3rem;
      }

      .donation-subheader {
        padding: 1rem;
      }

      .donation-subheader h3 {
        font-size: 1.5rem;
      }

      .donation-subheader p {
        font-size: 1rem;
      }

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

      .cart-item-controls {
        width: 100%;
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: center;
      }

      .cart-item-controls>div:last-child {
        margin-left: auto;
        margin-right: 0.5rem;
      }

      .cart-qty-controls {
        flex-shrink: 0;
      }

      .cart-remove-btn {
        flex-shrink: 0;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
      }

      .quantity-selector-modal {
        flex-direction: column;
        gap: 0.5rem;
      }

      .quantity-selector-controls {
        margin-top: 0.5rem;
      }
    }

    /* Modal Styles */
    .donation-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }

    .donation-modal-content {
      background-color: #fff;
      border-radius: 10px;
      max-width: 500px;
      width: 90%;
      padding: 2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      position: relative;
    }

    .donation-modal-close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
      color: #aaa;
    }

    .donation-modal-close:hover {
      color: #333;
    }

    .donation-modal-icon {
      font-size: 50px;
      color: #ff8800;
      margin-bottom: 15px;
    }

    .donation-modal-title {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
      color: #ff8800;
    }

    .donation-modal-text {
      margin-bottom: 1.5rem;
      color: #333;
    }

    .donation-modal-btn {
      background: linear-gradient(to right, #ffce33, #ff8800);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: 500;
      cursor: pointer;
    }

    /* Large Donation Form Modal Styles */
    .donation-form-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }

    .donation-form-modal-content {
      background-color: #fff;
      border-radius: 10px;
      max-width: 500px;
      width: 90%;
      padding: 2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      position: relative;
      max-height: 90vh;
      overflow-y: auto;
    }

    .donation-form-modal-close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
      color: #aaa;
    }

    .donation-form-modal-close:hover {
      color: #333;
    }

    .donation-form-modal-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .donation-form-modal .form-group {
      margin-bottom: 1rem;
    }

    .donation-form-modal label {
      font-weight: 500;
      margin-bottom: 0.5rem;
      display: block;
    }

    .donation-form-modal input {
      width: 100%;
      padding: 10px 15px;
      border-radius: 5px;
      border: 1px solid #ced4da;
    }

    .donation-form-modal-btn {
      background: linear-gradient(to right, #ffce33, #ff8800);
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 30px;
      font-weight: 500;
      cursor: pointer;
      width: 100%;
      margin-top: 1rem;
    }

    .donation-amount-header {
      font-size: 1.25rem;
      font-weight: 600;
      color: #ff8800;
      margin-bottom: 1rem;
      text-align: center;
    }

    /* Cart Styles */
    .cart-section {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      padding: 1.5rem;
      margin-top: 2rem;
    }

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

    .cart-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 1rem;
      background-color: #f8f9fa;
    }

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

    .cart-item-name {
      font-weight: 600;
      color: #333;
      margin-bottom: 0.5rem;
    }

    .cart-item-price {
      color: #ff8800;
      font-weight: 500;
    }

    .cart-item-controls {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .cart-qty-controls {
      display: flex;
      align-items: center;
      border: 1px solid #ddd;
      border-radius: 5px;
      background: white;
    }

    .cart-qty-btn {
      background: none;
      border: none;
      padding: 0.5rem;
      cursor: pointer;
      color: #ff8800;
      font-weight: bold;
      font-size: 1.1rem;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cart-qty-btn:hover {
      background-color: #f8f9fa;
    }

    .cart-qty-btn:disabled {
      color: #ccc;
      cursor: not-allowed;
    }

    .cart-qty-btn:disabled:hover {
      background-color: transparent;
    }

    .cart-qty-input {
      width: 50px;
      text-align: center;
      border: none;
      padding: 0.5rem;
      font-weight: 500;
      background-color: #f8f9fa;
      pointer-events: none;
    }

    .cart-remove-btn {
      background-color: #dc3545;
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      cursor: pointer;
      font-size: 0.9rem;
    }

    .cart-remove-btn:hover {
      background-color: #c82333;
    }

    .cart-total {
      background-color: rgba(255, 136, 0, 0.1);
      padding: 1rem;
      border-radius: 8px;
      margin-top: 1rem;
      text-align: center;
    }

    .cart-total-amount {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ff8800;
    }

    .cart-checkout-btn {
      background: linear-gradient(to right, #ffce33, #ff8800);
      color: white;
      border: none;
      padding: 1rem 2rem;
      border-radius: 30px;
      font-weight: 500;
      cursor: pointer;
      width: 100%;
      margin-top: 1rem;
      font-size: 1.1rem;
    }

    .cart-checkout-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .cart-checkout-btn:disabled {
      background: #ccc;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .cart-empty {
      text-align: center;
      padding: 2rem;
      color: #6c757d;
    }

    /* Quantity Selection Modal */
    .quantity-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }

    .quantity-modal-content {
      background-color: #fff;
      border-radius: 10px;
      max-width: 400px;
      width: 90%;
      padding: 2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      position: relative;
    }

    .quantity-modal-close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
      color: #aaa;
    }

    .quantity-modal-close:hover {
      color: #333;
    }

    .quantity-modal-title {
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 1rem;
      color: #ff8800;
    }

    .quantity-modal-price {
      font-size: 1.1rem;
      color: #28a745;
      font-weight: bold;
      margin-bottom: 1.5rem;
    }

    .quantity-selector-modal {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .quantity-selector-modal label {
      font-weight: 500;
      color: #333;
    }

    .quantity-selector-modal input {
      width: 80px;
      padding: 0.5rem;
      border: 1px solid #ddd;
      border-radius: 5px;
      text-align: center;
      font-size: 1rem;
      background-color: #f8f9fa;
      pointer-events: none;
    }

    .quantity-selector-controls {
      display: flex;
      align-items: center;
      border: 1px solid #ddd;
      border-radius: 5px;
      background: white;
    }

    .quantity-selector-btn {
      background: none;
      border: none;
      padding: 0.5rem;
      cursor: pointer;
      color: #ff8800;
      font-weight: bold;
      font-size: 1.2rem;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .quantity-selector-btn:hover {
      background-color: #f8f9fa;
    }

    .quantity-selector-btn:disabled {
      color: #ccc;
      cursor: not-allowed;
    }

    .quantity-modal-btn {
      background: linear-gradient(to right, #ffce33, #ff8800);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: 500;
      cursor: pointer;
      margin: 0 0.5rem;
    }

    .quantity-modal-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    }

    .quantity-modal-btn.secondary {
      background: #6c757d;
    }

    .quantity-modal-btn.secondary:hover {
      background: #5a6268;
    }

    /* Success Modal */
    .success-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }

    .success-modal-content {
      background-color: #fff;
      border-radius: 15px;
      max-width: 450px;
      width: 90%;
      padding: 2.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      text-align: center;
      position: relative;
      animation: successModalSlideIn 0.3s ease-out;
    }

    @keyframes successModalSlideIn {
      from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .success-modal-close {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 24px;
      cursor: pointer;
      color: #aaa;
      transition: color 0.3s ease;
    }

    .success-modal-close:hover {
      color: #333;
    }

    .success-modal-icon {
      font-size: 60px;
      color: #28a745;
      margin-bottom: 1rem;
      animation: successIconPulse 0.6s ease-out;
    }

    @keyframes successIconPulse {
      0% {
        transform: scale(0);
      }
      50% {
        transform: scale(1.1);
      }
      100% {
        transform: scale(1);
      }
    }

    .success-modal-title {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
      color: #28a745;
    }

    .success-modal-message {
      color: #6c757d;
      margin-bottom: 2rem;
      font-size: 1rem;
    }

    .success-modal-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .success-modal-btn {
      border: none;
      padding: 12px 24px;
      border-radius: 25px;
      font-weight: 500;
      cursor: pointer;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      min-width: 140px;
    }

    .success-modal-btn.primary {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: white;
      border: 2px solid transparent;
    }

    .success-modal-btn.primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
    }

    .success-modal-btn.secondary {
      background: linear-gradient(135deg, #ffce33, #ff8800);
      color: white;
      border: 2px solid transparent;
    }

    .success-modal-btn.secondary:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 136, 0, 0.4);
    }

    /* Mobile responsiveness for success modal */
    @media (max-width: 576px) {
      .success-modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
      }

      .success-modal-buttons {
        flex-direction: column;
        gap: 0.75rem;
      }

      .success-modal-btn {
        width: 100%;
        min-width: auto;
      }

      .success-modal-icon {
        font-size: 50px;
      }

      .success-modal-title {
        font-size: 1.3rem;
      }
    }
