
  /* menu mobile web */
  
  .mobile-bottom-menu {
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    height:60px;
    background:#ffffff;
    box-shadow:0 -2px 5px rgba(0,0,0,0.1);
    display:flex;
    justify-content:space-around;
    align-items:center;
    border-top:1px solid #ddd;
    z-index:9999;
  }
  
  .mobile-bottom-menu .menu-item {
    flex:1;
    text-align:center;
    font-size:12px;
    color:#6c757d;
    text-decoration:none;
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  
  .mobile-bottom-menu .menu-item i {
    font-size:20px;
    margin-bottom:2px;
    color:#596882;
  }
  
  .mobile-bottom-menu .menu-item:hover {
    color:#3366ff;
  }
  
  .mobile-bottom-menu .menu-item:hover i {
    color:#3366ff;
  }

  .mobile-bottom-menu .menu-item.active {
    color:#3366ff;
  }
  
  .mobile-bottom-menu .menu-item.active i {
    color:#3366ff;
  }

  /* end menu mobile web */

  /* custom cổng thanh toán */

  .paygate-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* margin-top: 15px; */
}

.paygate-option {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 80px;
}

.paygate-option:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.paygate-option.selected {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.paygate-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.paygate-option.selected .paygate-check {
    opacity: 1;
    transform: scale(1);
}

.paygate-check i {
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.paygate-info {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 16px;
}

.paygate-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.paygate-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 4px;
}

.paygate-icon {
    color: #64748b;
    font-size: 20px;
}

.paygate-option.selected .paygate-logo {
    background: #ffffff;
    border-color: #3b82f6;
}

.paygate-details {
    flex: 1;
}

.paygate-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
    line-height: 1.2;
}

.paygate-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.3;
}

.paygate-option.selected .paygate-name {
    color: #1e40af;
}

.paygate-option.selected .paygate-desc {
    color: #3730a3;
}

.paygate-price {
    text-align: right;
    flex-shrink: 0;
}

.fee-info {
    font-size: 14px;
    font-weight: 600;
    color: #10b981;
    background: #ecfdf5;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #d1fae5;
}

.paygate-option.selected .fee-info {
    background: #ffffff;
    color: #059669;
    border-color: #10b981;
}

/* Responsive */
@media (max-width: 768px) {
    .paygate-option {
        padding: 14px;
        min-height: 70px;
    }

    .paygate-info {
        gap: 12px;
    }

    .paygate-logo {
        width: 40px;
        height: 40px;
    }

    .paygate-logo img {
        width: 30px;
        height: 30px;
    }

    .paygate-icon {
        font-size: 16px;
    }

    .paygate-name {
        font-size: 15px;
    }

    .paygate-desc {
        font-size: 12px;
    }

    .fee-info {
        font-size: 13px;
        padding: 3px 6px;
    }
}

/* end custom cổng thanh toán */